blob: cc542f5de989d3327e98c08a821d9e4c6b725dab (
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
|
// $Id$
// ========================================================================
//
// = LIBRARY
// orbsvcs/IFR_Service
//
// = FILENAME
// IFR_Service.h
//
// = AUTHOR
// Jeff Parsons <parsons@cs.wustl.edu>
//
// =======================================================================
#ifndef IFR_SERVICE_H
#define IFR_SERVICE_H
#include "tao/PortableServerC.h"
#include "tao/ORB.h"
#include "tao/ifrfwd.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
class IFR_ServantLocator;
class TAO_IOR_Multicast;
class ACE_Configuration;
class TAO_Repository_i;
class IFR_Service
{
// = TITLE
// IFR_Service
//
// = DESCRIPTION
// A class that initializes, runs and shuts down
// the Interface Repository service.
public:
IFR_Service (void);
// Default constructor.
~IFR_Service (void);
// Destructor
int init (int argc,
char *argv[],
CORBA::Environment &ACE_TRY_ENV);
// Initialize the IFR service.
int run (CORBA::Environment &ACE_TRY_ENV);
// Run the IFR service.
int fini (CORBA::Environment &ACE_TRY_ENV);
// Shut down the IFR service.
protected:
int create_poas (CORBA::Environment &ACE_TRY_ENV);
// Two persistent POAs, one using a servant locator.
int create_locator (CORBA::Environment &ACE_TRY_ENV);
// Create a servant locator and register it with its POA.
int open_config (CORBA::Environment &ACE_TRY_ENV);
// Open an ACE_Configuration of the appropriate type.
int create_repository (CORBA::Environment &ACE_TRY_ENV);
// Create and initialize the repository.
int init_multicast_server (CORBA::Environment &ACE_TRY_ENV);
// Enable the Interface Repository to answer multicast requests
// for its IOR.
CORBA::ORB_var orb_;
// Reference to our ORB.
PortableServer::POA_var root_poa_;
// Root POA reference.
PortableServer::POA_var repo_poa_;
// The Repository's POA reference.
PortableServer::POA_var ir_object_poa_;
// POA reference for all other IFR objects.
IFR_ServantLocator *servant_locator_impl_;
// Our servant locator implementation instance.
TAO_IOR_Multicast *ior_multicast_;
// Event handler that responds to multicast requests.
ACE_Configuration *config_;
// Database for the IFR.
TAO_Repository_i *repo_impl_;
// The IFR implementation instance.
IR::Repository_ptr repository_;
// The Interface Repository object reference.
CORBA::String_var ifr_ior_;
// Interface Repository's IOR.
};
#endif /* IFR_SERVICE_H */
|