%{ /* * StrRes.l * * Lex file for parsing string resource files */ #include /* Allow frame header files to be singly included */ #define FRAME_LIB_INCLUDE #include #include "types.h" #include "debug.h" #include "mem.h" #include "heap.h" #include "treap.h" #include "strres.h" #include "strresly.h" /* Get the Yacc definitions */ #include "strres_parser.h" void strres_error(char *pMessage,...); /* Maximum length for any TEXT_T value */ #define YYLMAX 255 /* Store for any string values */ extern STRING aText[TEXT_BUFFERS][YYLMAX]; static UDWORD currText=0; // Note if in a comment static BOOL inComment; /* Pointer to the input buffer */ static UBYTE *pInputBuffer = NULL; static UBYTE *pEndBuffer = NULL; #define YY_INPUT(buf,result,max_size) \ if (pInputBuffer != pEndBuffer) { \ buf[0] = *(pInputBuffer++); result = 1; \ } else { \ buf[0] = EOF; result = YY_NULL; \ } %} %option nounput %option prefix="strres_" %option yylineno %x COMMENT %x QUOTE %x SLCOMMENT %% /* Match text values */ [a-zA-Z][-0-9_a-zA-Z]* { strcpy(aText[currText], strres_text); strres_lval.sval = aText[currText]; currText = (currText + 1) % TEXT_BUFFERS; return TEXT_T; } /* Match quoted text */ \" { BEGIN QUOTE; } \" { BEGIN 0; } \n { strres_error("Unexpected end of line in string"); } [^\"\n]* { strcpy(aText[currText], strres_text); strres_lval.sval = aText[currText]; currText = (currText + 1) % TEXT_BUFFERS; return QTEXT_T; } /* Skip white space */ [ \t\n\x0d\x0a] ; /* Strip comments */ "/*" { inComment=TRUE; BEGIN COMMENT; } "*/" | "*/"\n { inComment=FALSE; BEGIN 0; } . | \n ; /* Strip single line comments */ "//" { BEGIN SLCOMMENT; } \n { BEGIN 0; } [^\n]* ; /* Match anything that's been missed and pass it as a char */ . return strres_text[0]; %% /* Set the current input buffer for the lexer */ void strresSetInputBuffer(UBYTE *pBuffer, UDWORD size) { pInputBuffer = pBuffer; pEndBuffer = pBuffer + size; /* Reset the lexer incase it's been used before */ // YY_FLUSH_BUFFER; yy_flush_buffer( YY_CURRENT_BUFFER ); } void strresGetErrorData(int *pLine, char **ppText) { *pLine = strres_lineno; *ppText = strres_text; } int strres_wrap(void) { if (inComment) { DBERROR(("Warning: reched end of file in a comment")); } return 1; }