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
|
// $Id: Options.cpp 91670 2010-09-08 18:02:26Z johnnyw $
#include "ace/Get_Opt.h"
#include "ace/ARGV.h"
#include "Blob.h"
#include "Blob_Handler.h"
#include "Options.h"
Options *Options::instance_ = 0;
Options *
Options::instance (void)
{
if (Options::instance_ == 0)
Options::instance_ = new Options;
return Options::instance_;
}
void
Options::parse_args (int argc, ACE_TCHAR *argv[])
{
ACE_Get_Opt get_opt (argc, argv, ACE_TEXT ("rwh:p:f:l:o:d"));
int c;
while ((c = get_opt ()) != -1)
switch (c)
{
case 'd':
this->debug_ = 1;
break;
case 'r':
this->operation_ = 'r';
break;
case 'w':
this->operation_ = 'w';
break;
case 'h':
this->hostname_ = get_opt.opt_arg ();
break;
case 'p':
this->port_ = ACE_OS::atoi (get_opt.opt_arg ());
break;
case 'f':
this->filename_ = get_opt.opt_arg ();
break;
case 'l':
this->length_ = ACE_OS::atoi (get_opt.opt_arg ());
break;
case 'o':
this->offset_ = ACE_OS::atoi (get_opt.opt_arg ());
break;
// Usage fallthrough.
default:
ACE_DEBUG ((LM_DEBUG, "%s -h hostname -f filename -[r/w] [-p port] [-l length] [-o offset] [-d]\n", argv[0]));
ACE_OS::exit (1);
}
if (this->hostname_ == 0 || this->filename_ == 0)
{
ACE_DEBUG ((LM_DEBUG,
"%s -h hostname -f filename -[r/w] [-p port] [-l length] [-o offset] [-d]\n",
argv[0]));
ACE_OS::exit (1);
}
}
Options::Options (void)
: hostname_ (0),
port_ (ACE_DEFAULT_HTTP_SERVER_PORT),
filename_ (0),
length_ (0),
offset_ (0),
operation_ ('r'),
debug_ (0)
{
}
|