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
|
// -*- C++ -*-
//=============================================================================
/**
* @file TAO_Internal.h
*
* Structures and methods completely internal to TAO.
*
* @author Chris Cleeland
*/
//=============================================================================
#ifndef TAO_INTERNAL_H
#define TAO_INTERNAL_H
#include /**/ "ace/pre.h"
#include "tao/orbconf.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
/// Forward declaration
class ACE_Service_Gestalt;
template <class X> class ACE_Intrusive_Auto_Ptr;
ACE_END_VERSIONED_NAMESPACE_DECL
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
namespace TAO
{
/**
* @namespace ORB
*
* @brief This @c namespace encapsulates some private behaviors and
* global data structures used internal to TAO. No
* application should EVER see them which is why they are not
* exported.
*/
namespace ORB
{
/**
* If never done it before, extract ACE Service Configurator arguments from the given
* argument vector, and initialize the _global_ configuration gestalt. Return value 0 means OK,
* -1 spells major trouble ...
*/
int open_global_services (int argc, ACE_TCHAR** argv);
/**
* Extract ACE Service Configurator arguments from the given
* argument vector, and initialize the ACE Service Configurator.
*
* @note This method should be called before the ORB Core is
* initialized, and before any ORBInitializers are invoked.
*/
int open_services (ACE_Intrusive_Auto_Ptr<ACE_Service_Gestalt> cfg, int& argc, ACE_TCHAR** argv);
/**
* The complement to @c open_services(), this will perform
* appropriate ACE Service Configurator closure operations. It
* should be called as many times as @c open_services(), and will
* only actually close things down on the last call. It is fully
* thread-safe.
*
* @return @c 0 if successful, @c -1 with @c errno set if
* failure.
*/
int close_services (ACE_Intrusive_Auto_Ptr<ACE_Service_Gestalt> pcfg);
/**
* Set default @c `svc.conf' content.
* This function must be called before first ORB initialization.
*/
void default_svc_conf_entries (char const * rf_args,
char const * ssf_args,
char const * csf_args);
}
}
TAO_END_VERSIONED_NAMESPACE_DECL
#include /**/ "ace/post.h"
#endif /* TAO_INTERNAL_H */
|