blob: cb02f84b701ddecb21f7119fb24740b896707175 (
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
|
// -*- c++ -*-
// $Id$
// ============================================================================
//
// = LIBRARY
// TAO/tests/NestedUpCalls
//
// = FILENAME
// server.h
//
// = DESCRIPTION
// This class implements a simple NestedUpCalls CORBA server for the NestedUpCalls
// example using skeletons generated by the TAO ORB compiler.
//
// = AUTHORS
// Nagarajan Surendran (naga@cs.wustl.edu)
//
// ============================================================================
#if !defined (_NUC_SERVER_H)
#define _NUC_SERVER_H
#include "ace/Get_Opt.h"
#include "ace/Log_Msg.h"
#include "tao/TAO.h"
#include "orbsvcs/CosNamingC.h"
#include "reactor_i.h"
#include "orbsvcs/Naming/Naming_Utils.h"
class NestedUpCalls_Server
{
// = TITLE
// Defines a NestedUpCalls Server class that implements the functionality
// of a server process as an object.
//
// = DESCRIPTION
// The interface is quite simple. A server program has to call
// init to initialize the NestedUpCalls_Server's state and then call run
// to run the orb.
public:
NestedUpCalls_Server (void);
// Default constructor
~NestedUpCalls_Server (void);
// Destructor
int init (int argc,
char **argv,
CORBA::Environment& env);
// Initialize the NestedUpCalls_Server state - parsing arguments and ...
int run (CORBA::Environment& env);
// Run the orb
private:
int parse_args (void);
// Parses the commandline arguments.
int init_naming_service (CORBA::Environment &env);
// Initialises the name server and registers NestedUpCalls reactor with the
// name server.
int use_naming_service_;
//Flag to tell server not to use the TAO Naming Service to register
//the NestedUpCalls reactor.
FILE* ior_output_file_;
// File to output the NestedUpCalls reactor IOR.
TAO_ORB_Manager orb_manager_;
// The ORB manager
TAO_Naming_Server my_name_server_;
// An instance of the name server used for registering the reactor
// objects.
Reactor_i reactor_impl_;
// Implementation object of the NestedUpCalls reactor.
Reactor_var reactor_;
// Reactor_var to register with NamingService.
CosNaming::NamingContext_var NestedUpCalls_context_;
// Naming context for the NestedUpCalls_reactor.
CosNaming::NamingContext_var naming_context_;
// Naming context for the Naming Service.
int argc_;
// Number of commandline arguments.
char **argv_;
// commandline arguments.
};
#endif /* _NUC_SERVER_H */
|