#include <paramproc.h>
Inheritance diagram for Param:
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 |
Definition at line 76 of file paramproc.h.
|
Definition at line 79 of file paramproc.h.
|
|
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:
|
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 } |
|
Definition at line 94 of file paramproc.h.
00094 {}; |
|
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; } |
|
Definition at line 151 of file paramproc.cxx. References abkfatal. Referenced by DoubleParam::found(), and DoubleParam::operator double().
|
|
Definition at line 136 of file paramproc.cxx. References abkfatal. Referenced by IntParam::operator int().
|
|
Definition at line 159 of file paramproc.cxx. References abkfatal. Referenced by StringParam::found(), and StringParam::operator const char *().
|
|
Definition at line 143 of file paramproc.cxx. References _pt, _u, abkfatal, found(), and UNSIGNED. Referenced by UnsignedParam::found(), and UnsignedParam::operator unsigned().
|
Here is the call graph for this function:
|
Definition at line 130 of file paramproc.cxx. References abkfatal.
|
|
Definition at line 83 of file paramproc.h. Referenced by Param(). |
|
Definition at line 87 of file paramproc.h. Referenced by Param(). |
|
Definition at line 85 of file paramproc.h. Referenced by Param(). |
|
Definition at line 90 of file paramproc.h. Referenced by Param(). |
|
Definition at line 84 of file paramproc.h. Referenced by Param(). |
|
Definition at line 89 of file paramproc.h. Referenced by getUnsigned(), and Param(). |
|
Definition at line 88 of file paramproc.h. Referenced by Param(). |
|
Definition at line 86 of file paramproc.h. Referenced by getUnsigned(), and Param(). |