Main Page | Namespace List | Class Hierarchy | Compound List | File List | Namespace Members | Compound Members | File Members

Param Class Reference

* Includes from STL for min/max/abs/bool/true/false/etc */ More...

#include <paramproc.h>

Inheritance diagram for Param:

Inheritance graph
[legend]
Collaboration diagram for Param:

Collaboration graph
[legend]
List of all members.

Public Types

enum  Type {
  NOPARAM, BOOL, INT, UNSIGNED,
  DOUBLE, STRING
}

Public Member Functions

 Param (const char *keyy, Type part, int argc, const char *const argv[])
 Param (Type part, int argc, const char *const argv[])
 ~Param ()
bool found () const
bool on () const
int getInt () const
unsigned getUnsigned () const
double getDouble () const
const char * getString () const

Private Attributes

bool _b
bool _on
int _i
unsigned _u
double _d
const char * _s
Type _pt
const char * _key

Detailed Description

* Includes from STL for min/max/abs/bool/true/false/etc */

Definition at line 76 of file paramproc.h.


Member Enumeration Documentation

enum Param::Type
 

Enumeration values:
NOPARAM 
BOOL 
INT 
UNSIGNED 
DOUBLE 
STRING 

Definition at line 79 of file paramproc.h.


Constructor & Destructor Documentation

Param::Param const char *  keyy,
Type  part,
int  argc,
const char *const  argv[]
 

Definition at line 79 of file paramproc.cxx.

References _b, _d, _i, _key, _on, _pt, _s, _u, _uninitialized, abkfatal, BOOL, DOUBLE, found(), INT, NOPARAM, STRING, and UNSIGNED.

00080 : _b(false), _on(false), _i(-1), _u(unsigned(-1)), _d(-1.23456), 
00081   _s(_uninitialized), _pt(pt), _key(key)
00082 {
00083   abkfatal(strlen(_key)>0," Zero length key for command line parameter");
00084   
00085   int n=0;
00086   if (_pt==NOPARAM)
00087   {
00088      if (argc<2)  _b=true; 
00089      else _b=false;
00090      return;
00091   }
00092   while ( ++n < argc && ! found())
00093   {
00094      if (argv[n][0]=='-' || argv[n][0]=='+')
00095      {
00096          const char * start=argv[n]+1;
00097          if (argv[n][0]=='-')
00098             {
00099                 if (argv[n][1]=='-') start++;
00100             }
00101          else
00102             _on=true;  
00103 
00104          if (strcasecmp(start,_key)==0)
00105          {
00106               _b=true;
00107               if (n+1 < argc)
00108               {
00109                  char tmp[80];
00110                  strncpy(tmp,argv[n+1],80);
00111                  switch (_pt)
00112                  {
00113                     case BOOL     : break;
00114                     case INT      : _i=atoi(argv[n+1]); break;
00115                     case UNSIGNED : _u=strtoul(argv[n+1],(char**)NULL,10);
00116                                                         break;
00117                     case DOUBLE   : _d=atof(argv[n+1]); break;
00118                     case STRING   : _s=argv[n+1];       break;
00119                     default : abkfatal(0," Unknown command line parameter");
00120                  }
00121               }
00122           }
00123       }
00124   }
00125 }

Here is the call graph for this function:

Param::Param Type  part,
int  argc,
const char *const  argv[]
 

Definition at line 68 of file paramproc.cxx.

References _b, _uninitialized, abkfatal, and NOPARAM.

00069 : _b(false), _on(false), _i(INT_MAX), _u(unsigned(-1)), _d(-1.29384756657), 
00070   _s(_uninitialized), _pt(pt), _key("")
00071 {
00072   abkfatal(pt==NOPARAM," This constructor can only work with Param:NOPARAM\n");
00073   (void)argv; // please compiler 
00074    
00075   _b=(argc<2?true:false);
00076   return;
00077 } 

Param::~Param  )  [inline]
 

Definition at line 94 of file paramproc.h.

00094 {};


Member Function Documentation

bool Param::found  )  const
 

Reimplemented in NoParams, BoolParam, UnsignedParam, IntParam, DoubleParam, and StringParam.

Definition at line 127 of file paramproc.cxx.

Referenced by StringParam::found(), DoubleParam::found(), IntParam::found(), UnsignedParam::found(), BoolParam::found(), NoParams::found(), getUnsigned(), BoolParam::operator bool(), NoParams::operator bool(), and Param().

00128 { return _b; }

double Param::getDouble  )  const
 

Definition at line 151 of file paramproc.cxx.

References abkfatal.

Referenced by DoubleParam::found(), and DoubleParam::operator double().

00152 { 
00153    abkfatal(_pt==DOUBLE," Parameter is not DOUBLE "); 
00154    abkfatal(found(),
00155       " DOUBLE parameter not found: you need to check for this first\n");
00156    return _d;
00157 }

int Param::getInt  )  const
 

Definition at line 136 of file paramproc.cxx.

References abkfatal.

Referenced by IntParam::operator int().

00137 { 
00138    abkfatal(_pt==INT," Parameter is not INT ");
00139    abkfatal(found()," Parameter not found: you need to check for this first\n");
00140    return _i;
00141 }

const char * Param::getString  )  const
 

Definition at line 159 of file paramproc.cxx.

References abkfatal.

Referenced by StringParam::found(), and StringParam::operator const char *().

00160 { 
00161    abkfatal(_pt==STRING," Parameter is not STRING"); 
00162    abkfatal(found(),
00163       " STRING parameter not found: you need to check for this first\n");
00164    return _s;
00165 }

unsigned Param::getUnsigned  )  const
 

Definition at line 143 of file paramproc.cxx.

References _pt, _u, abkfatal, found(), and UNSIGNED.

Referenced by UnsignedParam::found(), and UnsignedParam::operator unsigned().

00144 { 
00145    abkfatal(_pt==UNSIGNED," Parameter is not UNSIGNED "); 
00146    abkfatal(found(),
00147       " UNSIGNED Parameter not found: you need to check for this first\n");
00148    return _u;
00149 }

Here is the call graph for this function:

bool Param::on  )  const
 

Definition at line 130 of file paramproc.cxx.

References abkfatal.

00131 { 
00132   abkfatal(found()," Parameter not found: you need to check for this first\n");
00133   return _on;
00134 }


Member Data Documentation

bool Param::_b [private]
 

Definition at line 83 of file paramproc.h.

Referenced by Param().

double Param::_d [private]
 

Definition at line 87 of file paramproc.h.

Referenced by Param().

int Param::_i [private]
 

Definition at line 85 of file paramproc.h.

Referenced by Param().

const char* Param::_key [private]
 

Definition at line 90 of file paramproc.h.

Referenced by Param().

bool Param::_on [private]
 

Definition at line 84 of file paramproc.h.

Referenced by Param().

Type Param::_pt [private]
 

Definition at line 89 of file paramproc.h.

Referenced by getUnsigned(), and Param().

const char* Param::_s [private]
 

Definition at line 88 of file paramproc.h.

Referenced by Param().

unsigned Param::_u [private]
 

Definition at line 86 of file paramproc.h.

Referenced by getUnsigned(), and Param().


The documentation for this class was generated from the following files:
Generated on Mon Apr 25 01:15:01 2005 for Parquete by doxygen 1.3.2