blob: 604ae849cf79ddc5d94a323705151cb536621287 (
plain)
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
|
// $Id$
#ifndef LONGUPCALLS_AMI_MANAGER_H
#define LONGUPCALLS_AMI_MANAGER_H
#include "TestS.h"
#include "ace/Task.h"
class AMI_Manager
: public virtual POA_Test::Manager
{
public:
AMI_Manager (CORBA::ORB_ptr orb);
// Constructor
// = The skeleton methods
virtual void start_workers (CORBA::Short worker_count,
CORBA::Long milliseconds,
Test::Controller_ptr controller);
virtual void shutdown (void);
private:
CORBA::ORB_var orb_;
// The ORB, to shutdown
};
// ****************************************************************
class Worker : public ACE_Task_Base
{
public:
Worker (ACE_Thread_Manager *thr_mgr,
Test::Controller_ptr controller,
CORBA::Long milliseconds,
CORBA::ORB_ptr orb);
virtual int svc (void);
// The service method
private:
Test::Controller_var controller_;
// The controller pointer
CORBA::Long milliseconds_;
// The number of milliseconds.
CORBA::ORB_var orb_;
// The orb
};
// ****************************************************************
class Controller_Handler
: public virtual POA_Test::AMI_ControllerHandler
{
public:
Controller_Handler (TAO_SYNCH_MUTEX *mutex,
int *pending_replies);
// Constructor
virtual void worker_started (void);
virtual void worker_started_excep (::Messaging::ExceptionHolder*);
virtual void worker_finished (void);
virtual void worker_finished_excep (::Messaging::ExceptionHolder*);
private:
TAO_SYNCH_MUTEX *mutex_;
int *pending_replies_;
// The pending replies is decremented each time a reply is
// received.
// The mutex is used to protect the access to the flag.
};
#endif /* LONGUPCALLS_AMI_MANAGER_H */
|