%{ /* * $Header: /usr/build/vile/vile/filters/RCS/mms-filt.l,v 1.9 2003/05/20 20:38:41 tom Exp $ * * Filter to add vile "attribution" sequences to selected bits of VMS mms script * - T.Dickey */ #include DefineFilter("mms"); static char *Comment_attr; static char *Ident2_attr; static char *Keyword_attr; static char *String_attr; static void write_keyword(char *text, int size) { int colon = size > 1 && text[size-1] == ':'; int space = 0; if (colon) text[--size] = 0; while (isspace(CharOf(*text))) { text++; size--; space++; } while (space-- > 0) flt_putc(' '); space = 0; while (isspace(CharOf(text[size-1]))) { text[--size] = 0; space++; } flt_puts(text, size, keyword_attr(text)); while (space-- > 0) flt_putc(' '); if (colon) flt_putc(':'); } static void init_filter(int before GCC_UNUSED) { } static void do_filter(FILE *inputs) { yyin = inputs; Comment_attr = class_attr(NAME_COMMENT); Ident2_attr = class_attr(NAME_IDENT2); Keyword_attr = class_attr(NAME_KEYWORD); String_attr = class_attr(NAME_LITERAL); while (yylex() > 0) { } } %} SPACE [ \t] SSTRING \'\'(\\.|[^'\\])*\' DSTRING \"(\\.|[^"\\])*\" STRINGS ({SSTRING}|{DSTRING}) IDENT [$a-zA-Z_][$a-zA-Z0-9_]* PARAM '{IDENT} INLINECOMMENT ![^\n]* COMMENT "#"[^\n]* %% ^{SPACE}*(.)?include{SPACE}* { write_keyword(yytext, yyleng); } ^{SPACE}*[\.!]{IDENT}{SPACE}*: { write_keyword(yytext, yyleng); } ^{SPACE}*{IDENT}{SPACE}*: { WriteToken(Keyword_attr); } ^{SPACE}*{IDENT}{SPACE}*= { WriteToken(Ident2_attr); } \$[@!%^&*?<] | \${SPACE}*\([^\)]+\) { WriteToken(Ident2_attr); } {PARAM} { WriteToken(Ident2_attr); } {STRINGS} { WriteToken(String_attr); } {INLINECOMMENT} | {COMMENT} { WriteToken(Comment_attr); }