/* -*-C-*- * Lexical scanner for command line parsing * * Copyright 1993 Eric Youngdale * 2000 Eric Pouech * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ %{ #include #include #include "winbase.h" #include "wincon.h" #include "debugger.h" #include "y.tab.h" #undef YY_INPUT #define YY_INPUT(buf,result,max_size) \ if ( (result = DEBUG_ReadLine("Wine-dbg>", (char *) buf, max_size, TRUE, TRUE )) < 0 ) \ YY_FATAL_ERROR( "read() in flex scanner failed" ); #define YY_NO_UNPUT static int syntax_error; %} DIGIT [0-9] HEXDIGIT [0-9a-fA-F] FORMAT [ubcdiswx] IDENTIFIER [_a-zA-Z~][_a-zA-Z0-9~@]* PATHNAME [/_a-zA-Z\.~][/_a-zA-Z0-9\.~@]* STRING \"[^\n"]+\" %s FORMAT_EXPECTED %s PATH_EXPECTED %s INFO_CMD %s HELP_CMD %s DEL_CMD %s WALK_CMD %s SHOW_CMD %s MODE_CMD %s NOCMD %x ASTRING_EXPECTED %x NOPROCESS %% /* set to special state when no process is loaded. */ if (!DEBUG_CurrProcess && YYSTATE == INITIAL) {BEGIN(NOPROCESS);} <*>\n { BEGIN(INITIAL); syntax_error = 0; return tEOL; } /* Indicates end of command. Reset state. */ "||" { return OP_LOR; } "&&" { return OP_LAND; } "==" { return OP_EQ; } "!=" { return OP_NE; } "<=" { return OP_LE; } ">=" { return OP_GE; } "<<" { return OP_SHL; } ">>" { return OP_SHR; } "->" { return OP_DRF; } [-+<=>|&^()*/%:!~,\.] { return *yytext; } "[" { return *yytext; } "]" { return *yytext; } "0x"{HEXDIGIT}+ { sscanf(yytext, "%x", &yylval.integer); return tNUM; } {DIGIT}+ { sscanf(yytext, "%d", &yylval.integer); return tNUM; } "/"{DIGIT}+{FORMAT} { char* last; yylval.integer = strtol( yytext+1, &last, 0 ) << 8; yylval.integer |= *last; return tFORMAT; } "/"{FORMAT} { yylval.integer = (1 << 8) | yytext[1]; return tFORMAT; } {STRING} { yylval.string = DEBUG_MakeSymbol(yytext); return tSTRING; } [^\n]+ { char* p = yytext; while (*p == ' ' || *p == '\t') p++; yylval.string = DEBUG_MakeSymbol(p); return tSTRING; } info|inf|in { BEGIN(INFO_CMD); return tINFO; } up { BEGIN(NOCMD); return tUP; } down|dow|do { BEGIN(NOCMD); return tDOWN; } frame|fram|fra|fr { BEGIN(NOCMD); return tFRAME; } list|lis|li|l { BEGIN(PATH_EXPECTED); return tLIST; } enable|enabl|enab|ena { BEGIN(NOCMD); return tENABLE;} disable|disabl|disab|disa|dis { BEGIN(NOCMD); return tDISABLE; } disassemble|disassembl|disassemb|disassem|disasse|disass|disas { BEGIN(NOCMD); return tDISASSEMBLE; } display|displa|displ|disp { BEGIN(FORMAT_EXPECTED); return tDISPLAY; } undisplay|undispla|undispl|undisp|undis|undi|und { BEGIN(NOCMD); return tUNDISPLAY; } delete|delet|dele|del { BEGIN(DEL_CMD); return tDELETE; } quit|qui|qu|q { BEGIN(NOCMD); return tQUIT; } set|se { BEGIN(NOCMD); return tSET; } walk|w { BEGIN(WALK_CMD); return tWALK; } x { BEGIN(FORMAT_EXPECTED); return tEXAM; } help|hel|he|"?" { BEGIN(HELP_CMD); return tHELP; } backtrace|backtrac|backtra|backt|back|bac|ba|bt { BEGIN(NOCMD); return tBACKTRACE; } where|wher|whe { BEGIN(NOCMD); return tBACKTRACE; } cont|con|co|c { BEGIN(NOCMD); return tCONT; } pass|pas|pa { BEGIN(NOCMD); return tPASS; } condition|conditio|conditi|condit|condi|cond { BEGIN(NOCMD); return tCOND; } step|ste|st|s { BEGIN(NOCMD); return tSTEP; } next|nex|ne|n { BEGIN(NOCMD); return tNEXT; } stepi|si { BEGIN(NOCMD); return tSTEPI; } nexti|ni { BEGIN(NOCMD); return tNEXTI; } finish|finis|fini|fin|fi { BEGIN(NOCMD); return tFINISH; } abort|abor|abo { BEGIN(NOCMD); return tABORT; } print|prin|pri|pr|p { BEGIN(FORMAT_EXPECTED); return tPRINT; } mode { BEGIN(MODE_CMD); return tMODE; } show|sho|sh { BEGIN(SHOW_CMD); return tSHOW; } symbolfile|symbols|symbol|sf { BEGIN(PATH_EXPECTED); return tSYMBOLFILE; } break|brea|bre|br|b { BEGIN(NOCMD); return tBREAK; } watch|watc|wat { BEGIN(NOCMD); return tWATCH; } whatis|whati|what { BEGIN(NOCMD); return tWHATIS; } run|ru|r { BEGIN(ASTRING_EXPECTED); return tRUN;} detach|detac|deta|det { BEGIN(NOCMD); return tDETACH; } attach|attac|atta|att { BEGIN(NOCMD); return tATTACH; } share|shar|sha { return tSHARE; } locals|local|loca|loc { return tLOCAL; } class|clas|cla { return tCLASS; } module|modul|modu|mod { return tMODULE; } queue|queu|que { return tQUEUE; } process|proces|proce|proc { return tPROCESS; } threads|thread|threa|thre|thr|th { return tTHREAD; } modref|modre|modr { return tMODREF; } registers|regs|reg|re { return tREGS; } segments|segment|segm|seg|se { return tSEGMENTS; } stack|stac|sta|st { return tSTACK; } maps|map { return tMAPS; } window|windo|wind|win|wnd { return tWND; } info|inf|in { return tINFO; } vm86 { return tVM86; } directories|directorie|directori|director|directo|direct|direc|direc|dir { BEGIN(PATH_EXPECTED); return tDIR; } char { return tCHAR; } short { return tSHORT; } int { return tINT; } long { return tLONG; } float { return tFLOAT; } double { return tDOUBLE; } unsigned { return tUNSIGNED; } signed { return tSIGNED; } struct { return tSTRUCT; } union { return tUNION; } enum { return tENUM; } {IDENTIFIER} { yylval.string = DEBUG_MakeSymbol(yytext); return tIDENTIFIER; } "$"{IDENTIFIER} { yylval.string = DEBUG_MakeSymbol(yytext+1); return tINTVAR; } {PATHNAME} { yylval.string = DEBUG_MakeSymbol(yytext); return tPATH; } <*>[ \t]+ /* Eat up whitespace */ . { BEGIN(ASTRING_EXPECTED); yyless(0); return tNOPROCESS;} <*>. { if (syntax_error == 0) { syntax_error++; DEBUG_Printf(DBG_CHN_MESG, "Syntax Error (%s)\n", yytext); } } %% #ifndef yywrap int yywrap(void) { return 1; } #endif #ifndef whitespace #define whitespace(c) (((c) == ' ') || ((c) == '\t')) #endif /* Strip whitespace from the start and end of STRING. */ static void stripwhite (char *string) { register int i = 0; while (whitespace (string[i])) i++; if (i) strcpy (string, string + i); i = strlen (string) - 1; while (i > 0 && whitespace (string[i])) i--; string[++i] = '\0'; } int DEBUG_ReadLine(const char* pfx, char * buf, int size, int flush_sym, int keep_hist) { char buf_line[256]; char* ptr; int len; DWORD nread; for (;;) { if (flush_sym) DEBUG_FlushSymbols(); /* as of today, console handles can be file handles... so better use file APIs rather than * consoles */ WriteFile(GetStdHandle(STD_OUTPUT_HANDLE), pfx, strlen(pfx), &nread, NULL); if (!ReadFile(GetStdHandle(STD_INPUT_HANDLE), buf_line, sizeof(buf_line), &nread, NULL)) break; /* FIXME: should be rewritten not to remove and then add the trailing '\n' */ if (nread > 0 && buf_line[nread - 1] == '\n') nread--; buf_line[nread] = 0; /* Remove leading and trailing whitespace from the line */ stripwhite (buf_line); if (keep_hist) { static char last_line[256] = ""; /* If there is anything left, add it to the history list and execute it. Otherwise, re-execute last command. */ if (*buf_line) { strncpy( last_line, buf_line, sizeof(last_line) - 1 ); last_line[sizeof(last_line) - 1] = '\0'; } ptr = last_line; } else { /* I should also tweak with the undoc functions to remove this line from the console * history... */ ptr = buf_line; } if ((len = strlen(ptr)) > 0) { if (size < len + 1) { DEBUG_Printf(DBG_CHN_MESG, "Fatal readline goof.\n"); DEBUG_Exit(0); } strcpy(buf, ptr); buf[len] = '\n'; buf[len+1] = 0; return len + 1; } } return 0; } static char *local_symbols[30]; static int next_symbol; char * DEBUG_MakeSymbol(const char * symbol) { assert(0 <= next_symbol && next_symbol < (sizeof(local_symbols) / sizeof(local_symbols[0]))); return local_symbols[next_symbol++] = DBG_strdup(symbol); } void DEBUG_FlushSymbols(void) { while(--next_symbol >= 0) DBG_free(local_symbols[next_symbol]); next_symbol = 0; }