123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566 |
- /* A packrat parser generated by PackCC 1.5.0 */
- #ifdef _MSC_VER
- #undef _CRT_SECURE_NO_WARNINGS
- #define _CRT_SECURE_NO_WARNINGS
- #endif /* _MSC_VER */
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #ifndef _MSC_VER
- #if defined __GNUC__ && defined _WIN32 /* MinGW */
- #ifndef PCC_USE_SYSTEM_STRNLEN
- #define strnlen(str, maxlen) pcc_strnlen(str, maxlen)
- static size_t pcc_strnlen(const char *str, size_t maxlen) {
- size_t i;
- for (i = 0; i < maxlen && str[i]; i++);
- return i;
- }
- #endif /* !PCC_USE_SYSTEM_STRNLEN */
- #endif /* defined __GNUC__ && defined _WIN32 */
- #endif /* !_MSC_VER */
- #define PCC_DBG_EVALUATE 0
- #define PCC_DBG_MATCH 1
- #define PCC_DBG_NOMATCH 2
- #include "seq.h"
- #include <stdio.h>
- int nlines= 1;
- #if 1
- static const char *dbg_str[] = { "Evaluating rule", "Matched rule", "Abandoning rule" };
- #define PCC_DEBUG(event, rule, level, pos, buffer, length) \
- fprintf(stdout, "%*s%s %s @%d [%.*s]\n", level * 2, "", dbg_str[event], rule, pos, length, buffer)
- /* NOTE: To guarantee the output order, stderr, which can lead a race condition with stdout, is not used. */
- fflush(stdout);
- #endif
- #ifndef PCC_BUFFERSIZE
- #define PCC_BUFFERSIZE 256
- #endif /* !PCC_BUFFERSIZE */
- #ifndef PCC_ARRAYSIZE
- #define PCC_ARRAYSIZE 2
- #endif /* !PCC_ARRAYSIZE */
- #define VOID_VALUE (~(size_t)0)
- typedef enum pcc_bool_tag {
- PCC_FALSE = 0,
- PCC_TRUE
- } pcc_bool_t;
- typedef struct pcc_char_array_tag {
- char *buf;
- size_t max;
- size_t len;
- } pcc_char_array_t;
- typedef struct pcc_range_tag {
- size_t start;
- size_t end;
- } pcc_range_t;
- typedef int pcc_value_t;
- typedef void *pcc_auxil_t;
- typedef struct pcc_value_table_tag {
- pcc_value_t *buf;
- size_t max;
- size_t len;
- } pcc_value_table_t;
- typedef struct pcc_value_refer_table_tag {
- pcc_value_t **buf;
- size_t max;
- size_t len;
- } pcc_value_refer_table_t;
- typedef struct pcc_capture_tag {
- pcc_range_t range;
- char *string; /* mutable */
- } pcc_capture_t;
- typedef struct pcc_capture_table_tag {
- pcc_capture_t *buf;
- size_t max;
- size_t len;
- } pcc_capture_table_t;
- typedef struct pcc_capture_const_table_tag {
- const pcc_capture_t **buf;
- size_t max;
- size_t len;
- } pcc_capture_const_table_t;
- typedef struct pcc_thunk_tag pcc_thunk_t;
- typedef struct pcc_thunk_array_tag pcc_thunk_array_t;
- typedef void (*pcc_action_t)(seq_context_t *, pcc_thunk_t *, pcc_value_t *);
- typedef enum pcc_thunk_type_tag {
- PCC_THUNK_LEAF,
- PCC_THUNK_NODE
- } pcc_thunk_type_t;
- typedef struct pcc_thunk_leaf_tag {
- pcc_value_refer_table_t values;
- pcc_capture_const_table_t capts;
- pcc_capture_t capt0;
- pcc_action_t action;
- } pcc_thunk_leaf_t;
- typedef struct pcc_thunk_node_tag {
- const pcc_thunk_array_t *thunks; /* just a reference */
- pcc_value_t *value; /* just a reference */
- } pcc_thunk_node_t;
- typedef union pcc_thunk_data_tag {
- pcc_thunk_leaf_t leaf;
- pcc_thunk_node_t node;
- } pcc_thunk_data_t;
- struct pcc_thunk_tag {
- pcc_thunk_type_t type;
- pcc_thunk_data_t data;
- };
- struct pcc_thunk_array_tag {
- pcc_thunk_t **buf;
- size_t max;
- size_t len;
- };
- typedef struct pcc_thunk_chunk_tag {
- pcc_value_table_t values;
- pcc_capture_table_t capts;
- pcc_thunk_array_t thunks;
- size_t pos; /* the starting position in the character buffer */
- } pcc_thunk_chunk_t;
- typedef struct pcc_lr_entry_tag pcc_lr_entry_t;
- typedef enum pcc_lr_answer_type_tag {
- PCC_LR_ANSWER_LR,
- PCC_LR_ANSWER_CHUNK
- } pcc_lr_answer_type_t;
- typedef union pcc_lr_answer_data_tag {
- pcc_lr_entry_t *lr;
- pcc_thunk_chunk_t *chunk;
- } pcc_lr_answer_data_t;
- typedef struct pcc_lr_answer_tag pcc_lr_answer_t;
- struct pcc_lr_answer_tag {
- pcc_lr_answer_type_t type;
- pcc_lr_answer_data_t data;
- size_t pos; /* the absolute position in the input */
- pcc_lr_answer_t *hold;
- };
- typedef pcc_thunk_chunk_t *(*pcc_rule_t)(seq_context_t *);
- typedef struct pcc_rule_set_tag {
- pcc_rule_t *buf;
- size_t max;
- size_t len;
- } pcc_rule_set_t;
- typedef struct pcc_lr_head_tag pcc_lr_head_t;
- struct pcc_lr_head_tag {
- pcc_rule_t rule;
- pcc_rule_set_t invol;
- pcc_rule_set_t eval;
- pcc_lr_head_t *hold;
- };
- typedef struct pcc_lr_memo_tag {
- pcc_rule_t rule;
- pcc_lr_answer_t *answer;
- } pcc_lr_memo_t;
- typedef struct pcc_lr_memo_map_tag {
- pcc_lr_memo_t *buf;
- size_t max;
- size_t len;
- } pcc_lr_memo_map_t;
- typedef struct pcc_lr_table_entry_tag {
- pcc_lr_head_t *head; /* just a reference */
- pcc_lr_memo_map_t memos;
- pcc_lr_answer_t *hold_a;
- pcc_lr_head_t *hold_h;
- } pcc_lr_table_entry_t;
- typedef struct pcc_lr_table_tag {
- pcc_lr_table_entry_t **buf;
- size_t max;
- size_t len;
- } pcc_lr_table_t;
- struct pcc_lr_entry_tag {
- pcc_rule_t rule;
- pcc_thunk_chunk_t *seed; /* just a reference */
- pcc_lr_head_t *head; /* just a reference */
- };
- typedef struct pcc_lr_stack_tag {
- pcc_lr_entry_t **buf;
- size_t max;
- size_t len;
- } pcc_lr_stack_t;
- struct seq_context_tag {
- size_t pos; /* the position in the input of the first character currently buffered */
- size_t cur; /* the current parsing position in the character buffer */
- size_t level;
- pcc_char_array_t buffer;
- pcc_lr_table_t lrtable;
- pcc_lr_stack_t lrstack;
- pcc_auxil_t auxil;
- };
- #ifndef PCC_ERROR
- #define PCC_ERROR(auxil) pcc_error()
- static void pcc_error(void) {
- fprintf(stderr, "Syntax error\n");
- exit(1);
- }
- #endif /* !PCC_ERROR */
- #ifndef PCC_GETCHAR
- #define PCC_GETCHAR(auxil) getchar()
- #endif /* !PCC_GETCHAR */
- #ifndef PCC_MALLOC
- #define PCC_MALLOC(auxil, size) pcc_malloc_e(size)
- static void *pcc_malloc_e(size_t size) {
- void *const p = malloc(size);
- if (p == NULL) {
- fprintf(stderr, "Out of memory\n");
- exit(1);
- }
- return p;
- }
- #endif /* !PCC_MALLOC */
- #ifndef PCC_REALLOC
- #define PCC_REALLOC(auxil, ptr, size) pcc_realloc_e(ptr, size)
- static void *pcc_realloc_e(void *ptr, size_t size) {
- void *const p = realloc(ptr, size);
- if (p == NULL) {
- fprintf(stderr, "Out of memory\n");
- exit(1);
- }
- return p;
- }
- #endif /* !PCC_REALLOC */
- #ifndef PCC_FREE
- #define PCC_FREE(auxil, ptr) free(ptr)
- #endif /* !PCC_FREE */
- #ifndef PCC_DEBUG
- #define PCC_DEBUG(event, rule, level, pos, buffer, length) ((void)0)
- #endif /* !PCC_DEBUG */
- static char *pcc_strndup_e(pcc_auxil_t auxil, const char *str, size_t len) {
- const size_t m = strnlen(str, len);
- char *const s = (char *)PCC_MALLOC(auxil, m + 1);
- memcpy(s, str, m);
- s[m] = '\0';
- return s;
- }
- static void pcc_char_array__init(pcc_auxil_t auxil, pcc_char_array_t *array, size_t max) {
- array->len = 0;
- array->max = max;
- array->buf = (char *)PCC_MALLOC(auxil, array->max);
- }
- static void pcc_char_array__add(pcc_auxil_t auxil, pcc_char_array_t *array, char ch) {
- if (array->max <= array->len) {
- const size_t n = array->len + 1;
- size_t m = array->max;
- if (m == 0) m = 1;
- while (m < n && m != 0) m <<= 1;
- if (m == 0) m = n;
- array->buf = (char *)PCC_REALLOC(auxil, array->buf, m);
- array->max = m;
- }
- array->buf[array->len++] = ch;
- }
- static void pcc_char_array__term(pcc_auxil_t auxil, pcc_char_array_t *array) {
- PCC_FREE(auxil, array->buf);
- }
- static void pcc_value_table__init(pcc_auxil_t auxil, pcc_value_table_t *table, size_t max) {
- table->len = 0;
- table->max = max;
- table->buf = (pcc_value_t *)PCC_MALLOC(auxil, sizeof(pcc_value_t) * table->max);
- }
- static void pcc_value_table__resize(pcc_auxil_t auxil, pcc_value_table_t *table, size_t len) {
- if (table->max < len) {
- size_t m = table->max;
- if (m == 0) m = 1;
- while (m < len && m != 0) m <<= 1;
- if (m == 0) m = len;
- table->buf = (pcc_value_t *)PCC_REALLOC(auxil, table->buf, sizeof(pcc_value_t) * m);
- table->max = m;
- }
- table->len = len;
- }
- static void pcc_value_table__term(pcc_auxil_t auxil, pcc_value_table_t *table) {
- PCC_FREE(auxil, table->buf);
- }
- static void pcc_value_refer_table__init(pcc_auxil_t auxil, pcc_value_refer_table_t *table, size_t max) {
- table->len = 0;
- table->max = max;
- table->buf = (pcc_value_t **)PCC_MALLOC(auxil, sizeof(pcc_value_t *) * table->max);
- }
- static void pcc_value_refer_table__resize(pcc_auxil_t auxil, pcc_value_refer_table_t *table, size_t len) {
- size_t i;
- if (table->max < len) {
- size_t m = table->max;
- if (m == 0) m = 1;
- while (m < len && m != 0) m <<= 1;
- if (m == 0) m = len;
- table->buf = (pcc_value_t **)PCC_REALLOC(auxil, table->buf, sizeof(pcc_value_t *) * m);
- table->max = m;
- }
- for (i = table->len; i < len; i++) table->buf[i] = NULL;
- table->len = len;
- }
- static void pcc_value_refer_table__term(pcc_auxil_t auxil, pcc_value_refer_table_t *table) {
- PCC_FREE(auxil, table->buf);
- }
- static void pcc_capture_table__init(pcc_auxil_t auxil, pcc_capture_table_t *table, size_t max) {
- table->len = 0;
- table->max = max;
- table->buf = (pcc_capture_t *)PCC_MALLOC(auxil, sizeof(pcc_capture_t) * table->max);
- }
- static void pcc_capture_table__resize(pcc_auxil_t auxil, pcc_capture_table_t *table, size_t len) {
- size_t i;
- for (i = len; i < table->len; i++) PCC_FREE(auxil, table->buf[i].string);
- if (table->max < len) {
- size_t m = table->max;
- if (m == 0) m = 1;
- while (m < len && m != 0) m <<= 1;
- if (m == 0) m = len;
- table->buf = (pcc_capture_t *)PCC_REALLOC(auxil, table->buf, sizeof(pcc_capture_t) * m);
- table->max = m;
- }
- for (i = table->len; i < len; i++) {
- table->buf[i].range.start = 0;
- table->buf[i].range.end = 0;
- table->buf[i].string = NULL;
- }
- table->len = len;
- }
- static void pcc_capture_table__term(pcc_auxil_t auxil, pcc_capture_table_t *table) {
- while (table->len > 0) {
- table->len--;
- PCC_FREE(auxil, table->buf[table->len].string);
- }
- PCC_FREE(auxil, table->buf);
- }
- static void pcc_capture_const_table__init(pcc_auxil_t auxil, pcc_capture_const_table_t *table, size_t max) {
- table->len = 0;
- table->max = max;
- table->buf = (const pcc_capture_t **)PCC_MALLOC(auxil, sizeof(const pcc_capture_t *) * table->max);
- }
- static void pcc_capture_const_table__resize(pcc_auxil_t auxil, pcc_capture_const_table_t *table, size_t len) {
- size_t i;
- if (table->max < len) {
- size_t m = table->max;
- if (m == 0) m = 1;
- while (m < len && m != 0) m <<= 1;
- if (m == 0) m = len;
- table->buf = (const pcc_capture_t **)PCC_REALLOC(auxil, (pcc_capture_t **)table->buf, sizeof(const pcc_capture_t *) * m);
- table->max = m;
- }
- for (i = table->len; i < len; i++) table->buf[i] = NULL;
- table->len = len;
- }
- static void pcc_capture_const_table__term(pcc_auxil_t auxil, pcc_capture_const_table_t *table) {
- PCC_FREE(auxil, table->buf);
- }
- static pcc_thunk_t *pcc_thunk__create_leaf(pcc_auxil_t auxil, pcc_action_t action, size_t valuec, size_t captc) {
- pcc_thunk_t *const thunk = (pcc_thunk_t *)PCC_MALLOC(auxil, sizeof(pcc_thunk_t));
- thunk->type = PCC_THUNK_LEAF;
- pcc_value_refer_table__init(auxil, &thunk->data.leaf.values, valuec);
- pcc_value_refer_table__resize(auxil, &thunk->data.leaf.values, valuec);
- pcc_capture_const_table__init(auxil, &thunk->data.leaf.capts, captc);
- pcc_capture_const_table__resize(auxil, &thunk->data.leaf.capts, captc);
- thunk->data.leaf.capt0.range.start = 0;
- thunk->data.leaf.capt0.range.end = 0;
- thunk->data.leaf.capt0.string = NULL;
- thunk->data.leaf.action = action;
- return thunk;
- }
- static pcc_thunk_t *pcc_thunk__create_node(pcc_auxil_t auxil, const pcc_thunk_array_t *thunks, pcc_value_t *value) {
- pcc_thunk_t *const thunk = (pcc_thunk_t *)PCC_MALLOC(auxil, sizeof(pcc_thunk_t));
- thunk->type = PCC_THUNK_NODE;
- thunk->data.node.thunks = thunks;
- thunk->data.node.value = value;
- return thunk;
- }
- static void pcc_thunk__destroy(pcc_auxil_t auxil, pcc_thunk_t *thunk) {
- if (thunk == NULL) return;
- switch (thunk->type) {
- case PCC_THUNK_LEAF:
- PCC_FREE(auxil, thunk->data.leaf.capt0.string);
- pcc_capture_const_table__term(auxil, &thunk->data.leaf.capts);
- pcc_value_refer_table__term(auxil, &thunk->data.leaf.values);
- break;
- case PCC_THUNK_NODE:
- break;
- default: /* unknown */
- break;
- }
- PCC_FREE(auxil, thunk);
- }
- static void pcc_thunk_array__init(pcc_auxil_t auxil, pcc_thunk_array_t *array, size_t max) {
- array->len = 0;
- array->max = max;
- array->buf = (pcc_thunk_t **)PCC_MALLOC(auxil, sizeof(pcc_thunk_t *) * array->max);
- }
- static void pcc_thunk_array__add(pcc_auxil_t auxil, pcc_thunk_array_t *array, pcc_thunk_t *thunk) {
- if (array->max <= array->len) {
- const size_t n = array->len + 1;
- size_t m = array->max;
- if (m == 0) m = 1;
- while (m < n && m != 0) m <<= 1;
- if (m == 0) m = n;
- array->buf = (pcc_thunk_t **)PCC_REALLOC(auxil, array->buf, sizeof(pcc_thunk_t *) * m);
- array->max = m;
- }
- array->buf[array->len++] = thunk;
- }
- static void pcc_thunk_array__revert(pcc_auxil_t auxil, pcc_thunk_array_t *array, size_t len) {
- while (array->len > len) {
- array->len--;
- pcc_thunk__destroy(auxil, array->buf[array->len]);
- }
- }
- static void pcc_thunk_array__term(pcc_auxil_t auxil, pcc_thunk_array_t *array) {
- while (array->len > 0) {
- array->len--;
- pcc_thunk__destroy(auxil, array->buf[array->len]);
- }
- PCC_FREE(auxil, array->buf);
- }
- static pcc_thunk_chunk_t *pcc_thunk_chunk__create(pcc_auxil_t auxil) {
- pcc_thunk_chunk_t *const chunk = (pcc_thunk_chunk_t *)PCC_MALLOC(auxil, sizeof(pcc_thunk_chunk_t));
- pcc_value_table__init(auxil, &chunk->values, PCC_ARRAYSIZE);
- pcc_capture_table__init(auxil, &chunk->capts, PCC_ARRAYSIZE);
- pcc_thunk_array__init(auxil, &chunk->thunks, PCC_ARRAYSIZE);
- chunk->pos = 0;
- return chunk;
- }
- static void pcc_thunk_chunk__destroy(pcc_auxil_t auxil, pcc_thunk_chunk_t *chunk) {
- if (chunk == NULL) return;
- pcc_thunk_array__term(auxil, &chunk->thunks);
- pcc_capture_table__term(auxil, &chunk->capts);
- pcc_value_table__term(auxil, &chunk->values);
- PCC_FREE(auxil, chunk);
- }
- static void pcc_rule_set__init(pcc_auxil_t auxil, pcc_rule_set_t *set, size_t max) {
- set->len = 0;
- set->max = max;
- set->buf = (pcc_rule_t *)PCC_MALLOC(auxil, sizeof(pcc_rule_t) * set->max);
- }
- static size_t pcc_rule_set__index(pcc_auxil_t auxil, const pcc_rule_set_t *set, pcc_rule_t rule) {
- size_t i;
- for (i = 0; i < set->len; i++) {
- if (set->buf[i] == rule) return i;
- }
- return VOID_VALUE;
- }
- static pcc_bool_t pcc_rule_set__add(pcc_auxil_t auxil, pcc_rule_set_t *set, pcc_rule_t rule) {
- const size_t i = pcc_rule_set__index(auxil, set, rule);
- if (i != VOID_VALUE) return PCC_FALSE;
- if (set->max <= set->len) {
- const size_t n = set->len + 1;
- size_t m = set->max;
- if (m == 0) m = 1;
- while (m < n && m != 0) m <<= 1;
- if (m == 0) m = n;
- set->buf = (pcc_rule_t *)PCC_REALLOC(auxil, set->buf, sizeof(pcc_rule_t) * m);
- set->max = m;
- }
- set->buf[set->len++] = rule;
- return PCC_TRUE;
- }
- static pcc_bool_t pcc_rule_set__remove(pcc_auxil_t auxil, pcc_rule_set_t *set, pcc_rule_t rule) {
- const size_t i = pcc_rule_set__index(auxil, set, rule);
- if (i == VOID_VALUE) return PCC_FALSE;
- memmove(set->buf + i, set->buf + (i + 1), sizeof(pcc_rule_t) * (set->len - (i + 1)));
- return PCC_TRUE;
- }
- static void pcc_rule_set__clear(pcc_auxil_t auxil, pcc_rule_set_t *set) {
- set->len = 0;
- }
- static void pcc_rule_set__copy(pcc_auxil_t auxil, pcc_rule_set_t *set, const pcc_rule_set_t *src) {
- size_t i;
- pcc_rule_set__clear(auxil, set);
- for (i = 0; i < src->len; i++) {
- pcc_rule_set__add(auxil, set, src->buf[i]);
- }
- }
- static void pcc_rule_set__term(pcc_auxil_t auxil, pcc_rule_set_t *set) {
- PCC_FREE(auxil, set->buf);
- }
- static pcc_lr_head_t *pcc_lr_head__create(pcc_auxil_t auxil, pcc_rule_t rule) {
- pcc_lr_head_t *const head = (pcc_lr_head_t *)PCC_MALLOC(auxil, sizeof(pcc_lr_head_t));
- head->rule = rule;
- pcc_rule_set__init(auxil, &head->invol, PCC_ARRAYSIZE);
- pcc_rule_set__init(auxil, &head->eval, PCC_ARRAYSIZE);
- head->hold = NULL;
- return head;
- }
- static void pcc_lr_head__destroy(pcc_auxil_t auxil, pcc_lr_head_t *head) {
- if (head == NULL) return;
- pcc_lr_head__destroy(auxil, head->hold);
- pcc_rule_set__term(auxil, &head->eval);
- pcc_rule_set__term(auxil, &head->invol);
- PCC_FREE(auxil, head);
- }
- static void pcc_lr_entry__destroy(pcc_auxil_t auxil, pcc_lr_entry_t *lr);
- static pcc_lr_answer_t *pcc_lr_answer__create(pcc_auxil_t auxil, pcc_lr_answer_type_t type, size_t pos) {
- pcc_lr_answer_t *answer = (pcc_lr_answer_t *)PCC_MALLOC(auxil, sizeof(pcc_lr_answer_t));
- answer->type = type;
- answer->pos = pos;
- answer->hold = NULL;
- switch (answer->type) {
- case PCC_LR_ANSWER_LR:
- answer->data.lr = NULL;
- break;
- case PCC_LR_ANSWER_CHUNK:
- answer->data.chunk = NULL;
- break;
- default: /* unknown */
- PCC_FREE(auxil, answer);
- answer = NULL;
- }
- return answer;
- }
- static void pcc_lr_answer__set_chunk(pcc_auxil_t auxil, pcc_lr_answer_t *answer, pcc_thunk_chunk_t *chunk) {
- pcc_lr_answer_t *const a = pcc_lr_answer__create(auxil, answer->type, answer->pos);
- switch (answer->type) {
- case PCC_LR_ANSWER_LR:
- a->data.lr = answer->data.lr;
- break;
- case PCC_LR_ANSWER_CHUNK:
- a->data.chunk = answer->data.chunk;
- break;
- default: /* unknown */
- break;
- }
- a->hold = answer->hold;
- answer->hold = a;
- answer->type = PCC_LR_ANSWER_CHUNK;
- answer->data.chunk = chunk;
- }
- static void pcc_lr_answer__destroy(pcc_auxil_t auxil, pcc_lr_answer_t *answer) {
- if (answer == NULL) return;
- pcc_lr_answer__destroy(auxil, answer->hold);
- switch (answer->type) {
- case PCC_LR_ANSWER_LR:
- pcc_lr_entry__destroy(auxil, answer->data.lr);
- break;
- case PCC_LR_ANSWER_CHUNK:
- pcc_thunk_chunk__destroy(auxil, answer->data.chunk);
- break;
- default: /* unknown */
- break;
- }
- PCC_FREE(auxil, answer);
- }
- static void pcc_lr_memo_map__init(pcc_auxil_t auxil, pcc_lr_memo_map_t *map, size_t max) {
- map->len = 0;
- map->max = max;
- map->buf = (pcc_lr_memo_t *)PCC_MALLOC(auxil, sizeof(pcc_lr_memo_t) * map->max);
- }
- static size_t pcc_lr_memo_map__index(pcc_auxil_t auxil, pcc_lr_memo_map_t *map, pcc_rule_t rule) {
- size_t i;
- for (i = 0; i < map->len; i++) {
- if (map->buf[i].rule == rule) return i;
- }
- return VOID_VALUE;
- }
- static void pcc_lr_memo_map__put(pcc_auxil_t auxil, pcc_lr_memo_map_t *map, pcc_rule_t rule, pcc_lr_answer_t *answer) {
- const size_t i = pcc_lr_memo_map__index(auxil, map, rule);
- if (i != VOID_VALUE) {
- pcc_lr_answer__destroy(auxil, map->buf[i].answer);
- map->buf[i].answer = answer;
- }
- else {
- if (map->max <= map->len) {
- const size_t n = map->len + 1;
- size_t m = map->max;
- if (m == 0) m = 1;
- while (m < n && m != 0) m <<= 1;
- if (m == 0) m = n;
- map->buf = (pcc_lr_memo_t *)PCC_REALLOC(auxil, map->buf, sizeof(pcc_lr_memo_t) * m);
- map->max = m;
- }
- map->buf[map->len].rule = rule;
- map->buf[map->len].answer = answer;
- map->len++;
- }
- }
- static pcc_lr_answer_t *pcc_lr_memo_map__get(pcc_auxil_t auxil, pcc_lr_memo_map_t *map, pcc_rule_t rule) {
- const size_t i = pcc_lr_memo_map__index(auxil, map, rule);
- return (i != VOID_VALUE) ? map->buf[i].answer : NULL;
- }
- static void pcc_lr_memo_map__term(pcc_auxil_t auxil, pcc_lr_memo_map_t *map) {
- while (map->len > 0) {
- map->len--;
- pcc_lr_answer__destroy(auxil, map->buf[map->len].answer);
- }
- PCC_FREE(auxil, map->buf);
- }
- static pcc_lr_table_entry_t *pcc_lr_table_entry__create(pcc_auxil_t auxil) {
- pcc_lr_table_entry_t *const entry = (pcc_lr_table_entry_t *)PCC_MALLOC(auxil, sizeof(pcc_lr_table_entry_t));
- entry->head = NULL;
- pcc_lr_memo_map__init(auxil, &entry->memos, PCC_ARRAYSIZE);
- entry->hold_a = NULL;
- entry->hold_h = NULL;
- return entry;
- }
- static void pcc_lr_table_entry__destroy(pcc_auxil_t auxil, pcc_lr_table_entry_t *entry) {
- if (entry == NULL) return;
- pcc_lr_head__destroy(auxil, entry->hold_h);
- pcc_lr_answer__destroy(auxil, entry->hold_a);
- pcc_lr_memo_map__term(auxil, &entry->memos);
- PCC_FREE(auxil, entry);
- }
- static void pcc_lr_table__init(pcc_auxil_t auxil, pcc_lr_table_t *table, size_t max) {
- table->len = 0;
- table->max = max;
- table->buf = (pcc_lr_table_entry_t **)PCC_MALLOC(auxil, sizeof(pcc_lr_table_entry_t *) * table->max);
- }
- static void pcc_lr_table__resize(pcc_auxil_t auxil, pcc_lr_table_t *table, size_t len) {
- size_t i;
- for (i = len; i < table->len; i++) pcc_lr_table_entry__destroy(auxil, table->buf[i]);
- if (table->max < len) {
- size_t m = table->max;
- if (m == 0) m = 1;
- while (m < len && m != 0) m <<= 1;
- if (m == 0) m = len;
- table->buf = (pcc_lr_table_entry_t **)PCC_REALLOC(auxil, table->buf, sizeof(pcc_lr_table_entry_t *) * m);
- table->max = m;
- }
- for (i = table->len; i < len; i++) table->buf[i] = NULL;
- table->len = len;
- }
- static void pcc_lr_table__set_head(pcc_auxil_t auxil, pcc_lr_table_t *table, size_t index, pcc_lr_head_t *head) {
- if (index >= table->len) pcc_lr_table__resize(auxil, table, index + 1);
- if (table->buf[index] == NULL) table->buf[index] = pcc_lr_table_entry__create(auxil);
- table->buf[index]->head = head;
- }
- static void pcc_lr_table__hold_head(pcc_auxil_t auxil, pcc_lr_table_t *table, size_t index, pcc_lr_head_t *head) {
- if (index >= table->len) pcc_lr_table__resize(auxil, table, index + 1);
- if (table->buf[index] == NULL) table->buf[index] = pcc_lr_table_entry__create(auxil);
- head->hold = table->buf[index]->hold_h;
- table->buf[index]->hold_h = head;
- }
- static void pcc_lr_table__set_answer(pcc_auxil_t auxil, pcc_lr_table_t *table, size_t index, pcc_rule_t rule, pcc_lr_answer_t *answer) {
- if (index >= table->len) pcc_lr_table__resize(auxil, table, index + 1);
- if (table->buf[index] == NULL) table->buf[index] = pcc_lr_table_entry__create(auxil);
- pcc_lr_memo_map__put(auxil, &table->buf[index]->memos, rule, answer);
- }
- static void pcc_lr_table__hold_answer(pcc_auxil_t auxil, pcc_lr_table_t *table, size_t index, pcc_lr_answer_t *answer) {
- if (index >= table->len) pcc_lr_table__resize(auxil, table, index + 1);
- if (table->buf[index] == NULL) table->buf[index] = pcc_lr_table_entry__create(auxil);
- answer->hold = table->buf[index]->hold_a;
- table->buf[index]->hold_a = answer;
- }
- static pcc_lr_head_t *pcc_lr_table__get_head(pcc_auxil_t auxil, pcc_lr_table_t *table, size_t index) {
- if (index >= table->len || table->buf[index] == NULL) return NULL;
- return table->buf[index]->head;
- }
- static pcc_lr_answer_t *pcc_lr_table__get_answer(pcc_auxil_t auxil, pcc_lr_table_t *table, size_t index, pcc_rule_t rule) {
- if (index >= table->len || table->buf[index] == NULL) return NULL;
- return pcc_lr_memo_map__get(auxil, &table->buf[index]->memos, rule);
- }
- static void pcc_lr_table__shift(pcc_auxil_t auxil, pcc_lr_table_t *table, size_t count) {
- size_t i;
- if (count > table->len) count = table->len;
- for (i = 0; i < count; i++) pcc_lr_table_entry__destroy(auxil, table->buf[i]);
- memmove(table->buf, table->buf + count, sizeof(pcc_lr_table_entry_t *) * (table->len - count));
- table->len -= count;
- }
- static void pcc_lr_table__term(pcc_auxil_t auxil, pcc_lr_table_t *table) {
- while (table->len > 0) {
- table->len--;
- pcc_lr_table_entry__destroy(auxil, table->buf[table->len]);
- }
- PCC_FREE(auxil, table->buf);
- }
- static pcc_lr_entry_t *pcc_lr_entry__create(pcc_auxil_t auxil, pcc_rule_t rule) {
- pcc_lr_entry_t *const lr = (pcc_lr_entry_t *)PCC_MALLOC(auxil, sizeof(pcc_lr_entry_t));
- lr->rule = rule;
- lr->seed = NULL;
- lr->head = NULL;
- return lr;
- }
- static void pcc_lr_entry__destroy(pcc_auxil_t auxil, pcc_lr_entry_t *lr) {
- PCC_FREE(auxil, lr);
- }
- static void pcc_lr_stack__init(pcc_auxil_t auxil, pcc_lr_stack_t *stack, size_t max) {
- stack->len = 0;
- stack->max = max;
- stack->buf = (pcc_lr_entry_t **)PCC_MALLOC(auxil, sizeof(pcc_lr_entry_t *) * stack->max);
- }
- static void pcc_lr_stack__push(pcc_auxil_t auxil, pcc_lr_stack_t *stack, pcc_lr_entry_t *lr) {
- if (stack->max <= stack->len) {
- const size_t n = stack->len + 1;
- size_t m = stack->max;
- if (m == 0) m = 1;
- while (m < n && m != 0) m <<= 1;
- if (m == 0) m = n;
- stack->buf = (pcc_lr_entry_t **)PCC_REALLOC(auxil, stack->buf, sizeof(pcc_lr_entry_t *) * m);
- stack->max = m;
- }
- stack->buf[stack->len++] = lr;
- }
- static pcc_lr_entry_t *pcc_lr_stack__pop(pcc_auxil_t auxil, pcc_lr_stack_t *stack) {
- return stack->buf[--stack->len];
- }
- static void pcc_lr_stack__term(pcc_auxil_t auxil, pcc_lr_stack_t *stack) {
- PCC_FREE(auxil, stack->buf);
- }
- static seq_context_t *pcc_context__create(pcc_auxil_t auxil) {
- seq_context_t *const ctx = (seq_context_t *)PCC_MALLOC(auxil, sizeof(seq_context_t));
- ctx->pos = 0;
- ctx->cur = 0;
- ctx->level = 0;
- pcc_char_array__init(auxil, &ctx->buffer, PCC_BUFFERSIZE);
- pcc_lr_table__init(auxil, &ctx->lrtable, PCC_BUFFERSIZE);
- pcc_lr_stack__init(auxil, &ctx->lrstack, PCC_ARRAYSIZE);
- ctx->auxil = auxil;
- return ctx;
- }
- static void pcc_context__destroy(seq_context_t *ctx) {
- if (ctx == NULL) return;
- pcc_lr_stack__term(ctx->auxil, &ctx->lrstack);
- pcc_lr_table__term(ctx->auxil, &ctx->lrtable);
- pcc_char_array__term(ctx->auxil, &ctx->buffer);
- PCC_FREE(ctx->auxil, ctx);
- }
- static size_t pcc_refill_buffer(seq_context_t *ctx, size_t num) {
- if (ctx->buffer.len >= ctx->cur + num) return ctx->buffer.len - ctx->cur;
- while (ctx->buffer.len < ctx->cur + num) {
- const int c = PCC_GETCHAR(ctx->auxil);
- if (c == EOF) break;
- pcc_char_array__add(ctx->auxil, &ctx->buffer, (char)c);
- }
- return ctx->buffer.len - ctx->cur;
- }
- static void pcc_commit_buffer(seq_context_t *ctx) {
- memmove(ctx->buffer.buf, ctx->buffer.buf + ctx->cur, ctx->buffer.len - ctx->cur);
- ctx->buffer.len -= ctx->cur;
- ctx->pos += ctx->cur;
- pcc_lr_table__shift(ctx->auxil, &ctx->lrtable, ctx->cur);
- ctx->cur = 0;
- }
- static const char *pcc_get_capture_string(seq_context_t *ctx, const pcc_capture_t *capt) {
- if (capt->string == NULL)
- ((pcc_capture_t *)capt)->string =
- pcc_strndup_e(ctx->auxil, ctx->buffer.buf + capt->range.start, capt->range.end - capt->range.start);
- return capt->string;
- }
- static size_t pcc_get_char_as_utf32(seq_context_t *ctx, int *out) { /* with checking UTF-8 validity */
- int c, u;
- size_t n;
- if (pcc_refill_buffer(ctx, 1) < 1) return 0;
- c = (int)(unsigned char)ctx->buffer.buf[ctx->cur];
- n = (c < 0x80) ? 1 :
- ((c & 0xe0) == 0xc0) ? 2 :
- ((c & 0xf0) == 0xe0) ? 3 :
- ((c & 0xf8) == 0xf0) ? 4 : 0;
- if (n < 1) return 0;
- if (pcc_refill_buffer(ctx, n) < n) return 0;
- switch (n) {
- case 1:
- u = c;
- break;
- case 2:
- u = c & 0x1f;
- c = (int)(unsigned char)ctx->buffer.buf[ctx->cur + 1];
- if ((c & 0xc0) != 0x80) return 0;
- u <<= 6; u |= c & 0x3f;
- if (u < 0x80) return 0;
- break;
- case 3:
- u = c & 0x0f;
- c = (int)(unsigned char)ctx->buffer.buf[ctx->cur + 1];
- if ((c & 0xc0) != 0x80) return 0;
- u <<= 6; u |= c & 0x3f;
- c = (int)(unsigned char)ctx->buffer.buf[ctx->cur + 2];
- if ((c & 0xc0) != 0x80) return 0;
- u <<= 6; u |= c & 0x3f;
- if (u < 0x800) return 0;
- break;
- case 4:
- u = c & 0x07;
- c = (int)(unsigned char)ctx->buffer.buf[ctx->cur + 1];
- if ((c & 0xc0) != 0x80) return 0;
- u <<= 6; u |= c & 0x3f;
- c = (int)(unsigned char)ctx->buffer.buf[ctx->cur + 2];
- if ((c & 0xc0) != 0x80) return 0;
- u <<= 6; u |= c & 0x3f;
- c = (int)(unsigned char)ctx->buffer.buf[ctx->cur + 3];
- if ((c & 0xc0) != 0x80) return 0;
- u <<= 6; u |= c & 0x3f;
- if (u < 0x10000 || u > 0x10ffff) return 0;
- break;
- default:
- return 0;
- }
- if (out) *out = u;
- return n;
- }
- static pcc_bool_t pcc_apply_rule(seq_context_t *ctx, pcc_rule_t rule, pcc_thunk_array_t *thunks, pcc_value_t *value) {
- static pcc_value_t null;
- pcc_thunk_chunk_t *c = NULL;
- const size_t p = ctx->pos + ctx->cur;
- pcc_bool_t b = PCC_TRUE;
- pcc_lr_answer_t *a = pcc_lr_table__get_answer(ctx->auxil, &ctx->lrtable, p, rule);
- pcc_lr_head_t *h = pcc_lr_table__get_head(ctx->auxil, &ctx->lrtable, p);
- if (h != NULL) {
- if (a == NULL && rule != h->rule && pcc_rule_set__index(ctx->auxil, &h->invol, rule) == VOID_VALUE) {
- b = PCC_FALSE;
- c = NULL;
- }
- else if (pcc_rule_set__remove(ctx->auxil, &h->eval, rule)) {
- b = PCC_FALSE;
- c = rule(ctx);
- a = pcc_lr_answer__create(ctx->auxil, PCC_LR_ANSWER_CHUNK, ctx->pos + ctx->cur);
- a->data.chunk = c;
- pcc_lr_table__hold_answer(ctx->auxil, &ctx->lrtable, p, a);
- }
- }
- if (b) {
- if (a != NULL) {
- ctx->cur = a->pos - ctx->pos;
- switch (a->type) {
- case PCC_LR_ANSWER_LR:
- if (a->data.lr->head == NULL) {
- a->data.lr->head = pcc_lr_head__create(ctx->auxil, rule);
- pcc_lr_table__hold_head(ctx->auxil, &ctx->lrtable, p, a->data.lr->head);
- }
- {
- size_t i = ctx->lrstack.len;
- while (i > 0) {
- i--;
- if (ctx->lrstack.buf[i]->head == a->data.lr->head) break;
- ctx->lrstack.buf[i]->head = a->data.lr->head;
- pcc_rule_set__add(ctx->auxil, &a->data.lr->head->invol, ctx->lrstack.buf[i]->rule);
- }
- }
- c = a->data.lr->seed;
- break;
- case PCC_LR_ANSWER_CHUNK:
- c = a->data.chunk;
- break;
- default: /* unknown */
- break;
- }
- }
- else {
- pcc_lr_entry_t *const e = pcc_lr_entry__create(ctx->auxil, rule);
- pcc_lr_stack__push(ctx->auxil, &ctx->lrstack, e);
- a = pcc_lr_answer__create(ctx->auxil, PCC_LR_ANSWER_LR, p);
- a->data.lr = e;
- pcc_lr_table__set_answer(ctx->auxil, &ctx->lrtable, p, rule, a);
- c = rule(ctx);
- pcc_lr_stack__pop(ctx->auxil, &ctx->lrstack);
- a->pos = ctx->pos + ctx->cur;
- if (e->head == NULL) {
- pcc_lr_answer__set_chunk(ctx->auxil, a, c);
- }
- else {
- e->seed = c;
- h = a->data.lr->head;
- if (h->rule != rule) {
- c = a->data.lr->seed;
- a = pcc_lr_answer__create(ctx->auxil, PCC_LR_ANSWER_CHUNK, ctx->pos + ctx->cur);
- a->data.chunk = c;
- pcc_lr_table__hold_answer(ctx->auxil, &ctx->lrtable, p, a);
- }
- else {
- pcc_lr_answer__set_chunk(ctx->auxil, a, a->data.lr->seed);
- if (a->data.chunk == NULL) {
- c = NULL;
- }
- else {
- pcc_lr_table__set_head(ctx->auxil, &ctx->lrtable, p, h);
- for (;;) {
- ctx->cur = p - ctx->pos;
- pcc_rule_set__copy(ctx->auxil, &h->eval, &h->invol);
- c = rule(ctx);
- if (c == NULL || ctx->pos + ctx->cur <= a->pos) break;
- pcc_lr_answer__set_chunk(ctx->auxil, a, c);
- a->pos = ctx->pos + ctx->cur;
- }
- pcc_thunk_chunk__destroy(ctx->auxil, c);
- pcc_lr_table__set_head(ctx->auxil, &ctx->lrtable, p, NULL);
- ctx->cur = a->pos - ctx->pos;
- c = a->data.chunk;
- }
- }
- }
- }
- }
- if (c == NULL) return PCC_FALSE;
- if (value == NULL) value = &null;
- memset(value, 0, sizeof(pcc_value_t)); /* in case */
- pcc_thunk_array__add(ctx->auxil, thunks, pcc_thunk__create_node(ctx->auxil, &c->thunks, value));
- return PCC_TRUE;
- }
- static void pcc_do_action(seq_context_t *ctx, const pcc_thunk_array_t *thunks, pcc_value_t *value) {
- size_t i;
- for (i = 0; i < thunks->len; i++) {
- pcc_thunk_t *const thunk = thunks->buf[i];
- switch (thunk->type) {
- case PCC_THUNK_LEAF:
- thunk->data.leaf.action(ctx, thunk, value);
- break;
- case PCC_THUNK_NODE:
- pcc_do_action(ctx, thunk->data.node.thunks, thunk->data.node.value);
- break;
- default: /* unknown */
- break;
- }
- }
- }
- static void pcc_action_id_0(seq_context_t *__pcc_ctx, pcc_thunk_t *__pcc_in, pcc_value_t *__pcc_out) {
- #define auxil (__pcc_ctx->auxil)
- #define __ (*__pcc_out)
- #define _0 pcc_get_capture_string(__pcc_ctx, &__pcc_in->data.leaf.capt0)
- #define _0s ((const size_t)__pcc_in->data.leaf.capt0.range.start)
- #define _0e ((const size_t)__pcc_in->data.leaf.capt0.range.end)
- #define _1 pcc_get_capture_string(__pcc_ctx, __pcc_in->data.leaf.capts.buf[0])
- #define _1s ((const size_t)(__pcc_ctx->pos + __pcc_in->data.leaf.capts.buf[0]->range.start))
- #define _1e ((const size_t)(__pcc_ctx->pos + __pcc_in->data.leaf.capts.buf[0]->range.end))
- printf("ID=%s\n",_0);
- #undef _1e
- #undef _1s
- #undef _1
- #undef _0e
- #undef _0s
- #undef _0
- #undef __
- #undef auxil
- }
- static void pcc_action_endofline_0(seq_context_t *__pcc_ctx, pcc_thunk_t *__pcc_in, pcc_value_t *__pcc_out) {
- #define auxil (__pcc_ctx->auxil)
- #define __ (*__pcc_out)
- #define _0 pcc_get_capture_string(__pcc_ctx, &__pcc_in->data.leaf.capt0)
- #define _0s ((const size_t)__pcc_in->data.leaf.capt0.range.start)
- #define _0e ((const size_t)__pcc_in->data.leaf.capt0.range.end)
- nlines++;
- #undef _0e
- #undef _0s
- #undef _0
- #undef __
- #undef auxil
- }
- static pcc_thunk_chunk_t *pcc_evaluate_rule_list(seq_context_t *ctx);
- static pcc_thunk_chunk_t *pcc_evaluate_rule_some_digits(seq_context_t *ctx);
- static pcc_thunk_chunk_t *pcc_evaluate_rule_list2(seq_context_t *ctx);
- static pcc_thunk_chunk_t *pcc_evaluate_rule_pair(seq_context_t *ctx);
- static pcc_thunk_chunk_t *pcc_evaluate_rule_digit(seq_context_t *ctx);
- static pcc_thunk_chunk_t *pcc_evaluate_rule_id(seq_context_t *ctx);
- static pcc_thunk_chunk_t *pcc_evaluate_rule__(seq_context_t *ctx);
- static pcc_thunk_chunk_t *pcc_evaluate_rule_space(seq_context_t *ctx);
- static pcc_thunk_chunk_t *pcc_evaluate_rule_comment(seq_context_t *ctx);
- static pcc_thunk_chunk_t *pcc_evaluate_rule_endofline(seq_context_t *ctx);
- static pcc_thunk_chunk_t *pcc_evaluate_rule_list(seq_context_t *ctx) {
- pcc_thunk_chunk_t *const chunk = pcc_thunk_chunk__create(ctx->auxil);
- chunk->pos = ctx->cur;
- PCC_DEBUG(PCC_DBG_EVALUATE, "list", ctx->level, chunk->pos, (ctx->buffer.buf + chunk->pos), (ctx->buffer.len - chunk->pos));
- ctx->level++;
- pcc_value_table__resize(ctx->auxil, &chunk->values, 0);
- pcc_capture_table__resize(ctx->auxil, &chunk->capts, 0);
- if (
- pcc_refill_buffer(ctx, 1) < 1 ||
- ctx->buffer.buf[ctx->cur] != '['
- ) goto L0000;
- ctx->cur++;
- if (!pcc_apply_rule(ctx, pcc_evaluate_rule__, &chunk->thunks, NULL)) goto L0000;
- {
- int i;
- for (i = 0;; i++) {
- const size_t p = ctx->cur;
- const size_t n = chunk->thunks.len;
- if (!pcc_apply_rule(ctx, pcc_evaluate_rule_some_digits, &chunk->thunks, NULL)) goto L0001;
- if (ctx->cur == p) break;
- continue;
- L0001:;
- ctx->cur = p;
- pcc_thunk_array__revert(ctx->auxil, &chunk->thunks, n);
- break;
- }
- }
- if (!pcc_apply_rule(ctx, pcc_evaluate_rule__, &chunk->thunks, NULL)) goto L0000;
- if (
- pcc_refill_buffer(ctx, 1) < 1 ||
- ctx->buffer.buf[ctx->cur] != ']'
- ) goto L0000;
- ctx->cur++;
- if (!pcc_apply_rule(ctx, pcc_evaluate_rule__, &chunk->thunks, NULL)) goto L0000;
- ctx->level--;
- PCC_DEBUG(PCC_DBG_MATCH, "list", ctx->level, chunk->pos, (ctx->buffer.buf + chunk->pos), (ctx->cur - chunk->pos));
- return chunk;
- L0000:;
- ctx->level--;
- PCC_DEBUG(PCC_DBG_NOMATCH, "list", ctx->level, chunk->pos, (ctx->buffer.buf + chunk->pos), (ctx->cur - chunk->pos));
- pcc_thunk_chunk__destroy(ctx->auxil, chunk);
- return NULL;
- }
- static pcc_thunk_chunk_t *pcc_evaluate_rule_some_digits(seq_context_t *ctx) {
- pcc_thunk_chunk_t *const chunk = pcc_thunk_chunk__create(ctx->auxil);
- chunk->pos = ctx->cur;
- PCC_DEBUG(PCC_DBG_EVALUATE, "some_digits", ctx->level, chunk->pos, (ctx->buffer.buf + chunk->pos), (ctx->buffer.len - chunk->pos));
- ctx->level++;
- pcc_value_table__resize(ctx->auxil, &chunk->values, 0);
- pcc_capture_table__resize(ctx->auxil, &chunk->capts, 0);
- {
- const size_t p = ctx->cur;
- const size_t n = chunk->thunks.len;
- if (!pcc_apply_rule(ctx, pcc_evaluate_rule_id, &chunk->thunks, NULL)) goto L0002;
- if (!pcc_apply_rule(ctx, pcc_evaluate_rule_list2, &chunk->thunks, NULL)) goto L0002;
- goto L0001;
- L0002:;
- ctx->cur = p;
- pcc_thunk_array__revert(ctx->auxil, &chunk->thunks, n);
- if (!pcc_apply_rule(ctx, pcc_evaluate_rule_pair, &chunk->thunks, NULL)) goto L0003;
- goto L0001;
- L0003:;
- ctx->cur = p;
- pcc_thunk_array__revert(ctx->auxil, &chunk->thunks, n);
- goto L0000;
- L0001:;
- }
- ctx->level--;
- PCC_DEBUG(PCC_DBG_MATCH, "some_digits", ctx->level, chunk->pos, (ctx->buffer.buf + chunk->pos), (ctx->cur - chunk->pos));
- return chunk;
- L0000:;
- ctx->level--;
- PCC_DEBUG(PCC_DBG_NOMATCH, "some_digits", ctx->level, chunk->pos, (ctx->buffer.buf + chunk->pos), (ctx->cur - chunk->pos));
- pcc_thunk_chunk__destroy(ctx->auxil, chunk);
- return NULL;
- }
- static pcc_thunk_chunk_t *pcc_evaluate_rule_list2(seq_context_t *ctx) {
- pcc_thunk_chunk_t *const chunk = pcc_thunk_chunk__create(ctx->auxil);
- chunk->pos = ctx->cur;
- PCC_DEBUG(PCC_DBG_EVALUATE, "list2", ctx->level, chunk->pos, (ctx->buffer.buf + chunk->pos), (ctx->buffer.len - chunk->pos));
- ctx->level++;
- pcc_value_table__resize(ctx->auxil, &chunk->values, 0);
- pcc_capture_table__resize(ctx->auxil, &chunk->capts, 0);
- if (
- pcc_refill_buffer(ctx, 1) < 1 ||
- ctx->buffer.buf[ctx->cur] != '['
- ) goto L0000;
- ctx->cur++;
- if (!pcc_apply_rule(ctx, pcc_evaluate_rule__, &chunk->thunks, NULL)) goto L0000;
- {
- int i;
- for (i = 0;; i++) {
- const size_t p = ctx->cur;
- const size_t n = chunk->thunks.len;
- if (!pcc_apply_rule(ctx, pcc_evaluate_rule_some_digits, &chunk->thunks, NULL)) goto L0001;
- if (ctx->cur == p) break;
- continue;
- L0001:;
- ctx->cur = p;
- pcc_thunk_array__revert(ctx->auxil, &chunk->thunks, n);
- break;
- }
- }
- if (!pcc_apply_rule(ctx, pcc_evaluate_rule__, &chunk->thunks, NULL)) goto L0000;
- if (
- pcc_refill_buffer(ctx, 1) < 1 ||
- ctx->buffer.buf[ctx->cur] != ']'
- ) goto L0000;
- ctx->cur++;
- if (!pcc_apply_rule(ctx, pcc_evaluate_rule__, &chunk->thunks, NULL)) goto L0000;
- ctx->level--;
- PCC_DEBUG(PCC_DBG_MATCH, "list2", ctx->level, chunk->pos, (ctx->buffer.buf + chunk->pos), (ctx->cur - chunk->pos));
- return chunk;
- L0000:;
- ctx->level--;
- PCC_DEBUG(PCC_DBG_NOMATCH, "list2", ctx->level, chunk->pos, (ctx->buffer.buf + chunk->pos), (ctx->cur - chunk->pos));
- pcc_thunk_chunk__destroy(ctx->auxil, chunk);
- return NULL;
- }
- static pcc_thunk_chunk_t *pcc_evaluate_rule_pair(seq_context_t *ctx) {
- pcc_thunk_chunk_t *const chunk = pcc_thunk_chunk__create(ctx->auxil);
- chunk->pos = ctx->cur;
- PCC_DEBUG(PCC_DBG_EVALUATE, "pair", ctx->level, chunk->pos, (ctx->buffer.buf + chunk->pos), (ctx->buffer.len - chunk->pos));
- ctx->level++;
- pcc_value_table__resize(ctx->auxil, &chunk->values, 0);
- pcc_capture_table__resize(ctx->auxil, &chunk->capts, 0);
- if (!pcc_apply_rule(ctx, pcc_evaluate_rule_id, &chunk->thunks, NULL)) goto L0000;
- if (!pcc_apply_rule(ctx, pcc_evaluate_rule_digit, &chunk->thunks, NULL)) goto L0000;
- ctx->level--;
- PCC_DEBUG(PCC_DBG_MATCH, "pair", ctx->level, chunk->pos, (ctx->buffer.buf + chunk->pos), (ctx->cur - chunk->pos));
- return chunk;
- L0000:;
- ctx->level--;
- PCC_DEBUG(PCC_DBG_NOMATCH, "pair", ctx->level, chunk->pos, (ctx->buffer.buf + chunk->pos), (ctx->cur - chunk->pos));
- pcc_thunk_chunk__destroy(ctx->auxil, chunk);
- return NULL;
- }
- static pcc_thunk_chunk_t *pcc_evaluate_rule_digit(seq_context_t *ctx) {
- pcc_thunk_chunk_t *const chunk = pcc_thunk_chunk__create(ctx->auxil);
- chunk->pos = ctx->cur;
- PCC_DEBUG(PCC_DBG_EVALUATE, "digit", ctx->level, chunk->pos, (ctx->buffer.buf + chunk->pos), (ctx->buffer.len - chunk->pos));
- ctx->level++;
- pcc_value_table__resize(ctx->auxil, &chunk->values, 0);
- pcc_capture_table__resize(ctx->auxil, &chunk->capts, 0);
- {
- const size_t p0 = ctx->cur;
- const size_t n0 = chunk->thunks.len;
- int i;
- for (i = 0;; i++) {
- const size_t p = ctx->cur;
- const size_t n = chunk->thunks.len;
- {
- int u;
- const size_t n = pcc_get_char_as_utf32(ctx, &u);
- if (n == 0) goto L0001;
- if (!(
- (u >= 0x000030 && u <= 0x000039)
- )) goto L0001;
- ctx->cur += n;
- }
- if (ctx->cur == p) break;
- continue;
- L0001:;
- ctx->cur = p;
- pcc_thunk_array__revert(ctx->auxil, &chunk->thunks, n);
- break;
- }
- if (i < 1) {
- ctx->cur = p0;
- pcc_thunk_array__revert(ctx->auxil, &chunk->thunks, n0);
- goto L0000;
- }
- }
- if (!pcc_apply_rule(ctx, pcc_evaluate_rule__, &chunk->thunks, NULL)) goto L0000;
- ctx->level--;
- PCC_DEBUG(PCC_DBG_MATCH, "digit", ctx->level, chunk->pos, (ctx->buffer.buf + chunk->pos), (ctx->cur - chunk->pos));
- return chunk;
- L0000:;
- ctx->level--;
- PCC_DEBUG(PCC_DBG_NOMATCH, "digit", ctx->level, chunk->pos, (ctx->buffer.buf + chunk->pos), (ctx->cur - chunk->pos));
- pcc_thunk_chunk__destroy(ctx->auxil, chunk);
- return NULL;
- }
- static pcc_thunk_chunk_t *pcc_evaluate_rule_id(seq_context_t *ctx) {
- pcc_thunk_chunk_t *const chunk = pcc_thunk_chunk__create(ctx->auxil);
- chunk->pos = ctx->cur;
- PCC_DEBUG(PCC_DBG_EVALUATE, "id", ctx->level, chunk->pos, (ctx->buffer.buf + chunk->pos), (ctx->buffer.len - chunk->pos));
- ctx->level++;
- pcc_value_table__resize(ctx->auxil, &chunk->values, 0);
- pcc_capture_table__resize(ctx->auxil, &chunk->capts, 1);
- {
- const size_t p = ctx->cur;
- size_t q;
- {
- const size_t p0 = ctx->cur;
- const size_t n0 = chunk->thunks.len;
- int i;
- for (i = 0;; i++) {
- const size_t p = ctx->cur;
- const size_t n = chunk->thunks.len;
- {
- int u;
- const size_t n = pcc_get_char_as_utf32(ctx, &u);
- if (n == 0) goto L0001;
- if (!(
- (u >= 0x000061 && u <= 0x00007a) ||
- (u >= 0x000041 && u <= 0x00005a) ||
- u == 0x00005f
- )) goto L0001;
- ctx->cur += n;
- }
- if (ctx->cur == p) break;
- continue;
- L0001:;
- ctx->cur = p;
- pcc_thunk_array__revert(ctx->auxil, &chunk->thunks, n);
- break;
- }
- if (i < 1) {
- ctx->cur = p0;
- pcc_thunk_array__revert(ctx->auxil, &chunk->thunks, n0);
- goto L0000;
- }
- }
- {
- int i;
- for (i = 0;; i++) {
- const size_t p = ctx->cur;
- const size_t n = chunk->thunks.len;
- {
- int u;
- const size_t n = pcc_get_char_as_utf32(ctx, &u);
- if (n == 0) goto L0002;
- if (!(
- (u >= 0x000061 && u <= 0x00007a) ||
- (u >= 0x000041 && u <= 0x00005a) ||
- u == 0x00005f ||
- (u >= 0x000030 && u <= 0x000039)
- )) goto L0002;
- ctx->cur += n;
- }
- if (ctx->cur == p) break;
- continue;
- L0002:;
- ctx->cur = p;
- pcc_thunk_array__revert(ctx->auxil, &chunk->thunks, n);
- break;
- }
- }
- q = ctx->cur;
- chunk->capts.buf[0].range.start = p;
- chunk->capts.buf[0].range.end = q;
- }
- if (!pcc_apply_rule(ctx, pcc_evaluate_rule__, &chunk->thunks, NULL)) goto L0000;
- {
- pcc_thunk_t *const thunk = pcc_thunk__create_leaf(ctx->auxil, pcc_action_id_0, 0, 1);
- thunk->data.leaf.capts.buf[0] = &(chunk->capts.buf[0]);
- thunk->data.leaf.capt0.range.start = chunk->pos;
- thunk->data.leaf.capt0.range.end = ctx->cur;
- pcc_thunk_array__add(ctx->auxil, &chunk->thunks, thunk);
- }
- ctx->level--;
- PCC_DEBUG(PCC_DBG_MATCH, "id", ctx->level, chunk->pos, (ctx->buffer.buf + chunk->pos), (ctx->cur - chunk->pos));
- return chunk;
- L0000:;
- ctx->level--;
- PCC_DEBUG(PCC_DBG_NOMATCH, "id", ctx->level, chunk->pos, (ctx->buffer.buf + chunk->pos), (ctx->cur - chunk->pos));
- pcc_thunk_chunk__destroy(ctx->auxil, chunk);
- return NULL;
- }
- static pcc_thunk_chunk_t *pcc_evaluate_rule__(seq_context_t *ctx) {
- pcc_thunk_chunk_t *const chunk = pcc_thunk_chunk__create(ctx->auxil);
- chunk->pos = ctx->cur;
- PCC_DEBUG(PCC_DBG_EVALUATE, "_", ctx->level, chunk->pos, (ctx->buffer.buf + chunk->pos), (ctx->buffer.len - chunk->pos));
- ctx->level++;
- pcc_value_table__resize(ctx->auxil, &chunk->values, 0);
- pcc_capture_table__resize(ctx->auxil, &chunk->capts, 0);
- {
- int i;
- for (i = 0;; i++) {
- const size_t p = ctx->cur;
- const size_t n = chunk->thunks.len;
- {
- const size_t p = ctx->cur;
- const size_t n = chunk->thunks.len;
- if (!pcc_apply_rule(ctx, pcc_evaluate_rule_space, &chunk->thunks, NULL)) goto L0003;
- goto L0002;
- L0003:;
- ctx->cur = p;
- pcc_thunk_array__revert(ctx->auxil, &chunk->thunks, n);
- if (!pcc_apply_rule(ctx, pcc_evaluate_rule_comment, &chunk->thunks, NULL)) goto L0004;
- goto L0002;
- L0004:;
- ctx->cur = p;
- pcc_thunk_array__revert(ctx->auxil, &chunk->thunks, n);
- goto L0001;
- L0002:;
- }
- if (ctx->cur == p) break;
- continue;
- L0001:;
- ctx->cur = p;
- pcc_thunk_array__revert(ctx->auxil, &chunk->thunks, n);
- break;
- }
- }
- ctx->level--;
- PCC_DEBUG(PCC_DBG_MATCH, "_", ctx->level, chunk->pos, (ctx->buffer.buf + chunk->pos), (ctx->cur - chunk->pos));
- return chunk;
- }
- static pcc_thunk_chunk_t *pcc_evaluate_rule_space(seq_context_t *ctx) {
- pcc_thunk_chunk_t *const chunk = pcc_thunk_chunk__create(ctx->auxil);
- chunk->pos = ctx->cur;
- PCC_DEBUG(PCC_DBG_EVALUATE, "space", ctx->level, chunk->pos, (ctx->buffer.buf + chunk->pos), (ctx->buffer.len - chunk->pos));
- ctx->level++;
- pcc_value_table__resize(ctx->auxil, &chunk->values, 0);
- pcc_capture_table__resize(ctx->auxil, &chunk->capts, 0);
- {
- const size_t p = ctx->cur;
- const size_t n = chunk->thunks.len;
- if (
- pcc_refill_buffer(ctx, 1) < 1 ||
- ctx->buffer.buf[ctx->cur] != ' '
- ) goto L0002;
- ctx->cur++;
- goto L0001;
- L0002:;
- ctx->cur = p;
- pcc_thunk_array__revert(ctx->auxil, &chunk->thunks, n);
- if (
- pcc_refill_buffer(ctx, 1) < 1 ||
- ctx->buffer.buf[ctx->cur] != '\t'
- ) goto L0003;
- ctx->cur++;
- goto L0001;
- L0003:;
- ctx->cur = p;
- pcc_thunk_array__revert(ctx->auxil, &chunk->thunks, n);
- if (!pcc_apply_rule(ctx, pcc_evaluate_rule_endofline, &chunk->thunks, NULL)) goto L0004;
- goto L0001;
- L0004:;
- ctx->cur = p;
- pcc_thunk_array__revert(ctx->auxil, &chunk->thunks, n);
- goto L0000;
- L0001:;
- }
- ctx->level--;
- PCC_DEBUG(PCC_DBG_MATCH, "space", ctx->level, chunk->pos, (ctx->buffer.buf + chunk->pos), (ctx->cur - chunk->pos));
- return chunk;
- L0000:;
- ctx->level--;
- PCC_DEBUG(PCC_DBG_NOMATCH, "space", ctx->level, chunk->pos, (ctx->buffer.buf + chunk->pos), (ctx->cur - chunk->pos));
- pcc_thunk_chunk__destroy(ctx->auxil, chunk);
- return NULL;
- }
- static pcc_thunk_chunk_t *pcc_evaluate_rule_comment(seq_context_t *ctx) {
- pcc_thunk_chunk_t *const chunk = pcc_thunk_chunk__create(ctx->auxil);
- chunk->pos = ctx->cur;
- PCC_DEBUG(PCC_DBG_EVALUATE, "comment", ctx->level, chunk->pos, (ctx->buffer.buf + chunk->pos), (ctx->buffer.len - chunk->pos));
- ctx->level++;
- pcc_value_table__resize(ctx->auxil, &chunk->values, 0);
- pcc_capture_table__resize(ctx->auxil, &chunk->capts, 0);
- if (
- pcc_refill_buffer(ctx, 1) < 1 ||
- ctx->buffer.buf[ctx->cur] != '#'
- ) goto L0000;
- ctx->cur++;
- {
- int i;
- for (i = 0;; i++) {
- const size_t p = ctx->cur;
- const size_t n = chunk->thunks.len;
- {
- const size_t p = ctx->cur;
- const size_t n = chunk->thunks.len;
- if (!pcc_apply_rule(ctx, pcc_evaluate_rule_endofline, &chunk->thunks, NULL)) goto L0002;
- ctx->cur = p;
- pcc_thunk_array__revert(ctx->auxil, &chunk->thunks, n);
- goto L0001;
- L0002:;
- ctx->cur = p;
- pcc_thunk_array__revert(ctx->auxil, &chunk->thunks, n);
- }
- {
- int u;
- const size_t n = pcc_get_char_as_utf32(ctx, &u);
- if (n == 0) goto L0001;
- ctx->cur += n;
- }
- if (ctx->cur == p) break;
- continue;
- L0001:;
- ctx->cur = p;
- pcc_thunk_array__revert(ctx->auxil, &chunk->thunks, n);
- break;
- }
- }
- ctx->level--;
- PCC_DEBUG(PCC_DBG_MATCH, "comment", ctx->level, chunk->pos, (ctx->buffer.buf + chunk->pos), (ctx->cur - chunk->pos));
- return chunk;
- L0000:;
- ctx->level--;
- PCC_DEBUG(PCC_DBG_NOMATCH, "comment", ctx->level, chunk->pos, (ctx->buffer.buf + chunk->pos), (ctx->cur - chunk->pos));
- pcc_thunk_chunk__destroy(ctx->auxil, chunk);
- return NULL;
- }
- static pcc_thunk_chunk_t *pcc_evaluate_rule_endofline(seq_context_t *ctx) {
- pcc_thunk_chunk_t *const chunk = pcc_thunk_chunk__create(ctx->auxil);
- chunk->pos = ctx->cur;
- PCC_DEBUG(PCC_DBG_EVALUATE, "endofline", ctx->level, chunk->pos, (ctx->buffer.buf + chunk->pos), (ctx->buffer.len - chunk->pos));
- ctx->level++;
- pcc_value_table__resize(ctx->auxil, &chunk->values, 0);
- pcc_capture_table__resize(ctx->auxil, &chunk->capts, 0);
- {
- const size_t p = ctx->cur;
- const size_t n = chunk->thunks.len;
- if (
- pcc_refill_buffer(ctx, 2) < 2 ||
- (ctx->buffer.buf + ctx->cur)[0] != '\r' ||
- (ctx->buffer.buf + ctx->cur)[1] != '\n'
- ) goto L0002;
- ctx->cur += 2;
- goto L0001;
- L0002:;
- ctx->cur = p;
- pcc_thunk_array__revert(ctx->auxil, &chunk->thunks, n);
- if (
- pcc_refill_buffer(ctx, 1) < 1 ||
- ctx->buffer.buf[ctx->cur] != '\n'
- ) goto L0003;
- ctx->cur++;
- goto L0001;
- L0003:;
- ctx->cur = p;
- pcc_thunk_array__revert(ctx->auxil, &chunk->thunks, n);
- if (
- pcc_refill_buffer(ctx, 1) < 1 ||
- ctx->buffer.buf[ctx->cur] != '\r'
- ) goto L0004;
- ctx->cur++;
- goto L0001;
- L0004:;
- ctx->cur = p;
- pcc_thunk_array__revert(ctx->auxil, &chunk->thunks, n);
- if (
- pcc_refill_buffer(ctx, 2) < 2 ||
- (ctx->buffer.buf + ctx->cur)[0] != '\n' ||
- (ctx->buffer.buf + ctx->cur)[1] != '\r'
- ) goto L0005;
- ctx->cur += 2;
- goto L0001;
- L0005:;
- ctx->cur = p;
- pcc_thunk_array__revert(ctx->auxil, &chunk->thunks, n);
- goto L0000;
- L0001:;
- }
- {
- pcc_thunk_t *const thunk = pcc_thunk__create_leaf(ctx->auxil, pcc_action_endofline_0, 0, 0);
- thunk->data.leaf.capt0.range.start = chunk->pos;
- thunk->data.leaf.capt0.range.end = ctx->cur;
- pcc_thunk_array__add(ctx->auxil, &chunk->thunks, thunk);
- }
- ctx->level--;
- PCC_DEBUG(PCC_DBG_MATCH, "endofline", ctx->level, chunk->pos, (ctx->buffer.buf + chunk->pos), (ctx->cur - chunk->pos));
- return chunk;
- L0000:;
- ctx->level--;
- PCC_DEBUG(PCC_DBG_NOMATCH, "endofline", ctx->level, chunk->pos, (ctx->buffer.buf + chunk->pos), (ctx->cur - chunk->pos));
- pcc_thunk_chunk__destroy(ctx->auxil, chunk);
- return NULL;
- }
- seq_context_t *seq_create(void *auxil) {
- return pcc_context__create(auxil);
- }
- int seq_parse(seq_context_t *ctx, int *ret) {
- pcc_thunk_array_t thunks;
- pcc_thunk_array__init(ctx->auxil, &thunks, PCC_ARRAYSIZE);
- if (pcc_apply_rule(ctx, pcc_evaluate_rule_list, &thunks, ret))
- pcc_do_action(ctx, &thunks, ret);
- else
- PCC_ERROR(ctx->auxil);
- pcc_commit_buffer(ctx);
- pcc_thunk_array__term(ctx->auxil, &thunks);
- return pcc_refill_buffer(ctx, 1) >= 1;
- }
- void seq_destroy(seq_context_t *ctx) {
- pcc_context__destroy(ctx);
- }
- int main() {
- seq_context_t *ctx = seq_create(NULL);
- while (seq_parse(ctx, NULL)){;}
- seq_destroy(ctx);
- return 0;
- }
|