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
|
// $Id: consumer_msg.cpp 91671 2010-09-08 18:39:23Z johnnyw $
#include "ace/OS_main.h"
#include "ace/SPIPE_Addr.h"
#include "ace/SPIPE_Acceptor.h"
#include "ace/Log_Msg.h"
#include "ace/OS_NS_stdio.h"
#include "ace/OS_NS_unistd.h"
#include "ace/Time_Value.h"
#if defined (ACE_HAS_STREAM_PIPES)
#include "shared.h"
int
ACE_TMAIN (int argc, ACE_TCHAR *argv[])
{
ACE_SPIPE_Acceptor peer_acceptor;
ACE_SPIPE_Stream new_stream;
char buf[BUFSIZ];
ACE_Str_Buf buffer (buf, 0, sizeof buf);
int flags = 0;
if (argc > 1)
rendezvous = argv[1];
ACE_OS::unlink (rendezvous);
ACE_OS::fdetach (ACE_TEXT_ALWAYS_CHAR (rendezvous));
ACE_SPIPE_Addr addr (rendezvous);
ACE_Time_Value timeout (ACE_DEFAULT_TIMEOUT);
if (peer_acceptor.open (addr) == -1)
ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "open"), 1);
ACE_DEBUG ((LM_DEBUG, "waiting for connection\n"));
if (peer_acceptor.accept (new_stream, 0, &timeout) == -1)
ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "accept"), 1);
ACE_DEBUG ((LM_DEBUG, "accepted\n"));
while (new_stream.recv ((ACE_Str_Buf *) 0, &buffer, &flags) >= 0)
if (buffer.len == 0)
break;
else
ACE_OS::write (ACE_STDOUT, buffer.buf, buffer.len);
return 0;
}
#else
#include <stdio.h>
int ACE_TMAIN (int, ACE_TCHAR *[])
{
ACE_OS::fprintf (stderr, "This feature is not supported\n");
return 0;
}
#endif /* ACE_HAS_STREAM_PIPES */
|