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
|
// $Id$
// This tests the features of the <ACE_MEM_Connector> and
// <ACE_MEM_Stream> classes. In addition, it can be used to test the
// oneway and twoway latency and throughput at the socket-level. This
// is useful as a baseline to compare against ORB-level performance
// for the same types of data.
#include "ace/MEM_Connector.h"
#include "ace/INET_Addr.h"
#include "ace/Thread_Manager.h"
#include "ace/Singleton.h"
#include "ace/Get_Opt.h"
#include "ace/High_Res_Timer.h"
#include "ace/Synch.h"
#include "CPP-inclient.h"
ACE_RCSID(SOCK_SAP, CPP_inclient, "$Id$")
static int
run_client (void)
{
ACE_MEM_Connector connector;
ACE_MEM_Stream stream;
ACE_MEM_Addr server_addr (ACE_DEFAULT_SERVER_PORT);
if (connector.connect (stream, server_addr.get_remote_addr ()) == -1)
ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "connect"), -1);
char buf [MAXPATHLEN];
while (gets (buf) >0)
{
stream.send (buf, ACE_OS::strlen (buf)+1);
stream.recv (buf, MAXPATHLEN);
ACE_DEBUG ((LM_DEBUG, "Echo: %s\n", buf));
}
return 0;
}
int
main (int argc, char *argv[])
{
// Initialize the logger.
ACE_LOG_MSG->open (argv[0]);
// Run the client
run_client ();
return 0;
}
#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)
template class ACE_Singleton<Options, ACE_SYNCH_RECURSIVE_MUTEX>;
#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)
#pragma instantiate ACE_Singleton<Options, ACE_SYNCH_RECURSIVE_MUTEX>
#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */
|