blob: e5f3f38b8e146dedcdbb459357333efb6026c6cb (
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
|
/* -*- C++ -*- */
// $Id$
// ============================================================================
//
// = LIBRARY
// EventComm
//
// = FILENAME
// Notifier_Server.h
//
// = AUTHOR
// Pradeep Gore <pradeep@cs.wustl.edu>
//
// ============================================================================
#ifndef _NOTIFIER_SERVER_H
#define _NOTIFIER_SERVER_H
#include "Event_Comm_i.h"
#include "tao/PortableServer/ORB_Manager.h"
#include "orbsvcs/CosNamingS.h"
#include "orbsvcs/Naming/Naming_Utils.h"
class Notifier_Server
{
// = TITLE
// The Notifier Server that handles CORBA operations from
// Consumers and Suppliers.
public:
// = Initialization and termination methods.
Notifier_Server (void);
// Constructor.
~Notifier_Server (void);
// Destructor.
int init (int argc, char *argv[] ACE_ENV_ARG_DECL);
// Initialize the Server state.
int run (ACE_ENV_SINGLE_ARG_DECL);
// Run the orb.
int close (void);
// Close the naming service.
ACE_Reactor *reactor(void);
// Reactor accessor.
private:
int init_naming_service (ACE_ENV_SINGLE_ARG_DECL);
// Initialises the name server and registers the Notifier server
// object name with the name server.
TAO_ORB_Manager orb_manager_;
// The ORB manager.
Notifier_i servant_;
// Servant for the Notifier interface.
CosNaming::NamingContext_var naming_context_;
// Naming context for the naming service.
TAO_Naming_Server naming_server_;
// An instance of the name server, wherein the naming context
// containing the factory of objects will be registered.
};
#define NOTIFIER_BIND_NAME "Notifier"
#endif /* _NOTIFIER_SERVER_H */
|