blob: ef00b8b846f5b162e9c5fe2f7ee3baeb9360653d (
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
|
// -*- C++ -*-
// ===================================================================
/**
* @file ORBInitializer_Registry.h
*
* $Id$
*
* @author Ossama Othman <ossama@uci.edu>
*/
// ===================================================================
#ifndef TAO_ORB_INITIALIZER_REGISTRY_H
#define TAO_ORB_INITIALIZER_REGISTRY_H
#include "ace/pre.h"
#include "TAO_Export.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "PortableInterceptorC.h"
#include "TAO_Singleton.h"
#include "ace/Containers_T.h"
/**
* @class TAO_ORBInitializer_Registry
*
* @brief Global list that contains all portable interceptor ORB
* initializers.
*/
class TAO_Export TAO_ORBInitializer_Registry
{
friend class TAO_Singleton<TAO_ORBInitializer_Registry, TAO_SYNCH_MUTEX>;
friend void PortableInterceptor::register_orb_initializer (
PortableInterceptor::ORBInitializer_ptr init,
CORBA::Environment &);
friend CORBA::ORB_ptr CORBA::ORB_init (int &,
char *argv[],
const char *,
CORBA_Environment &);
protected:
/// Only allow this class to be instantiated as a singleton
/// instance, so declare the constructor as protected.
TAO_ORBInitializer_Registry (void);
/// Destructor. Releases duplicated ORBInitializer references.
~TAO_ORBInitializer_Registry (void);
///< Register an ORBInitializer with the underlying ORBInitializer
///< array.
void register_orb_initializer (
PortableInterceptor::ORBInitializer_ptr init,
CORBA::Environment &ACE_TRY_ENV);
/// Begin initialization of all registered ORBInitializers before
/// the ORB itself is initialized.
void pre_init (PortableInterceptor::ORBInitInfo_ptr info,
CORBA::Environment &ACE_TRY_ENV);
/// Complete initialization of all registered ORBInitializers after
/// the ORB has been initialized.
void post_init (PortableInterceptor::ORBInitInfo_ptr info,
CORBA::Environment &ACE_TRY_ENV);
/// Return a unique singleton instance.
static TAO_ORBInitializer_Registry *instance (void);
private:
/// Prevent copying
ACE_UNIMPLEMENTED_FUNC (
TAO_ORBInitializer_Registry (const TAO_ORBInitializer_Registry &))
ACE_UNIMPLEMENTED_FUNC (void operator= (const TAO_ORBInitializer_Registry &))
private:
/// Dynamic array containing registered ORBInitializers.
ACE_Array_Base<PortableInterceptor::ORBInitializer_ptr> initializers_;
};
#if defined (__ACE_INLINE__)
# include "tao/ORBInitializer_Registry.inl"
#endif /* __ACE_INLINE__ */
#include "ace/post.h"
#endif /* TAO_ORB_INITIALIZER_REGISTRY_H */
|