blob: 3a4bc82f0631e728b504642a0ac88a5efcc6d4b0 (
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
|
//=============================================================================
/**
* @file test_i.h
*
* $Id$
*
* @author Balachandran Natarajan <bala@cs.wustl.edu>
*/
//=============================================================================
#ifndef TAO_BIDIRECTIONAL_TEST_I_H
#define TAO_BIDIRECTIONAL_TEST_I_H
#include "testS.h"
#include "ace/Event_Handler.h"
/**
* @class Callback_i
*
* @brief A callback object to the "client"
*
* To test that the server can call the client on the same
* connection that was established by the client
*/
class Callback_i : public virtual POA_Callback
{
public:
/// ctor
Callback_i (CORBA::ORB_ptr orb, Simple_Server_ptr srv);
/// Safe way to shutdown
void shutdown (void);
/// The callback method
void callback_method (void);
private:
/// The orb
/// The server
CORBA::ORB_var orb_;
Simple_Server_var server_;
};
/**
* @class Simple_Server_i
*
* @brief Simpler Server implementation
*
* Implements the Simple_Server interface in test.idl
*/
class Simple_Server_i : public virtual POA_Simple_Server, public virtual ACE_Event_Handler
{
public:
/// ctor
Simple_Server_i (CORBA::ORB_ptr orb, int no_iterations);
// = The Simple_Server methods.
CORBA::Long test_method (CORBA::Boolean do_callback);
void callback_object (Callback_ptr callback);
void shutdown (void);
virtual int handle_timeout (const ACE_Time_Value ¤t_time,
const void *act = 0);
private:
/// The ORB
CORBA::ORB_var orb_;
/// Flag to indicate, whether we are ready for a remote call.
int flag_;
/// Callback Object
Callback_var callback_;
/// Number of times the callback needs to be called
int no_iterations_;
};
#if defined(__ACE_INLINE__)
#include "test_i.inl"
#endif /* __ACE_INLINE__ */
#endif /* TAO_BIDIRECTIONAL_TEST_I_H */
|