summaryrefslogtreecommitdiff
path: root/TAO/tao/POAManager.h
blob: deeb0514c69b7074d55e7290a69df860a06befab (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
109
110
// -*- C++ -*-
// $Id$

// ============================================================================
//
// = LIBRARY
//    TAO
//
// = FILENAME
//    POAManager.h
//
// = DESCRIPTION
//     POAManager
//
// = AUTHOR
//     Irfan Pyarali
//
// ============================================================================

#ifndef TAO_POAMANAGER_H
#define TAO_POAMANAGER_H

#include "tao/POAS.h"
// 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;

public:
  enum Processing_State
  {
    ACTIVE,
    DISCARDING,
    HOLDING,
    INACTIVE,
    UNKNOWN
  };

  virtual void activate (CORBA_Environment &ACE_TRY_ENV = CORBA::default_environment ());

  virtual void hold_requests (CORBA::Boolean wait_for_completion,
                              CORBA_Environment &ACE_TRY_ENV = CORBA::default_environment ());

  virtual void discard_requests (CORBA::Boolean wait_for_completion,
                                 CORBA_Environment &ACE_TRY_ENV = CORBA::default_environment ());

  virtual void deactivate (CORBA::Boolean etherealize_objects,
                           CORBA::Boolean wait_for_completion,
                           CORBA_Environment &ACE_TRY_ENV = CORBA::default_environment ());

  TAO_POA_Manager (void);

  virtual TAO_POA_Manager *clone (void);

  virtual ~TAO_POA_Manager (void);

  virtual Processing_State state (CORBA_Environment &ACE_TRY_ENV = CORBA::default_environment ());

protected:

  virtual void activate_i (CORBA_Environment &ACE_TRY_ENV);

  virtual void hold_requests_i (CORBA::Boolean wait_for_completion,
                                CORBA_Environment &ACE_TRY_ENV);

  virtual void discard_requests_i (CORBA::Boolean wait_for_completion,
                                   CORBA_Environment &ACE_TRY_ENV);

  virtual void deactivate_i (CORBA::Boolean etherealize_objects,
                             CORBA::Boolean wait_for_completion,
                             CORBA_Environment &ACE_TRY_ENV);

  virtual ACE_Lock &lock (void);

  virtual void remove_poa (TAO_POA *poa,
                           CORBA_Environment &ACE_TRY_ENV = CORBA::default_environment ());

  virtual void remove_poa_i (TAO_POA *poa,
                             CORBA_Environment &ACE_TRY_ENV = CORBA::default_environment ());

  virtual void register_poa (TAO_POA *poa,
                             CORBA_Environment &ACE_TRY_ENV = CORBA::default_environment ());

  virtual void register_poa_i (TAO_POA *poa,
                               CORBA_Environment &ACE_TRY_ENV = CORBA::default_environment ());

  virtual void destroy (void);

  Processing_State state_;

  int closing_down_;

  ACE_Lock *lock_;

  typedef ACE_Unbounded_Set<TAO_POA *> POA_COLLECTION;

  POA_COLLECTION poa_collection_;
};

#if defined (__ACE_INLINE__)
# include "tao/POAManager.i"
#endif /* __ACE_INLINE__ */

#endif /* TAO_POAMANAGER_H */