1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
//
// $Id$
//
#ifndef BIG_ONEWAYS_SESSION_H
#define BIG_ONEWAYS_SESSION_H
#include "ace/pre.h"
#include "TestS.h"
#include "Session_Task.h"
#if defined (_MSC_VER)
# if (_MSC_VER >= 1200)
# pragma warning(push)
# endif /* _MSC_VER >= 1200 */
# pragma warning (disable:4250)
#endif /* _MSC_VER */
/// Implement the Test::Session interface
class Session
: public virtual POA_Test::Session
, public virtual PortableServer::RefCountServantBase
{
public:
/// Constructor
Session (Test::Session_Control_ptr control,
CORBA::ULong payload_size,
CORBA::ULong thread_count,
CORBA::ULong message_count,
CORBA::ULong peer_count);
/// Destructor
virtual ~Session (void);
/// Run one of the experiment threads
int svc (void);
// = The skeleton methods
virtual void start (const Test::Session_List &other_sessions,
CORBA::Environment &ACE_TRY_ENV)
ACE_THROW_SPEC ((CORBA::SystemException,
Test::Already_Running,
Test::No_Peers));
virtual void ping (CORBA::Environment &) ACE_THROW_SPEC (());
virtual void receive_payload (const Test::Payload &the_payload,
CORBA::Environment &ACE_TRY_ENV)
ACE_THROW_SPEC ((CORBA::SystemException));
virtual void destroy (CORBA::Environment &ACE_TRY_ENV)
ACE_THROW_SPEC ((CORBA::SystemException));
private:
/// Helper function used to report any problems and destroy local
/// resources
void terminate (CORBA::Boolean success,
CORBA::Environment &ACE_TRY_ENV)
ACE_THROW_SPEC (());
/// Return 1 if all the work in this session has been completed
int more_work (void) const;
/// Make sure that all threads have connections avaiable to the
/// other sessions.
void validate_connections (CORBA::Environment &ACE_TRY_ENV);
private:
/// Synchronize the internal state
ACE_SYNCH_MUTEX mutex_;
/// Keep a reference to the Session_Control, this is used to report
/// when the test finishes.
Test::Session_Control_var control_;
/// Keep track of wether the test is running.
int running_;
/// The other session objects participating in the test
Test::Session_List other_sessions_;
/// Size of each message
CORBA::ULong payload_size_;
/// Number of threads
CORBA::ULong thread_count_;
/// Number of messages to send
CORBA::ULong message_count_;
/// The number of threads currently running, when this reaches 0 the
/// session destroys itself.
CORBA::ULong active_thread_count_;
/// Number of messages expected
CORBA::ULong expected_messages_;
/// Helper class to run svc() in a separate thread
Session_Task task_;
/// Barrier to start all threads simultaenously
ACE_Thread_Barrier barrier_;
};
#if defined(_MSC_VER) && (_MSC_VER >= 1200)
# pragma warning(pop)
#endif /* _MSC_VER */
#include "ace/post.h"
#endif /* BIG_ONEWAYS_SESSION_H */
|