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 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
|
// $Id: local_pipe_client_test.cpp 91670 2010-09-08 18:02:26Z johnnyw $
// Another test of UNIX domain IPC-SAP abstraction. This one opens 2
// pipes and then ships certain ends over to the server to act as a
// filter!
#include "ace/OS_main.h"
#include "ace/LSOCK_Connector.h"
#include "ace/UNIX_Addr.h"
#include "ace/Get_Opt.h"
#include "ace/OS_NS_stdlib.h"
#include "ace/OS_NS_unistd.h"
#include "ace/OS_NS_fcntl.h"
#if defined (ACE_HAS_MSG) && !defined (ACE_LACKS_UNIX_DOMAIN_SOCKETS)
// Name of the program.
static ACE_TCHAR *program_name;
// Name of rendezvous point.
static const ACE_TCHAR *rendezvous = ACE_TEXT ("/tmp/foo_pipe");
// Name of file to send.
static const ACE_TCHAR *file_name = ACE_TEXT ("local_data");
static void
print_usage_and_die (void)
{
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("usage: %s [-r rendezvous] [-f file]\n"),
program_name));
ACE_OS::exit (1);
}
void
parse_args (int argc, ACE_TCHAR *argv[])
{
program_name = argv[0];
ACE_Get_Opt get_opt (argc, argv, ACE_TEXT ("f:r:"));
for (int c; (c = get_opt ()) != -1; )
switch (c)
{
case 'f':
file_name = get_opt.opt_arg ();
break;
case 'r':
rendezvous = get_opt.opt_arg ();
break;
default:
print_usage_and_die ();
break;
}
}
static int
do_client_processing (ACE_LSOCK_Stream &sc)
{
ACE_HANDLE fd_read[2];
ACE_HANDLE fd_write[2];
char buf[BUFSIZ];
int n;
if (ACE_OS::pipe (fd_read) == -1 || ACE_OS::pipe (fd_write) == -1)
return -1;
if (sc.send_handle (fd_write[0]) == -1 || sc.send_handle (fd_read[1]) == -1)
return -1;
// Close off the ends we aren't interested in.
if (ACE_OS::close (fd_read[1]) || ACE_OS::close (fd_write[0]) == -1)
return -1;
// Do a silly dup just for fun...
ACE_HANDLE fd1 = ACE_OS::open (file_name, O_RDONLY);
if (fd1 == ACE_INVALID_HANDLE)
return -1;
while ((n = ACE_OS::read (fd1, buf, sizeof buf)) > 0)
{
if (ACE_OS::write (fd_write[1],
buf,
n) == -1)
ACE_ERROR_RETURN ((LM_ERROR,
ACE_TEXT ("%p\n"),
ACE_TEXT ("write")),
-1);
if ((n = ACE_OS::read (fd_read[0],
buf,
sizeof buf)) == -1)
ACE_ERROR_RETURN ((LM_ERROR,
ACE_TEXT ("%p\n"),
ACE_TEXT ("read")),
-1);
if (ACE_OS::write (ACE_STDOUT,
buf,
n) == -1)
return -1;
}
if (ACE_OS::close (fd_read[0]) == -1
|| ACE_OS::close (fd_write[1]) == -1
|| ACE_OS::close (fd1) == -1)
ACE_OS::exit (1);
return 0;
}
int
ACE_TMAIN (int argc, ACE_TCHAR *argv[])
{
parse_args (argc, argv);
ACE_LSOCK_Stream sc;
ACE_LSOCK_Connector con;
if (con.connect (sc,
ACE_UNIX_Addr (rendezvous)) == -1)
ACE_ERROR_RETURN ((LM_ERROR,
ACE_TEXT ("%p\n"),
ACE_TEXT ("connect")),
-1);
if (do_client_processing (sc) == -1)
ACE_ERROR_RETURN ((LM_ERROR,
ACE_TEXT ("%p\n"),
ACE_TEXT ("do_client_processing")),
-1);
if (sc.close () == -1)
ACE_ERROR_RETURN ((LM_ERROR,
ACE_TEXT ("%p\n"),
ACE_TEXT ("close")),
-1);
return 0;
}
#else
int ACE_TMAIN (int, ACE_TCHAR *[])
{
ACE_ERROR_RETURN ((LM_ERROR,
ACE_TEXT ("your platform must support sendmsg/recvmsg to run this test\n")),
-1);
}
#endif /* ACE_HAS_MSG */
|