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
|
# Generated by re2py
# re2py $INPUT -o $OUTPUT
# expect a null-terminated string
def lex(yyinput):
yycursor = 0
count = 0
while True:
yystate = 0
while True:
match yystate:
case 0:
yych = yyinput[yycursor]
yycursor += 1
if yych <= 0x20:
if yych <= 0x00:
yystate = 1
continue
if yych <= 0x1F:
yystate = 2
continue
yystate = 3
continue
else:
if yych <= 0x60:
yystate = 2
continue
if yych <= 0x7A:
yystate = 4
continue
yystate = 2
continue
case 1:
return count
case 2:
return -1
case 3:
yych = yyinput[yycursor]
if yych == 0x20:
yycursor += 1
yystate = 3
continue
break
case 4:
yych = yyinput[yycursor]
if yych <= 0x60:
yystate = 5
continue
if yych <= 0x7A:
yycursor += 1
yystate = 4
continue
yystate = 5
continue
case 5:
count += 1
break
case _:
raise "internal lexer error"
assert lex(b"\0") == 0
assert lex(b"one two three\0") == 3
assert lex(b"f0ur\0") == -1
|