%x NORMAL QUOTED COMMENT %{ /* * $Id: lispfilt.l,v 1.9 2003/11/02 21:58:13 tom Exp $ * * Filter to add vile "attribution" sequences to selected bits of lisp code. * * TODO: implement readtable case directives :upcase, :downcase, :preserve * and :invert * * TODO: implement other radix than 10 (that may require rewriting this in C) * * TODO: rewrite this into C anyway, since flex refuses to match "#|" unless * I exclude "|" from {IDENT}. */ #include #define FLTSTACK_EXTRA int sibling; int quoted; #include DefineFilter("lisp"); static char *Keyword_attr; static char *Comment_attr; static char *Ident_attr; static char *String_attr; static char *Number_attr; static char *paren_attr(void); %} SIGN [-+] POINT [.] DIGIT ([0-9]) DECIMAL [0-9] SLASH [/] INTEGER ({SIGN}?{DECIMAL}+{POINT}?)|({SIGN}?{DIGIT}+) RATIO ({DIGIT}+){SLASH}({DIGIT}+) EXPONENT ([DEFLSdefls]{SIGN}?{DIGIT}+) FLOAT ({SIGN}?{DECIMAL}*{POINT}{DECIMAL}+{EXPONENT}?)|({SIGN}?{DECIMAL}+({POINT}{DECIMAL}*){EXPONENT}) NUMBER {INTEGER}|{RATIO}|{FLOAT} COMMENT ;[^\n]* IDENT [^[:space:]\"\(\)|]+ LPAREN \( RPAREN \) %% #\| { BeginQuote(COMMENT, Comment_attr); } \|# { FinishQuote(NORMAL); } [\n] { flt_bfr_append(yytext, yyleng); } [^\n] { flt_bfr_append(yytext, yyleng); } {COMMENT} { WriteToken(Comment_attr); } '{LPAREN} { push_state(NORMAL); FLTSTACK_THIS.quoted = 1; WriteToken(paren_attr()); } {LPAREN} { int save = FLTSTACK_THIS.quoted; push_state(NORMAL); FLTSTACK_THIS.quoted = save; WriteToken(paren_attr()); } {RPAREN} { WriteToken(paren_attr()); pop_state(); } {NUMBER} { WriteToken(Number_attr); } {IDENT} { WriteToken(ci_keyword_attr(yytext)); } \" { BeginQuote(QUOTED, String_attr); } \\. { flt_bfr_append(yytext, yyleng); } [^\\\"]+ { flt_bfr_append(yytext, yyleng); } \" { FinishQuote(NORMAL); } %% static char * paren_attr(void) { return (FLTSTACK_THIS.quoted ? String_attr : ""); } static void init_filter(int before GCC_UNUSED) { } static void do_filter(FILE *inputs) { yyin = inputs; Keyword_attr = class_attr(NAME_KEYWORD); Comment_attr = class_attr(NAME_COMMENT); Ident_attr = class_attr(NAME_IDENT2); String_attr = class_attr(NAME_LITERAL); Number_attr = class_attr(NAME_NUMBER); begin_state(NORMAL); while (yylex() > 0) { } flt_bfr_error(); end_state(); }