12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /*
- * Copyright (c) 2013 Hugh Bailey <[email protected]>
- *
- * Permission to use, copy, modify, and distribute this software for any
- * purpose with or without fee is hereby granted, provided that the above
- * copyright notice and this permission notice appear in all copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
- * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
- * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
- * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
- * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
- * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
- * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- */
- #include "cf-parser.h"
- void cf_adderror(struct cf_parser *p, const char *error, int level,
- const char *val1, const char *val2, const char *val3)
- {
- uint32_t row, col;
- lexer_getstroffset(&p->cur_token->lex->base_lexer,
- p->cur_token->unmerged_str.array, &row, &col);
- if (!val1 && !val2 && !val3) {
- error_data_add(&p->error_list, p->cur_token->lex->file, row,
- col, error, level);
- } else {
- struct dstr formatted;
- dstr_init(&formatted);
- dstr_safe_printf(&formatted, error, val1, val2, val3, NULL);
- error_data_add(&p->error_list, p->cur_token->lex->file, row,
- col, formatted.array, level);
- dstr_free(&formatted);
- }
- }
- bool cf_pass_pair(struct cf_parser *p, char in, char out)
- {
- if (p->cur_token->type != CFTOKEN_OTHER ||
- *p->cur_token->str.array != in)
- return p->cur_token->type != CFTOKEN_NONE;
- p->cur_token++;
- while (p->cur_token->type != CFTOKEN_NONE) {
- if (*p->cur_token->str.array == in) {
- if (!cf_pass_pair(p, in, out))
- break;
- continue;
- } else if (*p->cur_token->str.array == out) {
- p->cur_token++;
- return true;
- }
- p->cur_token++;
- }
- return false;
- }
|