1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
|
/* Generated by re2c */
#line 1 "ctx_s.re"
// re2c $INPUT -o $OUTPUT -s
#include <cstring>
#include <iostream>
struct Scanner
{
Scanner(char *txt)
: cur(txt), lim(txt + strlen(txt))
{
}
char *cur;
char *lim;
char *ptr;
char *ctx;
char *tok;
};
#define YYCTYPE char
#define YYCURSOR s.cur
#define YYLIMIT s.lim
#define YYMARKER s.ptr
#define YYCTXMARKER s.ctx
#define YYFILL(n)
enum What
{
UNEXPECTED,
KEYWORD,
NUMBER,
EOI
};
char * tokens[] = { "UNEXPECTED", "KEYWORD", "NUMBER", "EOI" };
int scan(Scanner &s)
{
YYCTYPE *cursor = s.cur;
if(cursor == s.lim)
return EOI;
std:
s.tok = cursor;
#line 51 "ctx_s.c"
{
YYCTYPE yych;
if ((YYLIMIT - YYCURSOR) < 3) YYFILL(3);
yych = *YYCURSOR;
if (yych <= ' ') {
if (yych <= 0x08) goto yy1;
if (yych <= '\n') goto yy3;
if (yych >= ' ') goto yy3;
} else {
if (yych <= '9') {
if (yych >= '0') goto yy4;
} else {
if (yych <= '`') goto yy1;
if (yych <= 'b') goto yy6;
}
}
yy1:
++YYCURSOR;
yy2:
#line 61 "ctx_s.re"
{
return UNEXPECTED;
}
#line 75 "ctx_s.c"
yy3:
++YYCURSOR;
#line 54 "ctx_s.re"
{
if(s.cur == s.lim)
return EOI;
cursor = s.cur;
goto std;
}
#line 85 "ctx_s.c"
yy4:
++YYCURSOR;
if (YYLIMIT <= YYCURSOR) YYFILL(1);
yych = *YYCURSOR;
if (yych <= '/') goto yy5;
if (yych <= '9') goto yy4;
yy5:
#line 51 "ctx_s.re"
{ return NUMBER; }
#line 95 "ctx_s.c"
yy6:
yych = *++YYCURSOR;
if (yych <= '/') goto yy2;
if (yych == '1') {
YYCTXMARKER = YYCURSOR;
goto yy9;
}
if (yych >= ':') goto yy2;
YYCTXMARKER = YYCURSOR;
yy7:
++YYCURSOR;
if (YYLIMIT <= YYCURSOR) YYFILL(1);
yych = *YYCURSOR;
if (yych <= '/') goto yy8;
if (yych <= '9') goto yy7;
yy8:
YYCURSOR = YYCTXMARKER;
#line 50 "ctx_s.re"
{ return KEYWORD; }
#line 115 "ctx_s.c"
yy9:
yych = *++YYCURSOR;
if (yych <= '/') goto yy10;
if (yych <= '9') goto yy7;
yy10:
YYCURSOR -= 1;
#line 49 "ctx_s.re"
{ return KEYWORD; }
#line 124 "ctx_s.c"
}
#line 64 "ctx_s.re"
}
#line 130 "ctx_s.c"
#define YYMAXFILL 3
#line 67 "ctx_s.re"
int main(int,char**)
{
Scanner s("a77 a1 b8 b1");
int t, n = 0;
while ((t = scan(s)) != EOI)
{
std::cout << (++n) << ": " << tokens[t] << " = \""; std::cout.write(s.tok, s.cur-s.tok); std::cout << "\"" << std::endl;
}
}
|