Server IP : 85.214.239.14 / Your IP : 3.147.126.199 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/3/root/proc/self/root/usr/share/doc/re2c/examples/go/fill/ |
Upload File : |
//go:generate re2go $INPUT -o $OUTPUT package main import ( "os" "strings" ) const BUFSIZE int = 4096 type Input struct { file *os.File buf []byte cur int mar int tok int lim int eof bool } func fill(in *Input) int { if in.eof { return -1 } // unexpected EOF // Error: lexeme too long. In real life can reallocate a larger buffer. if in.tok < 1 { return -2 } // Shift buffer contents (discard everything up to the current token). copy(in.buf[0:], in.buf[in.tok:in.lim]) in.cur -= in.tok in.mar -= in.tok in.lim -= in.tok in.tok = 0 // Fill free space at the end of buffer with new data from file. n, _ := in.file.Read(in.buf[in.lim:BUFSIZE]) in.lim += n in.buf[in.lim] = 0 // If read less than expected, this is the end of input. in.eof = in.lim < BUFSIZE return 0 } func lex(in *Input) int { count := 0 for { in.tok = in.cur /*!re2c re2c:eof = 0; re2c:define:YYCTYPE = byte; re2c:define:YYPEEK = "in.buf[in.cur]"; re2c:define:YYSKIP = "in.cur += 1"; re2c:define:YYBACKUP = "in.mar = in.cur"; re2c:define:YYRESTORE = "in.cur = in.mar"; re2c:define:YYLESSTHAN = "in.lim <= in.cur"; re2c:define:YYFILL = "fill(in) == 0"; str = ['] ([^'\\] | [\\][^])* [']; * { return -1 } $ { return count } str { count += 1; continue } [ ]+ { continue } */ } } func main() () { fname := "input" content := "'qu\000tes' 'are' 'fine: \\'' "; // Prepare input file: a few times the size of the buffer, containing // strings with zeroes and escaped quotes. f, _ := os.Create(fname) f.WriteString(strings.Repeat(content, BUFSIZE)) f.Seek(0, 0) count := 3 * BUFSIZE // number of quoted strings written to file // Prepare lexer state: all offsets are at the end of buffer. in := &Input{ file: f, // Sentinel at `lim` offset is set to zero, which triggers YYFILL. buf: make([]byte, BUFSIZE+1), cur: BUFSIZE, mar: BUFSIZE, tok: BUFSIZE, lim: BUFSIZE, eof: false, } // Run the lexer. if lex(in) != count { panic("error"); } // Cleanup: remove input file. f.Close(); os.Remove(fname); }