From: Alexander Frink Date: Wed, 23 Feb 2000 19:56:05 +0000 (+0000) Subject: better handling for comments in ginaccint.bin.cpp X-Git-Tag: release_0-5-3~1 X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=commitdiff_plain;h=ca42e030e43e6d16a9786c65bf8f73413f34a5c9 better handling for comments in ginaccint.bin.cpp --- diff --git a/cint/ginaccint.bin.cpp b/cint/ginaccint.bin.cpp index 38d3daee..9c4cd8d3 100644 --- a/cint/ginaccint.bin.cpp +++ b/cint/ginaccint.bin.cpp @@ -49,38 +49,6 @@ void sigterm_handler(int n) exit(1); } -bool is_whitespace_char(char c) -{ - return ((c==' ') || (c=='\t') || (c=='\n') || (c=='\r')); -} - -char first_non_whitespace_char(char const * s) -{ - int l = strlen(s); - int pos = 0; - while ((pos=0) && is_whitespace_char(s[pos])) - pos--; - return s[pos]; -} - -string strip_whitespace(string const & s) -{ - string s2; - int l = s.length(); - for (int pos=0; pos0)) { + open_braces--; + } + break; + case '/': + slash=true; + break; + case '*': + asterisk=true; + break; + default: + preprocessed += line[pos]; + } + } + pos++; + } + + /* + cout << "preprocessed=" << preprocessed << endl; + cout << "comment=" << comment << ", single_quote=" << single_quote + << ",double_quote=" << double_quote << ", open_braces=" << open_braces + << endl; + */ + + return preprocessed; +} + int main(void) { char *line; @@ -204,66 +273,54 @@ int main(void) exec_tempfile("ex LAST,LLAST,LLLAST;\n"); bool quit = false; - bool next_command_is_function=false; + bool next_command_is_function=false; + bool single_quote=false; + bool double_quote=false; + bool comment=false; + unsigned open_braces=0; + while (!quit) { strcpy(prompt,PROMPT); - int open_braces = 0; bool end_of_command = false; string command; + string preprocessed; while (!end_of_command) { line = G__input(prompt); - - int pos = 0; - bool double_quote = false; - bool single_quote = false; - while(line[pos]!='\0') { - switch(line[pos]) { - case '"': - if (!single_quote) double_quote = !double_quote; - break; - case '\'': - if (!double_quote) single_quote = !single_quote; - break; - case '{': - if ((!single_quote) && (!double_quote)) open_braces++; - break; - case '}': - if ((!single_quote) && (!double_quote)) open_braces--; - break; - } - pos++; - } command += line; - command += '\n'; - if (open_braces==0) { - if ((first_non_whitespace_char(command.c_str())=='#')|| - (first_non_whitespace_char(command.c_str())=='.')|| - (last_non_whitespace_char(command.c_str())==';')|| - (last_non_whitespace_char(command.c_str())=='}')) { + command += "\n"; + preprocessed += preprocess(line,comment,single_quote,double_quote,open_braces); + if ((open_braces==0)&&(!single_quote)&&(!double_quote)&&(!comment)) { + unsigned l=preprocessed.length(); + if ((l==0)|| + (preprocessed[0]=='#')|| + (preprocessed[0]=='.')|| + (preprocessed[l-1]==';')|| + (preprocessed[l-1]=='}')) { end_of_command=true; } } strcpy(prompt," > "); } - string stripped_command=strip_whitespace(command); - if ((stripped_command=="quit;")|| - (stripped_command=="exit;")|| - (stripped_command=="bye;")|| - (stripped_command==".q")|| - (stripped_command==".quit")|| - (stripped_command==".exit")|| - (stripped_command==".bye")) { + if ((preprocessed=="quit;")|| + (preprocessed=="exit;")|| + (preprocessed=="bye;")|| + (preprocessed==".q")|| + (preprocessed==".quit")|| + (preprocessed==".exit")|| + (preprocessed==".bye")) { quit = true; - } else if (stripped_command==".function") { + } else if (preprocessed==".function") { cout << "next expression can be a function definition" << endl; next_command_is_function=true; - } else if (stripped_command==".cint") { + } else if (preprocessed==".cint") { cout << endl << "switching to cint interactive mode" << endl; cout << "'h' for help, 'q' to quit, '{ statements }' or 'p [expression]' to evaluate" << endl; G__pause(); cout << "back from cint" << endl; - } else if (command[0]=='.') { + /* test for more special commands + } else if (preprocessed==".xyz") { cout << "special command (TBD): " << command << endl; + */ } else { // cout << "now processing: " << command << endl; if (next_command_is_function) {