blob: 07e2fb0d4179512e5317b03f3ee925b783894982 (
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
|
//=============================================================================
/**
* @file initiator.h
*
* This class implements a simple server for the
* Nested Upcalls - Triangle test
*
*
* @author Michael Kircher
*/
//=============================================================================
#ifndef _TRIANGLE_TEST_INITITATOR_SERVER_H
#define _TRIANGLE_TEST_INITITATOR_SERVER_H
#include "ace/Get_Opt.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "ace/Log_Msg.h"
#include "tao/Utils/ORB_Manager.h"
#include "Initiator_i.h"
/**
* @class Initiator_Server
*
* @brief This is the server for the Initiator in the test.
*
* See the README file for more information.
*/
class Initiator_Server
{
public:
/// Default constructor
Initiator_Server (void);
/// Destructor
~Initiator_Server (void);
/// read in the IOR's for the two objects A and B
int read_ior (ACE_TCHAR *filename, unsigned int A_B);
/// Initialize the Initiator_Server state - parsing arguments and ...
int init (int argc,
ACE_TCHAR **argv);
/// Run the orb
int run (void);
private:
/// Parses the commandline arguments.
int parse_args (void);
/// The IOR of object A
char * object_A_key_;
/// The IOR of object B
char * object_B_key_;
/// reference to object A
Object_A_var object_A_var_;
/// reference to object B
Object_B_var object_B_var_;
/// The ORB manager
TAO_ORB_Manager orb_manager_;
/// Implementation object of the Initiator
Initiator_i *initiator_i_ptr_;
/// Number of commandline arguments.
int argc_;
/// commandline arguments.
ACE_TCHAR **argv_;
/// IOR of my servant.
CORBA::String_var str_;
};
#endif /* _TRIANGLE_TEST_INITITATOR_SERVER_H */
|