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
|
// -*- C++ -*-
//=============================================================================
/**
* @file objectid.h
*
* $Id$
*
* ObjectIds redefined for TAO and recognized by CORBA
*
* @author Chris Cleeland
* @author Douglas C. Schmidt
*/
//=============================================================================
#ifndef TAO_OBJECTID_H
#define TAO_OBJECTID_H
#include /**/ "ace/pre.h"
#include "ace/config-all.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
/*
*
* This file is a break away from orbconf.h. Basically orbconf.h is
* going the OS.h way. Too many things cluttered in other than the
* configuration details. Hence this breakway group.
*
* This file has the TAO specific objectid definitions for the
* services that are recognized by resolve_initial_references (),
* list_initiial_services () etc. They have no place in the ORB
* configuration.
*/
// ObjectIds recognized by CORBA::ORB::resolve_initial_references()...
// of course, no guarantees are made that the call will return
// something useful.
#define TAO_OBJID_NAMESERVICE "NameService"
#define TAO_OBJID_TRADINGSERVICE "TradingService"
#define TAO_OBJID_IMPLREPOSERVICE "ImplRepoService"
#define TAO_OBJID_ROOTPOA "RootPOA"
#define TAO_OBJID_POACURRENT "POACurrent"
#define TAO_OBJID_INTERFACEREP "InterfaceRepository"
#define TAO_OBJID_POLICYMANAGER "ORBPolicyManager"
#define TAO_OBJID_POLICYCURRENT "PolicyCurrent"
#define TAO_OBJID_IORMANIPULATION "IORManipulation"
#define TAO_OBJID_IORTABLE "IORTable"
#define TAO_OBJID_DYNANYFACTORY "DynAnyFactory"
#define TAO_OBJID_TYPECODEFACTORY "TypeCodeFactory"
#define TAO_OBJID_RTORB "RTORB"
#define TAO_OBJID_RTCURRENT "RTCurrent"
#define TAO_OBJID_PRIORITYMAPPINGMANAGER "PriorityMappingManager"
#define TAO_OBJID_NETWORKPRIORITYMAPPINGMANAGER "NetworkPriorityMappingManager"
#define TAO_OBJID_SECURITYCURRENT "SecurityCurrent"
#define TAO_OBJID_SECURITYMANAGER "SecurityManager"
#define TAO_OBJID_TRANSACTIONCURRENT "TransactionCurrent"
#define TAO_OBJID_NOTIFICATIONSERVICE "NotificationService"
#define TAO_OBJID_TYPEDNOTIFICATIONSERVICE "TypedNotificationService"
#define TAO_OBJID_COMPONENTHOMEFINDER "ComponentHomeFinder"
#define TAO_OBJID_PSS "PSS"
#define TAO_OBJID_CODECFACTORY "CodecFactory"
#define TAO_OBJID_PICurrent "PICurrent"
// Comma separated list of the above ObjectIDs.
// DO NOT include unimplemented services!
// The CORBA::ORB::list_initial_services () method iterates through
// this list to determine which initial services are available.
#define TAO_LIST_OF_INITIAL_SERVICES \
TAO_OBJID_NAMESERVICE, \
TAO_OBJID_TRADINGSERVICE, \
TAO_OBJID_IMPLREPOSERVICE, \
TAO_OBJID_ROOTPOA, \
TAO_OBJID_POACURRENT, \
TAO_OBJID_INTERFACEREP, \
TAO_OBJID_POLICYMANAGER, \
TAO_OBJID_POLICYCURRENT, \
TAO_OBJID_IORMANIPULATION, \
TAO_OBJID_IORTABLE, \
TAO_OBJID_DYNANYFACTORY, \
TAO_OBJID_TYPECODEFACTORY
// @@ Some initial references are added via other means, such as
// ORBInitInfo::register_initial_references(). Those should not be
// placed in the above list. Ideally, we should no longer need the
// above list once the above services register their references
// dynamically.
// Service IDs for the services that are located through Multicast.
enum TAO_MCAST_SERVICEID
{
NAMESERVICE,
TRADINGSERVICE,
IMPLREPOSERVICE,
INTERFACEREPOSERVICE
};
// No. of services locatable through multicast.
#define TAO_NO_OF_MCAST_SERVICES 4
#include /**/ "ace/post.h"
#endif /*TAO_OBJECTID_H*/
|