/** @license 2022 Neil Edelman, distributed under the terms of the [MIT License](https://opensource.org/licenses/MIT). Scan journal entries for kjv references. */ #include "../src/journal.h" #include "../src/scan_flight.h" #include /* C99 */ #include #include #include #include /*!conditions:re2c*/ int scan(union date32 date, const char *const buffer, struct flights *const f) { const char *YYCURSOR, *YYMARKER, *yyt1, *yyt2, *yyt3, *s0, *s1, *t0, *t1; enum flight_type type = Glider; enum YYCONDTYPE condition = yycline; size_t line = 1; char datestr[12] = {0}; const char *why = "unexpected"; assert(buffer && f); YYCURSOR = YYMARKER = yyt1 = buffer; /*!re2c /**/ re2c:define:YYCTYPE = char; re2c:yyfill:enable = 0; re2c:define:YYGETCONDITION = "condition"; re2c:define:YYSETCONDITION = "condition = @@;"; re2c:define:YYGETCONDITION:naked = 1; re2c:define:YYSETCONDITION:naked = 1; unix_control = [\x01-\x08\x0b-\x1f\x7f]; ws = [ \t]; glyph = [^] \ ("\x00" | "\n" | unix_control | ws); natural = [1-9][0-9]*; */ for( ; ; ) { /*!re2c /**/ /* Default ignore. */ [^\n\x00] { continue; } "\x00" { why = "no newline at end of file"; goto catch; } "\x00" { return 1; } "\n" => line { line++; continue; } * :=> skip /* Except these two. */ "[glider]" :=> glider "[flight]" :=> flight /* "M" - Motor Car Tow "W" - Winch "A" - Aero Tow */ /* type; registration; launch -- landing; pic; sic; single engine day dual; pilot; instrument simulated; actual; remarks */ * { why = "default unrecognized"; goto catch; } */ } assert(0); /* Never gets here. */ catch: if(!errno) errno = EILSEQ; date32_to_string(date, &datestr); fprintf(stderr, "%s\n" "%s line %zu: %s.\n", buffer, datestr, line, why); return 0; }