blob: 42260fe5d02be54bfd4f5444681f98f885614c36 (
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
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
|
// -*- C++ -*-
// $Id$
// ============================================================================
//
// = LIBRARY
// TAO
//
// = FILENAME
// POAManager.h
//
// = DESCRIPTION
// POAManager
//
// = AUTHOR
// Irfan Pyarali
//
// ============================================================================
#ifndef TAO_POAMANAGER_H
#include "ace/pre.h"
#define TAO_POAMANAGER_H
#include "tao/POAS.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
// for POA skeleton.
#include "tao/poa_macros.h"
class TAO_POA;
// Forward decl.
class TAO_Export TAO_POA_Manager : public POA_PortableServer::POAManager
{
friend class TAO_POA;
friend class TAO_Object_Adapter;
public:
void activate (CORBA_Environment &ACE_TRY_ENV = TAO_default_environment ());
#if (TAO_HAS_MINIMUM_POA == 0)
void hold_requests (CORBA::Boolean wait_for_completion,
CORBA_Environment &ACE_TRY_ENV = TAO_default_environment ());
void discard_requests (CORBA::Boolean wait_for_completion,
CORBA_Environment &ACE_TRY_ENV = TAO_default_environment ());
void deactivate (CORBA::Boolean etherealize_objects,
CORBA::Boolean wait_for_completion,
CORBA_Environment &ACE_TRY_ENV = TAO_default_environment ());
#endif /* TAO_HAS_MINIMUM_POA == 0 */
PortableServer::POAManager::State get_state (CORBA_Environment &ACE_TRY_ENV = TAO_default_environment ());
TAO_POA_Manager (TAO_Object_Adapter &object_adapter);
~TAO_POA_Manager (void);
protected:
void activate_i (CORBA_Environment &ACE_TRY_ENV);
void deactivate_i (CORBA::Boolean etherealize_objects,
CORBA::Boolean wait_for_completion,
CORBA_Environment &ACE_TRY_ENV);
#if (TAO_HAS_MINIMUM_POA == 0)
void hold_requests_i (CORBA::Boolean wait_for_completion,
CORBA_Environment &ACE_TRY_ENV);
void discard_requests_i (CORBA::Boolean wait_for_completion,
CORBA_Environment &ACE_TRY_ENV);
#endif /* TAO_HAS_MINIMUM_POA == 0 */
PortableServer::POAManager::State get_state_i ();
ACE_Lock &lock (void);
int remove_poa (TAO_POA *poa);
int register_poa (TAO_POA *poa);
PortableServer::POAManager::State state_;
ACE_Lock &lock_;
typedef ACE_Unbounded_Set<TAO_POA *> POA_COLLECTION;
POA_COLLECTION poa_collection_;
TAO_Object_Adapter &object_adapter_;
};
#if defined (__ACE_INLINE__)
# include "tao/POAManager.i"
#endif /* __ACE_INLINE__ */
#include "ace/post.h"
#endif /* TAO_POAMANAGER_H */
|