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
|
//=============================================================================
/**
* @file http_client.cpp
*
* $Id: http_client.cpp 93651 2011-03-28 08:49:11Z johnnyw $
*
* This is a very simple client. It accepts URLs from a prompt, and
* will try to fetch them. Also accepts shell escapes.
*
*
* @author James Hu
*/
//=============================================================================
#include "ace/OS_NS_stdio.h"
#include "ace/OS_NS_string.h"
#include "ace/OS_NS_ctype.h"
#include "http_handler.h"
int
ACE_TMAIN (int, ACE_TCHAR *[])
{
// Present a command line.
// * Accept a URL.
// Pass it to the HTTP_Connector.
// Connect.
// Report status.
// * Accept shell escape character.
char buf[BUFSIZ];
ACE_DEBUG ((LM_DEBUG, "* "));
while (ACE_OS::fgets (buf, sizeof (buf), stdin) != 0)
{
char *s = buf;
// get rid of trailing '\n'
int len = ACE_OS::strlen (s);
if (len > 0 && s[len - 1] == '\n')
s[len - 1] = 0;
while (ACE_OS::ace_isspace (*s))
s++;
if (*s == '!')
{
do
s++;
while (ACE_OS::ace_isspace (*s));
// Shell command.
if (ACE_OS::system (ACE_TEXT_CHAR_TO_TCHAR (s)) == -1)
ACE_ERROR ((LM_ERROR, ACE_TEXT (" ! Error executing: %C\n"), s));
}
else if (ACE_OS::strncmp (s, "http://", 7) == 0)
{
// URL
HTTP_Connector connector;
connector.connect (s);
}
else
ACE_ERROR ((LM_ERROR, ACE_TEXT (" ? I don't understand: %C\n"), s));
ACE_ERROR ((LM_ERROR, ACE_TEXT ("* ")));
}
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("\nBye!\n")));
return 0;
}
|