blob: 34c2655d5e84dafdac47ac3b80886cdc6a24525c (
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/orbsvcs/Time_Service
//
// = FILENAME
// Server_i.h
//
// = AUTHOR
// Vishal Kachroo <vishal@cs.wustl.edu>
//
// ============================================================================
#ifndef SERVER_I_H
#define SERVER_I_H
#include "ace/Get_Opt.h"
#include "ace/Log_Msg.h"
#include "tao/PortableServer/ORB_Manager.h"
#include "orbsvcs/CosNamingC.h"
#include "orbsvcs/Naming/Naming_Utils.h"
#include "orbsvcs/Time/TAO_Time_Service_Server.h"
class Server_i
{
// = TITLE
// CORBA Server implementation.
//
// = DESCRIPTION
// A CORBA server that initializes the <TimeService Server>
// servant implementation and the ORB.
public:
// = Initialization and termination methods.
Server_i (void);
// Constructor.
~Server_i (void);
// Destructor.
int init (int argc,
char *argv[]
TAO_ENV_ARG_DECL);
// Initialize the Server state.
int run (TAO_ENV_SINGLE_ARG_DECL);
// Run the orb.
int init_naming_service (TAO_ENV_SINGLE_ARG_DECL);
// Initialises the name server.
int create_server (void);
// Create the time server object.
int register_server (void);
// Register the time server object with the Naming Service.
int parse_args (void);
// Parse the commandline arguments.
int if_first_server (CosNaming::Name &server_context_name);
// Check if this is the first server binding to the Naming
// Service.
private:
CORBA::ORB_var orb_;
// My orb.
TAO_ORB_Manager orb_manager_;
// The ORB manager.
FILE *ior_output_file_;
// File where the IOR of the Clerk object is stored.
TAO_Naming_Server my_name_server_;
// An instance of the name server used for registering the
// <TimeService Server> object.
TAO_Time_Service_Server *time_service_server_impl_;
// Implementation of the <TimeService> Server object.
CosTime::TimeService_var time_service_server_;
// Reference of the time server.
CosNaming::NamingContext_var time_service_server_context_;
// Naming context for the Naming Service.
int argc_;
// Number of command line arguments.
char **argv_;
// The command line arguments.
};
#endif /* SERVER_I_H */
|