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 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300
|
// Code generated by re2go, DO NOT EDIT.
//line "codegen/go/003_fill_f.re":1
//go:generate re2go $INPUT -o $OUTPUT -f
package main
import "fmt"
import "os"
//line "codegen/go/003_fill_f.go":10
const YYMAXFILL = 2
//line "codegen/go/003_fill_f.re":7
var SIZE uint = 11
type YYCTYPE byte
type Input struct {
file *os.File
data []byte
cursor uint
marker uint
token uint
limit uint
eof bool
state int
}
const (
lexError = iota
lexNeedMoreSpace
lexNeedMoreInput
lexResume
lexEnd
lexNumber1
lexNumber2
lexSpace
)
func fill(in *Input, need uint) int {
// End of input has already been reached, nothing to do.
if in.eof {
fmt.Println("fill error: unexpected EOF")
return lexError
}
// Check if after moving the current lexeme to the beginning
// of buffer there will be enough free space.
if SIZE-(in.cursor-in.token) < need {
fmt.Println("fill error: lexeme too long")
return lexNeedMoreSpace
}
// Discard everything up to the start of the current lexeme,
// shift buffer contents and adjust offsets.
copy(in.data[0:], in.data[in.token:in.limit])
in.cursor -= in.token
in.marker -= in.token
in.limit -= in.token
in.token = 0
// Read new data (as much as possible to fill the buffer).
n, _ := in.file.Read(in.data[in.limit:SIZE])
in.limit += uint(n)
fmt.Printf("fill(%u): %v '%s'\n", need, in.data[:in.limit+1],
string(in.data[:in.limit]))
// If read less than expected, this is the end of input.
in.eof = in.limit < SIZE
// If end of input, add padding so that the lexer can read
// the remaining characters at the end of buffer.
if in.eof {
for i := uint(0); i < YYMAXFILL; i += 1 {
in.data[in.limit+i] = 0
}
in.limit += YYMAXFILL
}
return lexResume
}
func Lex(in *Input) (int, uint) {
var yych YYCTYPE
//line "codegen/go/003_fill_f.go":86
switch (in.state) {
case 0:
goto yyFillLabel0
case 1:
goto yyFillLabel1
case 2:
goto yyFillLabel2
case 3:
goto yyFillLabel3
default:
goto yy0
}
yy0:
if (in.limit-in.cursor < 1) {
in.state = 0
return lexNeedMoreInput, 1
}
yyFillLabel0:
yych = YYCTYPE(in.data[in.cursor])
switch (yych) {
case 0x00:
goto yy2
case ' ':
goto yy4
case '0','1','2','3','4','5','6','7','8','9':
goto yy6
default:
goto yy3
}
yy2:
in.cursor += 1
in.state = -1
//line "codegen/go/003_fill_f.re":94
{
fmt.Println("end")
return lexEnd, 0
}
//line "codegen/go/003_fill_f.go":124
yy3:
in.cursor += 1
in.state = -1
//line "codegen/go/003_fill_f.re":89
{
fmt.Println("error")
return lexError, 0
}
//line "codegen/go/003_fill_f.go":133
yy4:
in.cursor += 1
if (in.limit-in.cursor < 1) {
in.state = 1
return lexNeedMoreInput, 1
}
yyFillLabel1:
yych = YYCTYPE(in.data[in.cursor])
switch (yych) {
case ' ':
goto yy4
default:
goto yy5
}
yy5:
in.state = -1
//line "codegen/go/003_fill_f.re":109
{
return lexSpace, 0
}
//line "codegen/go/003_fill_f.go":154
yy6:
in.cursor += 1
in.marker = in.cursor
if (in.limit-in.cursor < 2) {
in.state = 2
return lexNeedMoreInput, 2
}
yyFillLabel2:
yych = YYCTYPE(in.data[in.cursor])
switch (yych) {
case '-':
goto yy8
case '0','1','2','3','4','5','6','7','8','9':
goto yy6
default:
goto yy7
}
yy7:
in.state = -1
//line "codegen/go/003_fill_f.re":99
{
fmt.Printf("number-1: %v\n", string(in.data[in.token:in.cursor]))
return lexNumber1, 0
}
//line "codegen/go/003_fill_f.go":179
yy8:
in.cursor += 1
yych = YYCTYPE(in.data[in.cursor])
switch (yych) {
case '0','1','2','3','4','5','6','7','8','9':
goto yy10
default:
goto yy9
}
yy9:
in.cursor = in.marker
goto yy7
yy10:
in.cursor += 1
if (in.limit-in.cursor < 1) {
in.state = 3
return lexNeedMoreInput, 1
}
yyFillLabel3:
yych = YYCTYPE(in.data[in.cursor])
switch (yych) {
case '0','1','2','3','4','5','6','7','8','9':
goto yy10
default:
goto yy11
}
yy11:
in.state = -1
//line "codegen/go/003_fill_f.re":104
{
fmt.Printf("number-2: %v\n", string(in.data[in.token:in.cursor]))
return lexNumber2, 0
}
//line "codegen/go/003_fill_f.go":213
//line "codegen/go/003_fill_f.re":112
}
func test(data string) int {
tmpfile := "input.txt"
f, _ := os.Create(tmpfile)
f.WriteString(data)
f.WriteString("\000") // lexer expects NULL-terminator
f.Seek(0, 0)
defer func() {
f.Close()
os.Remove(tmpfile)
}()
in := &Input{
file: f,
data: make([]byte, SIZE+YYMAXFILL),
cursor: SIZE,
marker: SIZE,
token: SIZE,
limit: SIZE,
eof: false,
}
need := uint(1)
result := lexNeedMoreInput
loop:
for {
switch result {
case lexError:
break loop
case lexEnd:
break loop
case lexNeedMoreInput:
result = fill(in, need)
if result != lexResume {
break loop
}
default:
in.token = in.cursor
in.state = 0
}
result, need = Lex(in)
}
return result
}
func main() {
var s string
// Succeeds, the lexer has enough characters ahead.
s = " 123456789 "
if test(s) != lexEnd {
panic("expected 'number: 123456789'")
}
// Fails, there is no space for the needed characters.
s = " 1234567890 "
if test(s) != lexNeedMoreSpace {
panic("expected 'fill error: lexeme too long'")
}
// Succeeds, the lexer has enough characters ahead
// (although the same lexeme length as the previous case,
// YYFILL argument is smaller in this state).
s = " 12345-6789 "
if test(s) != lexEnd {
panic("expected 'number: 12345-6789'")
}
// Fails, there is no space for any characters.
s = " 12345-67890 "
if test(s) != lexNeedMoreSpace {
panic("expected 'fill error: lexeme too long'")
}
// Fails, invalid input.
s = "?#!*"
if test(s) != lexError {
panic("expected 'error'")
}
fmt.Println("OK")
}
|