blob: 5bd35700be4a086d0d030b5d5fe196423e1e13bc (
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
|
// -*- C++ -*-
//=============================================================================
/**
* @file UDP_i.h
*
* This class implements the server functionality of the UDP test.
*
*
* @author Michael Kircher <Michael.Kircher@mchp.siemens.de>
*/
//=============================================================================
#ifndef UDP_I_H
#define UDP_I_H
#include "UDPS.h"
#include "ace/Hash_Map_Manager_T.h"
#include "ace/Null_Mutex.h"
/**
* @class UDP_i:
*
* @brief UDP Object Implementation
*
*/
class UDP_i: public POA_UDP
{
public:
// = Initialization and termination methods.
/// Constructor
UDP_i (void);
/// Destructor
~UDP_i (void);
virtual void setResponseHandler (UDP_ptr udpHandler);
virtual void invoke (const char *client_name,
CORBA::Long request_id);
virtual void reset (const char * client_name);
/// Shutdown the server.
virtual void shutdown (void);
/// Set the ORB pointer.
void orb (CORBA::ORB_ptr o);
/// Return the number of lost messages
ACE_UINT32 getMessagesCount ();
/// Return the number of lost messages
ACE_UINT32 getWrongMessagesCount ();
private:
/// ORB pointer.
CORBA::ORB_var orb_;
ACE_Hash_Map_Manager_Ex < CORBA::String_var,
CORBA::Long,
ACE_Hash < const char * >,
ACE_Equal_To < const char * >,
ACE_Null_Mutex > request_id_table_;
ACE_UINT32 messages_count_;
ACE_UINT32 wrong_messages_count_;
UDP_var responseHandler_;
};
#endif /* UDP_I_H */
|