[2615] | 1 | #include "sopnamsp.h"
|
---|
[2446] | 2 | #include "commander.h"
|
---|
| 3 | #include <stdio.h>
|
---|
| 4 | #include <stdlib.h>
|
---|
[2518] | 5 | #include <unistd.h>
|
---|
[2446] | 6 | #include <ctype.h>
|
---|
| 7 | #include <math.h>
|
---|
[2943] | 8 | #include <signal.h>
|
---|
[2446] | 9 |
|
---|
| 10 | #include "strutil.h"
|
---|
| 11 | #include "strutilxx.h"
|
---|
[2512] | 12 | #include "cexpre.h"
|
---|
| 13 | #include "rpneval.h"
|
---|
[2446] | 14 | #include "srandgen.h"
|
---|
[2671] | 15 | #include "zthread.h"
|
---|
[2446] | 16 |
|
---|
| 17 |
|
---|
[2483] | 18 | namespace SOPHYA {
|
---|
[2518] | 19 |
|
---|
[3577] | 20 | //--------------------------------------------------
|
---|
| 21 | // Pour ecrire une valeur double sous forme de string
|
---|
| 22 | // sans perte de precision, et si possible de maniere
|
---|
[3581] | 23 | // lisible (%g, sinon format adapte jusqu'a %.17e)
|
---|
| 24 | static char cval_strbuff_[80];
|
---|
| 25 | ////1er essai binaire: char * cval_dble2str(double v)
|
---|
| 26 | ////1er essai binaire: {
|
---|
| 27 | ////1er essai binaire: char* str1 = cval_strbuff_;
|
---|
| 28 | ////1er essai binaire: sprintf(str1,"%g",v);
|
---|
| 29 | ////1er essai binaire: char* str2 = cval_strbuff_+32;
|
---|
| 30 | ////1er essai binaire: sprintf(str2,"%.17e",v);
|
---|
| 31 | ////1er essai binaire: double x1 = atof(str1);
|
---|
| 32 | ////1er essai binaire: double x2 = atof(str2);
|
---|
| 33 | ////1er essai binaire: double fx = fabs(v);
|
---|
| 34 | ////1er essai binaire: if (fx>0. && fabs(x2-x1)/fx>1e-12) return str2;
|
---|
| 35 | ////1er essai binaire: else return str1;
|
---|
| 36 | ////1er essai binaire: }
|
---|
[3577] | 37 | char * cval_dble2str(double v)
|
---|
| 38 | {
|
---|
[3581] | 39 | char* strgood = cval_strbuff_; sprintf(strgood,"%g",v);
|
---|
| 40 | char* strfull = cval_strbuff_+32; sprintf(strfull,"%.17e",v);
|
---|
| 41 | char* strform = cval_strbuff_+64;
|
---|
| 42 | double x1 = atof(strfull), fx = fabs(x1);
|
---|
| 43 | if(fx>0.) {
|
---|
| 44 | for(int i=7;i<=17;i+=2) { // increment de 2 pour aller + vite
|
---|
| 45 | double x2 = atof(strgood);
|
---|
| 46 | if(fabs(x2-x1)/fx<1.e-16) break;
|
---|
| 47 | sprintf(strform,"%%.%de",i);
|
---|
| 48 | sprintf(strgood,strform,v);
|
---|
| 49 | }
|
---|
| 50 | }
|
---|
| 51 | return strgood;
|
---|
[3577] | 52 | }
|
---|
| 53 | //--------------------------------------------------
|
---|
| 54 |
|
---|
[2518] | 55 | // Differents code de retour specifiques
|
---|
| 56 | #define CMD_RETURN_RC 99900
|
---|
| 57 | #define CMD_BREAK_RC 99990
|
---|
| 58 | #define CMD_BREAKEXE_RC 99999
|
---|
| 59 |
|
---|
[2446] | 60 | // ------------------------------------------------------------
|
---|
| 61 | // Bloc de commandes (Foreach, ...)
|
---|
| 62 | // Classe CommanderBloc
|
---|
| 63 | // ------------------------------------------------------------
|
---|
| 64 | /*!
|
---|
[2598] | 65 | \internal
|
---|
[2446] | 66 | \class SOPHYA::CommanderBloc
|
---|
| 67 | \ingroup SysTools
|
---|
[2598] | 68 | Class for internal use by class Commander to handle loops
|
---|
[2446] | 69 | */
|
---|
| 70 | class CommanderBloc {
|
---|
| 71 | public:
|
---|
[2483] | 72 | enum BType { BT_None, BT_ForeachList, BT_ForeachInt, BT_ForeachFloat,
|
---|
| 73 | BT_ForeachLineInFile };
|
---|
[2446] | 74 |
|
---|
| 75 | CommanderBloc(Commander* piac, CommanderBloc* par, string& kw, vector<string>& args);
|
---|
| 76 | ~CommanderBloc();
|
---|
| 77 | inline CommanderBloc* Parent() { return(parent); }
|
---|
| 78 | inline bool CheckOK() { return blkok; }
|
---|
| 79 | inline void AddLine(string& line)
|
---|
| 80 | { lines.push_back(line); bloclineid.push_back(lines.size()); }
|
---|
| 81 | void AddLine(string& line, string& kw);
|
---|
| 82 | inline void AddBloc(CommanderBloc* blk)
|
---|
| 83 | { blocs.push_back(blk); bloclineid.push_back(-blocs.size()); }
|
---|
[2518] | 84 |
|
---|
| 85 | // Execution complete du bloc (boucle)
|
---|
| 86 | int Execute();
|
---|
| 87 | // Execution pour un element de bloc
|
---|
| 88 | int ExecuteOnce(string& lvv);
|
---|
| 89 |
|
---|
[2446] | 90 | inline int& TestLevel() { return testlevel; }
|
---|
| 91 | inline int& LoopLevel() { return looplevel; }
|
---|
| 92 | inline bool CheckBloc()
|
---|
| 93 | { return ((testlevel == 0)&&(looplevel == 0)&&(!scrdef)); }
|
---|
| 94 |
|
---|
| 95 | protected:
|
---|
| 96 | Commander* _commander;
|
---|
| 97 | CommanderBloc* parent;
|
---|
| 98 | bool blkok; // true -> block OK
|
---|
| 99 | BType typ; // foreach , integer loop, float loop, test
|
---|
| 100 | string varname;
|
---|
[2483] | 101 | string filename; // forinfile bloc
|
---|
[2446] | 102 | vector<string> strlist;
|
---|
| 103 | vector<string> lines;
|
---|
| 104 | vector<CommanderBloc *> blocs;
|
---|
| 105 | vector<int> bloclineid;
|
---|
| 106 | int i1,i2,di;
|
---|
| 107 | float f1,f2,df;
|
---|
| 108 | int testlevel; // niveau d'imbrication des if
|
---|
| 109 | int looplevel; // niveau d'imbrication des for/foreach
|
---|
| 110 | bool scrdef; // true -> commande defscript ds for/foreach
|
---|
| 111 | };
|
---|
| 112 |
|
---|
| 113 | /* --Methode-- */
|
---|
| 114 | CommanderBloc::CommanderBloc(Commander* piac, CommanderBloc* par, string& kw, vector<string>& args)
|
---|
| 115 | {
|
---|
| 116 | _commander = piac;
|
---|
| 117 | parent = par;
|
---|
| 118 | blkok = false;
|
---|
| 119 | typ = BT_None;
|
---|
| 120 | i1 = 0; i2 = -1; di = 1;
|
---|
| 121 | f1 = 0.; f2 = -1.; df = 1.;
|
---|
| 122 | testlevel = looplevel = 0;
|
---|
| 123 | scrdef = false;
|
---|
| 124 |
|
---|
| 125 | if ((args.size() < 2) || !isalpha((int)args[0][0]) ) return;
|
---|
[2483] | 126 | if ((kw != "foreach") && (kw != "for") && (kw != "forinfile")) return;
|
---|
[2518] | 127 | if (!piac->CheckVarName(args[0])) return;
|
---|
| 128 | varname = args[0];
|
---|
| 129 |
|
---|
[2446] | 130 | //if (isalpha((int)args[1][0]) ) { This is a foreach bloc with string list
|
---|
[2483] | 131 | if (kw == "forinfile") {
|
---|
| 132 | filename = args[1];
|
---|
[2518] | 133 | typ = BT_ForeachLineInFile;
|
---|
[2483] | 134 | blkok = true;
|
---|
| 135 | }
|
---|
| 136 | else if (kw == "foreach" ) { // This is a foreach bloc with string list
|
---|
[2518] | 137 | if ( (args[1] == "(") && (args[args.size()-1] == ")") ) {
|
---|
| 138 | // foreach varname ( w1 w2 w3 ... )
|
---|
[3581] | 139 | for(unsigned int kk=2; kk<args.size()-1; kk++) strlist.push_back(args[kk]);
|
---|
[2518] | 140 | }
|
---|
| 141 | else {
|
---|
| 142 | // foreach varname WordVectorName
|
---|
| 143 | if (!piac->GetVar(args[1], strlist)) return;
|
---|
| 144 | }
|
---|
| 145 | if (strlist.size() < 1) return;
|
---|
[2446] | 146 | typ = BT_ForeachList;
|
---|
| 147 | blkok = true;
|
---|
[2483] | 148 | }
|
---|
[2446] | 149 | else { // This is an integer or float loop
|
---|
| 150 | size_t l = args[1].length();
|
---|
| 151 | size_t p = args[1].find(':');
|
---|
| 152 | size_t pp = args[1].find('.');
|
---|
| 153 | bool fl = (pp < l) ? true : false; // Float loop or integer loop
|
---|
| 154 | if (p >= l) return; // Syntaxe error
|
---|
| 155 | string a1 = args[1].substr(0, p);
|
---|
| 156 | string aa = args[1].substr(p+1);
|
---|
| 157 | p = aa.find(':');
|
---|
| 158 | string a2, a3;
|
---|
| 159 | bool hasa3 = false;
|
---|
| 160 | if (p < aa.length() ) {
|
---|
| 161 | a2 = aa.substr(0,p);
|
---|
| 162 | a3 = aa.substr(p+1);
|
---|
| 163 | hasa3 = true;
|
---|
| 164 | }
|
---|
| 165 | else a2 = aa;
|
---|
| 166 | if (fl) {
|
---|
| 167 | typ = BT_ForeachFloat;
|
---|
| 168 | blkok = true;
|
---|
| 169 | f1 = atof(a1.c_str());
|
---|
| 170 | f2 = atof(a2.c_str());
|
---|
| 171 | if (hasa3) df = atof(a3.c_str());
|
---|
| 172 | else df = 1.;
|
---|
| 173 | }
|
---|
| 174 | else {
|
---|
| 175 | typ = BT_ForeachInt;
|
---|
| 176 | blkok = true;
|
---|
| 177 | i1 = atoi(a1.c_str());
|
---|
| 178 | i2 = atoi(a2.c_str());
|
---|
| 179 | if (hasa3) di = atoi(a3.c_str());
|
---|
| 180 | else di = 1;
|
---|
| 181 | }
|
---|
| 182 | }
|
---|
| 183 | }
|
---|
| 184 |
|
---|
| 185 | /* --Methode-- */
|
---|
| 186 | CommanderBloc::~CommanderBloc()
|
---|
| 187 | {
|
---|
[3581] | 188 | for(unsigned int k=0; k<blocs.size(); k++) delete blocs[k];
|
---|
[2446] | 189 | }
|
---|
| 190 |
|
---|
| 191 | /* --Methode-- */
|
---|
| 192 | void CommanderBloc::AddLine(string& line, string& kw)
|
---|
| 193 | {
|
---|
| 194 | AddLine(line);
|
---|
| 195 | if (kw == "if") testlevel++;
|
---|
| 196 | else if (kw == "endif") testlevel--;
|
---|
| 197 | else if ((kw == "for") || (kw == "foreach")) looplevel++;
|
---|
| 198 | else if (kw == "end") looplevel--;
|
---|
| 199 | else if (kw == "defscript") scrdef = true;
|
---|
| 200 | }
|
---|
| 201 |
|
---|
| 202 | /* --Methode-- */
|
---|
[2518] | 203 | int CommanderBloc::Execute()
|
---|
[2446] | 204 | {
|
---|
| 205 | int k=0;
|
---|
| 206 | char buff[32];
|
---|
| 207 | int rcc = 0;
|
---|
| 208 |
|
---|
| 209 | int mxloop = _commander->GetMaxLoopLimit();
|
---|
| 210 |
|
---|
[2483] | 211 | if (typ == BT_ForeachLineInFile) { // foreach line in file loop
|
---|
[2518] | 212 | ifstream is(filename.c_str());
|
---|
| 213 | string line;
|
---|
| 214 | while (!is.eof()) {
|
---|
| 215 | rcc = 0;
|
---|
[2796] | 216 | line = "";
|
---|
| 217 | getline(is,line);
|
---|
| 218 | if (is.good() || is.eof()) {
|
---|
[2518] | 219 | rcc = ExecuteOnce(line);
|
---|
[2796] | 220 | if (rcc == CMD_BREAKEXE_RC) return rcc;
|
---|
| 221 | else if (rcc == CMD_BREAK_RC) break;
|
---|
[2518] | 222 | }
|
---|
| 223 | }
|
---|
[2483] | 224 | }
|
---|
[2518] | 225 | else if (typ == BT_ForeachList) { // foreach string loop
|
---|
[3581] | 226 | for(unsigned int k=0; k<strlist.size(); k++) {
|
---|
[2518] | 227 | rcc = ExecuteOnce(strlist[k]);
|
---|
| 228 | if (rcc == CMD_BREAKEXE_RC) return rcc;
|
---|
| 229 | else if (rcc == CMD_BREAK_RC) break;
|
---|
| 230 | }
|
---|
| 231 | }
|
---|
| 232 | else if (typ == BT_ForeachInt) { // Integer loop
|
---|
[2446] | 233 | for(int i=i1; i<i2; i+=di) {
|
---|
| 234 | k++;
|
---|
| 235 | if ((mxloop>0) && (k > mxloop)) {
|
---|
| 236 | cout << ">>> Maximum CommanderBloc loop limit ("<< mxloop << ") -> break " << endl;
|
---|
| 237 | break;
|
---|
| 238 | }
|
---|
[2518] | 239 | sprintf(buff, "%d", i);
|
---|
| 240 | string lvv = buff;
|
---|
| 241 | rcc = ExecuteOnce(lvv);
|
---|
| 242 | if (rcc == CMD_BREAKEXE_RC) return rcc;
|
---|
| 243 | else if (rcc == CMD_BREAK_RC) break;
|
---|
[2446] | 244 | }
|
---|
[2518] | 245 | }
|
---|
| 246 | else if (typ == BT_ForeachFloat) { // float loop
|
---|
| 247 | for(double f=f1; f<f2; f+=df) {
|
---|
[2446] | 248 | k++;
|
---|
| 249 | if ((mxloop>0) && (k > mxloop)) {
|
---|
| 250 | cout << ">>> Maximum CommanderBloc loop limit ("<< mxloop << ") -> break " << endl;
|
---|
| 251 | break;
|
---|
| 252 | }
|
---|
[3577] | 253 | string lvv = cval_dble2str(f);
|
---|
[2518] | 254 | rcc = ExecuteOnce(lvv);
|
---|
| 255 | if (rcc == CMD_BREAKEXE_RC) return rcc;
|
---|
| 256 | else if (rcc == CMD_BREAK_RC) break;
|
---|
[2446] | 257 | }
|
---|
[2518] | 258 | }
|
---|
| 259 | return(rcc);
|
---|
| 260 | }
|
---|
[2446] | 261 |
|
---|
[2518] | 262 | /* --Methode-- */
|
---|
| 263 | int CommanderBloc::ExecuteOnce(string& lvv)
|
---|
| 264 | {
|
---|
[3581] | 265 | unsigned int kj=0;
|
---|
[2518] | 266 | int kk=0;
|
---|
| 267 | int rcc = 0;
|
---|
| 268 | _commander->SetVar(varname, lvv);
|
---|
| 269 | for(kj=0; kj<bloclineid.size(); kj++) {
|
---|
| 270 | rcc = 0;
|
---|
| 271 | kk = bloclineid[kj];
|
---|
| 272 | if (kk > 0)
|
---|
| 273 | rcc = _commander->Interpret(lines[kk-1]);
|
---|
| 274 | else
|
---|
| 275 | rcc = blocs[-kk-1]->Execute();
|
---|
| 276 | if (rcc == CMD_BREAKEXE_RC) return (rcc);
|
---|
| 277 | if (rcc == CMD_BREAK_RC) break;
|
---|
| 278 | }
|
---|
| 279 | return rcc;
|
---|
[2446] | 280 | }
|
---|
| 281 |
|
---|
| 282 | // ---------------------------------------------------------------
|
---|
| 283 | // Classe CommanderScript
|
---|
| 284 | // Definition et execution d'un script de Commander
|
---|
| 285 | // script : Une liste de commande Commander - Lors de l'execution,
|
---|
| 286 | // les variables-argument $# $0 $1 sont definies.
|
---|
| 287 | // ---------------------------------------------------------------
|
---|
| 288 |
|
---|
| 289 | /*!
|
---|
[2598] | 290 | \internal
|
---|
[2446] | 291 | \class SOPHYA::CommanderScript
|
---|
| 292 | \ingroup SysTools
|
---|
[2598] | 293 | Class for internal use by class Commander to handle functions
|
---|
[2446] | 294 | or scripts
|
---|
| 295 | */
|
---|
| 296 |
|
---|
| 297 | class CommanderScript {
|
---|
| 298 | public:
|
---|
| 299 | CommanderScript(Commander* piac, string const& name, string const& comm);
|
---|
| 300 | virtual ~CommanderScript();
|
---|
| 301 |
|
---|
| 302 | void AddLine(string& line, string& kw);
|
---|
| 303 | virtual int Execute(vector<string>& args);
|
---|
| 304 |
|
---|
| 305 | inline string& Name() { return mName; }
|
---|
| 306 | inline string& Comment() { return mComm; }
|
---|
| 307 | inline int& TestLevel() { return testlevel; }
|
---|
| 308 | inline int& LoopLevel() { return looplevel; }
|
---|
| 309 | inline bool CheckScript()
|
---|
| 310 | { return ((testlevel == 0)&&(looplevel == 0)&&(!scrdef)&&fgok); }
|
---|
| 311 |
|
---|
| 312 | protected:
|
---|
| 313 | Commander* _commander;
|
---|
| 314 | string mName;
|
---|
| 315 | string mComm;
|
---|
| 316 | vector<string> lines;
|
---|
| 317 | int testlevel; // niveau d'imbrication des if
|
---|
| 318 | int looplevel; // niveau d'imbrication des for/foreach
|
---|
| 319 | bool scrdef; // true -> commande defscript ds for/foreach
|
---|
| 320 | bool fgok; // Script name OK
|
---|
| 321 |
|
---|
| 322 | };
|
---|
| 323 |
|
---|
| 324 | /* --Methode-- */
|
---|
| 325 | CommanderScript::CommanderScript(Commander* piac, string const& name,
|
---|
| 326 | string const& comm)
|
---|
| 327 | {
|
---|
| 328 | _commander = piac;
|
---|
| 329 | testlevel = looplevel = 0;
|
---|
| 330 | scrdef = false;
|
---|
| 331 | mName = name;
|
---|
| 332 | if (!isalpha(name[0])) fgok = false;
|
---|
| 333 | else fgok = true;
|
---|
| 334 | mComm = comm;
|
---|
| 335 | }
|
---|
| 336 |
|
---|
| 337 | /* --Methode-- */
|
---|
| 338 | CommanderScript::~CommanderScript()
|
---|
| 339 | {
|
---|
| 340 | }
|
---|
| 341 |
|
---|
| 342 | /* --Methode-- */
|
---|
| 343 | void CommanderScript::AddLine(string& line, string& kw)
|
---|
| 344 | {
|
---|
| 345 | if (kw == "if") testlevel++;
|
---|
| 346 | else if (kw == "endif") testlevel--;
|
---|
| 347 | else if ((kw == "for") || (kw == "foreach")) looplevel++;
|
---|
| 348 | else if (kw == "end") looplevel--;
|
---|
| 349 | else if (kw == "defscript") scrdef = true;
|
---|
| 350 | lines.push_back(line);
|
---|
| 351 | }
|
---|
| 352 |
|
---|
| 353 | /* --Methode-- */
|
---|
| 354 | int CommanderScript::Execute(vector<string>& args)
|
---|
| 355 | {
|
---|
[3581] | 356 | int rcc=-2;
|
---|
[2446] | 357 | if (!CheckScript()) return(-1);
|
---|
| 358 | cout << " CommanderScript::Execute() - Executing script " << Name() << endl;
|
---|
[3581] | 359 | for(unsigned int k=0; k<lines.size(); k++) {
|
---|
[2518] | 360 | rcc = _commander->Interpret(lines[k]);
|
---|
| 361 | if ( (rcc == CMD_BREAKEXE_RC) || (rcc == CMD_RETURN_RC) ) break;
|
---|
[2446] | 362 | }
|
---|
[2518] | 363 | return(rcc);
|
---|
[2446] | 364 | }
|
---|
| 365 |
|
---|
[2671] | 366 |
|
---|
[2446] | 367 | // ------------------------------------------------------------
|
---|
[2671] | 368 | // Classe CommandExeThr
|
---|
| 369 | // ------------------------------------------------------------
|
---|
| 370 | /*!
|
---|
| 371 | \internal
|
---|
| 372 | \class SOPHYA::CommandExeThr
|
---|
| 373 | \ingroup SysTools
|
---|
| 374 | Class for internal use by class Commander for command execution in separate threads.
|
---|
[2943] | 375 | The command execution is carried in method run() which has its own exception handling bloc.
|
---|
[2671] | 376 | */
|
---|
| 377 | class CommandExeThr : public ZThread {
|
---|
| 378 | public:
|
---|
| 379 | CommandExeThr(uint_8 id, CmdExecutor * cmdex, string& keyw,
|
---|
| 380 | vector<string>& args, string& toks);
|
---|
| 381 | virtual void run();
|
---|
| 382 | inline uint_8 Id() { return _id; }
|
---|
| 383 | inline bool IfDone() { return _fgdone; }
|
---|
| 384 | inline string& Tokens() { return _toks; }
|
---|
| 385 | inline string& Keyword() { return _keyw; }
|
---|
| 386 | protected:
|
---|
| 387 | uint_8 _id;
|
---|
| 388 | CmdExecutor * _cmdex;
|
---|
| 389 | string _keyw, _toks;
|
---|
| 390 | vector<string> _args;
|
---|
| 391 | bool _fgdone;
|
---|
| 392 | };
|
---|
| 393 |
|
---|
| 394 | /* --Methode-- */
|
---|
| 395 | CommandExeThr::CommandExeThr(uint_8 id, CmdExecutor * cmdex, string& keyw,
|
---|
| 396 | vector<string>& args, string& toks)
|
---|
| 397 | {
|
---|
| 398 | _id = id;
|
---|
| 399 | _cmdex = cmdex;
|
---|
| 400 | _keyw = keyw;
|
---|
[2956] | 401 | _args = args;
|
---|
| 402 | _args.erase(_args.end()-1);
|
---|
[2671] | 403 | _toks = toks;
|
---|
| 404 | for(size_t k=_toks.size()-1; k>0; k--)
|
---|
| 405 | if (_toks[k] == '&') { _toks[k] = ' '; break; }
|
---|
| 406 | _fgdone = false;
|
---|
| 407 | }
|
---|
| 408 |
|
---|
| 409 | /* --Methode-- */
|
---|
| 410 | void CommandExeThr::run()
|
---|
| 411 | {
|
---|
[2943] | 412 | int rc = 0;
|
---|
| 413 | try {
|
---|
| 414 | rc = _cmdex->Execute(_keyw, _args, _toks);
|
---|
| 415 | }
|
---|
| 416 | catch (PThrowable& exc) {
|
---|
| 417 | cout << "CommandExeThr::run() Catched Exception Msg()= "
|
---|
| 418 | << exc.Msg() << endl;
|
---|
| 419 | rc = -77;
|
---|
| 420 | }
|
---|
| 421 | catch (std::exception& sex) {
|
---|
| 422 | cout << "CommandExeThr::run() Catched std::exception what()= "
|
---|
| 423 | << sex.what() << endl;
|
---|
| 424 | rc = -78;
|
---|
| 425 | }
|
---|
| 426 | catch (...) {
|
---|
| 427 | cout << "CommandExeThr::run() Catched unknown (...) exception " << endl;
|
---|
| 428 | rc = -79;
|
---|
| 429 | }
|
---|
[2671] | 430 | _fgdone = true;
|
---|
| 431 | setRC(rc);
|
---|
| 432 | }
|
---|
| 433 |
|
---|
| 434 | // ------------------------------------------------------------
|
---|
[2446] | 435 | // Classe Commander
|
---|
| 436 | // ------------------------------------------------------------
|
---|
| 437 | typedef void (* DlModuleInitEndFunction) ();
|
---|
| 438 |
|
---|
| 439 | /*!
|
---|
[2598] | 440 | \class Commander
|
---|
[2446] | 441 | \ingroup SysTools
|
---|
[2598] | 442 | \brief Simple command interpreter
|
---|
| 443 |
|
---|
| 444 | This Simple command interpreter with c-shell like syntax
|
---|
| 445 | can be used to add scripting capabilities
|
---|
| 446 | to applications.
|
---|
| 447 |
|
---|
[2671] | 448 | Although the interpreter has many limitations compared to
|
---|
[2598] | 449 | c-shell, or Tcl , it provides some interesting possibilities:
|
---|
| 450 |
|
---|
| 451 | - Extended arithmetic operations (c-like and RPN)
|
---|
| 452 | - Simple and vector variables
|
---|
| 453 | - Script definition
|
---|
[2943] | 454 | - Command execution in separate threads
|
---|
[2598] | 455 | - Dynamic Load
|
---|
| 456 |
|
---|
| 457 | \sa CmdExecutor CExpressionEvaluator RPNExpressionEvaluator
|
---|
| 458 |
|
---|
| 459 | Usage example:
|
---|
| 460 | \code
|
---|
| 461 | #include "commander.h"
|
---|
| 462 | ...
|
---|
| 463 | Commander cmd;
|
---|
| 464 | char* ss[3] = {"foreach f ( AA bbb CCCC ddddd )", "echo $f" , "end"};
|
---|
| 465 | for(int k=0; k<3; k++) {
|
---|
| 466 | string line = ss[k];
|
---|
| 467 | cmd.Interpret(line);
|
---|
| 468 | }
|
---|
| 469 | \endcode
|
---|
[2446] | 470 | */
|
---|
| 471 |
|
---|
| 472 | #define _MAGENTA_ 1
|
---|
| 473 |
|
---|
| 474 | static Commander* cur_commander = NULL;
|
---|
| 475 | /* --Methode-- */
|
---|
[2955] | 476 | /*!
|
---|
| 477 | \brief Constructor. Initializes variable list and copies \c history.pic to \c hisold.pic
|
---|
| 478 | if \b fgsigstop == true , calls ZThread::ActivateExitOnSignal()
|
---|
| 479 | */
|
---|
| 480 | Commander::Commander(bool fgsigzt)
|
---|
[2446] | 481 | {
|
---|
| 482 | system("cp history.pic hisold.pic");
|
---|
| 483 | hist.open("history.pic");
|
---|
| 484 | histon = true;
|
---|
| 485 | trace = false; timing = false;
|
---|
| 486 | gltimer = NULL;
|
---|
| 487 | felevel = 0;
|
---|
| 488 |
|
---|
| 489 | mulinecmd = "";
|
---|
| 490 | mulinefg = false;
|
---|
| 491 | spromptmul = "Cmd> ";
|
---|
| 492 | SetCurrentPrompt(spromptmul);
|
---|
[2483] | 493 | SetDefaultPrompt(spromptmul);
|
---|
[2446] | 494 | curscript = NULL;
|
---|
| 495 |
|
---|
[2483] | 496 | _xstatus = 0;
|
---|
| 497 | _retstr = "";
|
---|
| 498 |
|
---|
[2518] | 499 | // Controle du flot d'execution
|
---|
| 500 | fgexebrk = false;
|
---|
| 501 |
|
---|
[2446] | 502 | CmdBlks.push(NULL);
|
---|
| 503 | list<char> xtx;
|
---|
| 504 | TestsStack.push(xtx);
|
---|
| 505 | curtestresult = true;
|
---|
| 506 |
|
---|
[2671] | 507 | // Pour la numerotation et l'identification des threads
|
---|
| 508 | ThrId = 0;
|
---|
| 509 |
|
---|
[2473] | 510 | // Numero de help-groupe courant - Le premier groupe ajoute aura un gid = 1
|
---|
| 511 | // gid = 0 n'existe pas : c'est le groupe de toutes les commandes
|
---|
| 512 | cmdgrpid = 0;
|
---|
[2446] | 513 |
|
---|
[2466] | 514 | string grp = "Commander";
|
---|
| 515 | string gdesc = "Basic (generic) interpreter (class SOPHYA::Commander) builtin commands";
|
---|
| 516 | AddHelpGroup(grp, gdesc);
|
---|
| 517 |
|
---|
[2446] | 518 | string kw = "Commander";
|
---|
| 519 | string usage;
|
---|
| 520 | usage = ">>> (Commander) Interpreter's keywords : \n";
|
---|
[2671] | 521 | usage += " > set varname string # To set a variable, $varname \n";
|
---|
[2446] | 522 | usage += " > unset varname # clear variable definition \n";
|
---|
[2518] | 523 | usage += " > rpneval varname RPNExpression # Reverse Polish Notation evaluation \n";
|
---|
| 524 | usage += " > varname = ArithmeticExpression # C-like Expression evaluation \n";
|
---|
| 525 | usage += " > varname = 'String' # Set variable vname \n";
|
---|
| 526 | usage += " > var2words varname wordvarname [sep] # to break varname into words \n";
|
---|
| 527 | usage += " > echo string # output string \n";
|
---|
| 528 | usage += " > echo2file filename string # Append the string to the specified file \n";
|
---|
| 529 | usage += " > alias name string # define a command alias \n";
|
---|
| 530 | usage += " > foreach varname ( string-list ) # Loop \n";
|
---|
| 531 | usage += " > for varname i1:i2[:di] # Integer loop \n";
|
---|
[2446] | 532 | usage += " > for varname f1:f2[:df] # Float loop \n";
|
---|
[2518] | 533 | usage += " > forinfile varname FileName # Loop over lines in file \n";
|
---|
[2446] | 534 | usage += " > end # end loops \n";
|
---|
| 535 | usage += " > if ( test ) then # Conditional test : a == != < > <= >= b \n";
|
---|
| 536 | usage += " > else # Conditional \n";
|
---|
| 537 | usage += " > endif # End of conditional if bloc \n";
|
---|
| 538 | usage += " > break # Delete (clears) all test and loop blocs \n";
|
---|
| 539 | usage += " > return # Stops command execution from a file \n";
|
---|
| 540 | usage += " > defscript endscript # Command script definition \n";
|
---|
| 541 | usage += " > listvars # List of variable names and values \n";
|
---|
| 542 | usage += " > listalias # List of alias names and values \n";
|
---|
| 543 | usage += " > listcommands # List of all known commands \n";
|
---|
| 544 | usage += " > listscripts # List of all known scripts \n";
|
---|
| 545 | usage += " > clearcript # Clear a script definition \n";
|
---|
[2671] | 546 | usage += " > thrlist # List of command execution threads (& as the last character) \n";
|
---|
| 547 | usage += " > clearthrlist # Removes finished threads from the list \n";
|
---|
[2955] | 548 | usage += " > killthr Id # Try to stop a given thread (ThrId=id) by sending SIGUSR1 \n";
|
---|
| 549 | usage += " > cancelthr Id # Try to cancel a given thread (ThrId=id) \n";
|
---|
[2671] | 550 | usage += " > waitthr # Waits until all active threads have finished (join()) \n";
|
---|
[2446] | 551 | usage += " > exec filename # Execute commands from file \n";
|
---|
[2518] | 552 | usage += " > help <command_name> # <command_name> usage info \n";
|
---|
| 553 | usage += " > sleep nsec # sleep nsec seconds \n";
|
---|
| 554 | usage += " > readstdin varname # reads a line from stdin into $varname \n";
|
---|
[2446] | 555 | usage += " > timingon timingoff traceon traceoff \n";
|
---|
| 556 | RegisterHelp(kw, usage, grp);
|
---|
| 557 |
|
---|
| 558 | kw = "RPNEvaluator";
|
---|
| 559 | usage = " Reverse Polish Notation (HP calculator like) expression evaluation \n";
|
---|
| 560 | usage += " >> Stack: \n";
|
---|
| 561 | usage += " ... (4) (3) z=(2) y=(1) x=(0)=Stack.Top() \n";
|
---|
| 562 | usage += " >> Examples: \n";
|
---|
| 563 | usage += " - sin(PI/6): pi 6 / sin \n";
|
---|
| 564 | usage += " - 1*2*...*5: 1 2 3 4 5 product \n";
|
---|
| 565 | usage += " - x=x+y: x = $x $y * \n";
|
---|
| 566 | usage += " >>> Stack operations : \n";
|
---|
| 567 | usage += " print x<>y pop push (duplicate x) \n";
|
---|
| 568 | usage += " >>> Constants (Cst pushed to stack): \n";
|
---|
| 569 | usage += " pi e \n";
|
---|
| 570 | usage += " >>> Arithmetic operators (x,y) --> x@y \n";
|
---|
| 571 | usage += " + - * / % ( (int)y % (int)x )\n";
|
---|
| 572 | usage += " >>> F(X): x --> F(x) \n";
|
---|
| 573 | usage += " chs sqrt sq log log10 exp \n";
|
---|
| 574 | usage += " fabs floor ceil \n";
|
---|
| 575 | usage += " cos sin tan acos asin atan deg2rad rad2deg \n";
|
---|
| 576 | usage += " >>> F(X,Y): (x,y) --> F(x,y) \n";
|
---|
| 577 | usage += " pow atan2 \n";
|
---|
| 578 | usage += " >>> F(): random number generators \n";
|
---|
| 579 | usage += " rand (flat 0..1) norand (normal/gaussian) \n";
|
---|
| 580 | usage += " >>> Stack sum/product/mean/sigma/sigma^2 \n";
|
---|
| 581 | usage += " sum product mean sigma sigma2 sigmean (y->sigma x->mean) \n";
|
---|
| 582 | RegisterHelp(kw, usage, grp);
|
---|
| 583 |
|
---|
| 584 | kw = "autoiniranf";
|
---|
| 585 | usage = "> Automatic random number generator initialisation\n";
|
---|
| 586 | usage += " by Auto_Ini_Ranf(int lp) \n";
|
---|
| 587 | usage += " Usage: autoiniranf";
|
---|
| 588 | RegisterCommand(kw, usage, NULL, grp);
|
---|
| 589 |
|
---|
[2671] | 590 | kw = "CExpEvaluator";
|
---|
| 591 | usage = "> Evaluation of C-like expression (used in V = C-like-Expression) \n";
|
---|
| 592 | usage += " >>> Arithmetic operators, parenthesis ( + - * / ) \n";
|
---|
| 593 | usage += " >>> Functions : sqrt fabs floor hypot \n";
|
---|
| 594 | usage += " ... exp log log10 pow ; sinh cosh tanh \n";
|
---|
| 595 | usage += " ... sin cos tan asin acos atan atan2 \n";
|
---|
| 596 | usage += " ... rand01() randpm1() gaurand() \n";
|
---|
| 597 | usage += " >>> Constants : Pi = M_PI E = M_E \n";
|
---|
| 598 | usage += " Example: x = 5.*(2.+sin(0.3*Pi))";
|
---|
| 599 | RegisterCommand(kw, usage, NULL, grp);
|
---|
| 600 |
|
---|
[2446] | 601 | kw = "shell execute";
|
---|
| 602 | usage = "> shell command_string # Execute shell command\n";
|
---|
| 603 | usage += "> cshell command_string # Execute cshell command\n";
|
---|
| 604 | usage += "---Examples:\n";
|
---|
| 605 | usage += " > shell ls\n";
|
---|
| 606 | usage += " > cshell echo '$LD_LIBRARY_PATH'; map2cl -h; ls\n";
|
---|
| 607 | usage += " > shell myfile.csh [arg1] [arg2] [...]\n";
|
---|
| 608 | usage += " (where the first line of \"myfile.csh\" is \"#!/bin/csh\")\n";
|
---|
| 609 | RegisterCommand(kw, usage, NULL, grp);
|
---|
| 610 |
|
---|
| 611 |
|
---|
| 612 | AddInterpreter(this);
|
---|
| 613 | curcmdi = this;
|
---|
[2955] | 614 | if (fgsigzt) ZThread::ActivateExitOnSignal(SIGUSR1);
|
---|
[2446] | 615 | }
|
---|
| 616 |
|
---|
| 617 | /* --Methode-- */
|
---|
| 618 | Commander::~Commander()
|
---|
| 619 | {
|
---|
| 620 | hist.close();
|
---|
| 621 | if (gltimer) { delete gltimer; gltimer = NULL; }
|
---|
| 622 | Modmap::iterator it;
|
---|
| 623 | for(it = modmap.begin(); it != modmap.end(); it++) {
|
---|
| 624 | string name = (*it).first + "_end";
|
---|
| 625 | DlModuleInitEndFunction fend = (*it).second->GetFunction(name);
|
---|
| 626 | if (fend) fend();
|
---|
| 627 | delete (*it).second;
|
---|
| 628 | }
|
---|
| 629 |
|
---|
| 630 | for(ScriptList::iterator sit = mScripts.begin();
|
---|
| 631 | sit != mScripts.end(); sit++) delete (*sit).second;
|
---|
| 632 |
|
---|
| 633 | if (cur_commander == this) cur_commander = NULL;
|
---|
| 634 | }
|
---|
| 635 |
|
---|
| 636 | /* --Methode-- */
|
---|
| 637 | Commander* Commander::GetInterpreter()
|
---|
| 638 | {
|
---|
| 639 | return(cur_commander);
|
---|
| 640 | }
|
---|
| 641 |
|
---|
| 642 | /* --Methode-- */
|
---|
[2598] | 643 | //! Returns the string \c Commander as the interpreter's name.
|
---|
[2446] | 644 | string Commander::Name()
|
---|
| 645 | {
|
---|
| 646 | return("Commander");
|
---|
| 647 | }
|
---|
| 648 |
|
---|
| 649 | /* --Methode-- */
|
---|
[2598] | 650 | //! Add the \b grp help group with description \b desc.
|
---|
[2466] | 651 | void Commander::AddHelpGroup(string& grp, string& desc)
|
---|
[2446] | 652 | {
|
---|
[2466] | 653 | int gid;
|
---|
| 654 | CheckHelpGrp(grp, gid, desc);
|
---|
| 655 | }
|
---|
| 656 |
|
---|
| 657 | /* --Methode-- */
|
---|
[2598] | 658 | /*!
|
---|
| 659 | \brief Register a command executor associated with a given keyword.
|
---|
| 660 | \param keyw : keyword identifying the command
|
---|
| 661 | \param usage : the command help and usage information
|
---|
| 662 | \param ce : CmdExecutor pointer for this a command. The same object can be registered
|
---|
| 663 | multiple time for different commands.
|
---|
| 664 | \param grp : The help group corresponding to this command.
|
---|
| 665 | */
|
---|
[2466] | 666 | void Commander::RegisterCommand(string& keyw, string& usage, CmdExecutor * ce, string& grp)
|
---|
| 667 | {
|
---|
[2446] | 668 | if (!ce) {
|
---|
| 669 | RegisterHelp(keyw, usage, grp);
|
---|
| 670 | return;
|
---|
| 671 | }
|
---|
[2466] | 672 | int gid;
|
---|
| 673 | CheckHelpGrp(grp,gid);
|
---|
[2446] | 674 | cmdex cme;
|
---|
| 675 | cme.group = gid;
|
---|
| 676 | cme.us = usage;
|
---|
| 677 | cme.cex = ce;
|
---|
| 678 | cmdexmap[keyw] = cme;
|
---|
| 679 | }
|
---|
| 680 |
|
---|
| 681 | /* --Methode-- */
|
---|
[2598] | 682 | /*!
|
---|
| 683 | \brief Register a help text.
|
---|
| 684 | \param keyw : help keyword
|
---|
| 685 | \param usage : help text
|
---|
| 686 | \param grp : help group
|
---|
| 687 | */
|
---|
[2446] | 688 | void Commander::RegisterHelp(string& keyw, string& usage, string& grp)
|
---|
| 689 | {
|
---|
[2466] | 690 | int gid;
|
---|
| 691 | CheckHelpGrp(grp,gid);
|
---|
[2446] | 692 | cmdex cme;
|
---|
| 693 | cme.group = gid;
|
---|
| 694 | cme.us = usage;
|
---|
| 695 | cme.cex = NULL;
|
---|
| 696 | helpexmap[keyw] = cme;
|
---|
| 697 | }
|
---|
| 698 |
|
---|
| 699 | /* --Methode-- */
|
---|
[2466] | 700 | bool Commander::CheckHelpGrp(string& grp, int& gid, string& desc)
|
---|
[2446] | 701 | {
|
---|
[2466] | 702 | gid = 0;
|
---|
[2446] | 703 | CmdHGroup::iterator it = cmdhgrp.find(grp);
|
---|
| 704 | if (it == cmdhgrp.end()) {
|
---|
[2466] | 705 | cmdgrpid++; gid = cmdgrpid;
|
---|
| 706 | hgrpst hgs; hgs.gid = gid; hgs.desc = desc;
|
---|
| 707 | cmdhgrp[grp] = hgs;
|
---|
| 708 | return true;
|
---|
[2446] | 709 | }
|
---|
[2466] | 710 | else {
|
---|
| 711 | if (desc.length() > 0) (*it).second.desc = desc;
|
---|
| 712 | gid = (*it).second.gid;
|
---|
| 713 | return false;
|
---|
[2446] | 714 | }
|
---|
[2466] | 715 | }
|
---|
[2446] | 716 |
|
---|
| 717 |
|
---|
| 718 | /* --Methode-- */
|
---|
[2598] | 719 | /*!
|
---|
| 720 | \brief Dynamic loader for modules
|
---|
| 721 |
|
---|
| 722 | A module is a shared library extending the application functionalities.
|
---|
| 723 | Typically, a module adds new commands to the interpreter. Once loaded,
|
---|
| 724 | the module is activated (initialized) by calling a function with the
|
---|
| 725 | name \b modulename_init . This function should be declared extern C
|
---|
| 726 | to avoid C++ name mangling. A cleanup function \b modulename_end
|
---|
| 727 | is called by the Commander destructor.
|
---|
| 728 |
|
---|
| 729 | \param fnameso : Shared library name containing the module functions
|
---|
| 730 | and classes.
|
---|
| 731 | \param name : Module name. This string is used to form module
|
---|
| 732 | initializer and cleanup function name \c name_init \c name_end
|
---|
| 733 | */
|
---|
[2446] | 734 | void Commander::LoadModule(string& fnameso, string& name)
|
---|
| 735 | {
|
---|
| 736 | PDynLinkMgr * dynlink = new PDynLinkMgr(fnameso, false);
|
---|
| 737 | if (dynlink == NULL) {
|
---|
| 738 | cerr << "Commander/LoadModule_Error: Pb opening SO " << fnameso << endl;
|
---|
| 739 | return;
|
---|
| 740 | }
|
---|
| 741 | string fname = name + "_init";
|
---|
| 742 | DlModuleInitEndFunction finit = dynlink->GetFunction(fname);
|
---|
| 743 | if (!finit) {
|
---|
| 744 | cerr << "Commander/LoadModule_Error: Pb linking " << fname << endl;
|
---|
| 745 | return;
|
---|
| 746 | }
|
---|
| 747 | cout << "Commander/LoadModule_Info: Initialisation module" << name
|
---|
| 748 | << " " << fname << "() ..." << endl;
|
---|
| 749 | finit();
|
---|
| 750 | modmap[name] = dynlink;
|
---|
| 751 | return;
|
---|
| 752 | }
|
---|
| 753 |
|
---|
| 754 | /* --Methode-- */
|
---|
[2598] | 755 | //! Declare a new interpreter
|
---|
[2446] | 756 | void Commander::AddInterpreter(CmdInterpreter * cl)
|
---|
| 757 | {
|
---|
| 758 | if (!cl) return;
|
---|
| 759 | interpmap[cl->Name()] = cl;}
|
---|
| 760 |
|
---|
| 761 | /* --Methode-- */
|
---|
[2943] | 762 | //! Select an interpreter by its name as the current interpreter.
|
---|
[2446] | 763 | void Commander::SelInterpreter(string& name)
|
---|
| 764 | {
|
---|
| 765 | InterpMap::iterator it = interpmap.find(name);
|
---|
| 766 | if (it == interpmap.end()) return;
|
---|
| 767 | curcmdi = (*it).second;
|
---|
| 768 | }
|
---|
| 769 |
|
---|
| 770 |
|
---|
| 771 |
|
---|
| 772 | /* Fonction */
|
---|
| 773 | static string GetStringFrStdin(Commander* piac)
|
---|
| 774 | {
|
---|
| 775 | char buff[128];
|
---|
| 776 | fgets(buff, 128, stdin);
|
---|
| 777 | buff[127] = '\0';
|
---|
| 778 | return((string)buff);
|
---|
| 779 | }
|
---|
| 780 |
|
---|
| 781 | /* --Methode-- */
|
---|
[2598] | 782 | /*!
|
---|
[2671] | 783 | \brief Method which has to be invoked to interpret a given command line or string.
|
---|
[2598] | 784 | */
|
---|
[2446] | 785 | int Commander::Interpret(string& s)
|
---|
| 786 | {
|
---|
| 787 | int rc = 0;
|
---|
| 788 | ScriptList::iterator sit;
|
---|
| 789 |
|
---|
[2671] | 790 | // Si le flag d'arret d'execution a ete positionne on returne avec le code
|
---|
| 791 | // de BREAKEXECUTION
|
---|
| 792 | if (fgexebrk) {
|
---|
| 793 | cout << " ===> Commander::Interpret() - STOP Execution (CMD_BREAKEXE_RC)" << endl;
|
---|
| 794 | fgexebrk = false; return CMD_BREAKEXE_RC;
|
---|
| 795 | }
|
---|
| 796 |
|
---|
[2446] | 797 | // On saute de commandes vides
|
---|
| 798 | size_t l;
|
---|
| 799 | l = s.length();
|
---|
| 800 | if (!mulinefg && (l < 1)) return(0);
|
---|
| 801 |
|
---|
| 802 | // On enregistre les commandes
|
---|
| 803 | if (histon) hist << s << endl;
|
---|
| 804 |
|
---|
| 805 | if (s[0] == '#') return(0); // si c'est un commentaire
|
---|
| 806 |
|
---|
| 807 | // Logique de gestion des lignes suite
|
---|
| 808 | // un \ en derniere position indique la presence d'une ligne suite
|
---|
| 809 | size_t lnb = s.find_last_not_of(' ');
|
---|
[3383] | 810 | if (lnb >= l) return(0); // il n'y a que des blancs
|
---|
[2446] | 811 | if (s[lnb] == '\\' ) { // Lignes suite ...
|
---|
| 812 | mulinecmd += s.substr(0,lnb);
|
---|
| 813 | if (!mulinefg) {
|
---|
| 814 | spromptmul = GetCurrentPrompt();
|
---|
| 815 | SetCurrentPrompt("...? ");
|
---|
| 816 | mulinefg = true;
|
---|
| 817 | }
|
---|
| 818 | return(0);
|
---|
| 819 | }
|
---|
| 820 |
|
---|
| 821 | if (mulinefg) { // Il y avait des lignes suite
|
---|
| 822 | s = mulinecmd + s;
|
---|
| 823 | l = s.length();
|
---|
| 824 | mulinecmd = "";
|
---|
| 825 | mulinefg = false;
|
---|
| 826 | SetCurrentPrompt(spromptmul);
|
---|
| 827 | }
|
---|
| 828 |
|
---|
| 829 | // Removing leading blanks
|
---|
| 830 | size_t p,q;
|
---|
| 831 |
|
---|
| 832 | // On enleve le dernier caractere, si celui-ci est \n
|
---|
| 833 | if (s[l-1] == '\n') s[l-1] = '\0';
|
---|
| 834 | p=s.find_first_not_of(" \t");
|
---|
| 835 | if (p < l) s = s.substr(p);
|
---|
| 836 | // >>>> Substitution d'alias (1er mot)
|
---|
| 837 | CmdStrList::iterator it;
|
---|
| 838 | p = 0;
|
---|
| 839 | q = s.find_first_of(" \t");
|
---|
| 840 | l = s.length();
|
---|
| 841 | string w1 = (q < l) ? s.substr(p,q-p) : s.substr(p);
|
---|
| 842 | it = mAliases.find(w1);
|
---|
| 843 | if (it != mAliases.end()) {
|
---|
| 844 | s = (q < l) ? ((*it).second + s.substr(q)) : (*it).second ;
|
---|
| 845 | l = s.length();
|
---|
| 846 | p=s.find_first_not_of(" \t");
|
---|
| 847 | if (p < l) s = s.substr(p);
|
---|
| 848 | p = 0;
|
---|
| 849 | q = s.find_first_of(" ");
|
---|
| 850 | }
|
---|
| 851 |
|
---|
| 852 | // >>>> Separating keyword
|
---|
| 853 | string toks,kw;
|
---|
| 854 | if (q < l)
|
---|
| 855 | { kw = s.substr(p,q-p); toks = s.substr(q, l-q); }
|
---|
| 856 | else { kw = s.substr(p,l-p); toks = ""; }
|
---|
| 857 |
|
---|
| 858 | // les mot-cle end else endif doivent etre le seul mot de la ligne
|
---|
| 859 | if ( (kw == "end") || (kw == "else") || (kw == "endif") || (kw == "endscript") ) {
|
---|
| 860 | size_t ltk = toks.length();
|
---|
| 861 | if (toks.find_first_not_of(" \t") < ltk) {
|
---|
| 862 | cerr << "Commander::Interpret()/syntax error near end else endif endscript \n"
|
---|
| 863 | << "line: " << s << endl;
|
---|
[2483] | 864 | _xstatus = 91;
|
---|
| 865 | return(91);
|
---|
[2446] | 866 | }
|
---|
| 867 | }
|
---|
| 868 |
|
---|
| 869 | // On verifie si on est en train de definir un script
|
---|
| 870 | if (curscript) {
|
---|
| 871 | if (kw == "endscript") {
|
---|
| 872 | if (curscript->CheckScript()) {
|
---|
| 873 | sit = mScripts.find(curscript->Name());
|
---|
| 874 | if (sit != mScripts.end()) {
|
---|
| 875 | cout << "Commander::Interpret() replacing script "
|
---|
| 876 | << curscript->Name() << endl;
|
---|
| 877 | CommanderScript* scr = mScripts[curscript->Name()];
|
---|
| 878 | mScripts.erase(sit);
|
---|
| 879 | delete scr;
|
---|
| 880 | }
|
---|
| 881 | cout << "Commander::Interpret() Script " << curscript->Name()
|
---|
| 882 | << " defined successfully" << endl;
|
---|
| 883 | mScripts[curscript->Name()] = curscript;
|
---|
| 884 | SetCurrentPrompt("Cmd> ");
|
---|
| 885 | curscript = NULL;
|
---|
[2483] | 886 | _xstatus = 0;
|
---|
[2446] | 887 | return(0);
|
---|
| 888 | }
|
---|
| 889 | else {
|
---|
| 890 | cout << "Commander::Interpret() Error in Script " << curscript->Name()
|
---|
| 891 | << " definition " << endl;
|
---|
| 892 | SetCurrentPrompt("Cmd> ");
|
---|
| 893 | curscript = NULL;
|
---|
[2483] | 894 | _xstatus = 92;
|
---|
| 895 | return(92);
|
---|
[2446] | 896 | }
|
---|
| 897 | }
|
---|
| 898 | else curscript->AddLine(s, kw);
|
---|
[2483] | 899 | _xstatus = 0;
|
---|
[2446] | 900 | return(0);
|
---|
| 901 | }
|
---|
| 902 | // On verifie si nous sommes dans un bloc (for , foreach)
|
---|
| 903 | if (CmdBlks.top() != NULL) { // On est dans un bloc
|
---|
[2671] | 904 | if ( (kw == "for") || (kw == "foreach") || (kw == "forinfile") ) felevel++;
|
---|
[2446] | 905 | else if (kw == "end") felevel--;
|
---|
[2856] | 906 |
|
---|
| 907 | int rcbex = 0;
|
---|
[2446] | 908 | if (felevel == 0) { // Il faut executer le bloc
|
---|
| 909 | CommanderBloc* curb = CmdBlks.top();
|
---|
| 910 | CmdBlks.top() = curb->Parent();
|
---|
| 911 | SetCurrentPrompt("Cmd> ");
|
---|
| 912 | if (!curb->CheckBloc()) {
|
---|
| 913 | cerr << "Commander::Interpret()/syntax error - unbalenced if ... endif"
|
---|
[2671] | 914 | << " within for/foreach/forinfile bloc ! " << endl;
|
---|
[2446] | 915 | delete curb;
|
---|
[2483] | 916 | _xstatus = 93;
|
---|
| 917 | return(93);
|
---|
[2446] | 918 | }
|
---|
| 919 | // cout << " *DBG* Executing bloc " << endl;
|
---|
| 920 | bool ohv = histon;
|
---|
| 921 | histon = false;
|
---|
| 922 | if (curtestresult) {
|
---|
| 923 | // We push also CommanderBloc and testresult on the stack
|
---|
| 924 | CmdBlks.push(NULL);
|
---|
| 925 | list<char> xtx;
|
---|
| 926 | TestsStack.push(xtx);
|
---|
[2856] | 927 | rcbex = curb->Execute();
|
---|
[2446] | 928 | // And CommanderBloc and TestResult from the corresponding stacks
|
---|
| 929 | PopStack(false);
|
---|
| 930 | }
|
---|
[2483] | 931 | SetCurrentPrompt(defprompt);
|
---|
[2446] | 932 | delete curb;
|
---|
| 933 | histon = ohv;
|
---|
| 934 | }
|
---|
| 935 | else CmdBlks.top()->AddLine(s, kw);
|
---|
[2856] | 936 | _xstatus = rcbex;
|
---|
| 937 | return(rcbex);
|
---|
[2446] | 938 | }
|
---|
| 939 | else if (kw == "end") {
|
---|
[2671] | 940 | cerr << "Commander::Interpret()/syntax error - end outside for/foreach/forinfile bloc \n"
|
---|
[2446] | 941 | << "line: " << s << endl;
|
---|
[2483] | 942 | _xstatus = 94;
|
---|
| 943 | return(94);
|
---|
[2446] | 944 | }
|
---|
| 945 |
|
---|
| 946 | // Sommes-nous dans un bloc de test if then else
|
---|
| 947 | if (TestsStack.top().size() > 0) { // Nous sommes ds un bloc if
|
---|
| 948 | if (kw == "else") {
|
---|
| 949 | if ((*tresit) & 2) {
|
---|
| 950 | cerr << "Commander::Interpret()/syntax error - multiple else in if bloc \n"
|
---|
| 951 | << "line: " << s << endl;
|
---|
[2483] | 952 | _xstatus = 95;
|
---|
| 953 | return(95);
|
---|
[2446] | 954 | }
|
---|
| 955 | else {
|
---|
| 956 | const char * npr = ((*tresit)&1) ? "else-F> " : "else-T> ";
|
---|
| 957 | if ((*tresit)&1) curtestresult = false;
|
---|
| 958 | SetCurrentPrompt(npr);
|
---|
| 959 | (*tresit) |= 2;
|
---|
[2483] | 960 | _xstatus = 0;
|
---|
[2446] | 961 | return(0);
|
---|
| 962 | }
|
---|
| 963 | }
|
---|
| 964 | else if (kw == "endif") {
|
---|
| 965 | list<char>::iterator dbit = tresit;
|
---|
| 966 | tresit--;
|
---|
| 967 | TestsStack.top().erase(dbit);
|
---|
| 968 | const char * npr = "Cmd> ";
|
---|
| 969 | if (TestsStack.top().size() > 1) {
|
---|
| 970 | curtestresult = true;
|
---|
| 971 | list<char>::iterator it;
|
---|
| 972 | for(it=TestsStack.top().begin(); it!=TestsStack.top().end(); it++) {
|
---|
| 973 | // Si on n'est pas ds le else et le if est faux
|
---|
| 974 | if ( !((*it)&2) && !((*it)&1) ) curtestresult = false;
|
---|
| 975 | // Si on est ds else et le if etait vrai !
|
---|
| 976 | if ( ((*it)&2) && ((*it)&1) ) curtestresult = false;
|
---|
| 977 | if (!curtestresult) break;
|
---|
| 978 | }
|
---|
| 979 |
|
---|
| 980 | if (!((*tresit)&2))
|
---|
| 981 | npr = ((*tresit)&1) ? "if-T> " : "if-F> ";
|
---|
| 982 | else
|
---|
| 983 | npr = ((*tresit)&1) ? "else-F> " : "else-T> ";
|
---|
| 984 | }
|
---|
| 985 | else curtestresult = true;
|
---|
| 986 | SetCurrentPrompt(npr);
|
---|
[2483] | 987 | _xstatus = 0;
|
---|
[2446] | 988 | return(0);
|
---|
| 989 | }
|
---|
| 990 | }
|
---|
| 991 | else if ((kw == "else") || (kw == "endif")) {
|
---|
| 992 | cerr << "Commander::Interpret()/syntax error - else,endif outside if bloc \n"
|
---|
| 993 | << "line: " << s << endl;
|
---|
[2483] | 994 | _xstatus = 91;
|
---|
| 995 | return(91);
|
---|
[2446] | 996 | }
|
---|
| 997 |
|
---|
| 998 | bool fgcont = true;
|
---|
| 999 | if (TestsStack.top().size() > 0) { // Resultat de if ou else
|
---|
| 1000 | list<char>::iterator it;
|
---|
| 1001 | for(it=TestsStack.top().begin(); it!=TestsStack.top().end(); it++) {
|
---|
| 1002 | // Si on n'est pas ds le else et le if est faux
|
---|
| 1003 | if ( !((*it)&2) && !((*it)&1) ) fgcont = false;
|
---|
| 1004 | // Si on est ds else et le if etait vrai !
|
---|
| 1005 | if ( ((*it)&2) && ((*it)&1) ) fgcont = false;
|
---|
| 1006 | if (!fgcont) break;
|
---|
| 1007 | }
|
---|
| 1008 | }
|
---|
| 1009 |
|
---|
[2483] | 1010 | if ((!fgcont) && (kw != "if")) {
|
---|
| 1011 | _xstatus = 0;
|
---|
| 1012 | return(0);
|
---|
| 1013 | }
|
---|
[2446] | 1014 |
|
---|
| 1015 |
|
---|
| 1016 | // Les mots cles break et return peuvent de sortir de boucles/scripts/execfile
|
---|
[2518] | 1017 | if (kw == "break") return CMD_BREAK_RC;
|
---|
[2483] | 1018 | else if (kw == "return") {
|
---|
| 1019 | _retstr = toks;
|
---|
[2518] | 1020 | return CMD_RETURN_RC;
|
---|
[2483] | 1021 | }
|
---|
[2446] | 1022 |
|
---|
| 1023 | // Nous ne sommes donc pas dans un bloc .... Substitution de variables
|
---|
| 1024 | string s2;
|
---|
| 1025 | int rcs ;
|
---|
| 1026 |
|
---|
| 1027 | rcs = SubstituteVars(s, s2);
|
---|
| 1028 | if (rcs) {
|
---|
| 1029 | cerr << "Commander::Interpret()/syntax error in SubstituteVars() \n"
|
---|
| 1030 | << "line: " << s << endl;
|
---|
[2483] | 1031 | _xstatus = 99;
|
---|
| 1032 | return(99);
|
---|
[2446] | 1033 | }
|
---|
| 1034 | // >>>> Separating keyword and tokens
|
---|
| 1035 | vector<string> tokens;
|
---|
[2518] | 1036 | vector<bool> qottoks;
|
---|
[2446] | 1037 | /* decoupage en mots */
|
---|
[2518] | 1038 | LineToWords(s2, kw, tokens, qottoks, toks, true);
|
---|
[2446] | 1039 |
|
---|
| 1040 | // Si c'est un for/foreach, on cree un nouveau bloc
|
---|
[2483] | 1041 | if ((kw == "foreach") || (kw == "for") || (kw == "forinfile") ) {
|
---|
[2446] | 1042 | // cout << " *DBG* We got a foreach... " << endl;
|
---|
| 1043 | CommanderBloc* bloc = new CommanderBloc(this, CmdBlks.top(), kw, tokens);
|
---|
| 1044 | if (!bloc->CheckOK()) {
|
---|
| 1045 | cerr << "Commander::Interpret() for/foreach syntax Error ! " << endl;
|
---|
| 1046 | delete bloc;
|
---|
[2483] | 1047 | _xstatus = 91;
|
---|
| 1048 | return(91);
|
---|
[2446] | 1049 | }
|
---|
| 1050 | felevel++;
|
---|
| 1051 | if (CmdBlks.top()) CmdBlks.top()->AddBloc(bloc);
|
---|
| 1052 | else SetCurrentPrompt("for...> ");
|
---|
| 1053 | CmdBlks.top() = bloc;
|
---|
| 1054 | // cout << " *DBG* New Bloc created ... " << endl;
|
---|
| 1055 | return(0);
|
---|
| 1056 | }
|
---|
| 1057 | else if (kw == "if") { // Un test if
|
---|
| 1058 | bool restst = true;
|
---|
| 1059 | int rct = EvaluateTest(tokens, s, restst);
|
---|
| 1060 | if (rct) {
|
---|
| 1061 | cerr << "Commander::Interpret() if syntax Error ! " << "line: " << s << endl;
|
---|
[2483] | 1062 | _xstatus = 91;
|
---|
| 1063 | return(91);
|
---|
[2446] | 1064 | }
|
---|
| 1065 | char res_tst = (restst) ? 1 : 0;
|
---|
| 1066 | TestsStack.top().push_back(res_tst);
|
---|
| 1067 | if (TestsStack.top().size() == 1) tresit = TestsStack.top().begin();
|
---|
| 1068 | else tresit++;
|
---|
| 1069 | const char * npr = (restst) ? "if-T> " : "if-F> ";
|
---|
| 1070 | SetCurrentPrompt(npr);
|
---|
| 1071 | }
|
---|
| 1072 | else if ((tokens.size() > 0) && (tokens[0] == "=")) {
|
---|
[2512] | 1073 | // x = Expression
|
---|
[2518] | 1074 | if (qottoks[1]) { // decodage sous forme de chaine
|
---|
| 1075 | SetVariable(kw, tokens[1]);
|
---|
[2512] | 1076 | }
|
---|
[2518] | 1077 | else {
|
---|
| 1078 | try {
|
---|
| 1079 | double res = 0.;
|
---|
| 1080 | if (tokens.size() > 2) {
|
---|
| 1081 | string sex = tokens[1];
|
---|
[3581] | 1082 | for(unsigned int js=2; js<tokens.size(); js++) sex += tokens[js];
|
---|
[2518] | 1083 | CExpressionEvaluator cex(sex);
|
---|
| 1084 | res = cex.Value();
|
---|
| 1085 | }
|
---|
| 1086 | else {
|
---|
| 1087 | CExpressionEvaluator cex(tokens[1]);
|
---|
| 1088 | res = cex.Value();
|
---|
| 1089 | }
|
---|
[3577] | 1090 | string vv = cval_dble2str(res);
|
---|
[2518] | 1091 | SetVariable(kw, vv);
|
---|
| 1092 | }
|
---|
| 1093 | catch (CExprException& cexerr) {
|
---|
| 1094 | cerr << "Commander::Interpret() evaluation Error : \n " << "line: " << s
|
---|
| 1095 | << " \n Msg=" << cexerr.Msg() << endl;
|
---|
| 1096 | _xstatus = 98;
|
---|
| 1097 | return(98);
|
---|
| 1098 | }
|
---|
[2446] | 1099 | }
|
---|
| 1100 | }
|
---|
| 1101 | else if (kw == "defscript") { // definition de script
|
---|
| 1102 | if (tokens.size() > 0) {
|
---|
| 1103 | if (tokens.size() < 2) tokens.push_back("");
|
---|
| 1104 | curscript = new CommanderScript(this, tokens[0], tokens[1]);
|
---|
| 1105 | SetCurrentPrompt("Script...> ");
|
---|
| 1106 | return(0);
|
---|
| 1107 | }
|
---|
| 1108 | else {
|
---|
| 1109 | cerr << "Commander::Interpret() No script name in defscript" << "line: " << s << endl;
|
---|
[2483] | 1110 | _xstatus = 91;
|
---|
| 1111 | return(91);
|
---|
[2446] | 1112 | }
|
---|
| 1113 | }
|
---|
| 1114 | else {
|
---|
| 1115 | // Si c'est le nom d'un script
|
---|
| 1116 | sit = mScripts.find(kw);
|
---|
| 1117 | if (sit != mScripts.end()) {
|
---|
| 1118 | bool ohv = histon;
|
---|
| 1119 | histon = false;
|
---|
| 1120 | tokens.insert(tokens.begin(), kw);
|
---|
| 1121 | PushStack(tokens);
|
---|
| 1122 | (*sit).second->Execute(tokens);
|
---|
| 1123 | PopStack(true);
|
---|
| 1124 | histon = ohv;
|
---|
| 1125 | }
|
---|
| 1126 | // Execution de commandes
|
---|
| 1127 | else rc = ExecuteCommandLine(kw, tokens, toks);
|
---|
[2483] | 1128 | _xstatus = rc;
|
---|
[2446] | 1129 | return(rc);
|
---|
| 1130 | }
|
---|
| 1131 | // cout << "Commander::Do() DBG KeyW= " << kw << " NbArgs= " << tokens.size() << endl;
|
---|
| 1132 | // for(int ii=0; ii<tokens.size(); ii++)
|
---|
| 1133 | // cout << "arg[ " << ii << " ] : " << tokens[ii] << endl;
|
---|
| 1134 |
|
---|
| 1135 | return(0);
|
---|
| 1136 | }
|
---|
| 1137 |
|
---|
[2943] | 1138 | //! Can be called asynchronously (from a separate thread) to break (halt) execution (in loops, scripts ...)
|
---|
[2671] | 1139 | void Commander::StopExecution()
|
---|
| 1140 | {
|
---|
| 1141 | fgexebrk = true;
|
---|
| 1142 | }
|
---|
[2446] | 1143 |
|
---|
[2671] | 1144 |
|
---|
[2446] | 1145 | /* --Methode-- */
|
---|
| 1146 | int Commander::LineToWords(string& line, string& kw, vector<string>& tokens,
|
---|
[2518] | 1147 | vector<bool>& qottoks, string& toks, bool uq)
|
---|
[2446] | 1148 | {
|
---|
| 1149 | if (line.length() < 1) return(0);
|
---|
| 1150 | int nw = 1;
|
---|
| 1151 | size_t p = line.find_first_not_of(" ");
|
---|
| 1152 | line = line.substr(p);
|
---|
| 1153 | p = 0;
|
---|
| 1154 | size_t q = line.find_first_of(" ");
|
---|
| 1155 | size_t l = line.length();
|
---|
| 1156 |
|
---|
| 1157 | if (q < l)
|
---|
| 1158 | { kw = line.substr(p,q-p); toks = line.substr(q, l-q); }
|
---|
| 1159 | else { kw = line.substr(p,l-p); toks = ""; }
|
---|
| 1160 |
|
---|
| 1161 | q = 0;
|
---|
| 1162 | while (q < l) {
|
---|
[2518] | 1163 | bool swq = false; // true -> chaine delimite par ' ou "
|
---|
[2446] | 1164 | p = toks.find_first_not_of(" \t",q+1); // au debut d'un token
|
---|
| 1165 | if (p>=l) break;
|
---|
| 1166 | if ( uq && ((toks[p] == '\'') || (toks[p] == '"')) ) {
|
---|
| 1167 | q = toks.find(toks[p],p+1);
|
---|
| 1168 | if (q>=l) {
|
---|
| 1169 | cerr << "Commander::LineToWords/Syntax Error - Unbalenced quotes " << toks[p] << '.' << endl;
|
---|
| 1170 | return(-1);
|
---|
| 1171 | }
|
---|
[2518] | 1172 | p++; swq = true;
|
---|
[2446] | 1173 | }
|
---|
| 1174 | else {
|
---|
| 1175 | q = toks.find_first_of(" \t",p); // la fin du token;
|
---|
| 1176 | }
|
---|
| 1177 | string token = toks.substr(p,q-p);
|
---|
[2518] | 1178 | tokens.push_back(token);
|
---|
| 1179 | qottoks.push_back(swq);
|
---|
| 1180 | nw++;
|
---|
[2446] | 1181 | }
|
---|
| 1182 |
|
---|
| 1183 | return(nw);
|
---|
| 1184 | }
|
---|
| 1185 |
|
---|
| 1186 | /* --Methode-- */
|
---|
| 1187 | int Commander::SubstituteVars(string & s, string & s2)
|
---|
| 1188 | // Variable substitution
|
---|
| 1189 | {
|
---|
| 1190 |
|
---|
| 1191 | int iarr = -1; // index d'element de tableau
|
---|
| 1192 | size_t p,q,q2,q3,l;
|
---|
[2997] | 1193 | bool fgvarapp = false; // Si true, VarApp en priorite
|
---|
[2446] | 1194 |
|
---|
| 1195 | s2="";
|
---|
| 1196 | p = 0;
|
---|
| 1197 | l = s.length();
|
---|
| 1198 | string vn, vv;
|
---|
| 1199 | while (p < l) {
|
---|
| 1200 | iarr = -1;
|
---|
[2997] | 1201 | fgvarapp = false;
|
---|
[2446] | 1202 | q = s.find('$',p);
|
---|
| 1203 | if (q > l) break;
|
---|
| 1204 | q2 = s.find('\'',p);
|
---|
| 1205 | if ((q2 < l) && (q2 < q)) { // On saute la chaine delimitee par ' '
|
---|
| 1206 | q2 = s.find('\'',q2+1);
|
---|
| 1207 | if (q2 >= l) {
|
---|
| 1208 | cerr << " Syntax error - Unbalenced quotes !!! " << endl;
|
---|
| 1209 | return(1);
|
---|
| 1210 | }
|
---|
| 1211 | s2 += s.substr(p, q2-p+1);
|
---|
| 1212 | p = q2+1; continue;
|
---|
| 1213 | }
|
---|
| 1214 | // cout << "DBG: " << s2 << " p= " << p << " q= " << q << " L= " << l << endl;
|
---|
| 1215 | if ((q>0) && (s[q-1] == '\\')) { // Escape character \$
|
---|
| 1216 | s2 += (s.substr(p,q-1-p) + '$') ; p = q+1;
|
---|
| 1217 | continue;
|
---|
| 1218 | }
|
---|
| 1219 | if (q >= l-1) {
|
---|
| 1220 | cerr << " Syntax error - line ending with $ !!! " << endl;
|
---|
| 1221 | return(2);
|
---|
| 1222 | }
|
---|
| 1223 | vn = "";
|
---|
| 1224 | if ( s[q+1] == '{' ) { // Variable in the form ${name}
|
---|
| 1225 | q2 = s.find('}',q+1);
|
---|
| 1226 | if (q2 >= l) {
|
---|
| 1227 | cerr << " Syntax error - Unbalenced brace {} !!! " << endl;
|
---|
| 1228 | return(3);
|
---|
| 1229 | }
|
---|
| 1230 | vn = s.substr(q+2,q2-q-2);
|
---|
| 1231 | q2++;
|
---|
[2997] | 1232 | fgvarapp = true;
|
---|
[2446] | 1233 | }
|
---|
| 1234 | else if ( s[q+1] == '(' ) { // Variable in the form $(name)
|
---|
| 1235 | q2 = s.find(')',q+1);
|
---|
| 1236 | if (q2 >= l) {
|
---|
| 1237 | cerr << " Syntax error - Unbalenced parenthesis () !!! " << endl;
|
---|
| 1238 | return(3);
|
---|
| 1239 | }
|
---|
| 1240 | vn = s.substr(q+2,q2-q-2);
|
---|
| 1241 | q2++;
|
---|
| 1242 | }
|
---|
| 1243 | else if ( s[q+1] == '[' ) { // Variable in the form $[varname] -> This is $$varname
|
---|
| 1244 | q2 = s.find(']',q+1);
|
---|
| 1245 | if (q2 >= l) {
|
---|
| 1246 | cerr << " Syntax error - Unbalenced brace [] !!! " << endl;
|
---|
| 1247 | return(4);
|
---|
| 1248 | }
|
---|
| 1249 | vn = s.substr(q+2,q2-q-2);
|
---|
[2483] | 1250 | if (!Var2Str(vn, vv)) return(5);
|
---|
[2446] | 1251 | vn = vv;
|
---|
| 1252 | q2++;
|
---|
| 1253 | }
|
---|
| 1254 | else {
|
---|
[2779] | 1255 | if (s[q+1] == '#' ) q3 = q+2; // Variable in the form $#varname
|
---|
| 1256 | else q3 = q+1;
|
---|
| 1257 | q2 = s.find_first_of(" .:+-*/,[](){}&|!$\"'<>^%=#@\\",q3);
|
---|
[2446] | 1258 | if (q2 > l) q2 = l;
|
---|
| 1259 | q3 = q2;
|
---|
| 1260 | vn = s.substr(q+1, q2-q-1);
|
---|
| 1261 | // Si variable de type $varname[index] : element de tableau
|
---|
| 1262 | if ((q2 < l) && (s[q2] == '[') ) {
|
---|
| 1263 | q3 = s.find_first_of("]",q2+1);
|
---|
| 1264 | string sia = s.substr(q2+1, q3-q2-1);
|
---|
| 1265 | if (sia.length() < 1) {
|
---|
| 1266 | cerr << " Syntax error - in $varname[index] : $"
|
---|
| 1267 | << vn << "[" << sia <<"]" << endl;
|
---|
| 1268 | return(4);
|
---|
| 1269 | }
|
---|
| 1270 | if (isalpha(sia[0])) {
|
---|
| 1271 | string sia2;
|
---|
[2483] | 1272 | if (!Var2Str(sia, sia2) || (sia2.length() < 1)) {
|
---|
[2446] | 1273 | cerr << " Syntax error - in $varname[index] : $"
|
---|
| 1274 | << vn << "[" << sia <<"]" << endl;
|
---|
| 1275 | return(4);
|
---|
| 1276 | }
|
---|
| 1277 | sia = sia2;
|
---|
| 1278 | }
|
---|
| 1279 | int rcdia = ctoi(sia.c_str(), &iarr);
|
---|
| 1280 | if (rcdia < 0) {
|
---|
| 1281 | cerr << " Syntax error - in $varname[iarr] : $"
|
---|
| 1282 | << vn << "[" << sia <<"]" << endl;
|
---|
| 1283 | return(4);
|
---|
| 1284 | }
|
---|
| 1285 | }
|
---|
| 1286 | }
|
---|
[2997] | 1287 | if (fgvarapp) {
|
---|
| 1288 | if (!GetVarApp(vn, vv))
|
---|
| 1289 | if (!Var2Str(vn, vv)) return(5);
|
---|
| 1290 | s2 += (s.substr(p, q-p) + vv);
|
---|
| 1291 | p = q2;
|
---|
| 1292 | }
|
---|
| 1293 | else if (iarr < 0) {
|
---|
[2483] | 1294 | if (!Var2Str(vn, vv)) return(5);
|
---|
[2446] | 1295 | s2 += (s.substr(p, q-p) + vv);
|
---|
| 1296 | p = q2;
|
---|
| 1297 | }
|
---|
| 1298 | else {
|
---|
[2483] | 1299 | if (! Var2Str(vn, iarr, vv) ) {
|
---|
[2446] | 1300 | cerr << " Substitution error - word index out of range in "
|
---|
| 1301 | << "$varname[iarr] : $" << vn << "[" << iarr <<"]" << endl;
|
---|
| 1302 | return(4);
|
---|
| 1303 | }
|
---|
[2483] | 1304 | else s2 += (s.substr(p, q-p) + vv);
|
---|
[2446] | 1305 | p = q3+1;
|
---|
| 1306 | }
|
---|
| 1307 | }
|
---|
| 1308 | if (p < l) s2 += s.substr(p);
|
---|
| 1309 |
|
---|
| 1310 | p = s2.find_first_not_of(" \t");
|
---|
| 1311 | if (p < l) s2 = s2.substr(p);
|
---|
| 1312 |
|
---|
| 1313 | return(0);
|
---|
| 1314 | }
|
---|
| 1315 |
|
---|
| 1316 | /* --Methode-- */
|
---|
[2483] | 1317 | bool Commander::Var2Str(string const & vn, string & vv)
|
---|
[2446] | 1318 | {
|
---|
| 1319 | if (vn.length() < 1) {
|
---|
[2518] | 1320 | cerr << " Commander::Var2Str/Error: length(varname=" << vn << ")<1 !" << endl;
|
---|
[2446] | 1321 | vv = ""; return(false);
|
---|
| 1322 | }
|
---|
| 1323 | // Variable de type $# $0 $1 ... (argument de .pic ou de script)
|
---|
| 1324 | int ka = 0;
|
---|
[2483] | 1325 | char buff[32];
|
---|
| 1326 |
|
---|
[2446] | 1327 | if (vn == "#") {
|
---|
| 1328 | if (ArgsStack.empty()) {
|
---|
[2518] | 1329 | cerr << " Commander::Var2Str/Error: ArgsStack empty ! "
|
---|
[2446] | 1330 | << " ($" << vn << ")" << endl;
|
---|
| 1331 | vv = ""; return(false);
|
---|
| 1332 | }
|
---|
| 1333 | char buff[32];
|
---|
| 1334 | long an = ArgsStack.top().size();
|
---|
[2518] | 1335 | if (an > 0) an--; // Pour se conformer a l'usage de csh : Nb args sans le $0
|
---|
[2446] | 1336 | sprintf(buff,"%ld", an);
|
---|
| 1337 | vv = buff; return(true);
|
---|
| 1338 | }
|
---|
[2518] | 1339 | else if (vn == "*") {
|
---|
| 1340 | if (ArgsStack.empty()) {
|
---|
| 1341 | cerr << " Commander::Var2Str/Error: ArgsStack empty ! "
|
---|
| 1342 | << " ($" << vn << ")" << endl;
|
---|
| 1343 | vv = ""; return(false);
|
---|
| 1344 | }
|
---|
| 1345 | vv = ArgsStack.top()[0];
|
---|
[3581] | 1346 | for(unsigned int ssk=1; ssk<ArgsStack.top().size(); ssk++) vv += ArgsStack.top()[ssk];
|
---|
[2518] | 1347 | return(true);
|
---|
| 1348 | }
|
---|
[2446] | 1349 | else if (ctoi(vn.c_str(), &ka) > 0) { // $0 $1 $2 ...
|
---|
| 1350 | if (ArgsStack.empty()) {
|
---|
[2518] | 1351 | cerr << " Commander::Var2Str/Error: ArgsStack empty ! "
|
---|
[2446] | 1352 | << " ($" << vn << ")" << endl;
|
---|
| 1353 | vv = ""; return(false);
|
---|
| 1354 | }
|
---|
[3581] | 1355 | if ( (ka < 0) || (ka >= (int)ArgsStack.top().size()) ) {
|
---|
[2518] | 1356 | cerr << " Commander::Var2Str/Error: ArgsStack index <0 or >=args.size() ! "
|
---|
[2446] | 1357 | << " ($" << vn << ")" << endl;
|
---|
| 1358 | vv = ""; return(false);
|
---|
| 1359 | }
|
---|
| 1360 | vv = ArgsStack.top()[ka]; return(true);
|
---|
| 1361 | }
|
---|
| 1362 | else if (vn[0] == '#') { // Variable de type $#vname --> size(vname)
|
---|
[2483] | 1363 | CmdVarList::iterator it = variables.find(vn.substr(1));
|
---|
| 1364 | if (it == variables.end()) {
|
---|
[2518] | 1365 | cerr << " Commander::Var2Str/Error #vname Undefined variable "
|
---|
[2446] | 1366 | << vn << " ! " << endl;
|
---|
| 1367 | vv = ""; return(false);
|
---|
| 1368 | }
|
---|
[2483] | 1369 | sprintf(buff,"%d", (int)(*it).second.size());
|
---|
[2446] | 1370 | vv = buff; return(true);
|
---|
[2483] | 1371 | }
|
---|
| 1372 | else if (vn == "status") {
|
---|
| 1373 | sprintf(buff,"%d", _xstatus);
|
---|
| 1374 | vv = buff;
|
---|
| 1375 | return true;
|
---|
| 1376 | }
|
---|
[2518] | 1377 | else if ((vn == "retstr") || (vn == "retval")) {
|
---|
[2483] | 1378 | vv = _retstr;
|
---|
| 1379 | return true;
|
---|
| 1380 | }
|
---|
| 1381 | else { // Variable de l'interpreteur, ou de l'environnement application , env. global
|
---|
| 1382 | if (GetVar(vn, vv)) return true;
|
---|
| 1383 | else if (GetVarApp(vn, vv)) return true;
|
---|
| 1384 | else if (GetVarEnv(vn, vv)) return true;
|
---|
| 1385 | else {
|
---|
[2518] | 1386 | cerr << " Commander::Var2Str/Error Undefined variable "
|
---|
[2446] | 1387 | << vn << " ! " << endl;
|
---|
[2483] | 1388 | vv = ""; return false;
|
---|
[2446] | 1389 | }
|
---|
| 1390 | }
|
---|
| 1391 |
|
---|
[2483] | 1392 | return false;
|
---|
[2446] | 1393 | }
|
---|
[2483] | 1394 |
|
---|
[2446] | 1395 | /* --Methode-- */
|
---|
[2483] | 1396 | bool Commander::SetVariable(string const & vn, string const & vv)
|
---|
[2446] | 1397 | {
|
---|
[2483] | 1398 | // On verifie si le nom est de type vname[idx]
|
---|
| 1399 | size_t p,q,l;
|
---|
| 1400 | l = vn.length();
|
---|
| 1401 | p = vn.find('[');
|
---|
| 1402 | if (p < l) {
|
---|
| 1403 | q = vn.find(']');
|
---|
| 1404 | if (q != (l-1)) {
|
---|
| 1405 | cout << "Commander::Str2Var/SetVar() - Bad varname with []: "
|
---|
| 1406 | << vn << endl;
|
---|
| 1407 | return false;
|
---|
| 1408 | }
|
---|
| 1409 | string vna = vn.substr(0, p);
|
---|
| 1410 | string sia = vn.substr(p+1, q-(p+1));
|
---|
| 1411 | if (isalpha(sia[0])) {
|
---|
| 1412 | string sia2;
|
---|
| 1413 | if (!Var2Str(sia, sia2) || (sia2.length() < 1)) {
|
---|
| 1414 | cerr << "Commander::Str2Var/SetVar() Syntax error- varname[index]:"
|
---|
| 1415 | << vn << endl;
|
---|
| 1416 | return false;
|
---|
| 1417 | }
|
---|
| 1418 | sia = sia2;
|
---|
| 1419 | }
|
---|
| 1420 | int iarr;
|
---|
| 1421 | int rcdia = ctoi(sia.c_str(), &iarr);
|
---|
| 1422 | if (rcdia < 0) {
|
---|
| 1423 | cerr << "Commander::Str2Var/SetVar() Syntax error- varname[iarr]: "
|
---|
| 1424 | << vn << endl;
|
---|
| 1425 | return false;
|
---|
| 1426 | }
|
---|
| 1427 | return SetVar(vna, iarr, vv);
|
---|
[2446] | 1428 | }
|
---|
[2483] | 1429 | else {
|
---|
| 1430 | if (vn == "status") {
|
---|
| 1431 | _xstatus = atoi(vv.c_str());
|
---|
| 1432 | return true;
|
---|
| 1433 | }
|
---|
| 1434 | else if (vn == "retstr") {
|
---|
| 1435 | _retstr = vv;
|
---|
| 1436 | return true;
|
---|
| 1437 | }
|
---|
| 1438 | else return SetVar(vn, vv);
|
---|
| 1439 | }
|
---|
[2446] | 1440 | }
|
---|
| 1441 |
|
---|
| 1442 | /* --Methode-- */
|
---|
[2483] | 1443 | bool Commander::GetVar(string const & vn, string & vv)
|
---|
[2446] | 1444 | {
|
---|
[2483] | 1445 | CmdVarList::iterator it = variables.find(vn);
|
---|
| 1446 | if (it == variables.end()) {
|
---|
| 1447 | vv = "";
|
---|
| 1448 | return false;
|
---|
| 1449 | }
|
---|
| 1450 | vv = (*it).second[0];
|
---|
| 1451 | if ((*it).second.size() > 1) {
|
---|
[3581] | 1452 | for(unsigned int k=1; k<(*it).second.size(); k++) {
|
---|
[2483] | 1453 | vv += ' '; vv += (*it).second[k];
|
---|
| 1454 | }
|
---|
| 1455 | }
|
---|
| 1456 | return true;
|
---|
| 1457 | }
|
---|
| 1458 |
|
---|
| 1459 | /* --Methode-- */
|
---|
| 1460 | bool Commander::GetVar(string const & vn, int idx, string & vv)
|
---|
| 1461 | {
|
---|
| 1462 | vv = "";
|
---|
| 1463 | CmdVarList::iterator it = variables.find(vn);
|
---|
| 1464 | if (it == variables.end()) return false;
|
---|
[3581] | 1465 | if ((idx < 0) || (idx > (int)(*it).second.size()-1))
|
---|
[2483] | 1466 | return false;
|
---|
| 1467 | vv = (*it).second[idx];
|
---|
| 1468 | return true;
|
---|
| 1469 | }
|
---|
| 1470 |
|
---|
| 1471 | /* --Methode-- */
|
---|
| 1472 | bool Commander::GetVar(string const & vn, vector<string> & vv)
|
---|
| 1473 | {
|
---|
| 1474 | vv.clear();
|
---|
| 1475 | // vv.erase(vv.begin(),vv.end());
|
---|
| 1476 | CmdVarList::iterator it = variables.find(vn);
|
---|
| 1477 | if (it == variables.end()) return false;
|
---|
| 1478 | vv = (*it).second;
|
---|
| 1479 | return true;
|
---|
| 1480 | }
|
---|
| 1481 |
|
---|
| 1482 | /* --Methode-- */
|
---|
| 1483 | bool Commander::SetVar(string const & vn, string const & val)
|
---|
| 1484 | {
|
---|
| 1485 | if ( !CheckVarName(vn) ) {
|
---|
| 1486 | cerr << "Commander::SetVar( " << vn << " ...) Bad VarName " << endl;
|
---|
[2446] | 1487 | return(false);
|
---|
| 1488 | }
|
---|
[2483] | 1489 | bool fg = false;
|
---|
| 1490 | vector<string> nouv;
|
---|
| 1491 | nouv.push_back(val);
|
---|
| 1492 | CmdVarList::iterator it = variables.find(vn);
|
---|
| 1493 | if (it == variables.end()) variables[vn] = nouv;
|
---|
| 1494 | else {
|
---|
| 1495 | (*it).second = nouv;
|
---|
| 1496 | fg = true;
|
---|
| 1497 | }
|
---|
| 1498 | return fg;
|
---|
[2446] | 1499 | }
|
---|
| 1500 |
|
---|
| 1501 | /* --Methode-- */
|
---|
[2483] | 1502 | bool Commander::SetVar(string const & vn, int idx, string const & val)
|
---|
[2446] | 1503 | {
|
---|
[2483] | 1504 | if ( !CheckVarName(vn) ) {
|
---|
| 1505 | cerr << "Commander::SetVar( " << vn << " ,idx, ...) Bad VarName " << endl;
|
---|
[2446] | 1506 | return(false);
|
---|
| 1507 | }
|
---|
[2483] | 1508 | if ((vn == "status") || (vn == "retstr")) {
|
---|
| 1509 | cerr << "Commander::SetVar(vn,idx,val) ERROR - special var status/retstr "
|
---|
| 1510 | << endl;
|
---|
| 1511 | return(false);
|
---|
| 1512 | }
|
---|
| 1513 | if (idx < 0) {
|
---|
| 1514 | cout << "Commander::SetVar(vn," << idx << ",...) Error idx < 0" << endl;
|
---|
| 1515 | return(false);
|
---|
| 1516 | }
|
---|
| 1517 | bool fg = false;
|
---|
| 1518 | CmdVarList::iterator it = variables.find(vn);
|
---|
| 1519 | if (it == variables.end()) {
|
---|
| 1520 | vector<string> nouv;
|
---|
| 1521 | for(int j=0; j<idx; j++) nouv.push_back("");
|
---|
| 1522 | nouv.push_back(val);
|
---|
| 1523 | variables[vn] = nouv;
|
---|
| 1524 | }
|
---|
| 1525 | else {
|
---|
[3581] | 1526 | if (idx >= (int)(*it).second.size())
|
---|
[2512] | 1527 | for(int j=(*it).second.size(); j<=idx; j++) (*it).second.push_back("");
|
---|
| 1528 | (*it).second[idx] = val;
|
---|
[2483] | 1529 | fg = true;
|
---|
| 1530 | }
|
---|
[2446] | 1531 | return fg;
|
---|
| 1532 | }
|
---|
| 1533 |
|
---|
| 1534 | /* --Methode-- */
|
---|
[2483] | 1535 | bool Commander::SetVar(string const & vn, vector<string> const & val)
|
---|
[2446] | 1536 | {
|
---|
[2483] | 1537 | if ( !CheckVarName(vn) ) {
|
---|
| 1538 | cerr << "Commander::SetVar( " << vn << " ...) Bad VarName " << endl;
|
---|
[2446] | 1539 | return(false);
|
---|
| 1540 | }
|
---|
[2483] | 1541 | if ((vn == "status") || (vn == "retstr")) {
|
---|
| 1542 | cerr << "Commander::SetVar(vn, vector<string>) ERROR - special var status/retstr "
|
---|
| 1543 | << endl;
|
---|
| 1544 | return(false);
|
---|
| 1545 | }
|
---|
| 1546 | bool fg = false;
|
---|
| 1547 | CmdVarList::iterator it = variables.find(vn);
|
---|
| 1548 | if (it == variables.end()) variables[vn] = val;
|
---|
| 1549 | else {
|
---|
| 1550 | (*it).second = val;
|
---|
| 1551 | fg = true;
|
---|
| 1552 | }
|
---|
| 1553 | return fg;
|
---|
[2446] | 1554 | }
|
---|
| 1555 |
|
---|
| 1556 | /* --Methode-- */
|
---|
[2483] | 1557 | bool Commander::CheckVarName(string const & vn)
|
---|
[2446] | 1558 | {
|
---|
[2483] | 1559 | size_t l,k;
|
---|
| 1560 | l = vn.length();
|
---|
| 1561 | if (l < 1) return false;
|
---|
| 1562 | if (!isalpha(vn[0])) return false;
|
---|
| 1563 | for(k=1; k<l; k++)
|
---|
| 1564 | if ((!isalnum(vn[k])) && (vn[k] != '_')) return false;
|
---|
| 1565 | return true;
|
---|
| 1566 | }
|
---|
| 1567 |
|
---|
| 1568 | /* --Methode-- */
|
---|
| 1569 | bool Commander::DeleteVar(string const & vn)
|
---|
| 1570 | {
|
---|
| 1571 | CmdVarList::iterator it = variables.find(vn);
|
---|
| 1572 | if (it == variables.end()) {
|
---|
| 1573 | cerr << "Commander::DeleteVar() Var " << vn << " undefined!" << endl;
|
---|
| 1574 | return false;
|
---|
| 1575 | }
|
---|
| 1576 | variables.erase(it);
|
---|
| 1577 | return true;
|
---|
| 1578 | }
|
---|
| 1579 |
|
---|
| 1580 | /* --Methode-- */
|
---|
| 1581 | void Commander::ListVar()
|
---|
| 1582 | {
|
---|
| 1583 | cout << " ---- Commander::ListVar() List of defined variables ---- "
|
---|
[2446] | 1584 | << endl;
|
---|
[2483] | 1585 | CmdVarList::iterator it;
|
---|
| 1586 | for(it = variables.begin(); it != variables.end(); it++) {
|
---|
| 1587 | string vn = (*it).first;
|
---|
| 1588 | int vs = (*it).second.size();
|
---|
| 1589 | cout << vn << " -> Size= " << vs << endl;
|
---|
| 1590 | }
|
---|
[2446] | 1591 | cout << "---------------------------------------------------------- "
|
---|
| 1592 | << endl;
|
---|
| 1593 | }
|
---|
| 1594 |
|
---|
| 1595 | /* --Methode-- */
|
---|
[2483] | 1596 | bool Commander::GetVarApp(string const & vn, string & vv)
|
---|
| 1597 | {
|
---|
| 1598 | vv = "";
|
---|
[2518] | 1599 | // cout << " Commander::GetVarApp() Not available ! " << endl;
|
---|
[2483] | 1600 | return false;
|
---|
| 1601 | }
|
---|
| 1602 |
|
---|
| 1603 | /* --Methode-- */
|
---|
| 1604 | bool Commander::SetVarApp(string const & vn, string const & vv)
|
---|
| 1605 | {
|
---|
[2518] | 1606 | // cout << " Commander::SetVarApp() Not available ! " << endl;
|
---|
[2483] | 1607 | return false;
|
---|
| 1608 | }
|
---|
| 1609 |
|
---|
| 1610 | /* --Methode-- */
|
---|
| 1611 | bool Commander::DeleteVarApp(string const & vn)
|
---|
| 1612 | {
|
---|
[2518] | 1613 | // cout << " Commander::DeleteVarApp() Not available ! " << endl;
|
---|
[2483] | 1614 | return false;
|
---|
| 1615 | }
|
---|
| 1616 |
|
---|
| 1617 | /* --Methode-- */
|
---|
| 1618 | void Commander::ListVarApp()
|
---|
| 1619 | {
|
---|
[2518] | 1620 | // cout << " Commander::ListVarApp() Not available ! " << endl;
|
---|
[2483] | 1621 | return;
|
---|
| 1622 | }
|
---|
| 1623 |
|
---|
| 1624 |
|
---|
| 1625 | /* --Methode-- */
|
---|
| 1626 | bool Commander::GetVarEnv(string const & vn, string & vv)
|
---|
| 1627 | {
|
---|
[2518] | 1628 | char* vev = getenv(vn.c_str());
|
---|
| 1629 | if (vev) {
|
---|
| 1630 | vv = vev;
|
---|
| 1631 | return true;
|
---|
| 1632 | }
|
---|
| 1633 | else {
|
---|
| 1634 | vv = "";
|
---|
| 1635 | return false;
|
---|
| 1636 | }
|
---|
[2483] | 1637 | }
|
---|
| 1638 |
|
---|
| 1639 | /* --Methode-- */
|
---|
| 1640 | bool Commander::SetVarEnv(string const & vn, string const & vv)
|
---|
| 1641 | {
|
---|
[2518] | 1642 | string pev = vn;
|
---|
| 1643 | pev += '=';
|
---|
| 1644 | pev += vv;
|
---|
[2887] | 1645 | // if defined(Linux) || defined(AIX)
|
---|
[2532] | 1646 | // Reza - 28/04/2004
|
---|
| 1647 | // putenv de Linux ne declare pas la variable char *string const
|
---|
| 1648 | // On ne doit meme pas utiliser une variable automatique
|
---|
| 1649 | // J'alloue donc un nouveau tableau - mais qui va le liberer ?
|
---|
[2867] | 1650 | // Idem AIX , Reza Dec 2005
|
---|
[2887] | 1651 | // Pb apparu avec g++ 4 sur darwin (Mac) - Jan 2006
|
---|
| 1652 | // Je fais copie pour tout le monde
|
---|
[2532] | 1653 | char* bev = new char[pev.size()+1];
|
---|
| 1654 | strcpy(bev, pev.c_str());
|
---|
| 1655 | if (putenv(bev) == 0) return true;
|
---|
[2887] | 1656 | // else
|
---|
| 1657 | // if (putenv(pev.c_str()) == 0) return true;
|
---|
| 1658 | // endif
|
---|
[2518] | 1659 | else return false;
|
---|
[2483] | 1660 | }
|
---|
| 1661 |
|
---|
| 1662 | /* --Methode-- */
|
---|
| 1663 | bool Commander::DeleteVarEnv(string const & vn)
|
---|
| 1664 | {
|
---|
[2518] | 1665 | // cout << " Commander::DeleteVarEnv() Not available ! " << endl;
|
---|
[2483] | 1666 | return false;
|
---|
| 1667 | }
|
---|
| 1668 |
|
---|
| 1669 | /* --Methode-- */
|
---|
| 1670 | void Commander::ListVarEnv()
|
---|
| 1671 | {
|
---|
| 1672 | cout << " Commander::ListVarEnv() Not available ! " << endl;
|
---|
| 1673 | return;
|
---|
| 1674 | }
|
---|
| 1675 |
|
---|
| 1676 |
|
---|
| 1677 | /* --Methode-- */
|
---|
[2446] | 1678 | string Commander::GetTmpDir()
|
---|
| 1679 | {
|
---|
| 1680 | return("/tmp");
|
---|
| 1681 | }
|
---|
| 1682 |
|
---|
| 1683 | /* --Methode-- */
|
---|
| 1684 | void Commander::SetCurrentPrompt(const char* pr)
|
---|
| 1685 | {
|
---|
| 1686 | curprompt = pr;
|
---|
| 1687 | }
|
---|
| 1688 |
|
---|
| 1689 | /* --Methode-- */
|
---|
| 1690 | void Commander::ShowMessage(const char * msg, int att)
|
---|
| 1691 | {
|
---|
| 1692 | cout << msg ;
|
---|
| 1693 | }
|
---|
| 1694 |
|
---|
| 1695 |
|
---|
| 1696 |
|
---|
| 1697 | /* --Methode-- */
|
---|
| 1698 | int Commander::EvaluateTest(vector<string> & args, string & line, bool & res)
|
---|
| 1699 | {
|
---|
| 1700 | res = true;
|
---|
| 1701 | if ((args.size() != 6) || (args[5] != "then") ||
|
---|
| 1702 | (args[0] != "(") || (args[4] != ")") ) return(1);
|
---|
| 1703 | if (args[2] == "==") res = (args[1] == args[3]);
|
---|
| 1704 | else if (args[2] == "!=") res = (args[1] != args[3]);
|
---|
| 1705 | else if (args[2] == "<")
|
---|
| 1706 | res = (atof(args[1].c_str()) < atof(args[3].c_str()));
|
---|
| 1707 | else if (args[2] == ">")
|
---|
| 1708 | res = (atof(args[1].c_str()) > atof(args[3].c_str()));
|
---|
| 1709 | else if (args[2] == "<=")
|
---|
| 1710 | res = (atof(args[1].c_str()) <= atof(args[3].c_str()));
|
---|
| 1711 | else if (args[2] == ">=")
|
---|
| 1712 | res = (atof(args[1].c_str()) >= atof(args[3].c_str()));
|
---|
| 1713 | else return(2);
|
---|
| 1714 | return(0);
|
---|
| 1715 | }
|
---|
| 1716 |
|
---|
| 1717 |
|
---|
| 1718 | /* --Methode-- */
|
---|
| 1719 | int Commander::EvalRPNExpr(vector<string> & args, string & line)
|
---|
| 1720 | {
|
---|
[2512] | 1721 | // A virer - Reza 15/03/2004
|
---|
[2446] | 1722 | return(0);
|
---|
| 1723 | }
|
---|
| 1724 |
|
---|
| 1725 | /* --Methode-- */
|
---|
| 1726 | void Commander::PushStack(vector<string>& args)
|
---|
| 1727 | {
|
---|
| 1728 | // We push the argument list (args) on the stack
|
---|
| 1729 | ArgsStack.push(args);
|
---|
| 1730 | // We push also CommanderBloc and testresult on the stack
|
---|
| 1731 | CmdBlks.push(NULL);
|
---|
| 1732 | list<char> xtx;
|
---|
| 1733 | TestsStack.push(xtx);
|
---|
| 1734 |
|
---|
| 1735 | }
|
---|
| 1736 |
|
---|
| 1737 | /* --Methode-- */
|
---|
| 1738 | void Commander::PopStack(bool psta)
|
---|
| 1739 | {
|
---|
| 1740 | // We remove the argument list (args) from the stack
|
---|
| 1741 | if (psta) ArgsStack.pop();
|
---|
| 1742 | // And CommanderBloc and TestResult from the corresponding stacks
|
---|
| 1743 | CommanderBloc* curb = CmdBlks.top();
|
---|
| 1744 | while (curb != NULL) {
|
---|
| 1745 | CommanderBloc* parb = curb->Parent();
|
---|
| 1746 | delete curb; curb = parb;
|
---|
| 1747 | }
|
---|
| 1748 | CmdBlks.pop();
|
---|
| 1749 | TestsStack.pop();
|
---|
| 1750 | }
|
---|
| 1751 |
|
---|
| 1752 | /* --Methode-- */
|
---|
| 1753 | int Commander::ExecuteCommandLine(string & kw, vector<string> & tokens, string & toks)
|
---|
| 1754 | {
|
---|
| 1755 | int rc = 0;
|
---|
| 1756 |
|
---|
| 1757 | // >>>>>>>>>>> Commande d'interpreteur
|
---|
| 1758 | if (kw == "help") {
|
---|
| 1759 | if (tokens.size() > 0) cout << GetUsage(tokens[0]) << endl;
|
---|
| 1760 | else {
|
---|
| 1761 | string kwh = "Commander";
|
---|
| 1762 | cout << GetUsage(kwh) << endl;
|
---|
| 1763 | }
|
---|
| 1764 | }
|
---|
[2518] | 1765 | else if (kw == "sleep") {
|
---|
| 1766 | if (tokens.size() < 1) {
|
---|
| 1767 | cout << "Commander::Interpret() Usage: sleep nsec " << endl;
|
---|
| 1768 | return(1);
|
---|
| 1769 | }
|
---|
| 1770 | int nsec = atoi(tokens[0].c_str());
|
---|
| 1771 | cout << "Commander::Interpret() sleep " << nsec << " seconds" << endl;
|
---|
| 1772 | sleep(nsec);
|
---|
| 1773 | }
|
---|
[2446] | 1774 |
|
---|
| 1775 | else if (kw == "set") {
|
---|
[2518] | 1776 | if (tokens.size() < 2) {
|
---|
| 1777 | cout << "Commander::Interpret() Usage: set varname value or set vecvar ( w1 w2 ... ) " << endl;
|
---|
| 1778 | return(1);
|
---|
| 1779 | }
|
---|
| 1780 |
|
---|
[2483] | 1781 | if (tokens.size() == 2)
|
---|
| 1782 | SetVariable(tokens[0], tokens[1]);
|
---|
| 1783 | else {
|
---|
[2518] | 1784 | if ( (tokens[1] != "(") || (tokens[tokens.size()-1] != ")") ) {
|
---|
| 1785 | cout << "Commander::Interpret() Usage: set vecvar ( w1 w2 ... ) " << endl;
|
---|
| 1786 | return(1);
|
---|
| 1787 | }
|
---|
| 1788 | string vname = tokens[0];
|
---|
| 1789 | vector<string>::iterator vit;
|
---|
| 1790 | vit = tokens.begin(); tokens.erase(vit);
|
---|
| 1791 | vit = tokens.begin(); tokens.erase(vit);
|
---|
| 1792 | tokens.pop_back();
|
---|
| 1793 | SetVar(vname, tokens);
|
---|
[2446] | 1794 | }
|
---|
[2483] | 1795 | return 0;
|
---|
| 1796 | }
|
---|
[2518] | 1797 | else if (kw == "var2words") {
|
---|
| 1798 | if (tokens.size() < 2) {
|
---|
| 1799 | cout << "Commander::Interpret() Usage: var2words varname wordvarname [sep]" << endl;
|
---|
| 1800 | return(1);
|
---|
[2446] | 1801 | }
|
---|
[2518] | 1802 | char sep = ' ';
|
---|
| 1803 | if (tokens.size() > 2) sep = tokens[2][0];
|
---|
| 1804 | string vv;
|
---|
| 1805 | if (!GetVar(tokens[0], vv)) {
|
---|
| 1806 | cout << "Commander::Interpret() var2words/Error No variable with name " << tokens[0] << endl;
|
---|
| 1807 | return 2;
|
---|
| 1808 | }
|
---|
| 1809 | vector<string> vs;
|
---|
| 1810 | FillVStringFrString(vv, vs, sep);
|
---|
| 1811 | SetVar(tokens[1], vs);
|
---|
| 1812 | }
|
---|
[2446] | 1813 | else if (kw == "alias") {
|
---|
| 1814 | if (tokens.size() < 2) { cout << "Commander::Interpret() Usage: alias aliasname string" << endl; return(0); }
|
---|
| 1815 | if ((tokens[0].length() < 1) || !isalpha((int)tokens[0][0]) ) {
|
---|
| 1816 | cerr << "Commander::Interpret()/Error alias name should start with alphabetic" << endl;
|
---|
[2518] | 1817 | return(1);
|
---|
[2483] | 1818 | }
|
---|
[2446] | 1819 | string xx = tokens[1];
|
---|
[3581] | 1820 | for (unsigned int kk=2; kk<tokens.size(); kk++) xx += (' ' + tokens[kk]);
|
---|
[2446] | 1821 | mAliases[tokens[0]] = xx;
|
---|
[2483] | 1822 | }
|
---|
[2446] | 1823 |
|
---|
[2483] | 1824 | else if ( (kw == "unset") || (kw == "clearvar") ) {
|
---|
| 1825 | if (tokens.size() < 1) {
|
---|
| 1826 | cout << "Commander::Interpret() Usage: unset/clearvar varname" << endl;
|
---|
[2518] | 1827 | return(1);
|
---|
[2446] | 1828 | }
|
---|
[2483] | 1829 | else DeleteVar(tokens[0]);
|
---|
| 1830 | }
|
---|
| 1831 | // Evaluation d'expression en notation polonaise inverse
|
---|
[2512] | 1832 | else if (kw == "rpneval") {
|
---|
| 1833 | try {
|
---|
| 1834 | RPNExpressionEvaluator rpn(tokens, 1);
|
---|
| 1835 | double res = rpn.Value();
|
---|
[3577] | 1836 | string vv = cval_dble2str(res);
|
---|
[2512] | 1837 | SetVariable(tokens[0],vv);
|
---|
| 1838 | return 0;
|
---|
| 1839 | }
|
---|
| 1840 | catch (RPNExprException& rpnerr) {
|
---|
| 1841 | cerr << " rpneval: Syntax error - Msg=" << rpnerr.Msg()
|
---|
| 1842 | << " \n Line=" << toks << endl;
|
---|
| 1843 | return 98;
|
---|
| 1844 | }
|
---|
[2446] | 1845 | }
|
---|
| 1846 | else if (kw == "echo") {
|
---|
[3581] | 1847 | for (unsigned int ii=0; ii<tokens.size(); ii++)
|
---|
[2446] | 1848 | cout << tokens[ii] << " " ;
|
---|
| 1849 | cout << endl;
|
---|
| 1850 | }
|
---|
| 1851 | else if (kw == "echo2file") {
|
---|
| 1852 | if (tokens.size() < 1) {
|
---|
| 1853 | cout << "Commander::Interpret() Usage: echo2file filename [string ] " << endl;
|
---|
[2518] | 1854 | return(1);
|
---|
[2446] | 1855 | }
|
---|
| 1856 | ofstream ofs(tokens[0].c_str(), ios::app);
|
---|
[3581] | 1857 | for (unsigned int ii=1; ii<tokens.size(); ii++)
|
---|
[2446] | 1858 | ofs << tokens[ii] << " " ;
|
---|
| 1859 | ofs << endl;
|
---|
| 1860 | }
|
---|
| 1861 | else if (kw == "readstdin") {
|
---|
| 1862 | if (tokens.size() < 1) { cout << "Commander::Interpret() Usage: readstdin varname" << endl; return(0); }
|
---|
| 1863 | if ((tokens[0].length() < 1) || !isalpha((int)tokens[0][0]) ) {
|
---|
| 1864 | cerr << "Commander::Interpret()/Error Variable name should start with alphabetic" << endl;
|
---|
| 1865 | return(0);
|
---|
| 1866 | }
|
---|
| 1867 | ShowMessage(">>> Reading From StdIn \n", _MAGENTA_);
|
---|
| 1868 | cout << tokens[0] << " ? " << endl;
|
---|
| 1869 | SetVar(tokens[0], GetStringFrStdin(this) );
|
---|
| 1870 | }
|
---|
| 1871 |
|
---|
[2914] | 1872 | else if (kw == "listvars" || kw == "listvar") ListVar();
|
---|
[2446] | 1873 | else if (kw == "listalias") {
|
---|
| 1874 | cout << "Commander::Interpret() Alias List , AliasName = Value \n";
|
---|
| 1875 | CmdStrList::iterator it;
|
---|
| 1876 | for(it = mAliases.begin(); it != mAliases.end(); it++)
|
---|
| 1877 | cout << (*it).first << " = " << (*it).second << "\n";
|
---|
| 1878 | cout << endl;
|
---|
| 1879 | }
|
---|
| 1880 | else if (kw == "listcommands") {
|
---|
| 1881 | cout << "---- Commander::Interpret() Command List ----- \n";
|
---|
| 1882 | CmdExmap::iterator it;
|
---|
| 1883 | int kc = 0;
|
---|
| 1884 | for(it = cmdexmap.begin(); it != cmdexmap.end(); it++) {
|
---|
| 1885 | cout << (*it).first << " ";
|
---|
| 1886 | kc++;
|
---|
| 1887 | if (kc >= 5) { cout << "\n"; kc = 0; }
|
---|
| 1888 | }
|
---|
| 1889 | cout << endl;
|
---|
| 1890 | }
|
---|
| 1891 | else if (kw == "listscripts") {
|
---|
| 1892 | cout << "---- Commander::Interpret() Script List ----- \n";
|
---|
| 1893 | for(ScriptList::iterator sit = mScripts.begin();
|
---|
| 1894 | sit != mScripts.end(); sit++)
|
---|
| 1895 | cout << " Script: " << (*sit).second->Name() << " - "
|
---|
| 1896 | << (*sit).second->Comment() << endl;
|
---|
| 1897 | }
|
---|
| 1898 | else if (kw == "clearscript") {
|
---|
| 1899 | if (tokens.size() < 1) {
|
---|
| 1900 | cout << "Commander::Interpret() Usage: clearscript scriptname" << endl;
|
---|
| 1901 | return(0);
|
---|
| 1902 | }
|
---|
| 1903 | ScriptList::iterator sit = mScripts.find(tokens[0]);
|
---|
| 1904 | if (sit == mScripts.end()) {
|
---|
| 1905 | cout << "Commander::Interpret() No script with name" << tokens[0] << endl;
|
---|
| 1906 | return(0);
|
---|
| 1907 | }
|
---|
| 1908 | else {
|
---|
| 1909 | delete (*sit).second;
|
---|
| 1910 | mScripts.erase(sit);
|
---|
| 1911 | cout << "Commander::Interpret() script " << tokens[0] << " cleared" << endl;
|
---|
| 1912 | return(0);
|
---|
| 1913 | }
|
---|
| 1914 | }
|
---|
[2671] | 1915 | //---------------------------------------------
|
---|
| 1916 | //--- Commandes de gestion des threads ------
|
---|
| 1917 | //---------------------------------------------
|
---|
| 1918 | else if (kw == "thrlist") {
|
---|
| 1919 | ListThreads();
|
---|
| 1920 | return(0);
|
---|
| 1921 | }
|
---|
[2955] | 1922 | else if ( (kw == "killthr") || (kw == "cancelthr") ) {
|
---|
| 1923 | if (tokens.size() < 1) {
|
---|
| 1924 | cout << "Commander::Interpret() Usage: killthr/cancelthr thrid" << endl;
|
---|
| 1925 | return(0);
|
---|
| 1926 | }
|
---|
[2671] | 1927 | uint_8 id = atol(tokens[0].c_str());
|
---|
[2955] | 1928 | bool fgkill = false;
|
---|
| 1929 | if (kw == "killthr") fgkill = true;
|
---|
| 1930 | StopThr(id, fgkill);
|
---|
[2671] | 1931 | return (0);
|
---|
| 1932 | }
|
---|
| 1933 | else if (kw == "waitthr") {
|
---|
| 1934 | WaitThreads();
|
---|
| 1935 | return (0);
|
---|
| 1936 | }
|
---|
| 1937 | else if (kw == "cleanthrlist") {
|
---|
| 1938 | CleanThrList();
|
---|
| 1939 | return (0);
|
---|
| 1940 | }
|
---|
| 1941 |
|
---|
[2446] | 1942 | else if (kw == "traceon") { cout << "Commander::Interpret() -> Trace ON mode " << endl; trace = true; }
|
---|
| 1943 | else if (kw == "traceoff") { cout << "Commander::Interpret() -> Trace OFF mode " << endl; trace = false; }
|
---|
| 1944 | else if (kw == "timingon") {
|
---|
| 1945 | cout << "Commander::Interpret() -> Timing ON mode " << endl;
|
---|
| 1946 | if (gltimer) delete gltimer; gltimer = new Timer("PIA-CmdInterpreter "); timing = true;
|
---|
| 1947 | }
|
---|
| 1948 | else if (kw == "timingoff") {
|
---|
| 1949 | cout << "Commander::Interpret() -> Timing OFF mode " << endl;
|
---|
| 1950 | if (gltimer) delete gltimer; gltimer = NULL; timing = false;
|
---|
| 1951 | }
|
---|
| 1952 | else if (kw == "exec") {
|
---|
| 1953 | if (tokens.size() < 1) { cout << "Commander::Interpret() Usage: exec filename" << endl; return(0); }
|
---|
| 1954 | ExecFile(tokens[0], tokens);
|
---|
| 1955 | }
|
---|
| 1956 | else if (kw == "autoiniranf") {
|
---|
| 1957 | Auto_Ini_Ranf(1);
|
---|
| 1958 | return(0);
|
---|
| 1959 | }
|
---|
| 1960 | else if (kw == "shell") {
|
---|
| 1961 | if (tokens.size() < 1) { cout << "Commander::Interpret() Usage: shell cmdline" << endl; return(0); }
|
---|
| 1962 | string cmd;
|
---|
[3581] | 1963 | for (unsigned int ii=0; ii<tokens.size(); ii++)
|
---|
[2446] | 1964 | cmd += (tokens[ii] + ' ');
|
---|
| 1965 | system(cmd.c_str());
|
---|
| 1966 | }
|
---|
| 1967 | else if (kw == "cshell") {
|
---|
| 1968 | if(tokens.size()<1) {cout<<"Commander::Interpret() Usage: cshell cmdline"<<endl; return(0);}
|
---|
| 1969 | string cmd="";
|
---|
[3581] | 1970 | for(unsigned int ii=0;ii<tokens.size();ii++) cmd+=(tokens[ii]+' ');
|
---|
[2446] | 1971 | CShellExecute(cmd);
|
---|
| 1972 | }
|
---|
| 1973 |
|
---|
| 1974 | // Execution d'une commande enregistree
|
---|
| 1975 | else rc = ExecuteCommand(kw, tokens, toks);
|
---|
| 1976 |
|
---|
| 1977 | if (timing) gltimer->Split();
|
---|
| 1978 | return(rc);
|
---|
| 1979 | }
|
---|
| 1980 |
|
---|
| 1981 | /* --Methode-- */
|
---|
| 1982 | int Commander::ParseLineExecute(string& line, bool qw)
|
---|
| 1983 | // Si qw == true, on decoupe entre '' ou "" ou espaces
|
---|
| 1984 | {
|
---|
| 1985 | vector<string> tokens;
|
---|
[2518] | 1986 | vector<bool> qottoks;
|
---|
[2446] | 1987 | string kw, toks;
|
---|
| 1988 | if (line.length() < 1) return(0);
|
---|
[2518] | 1989 | LineToWords(line, kw, tokens, qottoks, toks, qw);
|
---|
[2446] | 1990 | return(ExecuteCommand(kw, tokens, toks));
|
---|
| 1991 | }
|
---|
| 1992 |
|
---|
| 1993 | /* --Methode-- */
|
---|
| 1994 | int Commander::ExecuteCommand(string& keyw, vector<string>& args, string& toks)
|
---|
| 1995 | {
|
---|
| 1996 | int rc = -1;
|
---|
| 1997 | CmdExmap::iterator it = cmdexmap.find(keyw);
|
---|
| 1998 | if (it == cmdexmap.end()) cout << "No such command : " << keyw << " ! " << endl;
|
---|
| 1999 | else {
|
---|
[2671] | 2000 | if ((*it).second.cex) {
|
---|
| 2001 | // Doit-on l'executer sous forme de thread separe ?
|
---|
[2956] | 2002 | if ( (args.size()>0) && (args[args.size()-1] == "&") ) {
|
---|
| 2003 | if ((*it).second.cex->IsThreadable(keyw) ) {
|
---|
| 2004 | ThrId++;
|
---|
| 2005 | CommandExeThr * thr =
|
---|
| 2006 | new CommandExeThr(ThrId, (*it).second.cex, keyw, args, toks);
|
---|
| 2007 | CmdThrExeList.push_back(thr);
|
---|
| 2008 | cout << " Commander::ExecuteCommand() : Thread execution of command " << keyw << endl;
|
---|
| 2009 | thr->start();
|
---|
| 2010 | if (CmdThrExeList.size() > 5) CleanThrList();
|
---|
| 2011 | rc = 0;
|
---|
| 2012 | }
|
---|
| 2013 | else {
|
---|
| 2014 | args.erase(args.end()-1);
|
---|
| 2015 | for(size_t k=toks.size()-1; k>0; k--)
|
---|
| 2016 | if (toks[k] == '&') { toks[k] = ' '; break; }
|
---|
| 2017 | cout << " Commander::ExecuteCommand() : Thread execution NOT available for" << keyw << endl;
|
---|
| 2018 | rc = (*it).second.cex->Execute(keyw, args, toks);
|
---|
| 2019 | }
|
---|
[2671] | 2020 | }
|
---|
[2943] | 2021 | else rc = (*it).second.cex->Execute(keyw, args, toks);
|
---|
[2671] | 2022 | }
|
---|
[2446] | 2023 | else cout << "Dont know how to execute " << keyw << " ? " << endl;
|
---|
[2943] | 2024 | }
|
---|
[2446] | 2025 | return(rc);
|
---|
| 2026 | }
|
---|
| 2027 |
|
---|
| 2028 | /* --Methode-- */
|
---|
| 2029 | int Commander::ExecFile(string& file, vector<string>& args)
|
---|
| 2030 | {
|
---|
[2856] | 2031 | char line_buff[1024];
|
---|
[2446] | 2032 | FILE *fip;
|
---|
[2518] | 2033 | int rcc = 0;
|
---|
[2446] | 2034 | if ( (fip = fopen(file.c_str(),"r")) == NULL ) {
|
---|
| 2035 | if (file.find('.') >= file.length()) {
|
---|
| 2036 | cout << "Commander::Exec(): Error opening file " << file << endl;
|
---|
| 2037 | file += ".pic";
|
---|
| 2038 | cout << " Trying file " << file << endl;
|
---|
| 2039 | fip = fopen(file.c_str(),"r");
|
---|
| 2040 | }
|
---|
| 2041 | }
|
---|
| 2042 |
|
---|
| 2043 | if(fip == NULL) {
|
---|
| 2044 | cerr << "Commander::Exec() Error opening file " << file << endl;
|
---|
| 2045 | hist << "##! Commander::Exec() Error opening file " << file << endl;
|
---|
| 2046 | return(0);
|
---|
| 2047 | }
|
---|
| 2048 |
|
---|
| 2049 | // hist << "### Executing commands from " << file << endl;
|
---|
| 2050 | PushStack(args);
|
---|
| 2051 | if (trace) {
|
---|
| 2052 | ShowMessage("### Executing commands from ", _MAGENTA_);
|
---|
| 2053 | ShowMessage(file.c_str(), _MAGENTA_);
|
---|
| 2054 | ShowMessage("\n", _MAGENTA_);
|
---|
| 2055 | }
|
---|
| 2056 |
|
---|
| 2057 | bool ohv = histon;
|
---|
| 2058 | histon = false;
|
---|
[2856] | 2059 | while (fgets(line_buff,1023,fip) != NULL)
|
---|
[2446] | 2060 | {
|
---|
| 2061 | if (trace) ShowMessage(line_buff, _MAGENTA_);
|
---|
| 2062 | line_buff[strlen(line_buff)-1] = '\0'; /* LF/CR de la fin */
|
---|
| 2063 | string line(line_buff);
|
---|
[2518] | 2064 | rcc = Interpret(line);
|
---|
| 2065 | if ((rcc == CMD_RETURN_RC) || (rcc == CMD_BREAKEXE_RC)) break;
|
---|
[2446] | 2066 | }
|
---|
| 2067 | histon = ohv;
|
---|
| 2068 |
|
---|
| 2069 | // hist << "### End of Exec( " << file << " ) " << endl;
|
---|
| 2070 | if (trace) {
|
---|
| 2071 | ShowMessage("### End of Exec( ", _MAGENTA_);
|
---|
| 2072 | ShowMessage(file.c_str(), _MAGENTA_);
|
---|
| 2073 | ShowMessage(" ) \n", _MAGENTA_);
|
---|
| 2074 | }
|
---|
| 2075 |
|
---|
| 2076 | PopStack(true);
|
---|
| 2077 |
|
---|
| 2078 | return(0);
|
---|
| 2079 | }
|
---|
| 2080 |
|
---|
| 2081 | /* --Methode-- */
|
---|
[2671] | 2082 | void Commander::ListThreads()
|
---|
| 2083 | {
|
---|
[2955] | 2084 | cout << "--- Commander::ListThreads()- command execution threads NThread="
|
---|
| 2085 | << CmdThrExeList.size() << " ---" << endl;
|
---|
[2671] | 2086 | for(list<CommandExeThr *>::iterator tit = CmdThrExeList.begin();
|
---|
| 2087 | tit != CmdThrExeList.end(); tit++) {
|
---|
| 2088 | cout << "Id=" << (*tit)->Id();
|
---|
[2955] | 2089 | if ( (*tit)->IfRunning() ) cout << " Executing";
|
---|
| 2090 | else if ( (*tit)->IfDone() ) cout << " Finished , Rc= " << (*tit)->getRC();
|
---|
| 2091 | else cout << " Stopped/Canceled";
|
---|
| 2092 | cout << " (Cmd= " << (*tit)->Keyword() << " " << (*tit)->Tokens().substr(0,35);
|
---|
| 2093 | if ((*tit)->Tokens().length() > 35) cout << "... )" << endl;
|
---|
| 2094 | else cout << " )" << endl;
|
---|
[2671] | 2095 | }
|
---|
| 2096 | }
|
---|
| 2097 | /* --Methode-- */
|
---|
[2955] | 2098 | void Commander::StopThr(uint_8 id, bool fgkill)
|
---|
[2671] | 2099 | {
|
---|
| 2100 | for(list<CommandExeThr *>::iterator tit = CmdThrExeList.begin();
|
---|
| 2101 | tit != CmdThrExeList.end(); tit++) {
|
---|
[2955] | 2102 | if ( ((*tit)->Id() == id) && ((*tit)->IfRunning()) ) {
|
---|
| 2103 | if (fgkill) {
|
---|
| 2104 | (*tit)->kill(SIGUSR1);
|
---|
| 2105 | cout << "Commander::StopThr() Send signal SIGUSR1 to Thread Id= " << id << endl;
|
---|
| 2106 | }
|
---|
| 2107 | else {
|
---|
| 2108 | (*tit)->cancel();
|
---|
| 2109 | cout << "Commander::StopThr() Canceling Thread Id= " << id << endl;
|
---|
| 2110 | }
|
---|
[2671] | 2111 | return;
|
---|
| 2112 | }
|
---|
| 2113 | }
|
---|
[2943] | 2114 | cout << "Commander::StopThr()/Error: No active thread with Id= " << id << endl;
|
---|
[2671] | 2115 | }
|
---|
| 2116 |
|
---|
| 2117 | /* --Methode-- */
|
---|
| 2118 | void Commander::CleanThrList()
|
---|
| 2119 | {
|
---|
| 2120 | cout << "---- Commander::CleanThrList() Cleaning thrlist ----- \n";
|
---|
| 2121 | list<CommandExeThr *> thrcopie;
|
---|
[2955] | 2122 | int ncl = 0;
|
---|
[2671] | 2123 | for(list<CommandExeThr *>::iterator tit = CmdThrExeList.begin();
|
---|
| 2124 | tit != CmdThrExeList.end(); tit++) {
|
---|
[2955] | 2125 | if ( ((*tit)->IfEnded() || (*tit)->IfStopped()) && (ncl < 3) ) {
|
---|
[2671] | 2126 | cout << " Thread Id= " << (*tit)->Id() << " rc= " << (*tit)->getRC() << " Cleaned" << endl;
|
---|
| 2127 | delete (*tit);
|
---|
[2955] | 2128 | ncl++;
|
---|
[2671] | 2129 | }
|
---|
| 2130 | else thrcopie.push_back((*tit));
|
---|
| 2131 | }
|
---|
| 2132 | CmdThrExeList = thrcopie;
|
---|
| 2133 | cout << " ... " << CmdThrExeList.size() << " threads still active " << endl;
|
---|
| 2134 | }
|
---|
| 2135 |
|
---|
| 2136 | /* --Methode-- */
|
---|
| 2137 | void Commander::WaitThreads()
|
---|
| 2138 | {
|
---|
| 2139 | cout << "---- Commander::WaitThreads() Wait/Join command execution threads - NThread="
|
---|
| 2140 | << CmdThrExeList.size() << " ----- " << endl;
|
---|
| 2141 | for(list<CommandExeThr *>::iterator tit = CmdThrExeList.begin();
|
---|
| 2142 | tit != CmdThrExeList.end(); tit++) {
|
---|
| 2143 | try {
|
---|
| 2144 | if (! (*tit)->IfDone()) (*tit)->join();
|
---|
| 2145 | }
|
---|
| 2146 | catch (std::exception & e) {
|
---|
| 2147 | cout << " Commander::WaitThreads()/Exception msg= " << e.what() << endl;
|
---|
| 2148 | }
|
---|
| 2149 | cout << " Joined thread Id= " << (*tit)->Id() << " rc= " << (*tit)->getRC() << endl;
|
---|
| 2150 | delete (*tit);
|
---|
| 2151 | }
|
---|
| 2152 | CmdThrExeList.erase(CmdThrExeList.begin(), CmdThrExeList.end());
|
---|
| 2153 | }
|
---|
| 2154 |
|
---|
| 2155 | /* --Methode-- */
|
---|
[2446] | 2156 | int Commander::CShellExecute(string cmd)
|
---|
| 2157 | {
|
---|
| 2158 | if(cmd.size()<=0) return -1;
|
---|
| 2159 |
|
---|
| 2160 | string fname = GetTmpDir(); fname += "cshell_exec_pia.csh";
|
---|
| 2161 |
|
---|
| 2162 | string cmdrm = "rm -f " + fname;
|
---|
| 2163 | system(cmdrm.c_str());
|
---|
| 2164 |
|
---|
| 2165 | FILE *fip = fopen(fname.c_str(),"w");
|
---|
| 2166 | if(fip==NULL) {
|
---|
| 2167 | cout << "Commander/CShellExecute_Error: fopen("<<fname<<") failed"<<endl;
|
---|
| 2168 | return -2;
|
---|
| 2169 | }
|
---|
| 2170 | fprintf(fip,"#!/bin/csh\n\n");
|
---|
| 2171 | fprintf(fip,"%s\n",cmd.c_str());
|
---|
| 2172 | fprintf(fip,"\nexit 0\n");
|
---|
| 2173 | fclose(fip);
|
---|
| 2174 |
|
---|
| 2175 | cmd = "csh "; cmd += fname;
|
---|
| 2176 | system(cmd.c_str());
|
---|
| 2177 |
|
---|
| 2178 | system(cmdrm.c_str());
|
---|
| 2179 |
|
---|
| 2180 | return 0;
|
---|
| 2181 | }
|
---|
| 2182 |
|
---|
| 2183 | static string* videstr = NULL;
|
---|
| 2184 | /* --Methode-- */
|
---|
| 2185 | string& Commander::GetUsage(const string& kw)
|
---|
| 2186 | {
|
---|
| 2187 | bool fndok = false;
|
---|
| 2188 | CmdExmap::iterator it = cmdexmap.find(kw);
|
---|
| 2189 | if (it == cmdexmap.end()) {
|
---|
| 2190 | it = helpexmap.find(kw);
|
---|
| 2191 | if (it != helpexmap.end()) fndok = true;
|
---|
| 2192 | }
|
---|
| 2193 | else fndok = true;
|
---|
| 2194 | if (fndok) return( (*it).second.us );
|
---|
| 2195 | // Keyword pas trouve
|
---|
| 2196 | if (videstr == NULL) videstr = new string("");
|
---|
| 2197 | *videstr = "Nothing known about " + kw + " ?? ";
|
---|
| 2198 | return(*videstr);
|
---|
| 2199 |
|
---|
| 2200 | }
|
---|
| 2201 |
|
---|
| 2202 |
|
---|
| 2203 | /* Les definitions suivantes doivent se trouver ds l'en-tete du fichier LaTeX
|
---|
| 2204 | \newcommand{\piacommand}[1]{
|
---|
| 2205 | \framebox{\bf \Large #1 } \index{#1} % (Command)
|
---|
| 2206 | }
|
---|
| 2207 |
|
---|
| 2208 | \newcommand{\piahelpitem}[1]{
|
---|
| 2209 | \framebox{\bf \Large #1 } \index{#1} (Help item)
|
---|
| 2210 | }
|
---|
| 2211 |
|
---|
| 2212 | \newcommand{\myppageref}[1]{ (p. \pageref{#1} ) }
|
---|
| 2213 | */
|
---|
| 2214 |
|
---|
| 2215 | // Fonction qui remplace tout caractere non alphanumerique en Z
|
---|
| 2216 | static void check_latex_reflabel(string & prl)
|
---|
| 2217 | {
|
---|
[3581] | 2218 | for(unsigned int k=0; k<prl.length(); k++)
|
---|
[2446] | 2219 | if (! isalnum(prl[k]) ) prl[k] = 'Z';
|
---|
| 2220 | }
|
---|
[2466] | 2221 |
|
---|
[2446] | 2222 | // Fonction qui remplace _ en \_
|
---|
| 2223 | static string check_latex_underscore(string const & mot)
|
---|
| 2224 | {
|
---|
| 2225 | string rs;
|
---|
[3581] | 2226 | for(unsigned int k=0; k<mot.length(); k++) {
|
---|
[2466] | 2227 | if (mot[k] == '_') rs += "\\_";
|
---|
[2446] | 2228 | else rs += mot[k];
|
---|
| 2229 | }
|
---|
| 2230 | return rs;
|
---|
| 2231 | }
|
---|
| 2232 |
|
---|
| 2233 | /* --Methode-- */
|
---|
[2943] | 2234 | /*!
|
---|
| 2235 | \brief Produces a LaTeX file containing the registered command helps
|
---|
| 2236 | The file \b fname is created and can be inserted into a LaTeX document
|
---|
| 2237 | in order to produce the list of registered commands and corresponding description
|
---|
| 2238 | texts.
|
---|
| 2239 | The LaTeX file should contain the following definitions:
|
---|
| 2240 | \verbatim
|
---|
| 2241 | \newcommand{\piacommand}[1]{
|
---|
| 2242 | \framebox{\bf \Large #1 } \index{#1} % (Command)
|
---|
| 2243 | }
|
---|
| 2244 |
|
---|
| 2245 | \newcommand{\piahelpitem}[1]{
|
---|
| 2246 | \framebox{\bf \Large #1 } \index{#1} (Help item)
|
---|
| 2247 | }
|
---|
| 2248 |
|
---|
| 2249 | \newcommand{\myppageref}[1]{ (p. \pageref{#1} ) }
|
---|
| 2250 |
|
---|
| 2251 | \endverbatim
|
---|
| 2252 | */
|
---|
[2446] | 2253 | void Commander::HelptoLaTeX(string const & fname)
|
---|
| 2254 | {
|
---|
| 2255 | FILE *fip;
|
---|
| 2256 | if ((fip = fopen(fname.c_str(), "w")) == NULL) {
|
---|
| 2257 | cout << "Commander::HelptoLaTex_Error: fopen( " << fname << endl;
|
---|
| 2258 | return;
|
---|
| 2259 | }
|
---|
| 2260 |
|
---|
| 2261 | fputs("% ----- Liste des groupes de Help ----- \n",fip);
|
---|
| 2262 | fputs("List of {\\bf piapp} on-line Help groups: \n", fip);
|
---|
| 2263 | fputs("\\begin{itemize} \n",fip);
|
---|
| 2264 | string prl;
|
---|
| 2265 | string mol;
|
---|
| 2266 | CmdHGroup::iterator it;
|
---|
| 2267 | for(it = cmdhgrp.begin(); it != cmdhgrp.end(); it++) {
|
---|
| 2268 | if ((*it).first == "All") continue;
|
---|
| 2269 | prl = (*it).first; check_latex_reflabel(prl);
|
---|
| 2270 | mol = check_latex_underscore((*it).first);
|
---|
| 2271 | fprintf(fip,"\\item {\\bf %s } (p. \\pageref{%s}) \n",
|
---|
| 2272 | mol.c_str(), prl.c_str());
|
---|
| 2273 | }
|
---|
| 2274 |
|
---|
| 2275 | fputs("\\end{itemize} \n",fip);
|
---|
| 2276 |
|
---|
| 2277 | fputs("\\vspace*{10mm} \n",fip);
|
---|
| 2278 |
|
---|
| 2279 | CmdExmap::iterator ite;
|
---|
| 2280 | fputs("% ----- Liste de toutes les commandes et help item ----- \n",fip);
|
---|
| 2281 | fputs("\\vspace{5mm} \n",fip);
|
---|
| 2282 | // fputs("\\begin{table}[h!] \n", fip);
|
---|
| 2283 | fputs("\\begin{center} \n ", fip);
|
---|
| 2284 | fputs("\\rule{2cm}{1mm} List of {\\bf piapp} Help items \\rule{2cm}{1mm} \\\\ \n", fip);
|
---|
| 2285 | fputs("\\vspace{3mm} \n",fip);
|
---|
| 2286 | fputs("\\begin{tabular}{llllll} \n", fip);
|
---|
| 2287 | int kt = 0;
|
---|
| 2288 | for(ite = helpexmap.begin(); ite != helpexmap.end(); ite++) {
|
---|
| 2289 | prl = (*ite).first; check_latex_reflabel(prl);
|
---|
| 2290 | mol = check_latex_underscore((*ite).first);
|
---|
| 2291 | fprintf(fip,"%s & p. \\pageref{%s} ", mol.c_str(), prl.c_str() );
|
---|
| 2292 | kt++;
|
---|
| 2293 | if (kt < 3) fputs(" & ", fip);
|
---|
| 2294 | else { fputs(" \\\\ \n", fip); kt = 0; }
|
---|
| 2295 | }
|
---|
| 2296 | if (kt == 1) fputs(" & & & \\\\ \n", fip);
|
---|
| 2297 | else if (kt == 2) fputs(" & \\\\ \n", fip);
|
---|
| 2298 | fputs("\\end{tabular} \n", fip);
|
---|
| 2299 | fputs("\\end{center} \n", fip);
|
---|
| 2300 | //fputs("\\end{table} \n", fip);
|
---|
| 2301 | fputs("\\newpage \n",fip);
|
---|
| 2302 |
|
---|
| 2303 | int gid;
|
---|
| 2304 | for(it = cmdhgrp.begin(); it != cmdhgrp.end(); it++) {
|
---|
[2466] | 2305 | gid = (*it).second.gid;
|
---|
[2446] | 2306 | if (gid == 0) continue;
|
---|
| 2307 | // fputs("\\begin{table}[h!] \n",fip);
|
---|
| 2308 | fputs("\\vspace{6mm} \n",fip);
|
---|
| 2309 | fputs("\\begin{center} \n ", fip);
|
---|
[2466] | 2310 | fprintf(fip, "\\rule{2cm}{0.5mm} \\makebox[60mm]{{ \\bf %s } help group} \\rule{2cm}{0.5mm} \\\\ \n",
|
---|
[2446] | 2311 | (*it).first.c_str());
|
---|
| 2312 | fputs("\\vspace{3mm} \n",fip);
|
---|
| 2313 | fputs("\\begin{tabular}{llllll} \n", fip);
|
---|
| 2314 | kt = 0;
|
---|
| 2315 | for(ite = helpexmap.begin(); ite != helpexmap.end(); ite++) {
|
---|
| 2316 | if ((*ite).second.group != gid) continue;
|
---|
| 2317 | prl = (*ite).first; check_latex_reflabel(prl);
|
---|
| 2318 | mol = check_latex_underscore((*ite).first);
|
---|
| 2319 | fprintf(fip,"%s & p. \\pageref{%s} ", mol.c_str(), prl.c_str() );
|
---|
| 2320 | kt++;
|
---|
| 2321 | if (kt < 3) fputs(" & ", fip);
|
---|
| 2322 | else { fputs(" \\\\ \n", fip); kt = 0; }
|
---|
| 2323 | }
|
---|
| 2324 | for(ite = cmdexmap.begin(); ite != cmdexmap.end(); ite++) {
|
---|
| 2325 | if ((*ite).second.group != gid) continue;
|
---|
| 2326 | prl = (*ite).first; check_latex_reflabel(prl);
|
---|
| 2327 | mol = check_latex_underscore((*ite).first);
|
---|
| 2328 | fprintf(fip,"%s & p. \\pageref{%s} ", mol.c_str(), prl.c_str() );
|
---|
| 2329 | kt++;
|
---|
| 2330 | if (kt < 3) fputs(" & ", fip);
|
---|
| 2331 | else { fputs(" \\\\ \n", fip); kt = 0; }
|
---|
| 2332 | }
|
---|
| 2333 | if (kt == 1) fputs(" & & & \\\\ \n", fip);
|
---|
| 2334 | else if (kt == 2) fputs(" & \\\\ \n", fip);
|
---|
| 2335 | fputs("\\end{tabular} \n", fip);
|
---|
| 2336 | fputs("\\end{center} \n", fip);
|
---|
| 2337 | // fputs("\\end{table} \n",fip);
|
---|
| 2338 | // fputs("\\vspace{5mm} \n",fip);
|
---|
| 2339 | }
|
---|
| 2340 | // fputs("\\newline \n",fip);
|
---|
| 2341 |
|
---|
| 2342 | fputs("% ----- Liste des commandes dans chaque groupe ----- \n",fip);
|
---|
| 2343 | fputs("\\newpage \n",fip);
|
---|
| 2344 |
|
---|
| 2345 | for(it = cmdhgrp.begin(); it != cmdhgrp.end(); it++) {
|
---|
[2466] | 2346 | gid = (*it).second.gid;
|
---|
[2446] | 2347 | if (gid == 0) continue;
|
---|
| 2348 | prl = (*it).first; check_latex_reflabel(prl);
|
---|
| 2349 | fprintf(fip,"\\subsection{%s} \\label{%s} \n",
|
---|
| 2350 | (*it).first.c_str(), prl.c_str());
|
---|
[2466] | 2351 | if ((*it).second.desc.length() > 0)
|
---|
| 2352 | fprintf(fip,"%s \n \\\\[2mm] ", (*it).second.desc.c_str());
|
---|
[2446] | 2353 | fprintf(fip,"\\noindent \n");
|
---|
| 2354 | for(ite = helpexmap.begin(); ite != helpexmap.end(); ite++) {
|
---|
| 2355 | if ((*ite).second.group != gid) continue;
|
---|
| 2356 | prl = (*ite).first; check_latex_reflabel(prl);
|
---|
| 2357 | mol = check_latex_underscore((*ite).first);
|
---|
| 2358 | fprintf(fip,"\\piahelpitem{%s} \\label{%s} \n",
|
---|
| 2359 | mol.c_str(), prl.c_str());
|
---|
| 2360 | fputs("\\begin{verbatim} \n",fip);
|
---|
| 2361 | fprintf(fip,"%s\n", (*ite).second.us.c_str());
|
---|
| 2362 | fputs("\\end{verbatim} \n",fip);
|
---|
| 2363 | }
|
---|
| 2364 | for(ite = cmdexmap.begin(); ite != cmdexmap.end(); ite++) {
|
---|
| 2365 | if ((*ite).second.group != gid) continue;
|
---|
| 2366 | prl = (*ite).first; check_latex_reflabel(prl);
|
---|
| 2367 | mol = check_latex_underscore((*ite).first);
|
---|
| 2368 | fprintf(fip,"\\piacommand{%s} \\label{%s} \n",
|
---|
| 2369 | mol.c_str(), prl.c_str());
|
---|
| 2370 | fputs("\\begin{verbatim} \n",fip);
|
---|
| 2371 | fprintf(fip,"%s\n", (*ite).second.us.c_str());
|
---|
| 2372 | fputs("\\end{verbatim} \n",fip);
|
---|
| 2373 | }
|
---|
| 2374 | }
|
---|
| 2375 |
|
---|
| 2376 | fclose(fip);
|
---|
[2466] | 2377 | cout << " Commander::HelptoLaTeX() - LaTeX format help written to file " << fname << endl;
|
---|
| 2378 |
|
---|
[2446] | 2379 | return;
|
---|
| 2380 | }
|
---|
| 2381 |
|
---|
| 2382 |
|
---|
[2483] | 2383 | } // End of namespace SOPHYA
|
---|
[2446] | 2384 |
|
---|