blob: 6e5e839f10d966b172f9171e662f28d4c6249b96 (
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
75
76
77
|
// $Id$
// ============================================================================
//
// = LIBRARY
// TAO
//
// = FILENAME
// Reactor_Per_Priority.h
//
// = AUTHOR
// Carlos O'Ryan (coryan@cs.wustl.edu)
//
// ============================================================================
#ifndef TAO_REACTOR_PER_PRIORITY_H
#define TAO_REACTOR_PER_PRIORITY_H
#include "ace/pre.h"
#include "tao/Reactor_Registry.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "ace/Map_Manager.h"
class TAO_Leader_Follower;
class TAO_Export TAO_Reactor_Per_Priority : public TAO_Reactor_Registry
{
// = TITLE
// The Reactor_Per_Priority concurrency strategy.
//
// = DESCRIPTION
// This strategy creates a different reactor for each priority
// level, threads at the right priority level run the event loop
// on that reactor.
// Multiple threads can share the same reactor, usually using the
// thread-pool strategy.
//
public:
TAO_Reactor_Per_Priority (void);
// Default constructor
virtual ~TAO_Reactor_Per_Priority (void);
// The destructor
// = The TAO_Reactor_Registry methods, please check the
// documentation in tao/Reactor_Registry.h
virtual ACE_Reactor *reactor (void);
virtual ACE_Reactor *reactor (TAO_Acceptor *acceptor);
virtual TAO_Leader_Follower &leader_follower (void);
virtual TAO_Leader_Follower &leader_follower (TAO_Acceptor *acceptor);
virtual void destroy_tss_cookie (void* cookie);
virtual int shutdown_all (void);
private:
TAO_Leader_Follower *leader_follower_i (CORBA::Short priority);
// Obtain the leader follower object given a priority, used to
// implement all the other methods
private:
typedef ACE_Map_Manager<CORBA::Short,TAO_Leader_Follower*,ACE_SYNCH_MUTEX> Map;
typedef ACE_Map_Iterator<CORBA::Short,TAO_Leader_Follower*,ACE_SYNCH_MUTEX> Map_Iterator;
Map map_;
// The map between priorities and the control structure for the
// reactor
};
#if defined (__ACE_INLINE__)
# include "tao/Reactor_Per_Priority.i"
#endif /* __ACE_INLINE__ */
#include "ace/post.h"
#endif /* TAO_REACTOR_PER_PRIORITY_H */
|