%x COMMENT CODE PERLXS %{ /* * $Header: /usr/build/vile/vile/filters/RCS/xs-filt.l,v 1.10 2003/05/20 20:38:41 tom Exp $ * * Filter to add vile "attribution" sequences to selected bits of Perl/C * extension source * - T.Dickey */ #include DefineFilter("xs"); static char *Comment_attr; static char *Preproc_attr; static char *Number_attr; static char *String_attr; static int my_state; static void comment_or_preproc(char *text); %} BLANK [ \t]* SSTRING \'(\\.|[^'\\])*\' DSTRING \"(\\.|[^"\\])*\" STRINGS ({SSTRING}|{DSTRING}) INCLUDE (<[^>]+>|\"[^"]+\") KEYWORD [a-zA-Z_][a-zA-Z_0-9]* SIGN [-+] DECIMAL [0-9_]+ OCTAL 0[0-7_]+ HEXADECIMAL 0x[0-9a-fA-F_]+ REAL [-+]?([0-9_]*\.[0-9][0-9_]*)([eE][+-]?[0-9_]+)? NUMBER {SIGN}?({DECIMAL}|{OCTAL}|{HEXADECIMAL}|{REAL}) %% ^{BLANK}#include{BLANK}{INCLUDE} | ^{BLANK}#{KEYWORD} { WriteToken(Preproc_attr); } {KEYWORD} { WriteToken(keyword_attr(yytext)); if (!strcmp(yytext, "MODULE")) { my_state = PERLXS; BEGIN(my_state); } } "/*" { WriteToken(Comment_attr); BEGIN(COMMENT); } [^*]* { WriteToken(Comment_attr); } "*"+[^*/]* { WriteToken(Comment_attr); } "*"+"/" { WriteToken(Comment_attr); BEGIN(my_state); } "//".*$ { WriteToken(Comment_attr); } {STRINGS} { WriteToken(String_attr); } {NUMBER} { WriteToken(Number_attr); } ^{BLANK}#.*$ { comment_or_preproc(yytext); } %% static void comment_or_preproc(char *text) { static const char *tbl[] = { "define", "elif", "else", "endif", "if", "ifdef", "ifndef", "undef", }; unsigned j, k; char *base = text; text++; /* skip "#" */ while (isspace(CharOf(*text))) text++; for (j = 0; j < sizeof(tbl)/sizeof(tbl[0]); j++) { k = strlen(tbl[j]); if (!strncmp(tbl[j], text, k) && !isalnum(CharOf(text[k]))) { text += k; flt_puts(base, text-base, Preproc_attr); /* FIXME: this can't handle inline comment or a continuation line */ flt_puts(text, strlen(text), ""); return; } } flt_puts(base, text-base, ""); flt_puts(text, strlen(text), Comment_attr); } static void init_filter(int before GCC_UNUSED) { } static void do_filter(FILE *inputs) { yyin = inputs; Comment_attr = class_attr(NAME_COMMENT); Number_attr = class_attr(NAME_NUMBER); Preproc_attr = class_attr(NAME_PREPROC); String_attr = class_attr(NAME_LITERAL); my_state = CODE; BEGIN(my_state); while (yylex() > 0) { } }