2015-04-08 15:07:41 +00:00
|
|
|
|
//
|
2015-02-08 01:52:26 +00:00
|
|
|
|
// peglib.h
|
|
|
|
|
//
|
2022-05-27 00:22:15 +00:00
|
|
|
|
// Copyright (c) 2022 Yuji Hirose. All rights reserved.
|
2015-02-08 01:52:26 +00:00
|
|
|
|
// MIT License
|
|
|
|
|
//
|
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
#pragma once
|
2019-11-21 16:52:31 +00:00
|
|
|
|
|
2022-07-31 19:39:38 +00:00
|
|
|
|
/*
|
|
|
|
|
* Configuration
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef CPPPEGLIB_HEURISTIC_ERROR_TOKEN_MAX_CHAR_COUNT
|
|
|
|
|
#define CPPPEGLIB_HEURISTIC_ERROR_TOKEN_MAX_CHAR_COUNT 32
|
|
|
|
|
#endif
|
|
|
|
|
|
2015-05-19 13:07:03 +00:00
|
|
|
|
#include <algorithm>
|
2020-10-02 01:26:04 +00:00
|
|
|
|
#include <any>
|
2015-05-19 13:07:03 +00:00
|
|
|
|
#include <cassert>
|
2020-02-05 19:10:00 +00:00
|
|
|
|
#include <cctype>
|
2021-01-29 00:04:23 +00:00
|
|
|
|
#if __has_include(<charconv>)
|
2020-10-02 01:26:04 +00:00
|
|
|
|
#include <charconv>
|
2021-01-29 00:04:23 +00:00
|
|
|
|
#endif
|
2015-05-19 13:07:03 +00:00
|
|
|
|
#include <cstring>
|
2015-02-08 01:52:26 +00:00
|
|
|
|
#include <functional>
|
2015-05-19 13:07:03 +00:00
|
|
|
|
#include <initializer_list>
|
|
|
|
|
#include <iostream>
|
2015-02-19 02:18:20 +00:00
|
|
|
|
#include <limits>
|
2015-05-19 13:07:03 +00:00
|
|
|
|
#include <map>
|
2015-02-08 01:52:26 +00:00
|
|
|
|
#include <memory>
|
2015-02-26 00:31:00 +00:00
|
|
|
|
#include <mutex>
|
2015-06-13 04:38:38 +00:00
|
|
|
|
#include <set>
|
2021-01-20 20:48:28 +00:00
|
|
|
|
#include <sstream>
|
2015-05-19 13:07:03 +00:00
|
|
|
|
#include <string>
|
2015-02-26 00:31:00 +00:00
|
|
|
|
#include <unordered_map>
|
2021-03-02 13:14:22 +00:00
|
|
|
|
#include <unordered_set>
|
2015-05-19 13:07:03 +00:00
|
|
|
|
#include <vector>
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
#if !defined(__cplusplus) || __cplusplus < 201703L
|
|
|
|
|
#error "Requires complete C++17 support"
|
2015-11-23 15:27:20 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2015-08-10 20:37:56 +00:00
|
|
|
|
namespace peg {
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2015-11-30 04:07:02 +00:00
|
|
|
|
/*-----------------------------------------------------------------------------
|
|
|
|
|
* scope_exit
|
|
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
// This is based on
|
|
|
|
|
// "http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2014/n4189".
|
2015-11-30 04:07:02 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
template <typename EF> struct scope_exit {
|
|
|
|
|
explicit scope_exit(EF &&f)
|
|
|
|
|
: exit_function(std::move(f)), execute_on_destruction{true} {}
|
2015-11-30 04:07:02 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
scope_exit(scope_exit &&rhs)
|
|
|
|
|
: exit_function(std::move(rhs.exit_function)),
|
|
|
|
|
execute_on_destruction{rhs.execute_on_destruction} {
|
|
|
|
|
rhs.release();
|
|
|
|
|
}
|
2015-11-30 04:07:02 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
~scope_exit() {
|
|
|
|
|
if (execute_on_destruction) { this->exit_function(); }
|
|
|
|
|
}
|
2015-11-30 04:07:02 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
void release() { this->execute_on_destruction = false; }
|
2015-11-30 04:07:02 +00:00
|
|
|
|
|
|
|
|
|
private:
|
2020-02-05 19:10:00 +00:00
|
|
|
|
scope_exit(const scope_exit &) = delete;
|
|
|
|
|
void operator=(const scope_exit &) = delete;
|
|
|
|
|
scope_exit &operator=(scope_exit &&) = delete;
|
2015-11-30 04:07:02 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
EF exit_function;
|
|
|
|
|
bool execute_on_destruction;
|
2015-11-30 04:07:02 +00:00
|
|
|
|
};
|
|
|
|
|
|
2018-09-16 16:54:36 +00:00
|
|
|
|
/*-----------------------------------------------------------------------------
|
|
|
|
|
* UTF8 functions
|
|
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
inline size_t codepoint_length(const char *s8, size_t l) {
|
|
|
|
|
if (l) {
|
|
|
|
|
auto b = static_cast<uint8_t>(s8[0]);
|
|
|
|
|
if ((b & 0x80) == 0) {
|
|
|
|
|
return 1;
|
2020-08-07 17:35:48 +00:00
|
|
|
|
} else if ((b & 0xE0) == 0xC0 && l >= 2) {
|
2018-09-16 16:54:36 +00:00
|
|
|
|
return 2;
|
2020-08-07 17:35:48 +00:00
|
|
|
|
} else if ((b & 0xF0) == 0xE0 && l >= 3) {
|
2018-09-16 16:54:36 +00:00
|
|
|
|
return 3;
|
2020-08-07 17:35:48 +00:00
|
|
|
|
} else if ((b & 0xF8) == 0xF0 && l >= 4) {
|
2018-09-16 16:54:36 +00:00
|
|
|
|
return 4;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-04 15:45:18 +00:00
|
|
|
|
inline size_t codepoint_count(const char *s8, size_t l) {
|
|
|
|
|
size_t count = 0;
|
|
|
|
|
for (size_t i = 0; i < l; i += codepoint_length(s8 + i, l - i)) {
|
|
|
|
|
count++;
|
|
|
|
|
}
|
|
|
|
|
return count;
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-16 16:54:36 +00:00
|
|
|
|
inline size_t encode_codepoint(char32_t cp, char *buff) {
|
|
|
|
|
if (cp < 0x0080) {
|
|
|
|
|
buff[0] = static_cast<char>(cp & 0x7F);
|
|
|
|
|
return 1;
|
|
|
|
|
} else if (cp < 0x0800) {
|
|
|
|
|
buff[0] = static_cast<char>(0xC0 | ((cp >> 6) & 0x1F));
|
|
|
|
|
buff[1] = static_cast<char>(0x80 | (cp & 0x3F));
|
|
|
|
|
return 2;
|
|
|
|
|
} else if (cp < 0xD800) {
|
|
|
|
|
buff[0] = static_cast<char>(0xE0 | ((cp >> 12) & 0xF));
|
|
|
|
|
buff[1] = static_cast<char>(0x80 | ((cp >> 6) & 0x3F));
|
|
|
|
|
buff[2] = static_cast<char>(0x80 | (cp & 0x3F));
|
|
|
|
|
return 3;
|
|
|
|
|
} else if (cp < 0xE000) {
|
|
|
|
|
// D800 - DFFF is invalid...
|
|
|
|
|
return 0;
|
|
|
|
|
} else if (cp < 0x10000) {
|
|
|
|
|
buff[0] = static_cast<char>(0xE0 | ((cp >> 12) & 0xF));
|
|
|
|
|
buff[1] = static_cast<char>(0x80 | ((cp >> 6) & 0x3F));
|
|
|
|
|
buff[2] = static_cast<char>(0x80 | (cp & 0x3F));
|
|
|
|
|
return 3;
|
|
|
|
|
} else if (cp < 0x110000) {
|
|
|
|
|
buff[0] = static_cast<char>(0xF0 | ((cp >> 18) & 0x7));
|
|
|
|
|
buff[1] = static_cast<char>(0x80 | ((cp >> 12) & 0x3F));
|
|
|
|
|
buff[2] = static_cast<char>(0x80 | ((cp >> 6) & 0x3F));
|
|
|
|
|
buff[3] = static_cast<char>(0x80 | (cp & 0x3F));
|
|
|
|
|
return 4;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inline std::string encode_codepoint(char32_t cp) {
|
|
|
|
|
char buff[4];
|
|
|
|
|
auto l = encode_codepoint(cp, buff);
|
|
|
|
|
return std::string(buff, l);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inline bool decode_codepoint(const char *s8, size_t l, size_t &bytes,
|
|
|
|
|
char32_t &cp) {
|
|
|
|
|
if (l) {
|
|
|
|
|
auto b = static_cast<uint8_t>(s8[0]);
|
|
|
|
|
if ((b & 0x80) == 0) {
|
|
|
|
|
bytes = 1;
|
|
|
|
|
cp = b;
|
|
|
|
|
return true;
|
|
|
|
|
} else if ((b & 0xE0) == 0xC0) {
|
|
|
|
|
if (l >= 2) {
|
|
|
|
|
bytes = 2;
|
|
|
|
|
cp = ((static_cast<char32_t>(s8[0] & 0x1F)) << 6) |
|
|
|
|
|
(static_cast<char32_t>(s8[1] & 0x3F));
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
} else if ((b & 0xF0) == 0xE0) {
|
|
|
|
|
if (l >= 3) {
|
|
|
|
|
bytes = 3;
|
|
|
|
|
cp = ((static_cast<char32_t>(s8[0] & 0x0F)) << 12) |
|
|
|
|
|
((static_cast<char32_t>(s8[1] & 0x3F)) << 6) |
|
|
|
|
|
(static_cast<char32_t>(s8[2] & 0x3F));
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
} else if ((b & 0xF8) == 0xF0) {
|
|
|
|
|
if (l >= 4) {
|
|
|
|
|
bytes = 4;
|
|
|
|
|
cp = ((static_cast<char32_t>(s8[0] & 0x07)) << 18) |
|
|
|
|
|
((static_cast<char32_t>(s8[1] & 0x3F)) << 12) |
|
|
|
|
|
((static_cast<char32_t>(s8[2] & 0x3F)) << 6) |
|
|
|
|
|
(static_cast<char32_t>(s8[3] & 0x3F));
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-04 15:45:18 +00:00
|
|
|
|
inline size_t decode_codepoint(const char *s8, size_t l, char32_t &cp) {
|
2018-09-16 16:54:36 +00:00
|
|
|
|
size_t bytes;
|
2021-02-04 15:45:18 +00:00
|
|
|
|
if (decode_codepoint(s8, l, bytes, cp)) { return bytes; }
|
2018-09-16 16:54:36 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inline char32_t decode_codepoint(const char *s8, size_t l) {
|
2021-02-04 15:45:18 +00:00
|
|
|
|
char32_t cp = 0;
|
|
|
|
|
decode_codepoint(s8, l, cp);
|
|
|
|
|
return cp;
|
2018-09-16 16:54:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inline std::u32string decode(const char *s8, size_t l) {
|
|
|
|
|
std::u32string out;
|
|
|
|
|
size_t i = 0;
|
|
|
|
|
while (i < l) {
|
|
|
|
|
auto beg = i++;
|
|
|
|
|
while (i < l && (s8[i] & 0xc0) == 0x80) {
|
|
|
|
|
i++;
|
|
|
|
|
}
|
|
|
|
|
out += decode_codepoint(&s8[beg], (i - beg));
|
|
|
|
|
}
|
|
|
|
|
return out;
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-27 18:03:13 +00:00
|
|
|
|
template <typename T> const char *u8(const T *s) {
|
|
|
|
|
return reinterpret_cast<const char *>(s);
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-13 15:11:06 +00:00
|
|
|
|
/*-----------------------------------------------------------------------------
|
|
|
|
|
* escape_characters
|
|
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
inline std::string escape_characters(const char *s, size_t n) {
|
|
|
|
|
std::string str;
|
|
|
|
|
for (size_t i = 0; i < n; i++) {
|
|
|
|
|
auto c = s[i];
|
|
|
|
|
switch (c) {
|
2022-05-06 19:23:29 +00:00
|
|
|
|
case '\f': str += "\\f"; break;
|
2021-01-13 15:11:06 +00:00
|
|
|
|
case '\n': str += "\\n"; break;
|
|
|
|
|
case '\r': str += "\\r"; break;
|
|
|
|
|
case '\t': str += "\\t"; break;
|
2022-05-06 19:23:29 +00:00
|
|
|
|
case '\v': str += "\\v"; break;
|
2021-01-13 15:11:06 +00:00
|
|
|
|
default: str += c; break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return str;
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-15 21:51:36 +00:00
|
|
|
|
inline std::string escape_characters(std::string_view sv) {
|
|
|
|
|
return escape_characters(sv.data(), sv.size());
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-16 16:54:36 +00:00
|
|
|
|
/*-----------------------------------------------------------------------------
|
|
|
|
|
* resolve_escape_sequence
|
|
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
inline bool is_hex(char c, int &v) {
|
|
|
|
|
if ('0' <= c && c <= '9') {
|
|
|
|
|
v = c - '0';
|
|
|
|
|
return true;
|
|
|
|
|
} else if ('a' <= c && c <= 'f') {
|
|
|
|
|
v = c - 'a' + 10;
|
|
|
|
|
return true;
|
|
|
|
|
} else if ('A' <= c && c <= 'F') {
|
|
|
|
|
v = c - 'A' + 10;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
2018-09-16 16:54:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
inline bool is_digit(char c, int &v) {
|
|
|
|
|
if ('0' <= c && c <= '9') {
|
|
|
|
|
v = c - '0';
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
2018-09-16 16:54:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
inline std::pair<int, size_t> parse_hex_number(const char *s, size_t n,
|
|
|
|
|
size_t i) {
|
|
|
|
|
int ret = 0;
|
|
|
|
|
int val;
|
|
|
|
|
while (i < n && is_hex(s[i], val)) {
|
|
|
|
|
ret = static_cast<int>(ret * 16 + val);
|
|
|
|
|
i++;
|
|
|
|
|
}
|
2020-10-02 01:26:04 +00:00
|
|
|
|
return std::pair(ret, i);
|
2018-09-16 16:54:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
inline std::pair<int, size_t> parse_octal_number(const char *s, size_t n,
|
|
|
|
|
size_t i) {
|
|
|
|
|
int ret = 0;
|
|
|
|
|
int val;
|
|
|
|
|
while (i < n && is_digit(s[i], val)) {
|
|
|
|
|
ret = static_cast<int>(ret * 8 + val);
|
|
|
|
|
i++;
|
|
|
|
|
}
|
2020-10-02 01:26:04 +00:00
|
|
|
|
return std::pair(ret, i);
|
2018-09-16 16:54:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
inline std::string resolve_escape_sequence(const char *s, size_t n) {
|
|
|
|
|
std::string r;
|
|
|
|
|
r.reserve(n);
|
2018-09-16 16:54:36 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
size_t i = 0;
|
|
|
|
|
while (i < n) {
|
|
|
|
|
auto ch = s[i];
|
|
|
|
|
if (ch == '\\') {
|
|
|
|
|
i++;
|
|
|
|
|
if (i == n) { throw std::runtime_error("Invalid escape sequence..."); }
|
|
|
|
|
switch (s[i]) {
|
2022-05-06 19:23:29 +00:00
|
|
|
|
case 'f':
|
|
|
|
|
r += '\f';
|
|
|
|
|
i++;
|
|
|
|
|
break;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
case 'n':
|
|
|
|
|
r += '\n';
|
|
|
|
|
i++;
|
|
|
|
|
break;
|
|
|
|
|
case 'r':
|
|
|
|
|
r += '\r';
|
|
|
|
|
i++;
|
|
|
|
|
break;
|
|
|
|
|
case 't':
|
|
|
|
|
r += '\t';
|
|
|
|
|
i++;
|
|
|
|
|
break;
|
2022-05-06 19:23:29 +00:00
|
|
|
|
case 'v':
|
|
|
|
|
r += '\v';
|
|
|
|
|
i++;
|
|
|
|
|
break;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
case '\'':
|
|
|
|
|
r += '\'';
|
|
|
|
|
i++;
|
|
|
|
|
break;
|
|
|
|
|
case '"':
|
|
|
|
|
r += '"';
|
|
|
|
|
i++;
|
|
|
|
|
break;
|
|
|
|
|
case '[':
|
|
|
|
|
r += '[';
|
|
|
|
|
i++;
|
|
|
|
|
break;
|
|
|
|
|
case ']':
|
|
|
|
|
r += ']';
|
|
|
|
|
i++;
|
|
|
|
|
break;
|
|
|
|
|
case '\\':
|
|
|
|
|
r += '\\';
|
|
|
|
|
i++;
|
|
|
|
|
break;
|
|
|
|
|
case 'x':
|
|
|
|
|
case 'u': {
|
|
|
|
|
char32_t cp;
|
|
|
|
|
std::tie(cp, i) = parse_hex_number(s, n, i + 1);
|
|
|
|
|
r += encode_codepoint(cp);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
default: {
|
|
|
|
|
char32_t cp;
|
|
|
|
|
std::tie(cp, i) = parse_octal_number(s, n, i);
|
|
|
|
|
r += encode_codepoint(cp);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
r += ch;
|
|
|
|
|
i++;
|
2018-09-16 16:54:36 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
return r;
|
2018-09-16 16:54:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-01-29 00:21:59 +00:00
|
|
|
|
/*-----------------------------------------------------------------------------
|
|
|
|
|
* token_to_number_ - This function should be removed eventually
|
|
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
template <typename T> T token_to_number_(std::string_view sv) {
|
|
|
|
|
T n = 0;
|
2021-04-07 14:05:17 +00:00
|
|
|
|
#if __has_include(<charconv>)
|
|
|
|
|
if constexpr (!std::is_floating_point<T>::value) {
|
2021-01-29 00:21:59 +00:00
|
|
|
|
std::from_chars(sv.data(), sv.data() + sv.size(), n);
|
2021-04-07 14:05:17 +00:00
|
|
|
|
#else
|
|
|
|
|
if constexpr (false) {
|
|
|
|
|
#endif
|
2021-03-30 18:28:44 +00:00
|
|
|
|
} else {
|
|
|
|
|
auto s = std::string(sv);
|
|
|
|
|
std::istringstream ss(s);
|
|
|
|
|
ss >> n;
|
2021-01-29 00:21:59 +00:00
|
|
|
|
}
|
|
|
|
|
return n;
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-11 21:50:26 +00:00
|
|
|
|
/*-----------------------------------------------------------------------------
|
|
|
|
|
* Trie
|
|
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
class Trie {
|
|
|
|
|
public:
|
|
|
|
|
Trie() = default;
|
|
|
|
|
Trie(const Trie &) = default;
|
|
|
|
|
|
|
|
|
|
Trie(const std::vector<std::string> &items) {
|
|
|
|
|
for (const auto &item : items) {
|
|
|
|
|
for (size_t len = 1; len <= item.size(); len++) {
|
|
|
|
|
auto last = len == item.size();
|
2020-10-02 01:26:04 +00:00
|
|
|
|
std::string_view sv(item.data(), len);
|
|
|
|
|
auto it = dic_.find(sv);
|
2020-02-11 21:50:26 +00:00
|
|
|
|
if (it == dic_.end()) {
|
2020-10-02 01:26:04 +00:00
|
|
|
|
dic_.emplace(sv, Info{last, last});
|
2020-02-11 21:50:26 +00:00
|
|
|
|
} else if (last) {
|
|
|
|
|
it->second.match = true;
|
|
|
|
|
} else {
|
|
|
|
|
it->second.done = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
size_t match(const char *text, size_t text_len) const {
|
|
|
|
|
size_t match_len = 0;
|
2020-10-02 01:26:04 +00:00
|
|
|
|
auto done = false;
|
|
|
|
|
size_t len = 1;
|
|
|
|
|
while (!done && len <= text_len) {
|
|
|
|
|
std::string_view sv(text, len);
|
|
|
|
|
auto it = dic_.find(sv);
|
|
|
|
|
if (it == dic_.end()) {
|
|
|
|
|
done = true;
|
|
|
|
|
} else {
|
|
|
|
|
if (it->second.match) { match_len = len; }
|
|
|
|
|
if (it->second.done) { done = true; }
|
2020-02-11 21:50:26 +00:00
|
|
|
|
}
|
2020-10-02 01:26:04 +00:00
|
|
|
|
len += 1;
|
2020-02-11 21:50:26 +00:00
|
|
|
|
}
|
|
|
|
|
return match_len;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
struct Info {
|
|
|
|
|
bool done;
|
|
|
|
|
bool match;
|
|
|
|
|
};
|
2020-10-02 01:26:04 +00:00
|
|
|
|
|
|
|
|
|
// TODO: Use unordered_map when heterogeneous lookup is supported in C++20
|
|
|
|
|
// std::unordered_map<std::string, Info> dic_;
|
|
|
|
|
std::map<std::string, Info, std::less<>> dic_;
|
2020-02-11 21:50:26 +00:00
|
|
|
|
};
|
|
|
|
|
|
2015-02-08 01:52:26 +00:00
|
|
|
|
/*-----------------------------------------------------------------------------
|
|
|
|
|
* PEG
|
|
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
|
|
2017-11-04 02:27:08 +00:00
|
|
|
|
/*
|
2020-02-05 19:10:00 +00:00
|
|
|
|
* Line information utility function
|
|
|
|
|
*/
|
|
|
|
|
inline std::pair<size_t, size_t> line_info(const char *start, const char *cur) {
|
|
|
|
|
auto p = start;
|
|
|
|
|
auto col_ptr = p;
|
|
|
|
|
auto no = 1;
|
|
|
|
|
|
|
|
|
|
while (p < cur) {
|
|
|
|
|
if (*p == '\n') {
|
|
|
|
|
no++;
|
|
|
|
|
col_ptr = p + 1;
|
2017-11-04 02:27:08 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
p++;
|
|
|
|
|
}
|
2017-11-04 02:27:08 +00:00
|
|
|
|
|
2021-02-04 15:45:18 +00:00
|
|
|
|
auto col = codepoint_count(col_ptr, p - col_ptr) + 1;
|
2017-11-04 02:27:08 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
return std::pair(no, col);
|
2017-11-04 02:27:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-08-28 00:08:48 +00:00
|
|
|
|
/*
|
2020-02-05 19:10:00 +00:00
|
|
|
|
* String tag
|
|
|
|
|
*/
|
2020-10-02 01:26:04 +00:00
|
|
|
|
inline constexpr unsigned int str2tag_core(const char *s, size_t l,
|
|
|
|
|
unsigned int h) {
|
|
|
|
|
return (l == 0) ? h
|
|
|
|
|
: str2tag_core(s + 1, l - 1,
|
|
|
|
|
(h * 33) ^ static_cast<unsigned char>(*s));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inline constexpr unsigned int str2tag(std::string_view sv) {
|
|
|
|
|
return str2tag_core(sv.data(), sv.size(), 0);
|
2019-08-28 00:08:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
namespace udl {
|
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
inline constexpr unsigned int operator"" _(const char *s, size_t l) {
|
|
|
|
|
return str2tag_core(s, l, 0);
|
2019-08-28 00:08:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
} // namespace udl
|
2019-08-28 00:08:48 +00:00
|
|
|
|
|
2015-02-09 22:12:59 +00:00
|
|
|
|
/*
|
2020-02-05 19:10:00 +00:00
|
|
|
|
* Semantic values
|
|
|
|
|
*/
|
2022-01-07 03:59:01 +00:00
|
|
|
|
class Context;
|
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
struct SemanticValues : protected std::vector<std::any> {
|
2022-01-07 03:59:01 +00:00
|
|
|
|
SemanticValues() = default;
|
2022-04-02 12:10:39 +00:00
|
|
|
|
SemanticValues(Context *c) : c_(c) {}
|
2022-01-07 03:59:01 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
// Input text
|
|
|
|
|
const char *path = nullptr;
|
|
|
|
|
const char *ss = nullptr;
|
2017-11-04 02:27:08 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
// Matched string
|
2020-10-02 01:26:04 +00:00
|
|
|
|
std::string_view sv() const { return sv_; }
|
2017-11-04 02:27:08 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
// Definition name
|
|
|
|
|
const std::string &name() const { return name_; }
|
2019-02-14 15:11:12 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
std::vector<unsigned int> tags;
|
2019-08-28 00:08:48 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
// Line number and column at which the matched string is
|
2022-09-03 03:47:55 +00:00
|
|
|
|
std::pair<size_t, size_t> line_info() const;
|
2017-11-04 02:27:08 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
// Choice count
|
|
|
|
|
size_t choice_count() const { return choice_count_; }
|
2018-11-16 18:36:52 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
// Choice number (0 based index)
|
|
|
|
|
size_t choice() const { return choice_; }
|
2016-01-24 01:26:54 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
// Tokens
|
2020-10-02 01:26:04 +00:00
|
|
|
|
std::vector<std::string_view> tokens;
|
2016-01-24 01:26:54 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
std::string_view token(size_t id = 0) const {
|
|
|
|
|
if (tokens.empty()) { return sv_; }
|
|
|
|
|
assert(id < tokens.size());
|
|
|
|
|
return tokens[id];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Token conversion
|
|
|
|
|
std::string token_to_string(size_t id = 0) const {
|
|
|
|
|
return std::string(token(id));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename T> T token_to_number() const {
|
2021-01-29 00:21:59 +00:00
|
|
|
|
return token_to_number_<T>(token());
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Transform the semantic value vector to another vector
|
|
|
|
|
template <typename T>
|
2020-06-07 03:13:57 +00:00
|
|
|
|
std::vector<T> transform(size_t beg = 0,
|
|
|
|
|
size_t end = static_cast<size_t>(-1)) const {
|
2020-06-02 13:15:45 +00:00
|
|
|
|
std::vector<T> r;
|
|
|
|
|
end = (std::min)(end, size());
|
|
|
|
|
for (size_t i = beg; i < end; i++) {
|
2020-10-02 01:26:04 +00:00
|
|
|
|
r.emplace_back(std::any_cast<T>((*this)[i]));
|
2020-06-02 13:15:45 +00:00
|
|
|
|
}
|
|
|
|
|
return r;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-07-05 23:32:00 +00:00
|
|
|
|
void append(SemanticValues &chvs) {
|
|
|
|
|
sv_ = chvs.sv_;
|
|
|
|
|
for (auto &v : chvs) {
|
|
|
|
|
emplace_back(std::move(v));
|
|
|
|
|
}
|
|
|
|
|
for (auto &tag : chvs.tags) {
|
|
|
|
|
tags.emplace_back(std::move(tag));
|
|
|
|
|
}
|
|
|
|
|
for (auto &tok : chvs.tokens) {
|
|
|
|
|
tokens.emplace_back(std::move(tok));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
using std::vector<std::any>::iterator;
|
|
|
|
|
using std::vector<std::any>::const_iterator;
|
|
|
|
|
using std::vector<std::any>::size;
|
|
|
|
|
using std::vector<std::any>::empty;
|
|
|
|
|
using std::vector<std::any>::assign;
|
|
|
|
|
using std::vector<std::any>::begin;
|
|
|
|
|
using std::vector<std::any>::end;
|
|
|
|
|
using std::vector<std::any>::rbegin;
|
|
|
|
|
using std::vector<std::any>::rend;
|
|
|
|
|
using std::vector<std::any>::operator[];
|
|
|
|
|
using std::vector<std::any>::at;
|
|
|
|
|
using std::vector<std::any>::resize;
|
|
|
|
|
using std::vector<std::any>::front;
|
|
|
|
|
using std::vector<std::any>::back;
|
|
|
|
|
using std::vector<std::any>::push_back;
|
|
|
|
|
using std::vector<std::any>::pop_back;
|
|
|
|
|
using std::vector<std::any>::insert;
|
|
|
|
|
using std::vector<std::any>::erase;
|
|
|
|
|
using std::vector<std::any>::clear;
|
|
|
|
|
using std::vector<std::any>::swap;
|
|
|
|
|
using std::vector<std::any>::emplace;
|
|
|
|
|
using std::vector<std::any>::emplace_back;
|
2015-02-22 04:19:54 +00:00
|
|
|
|
|
2015-06-16 05:01:02 +00:00
|
|
|
|
private:
|
2020-02-05 19:10:00 +00:00
|
|
|
|
friend class Context;
|
|
|
|
|
friend class Sequence;
|
|
|
|
|
friend class PrioritizedChoice;
|
2022-07-03 23:23:35 +00:00
|
|
|
|
friend class Repetition;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
friend class Holder;
|
2020-02-05 21:03:02 +00:00
|
|
|
|
friend class PrecedenceClimbing;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
|
2022-01-07 03:59:01 +00:00
|
|
|
|
Context *c_ = nullptr;
|
2020-10-02 01:26:04 +00:00
|
|
|
|
std::string_view sv_;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
size_t choice_count_ = 0;
|
|
|
|
|
size_t choice_ = 0;
|
|
|
|
|
std::string name_;
|
2015-02-18 03:35:07 +00:00
|
|
|
|
};
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2015-02-12 00:48:55 +00:00
|
|
|
|
/*
|
|
|
|
|
* Semantic action
|
|
|
|
|
*/
|
2022-04-02 12:10:39 +00:00
|
|
|
|
template <typename F, typename... Args> std::any call(F fn, Args &&...args) {
|
2020-10-02 01:26:04 +00:00
|
|
|
|
using R = decltype(fn(std::forward<Args>(args)...));
|
|
|
|
|
if constexpr (std::is_void<R>::value) {
|
|
|
|
|
fn(std::forward<Args>(args)...);
|
|
|
|
|
return std::any();
|
|
|
|
|
} else if constexpr (std::is_same<typename std::remove_cv<R>::type,
|
|
|
|
|
std::any>::value) {
|
|
|
|
|
return fn(std::forward<Args>(args)...);
|
|
|
|
|
} else {
|
|
|
|
|
return std::any(fn(std::forward<Args>(args)...));
|
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
template <typename T>
|
|
|
|
|
struct argument_count : argument_count<decltype(&T::operator())> {};
|
|
|
|
|
template <typename R, typename... Args>
|
|
|
|
|
struct argument_count<R (*)(Args...)>
|
|
|
|
|
: std::integral_constant<unsigned, sizeof...(Args)> {};
|
|
|
|
|
template <typename R, typename C, typename... Args>
|
|
|
|
|
struct argument_count<R (C::*)(Args...)>
|
|
|
|
|
: std::integral_constant<unsigned, sizeof...(Args)> {};
|
|
|
|
|
template <typename R, typename C, typename... Args>
|
|
|
|
|
struct argument_count<R (C::*)(Args...) const>
|
|
|
|
|
: std::integral_constant<unsigned, sizeof...(Args)> {};
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
class Action {
|
2015-02-12 00:48:55 +00:00
|
|
|
|
public:
|
2020-02-05 19:10:00 +00:00
|
|
|
|
Action() = default;
|
2020-10-02 01:26:04 +00:00
|
|
|
|
Action(Action &&rhs) = default;
|
|
|
|
|
template <typename F> Action(F fn) : fn_(make_adaptor(fn)) {}
|
|
|
|
|
template <typename F> void operator=(F fn) { fn_ = make_adaptor(fn); }
|
2020-02-05 19:10:00 +00:00
|
|
|
|
Action &operator=(const Action &rhs) = default;
|
2016-05-25 07:15:39 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
operator bool() const { return bool(fn_); }
|
2015-02-12 00:48:55 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
std::any operator()(SemanticValues &vs, std::any &dt) const {
|
|
|
|
|
return fn_(vs, dt);
|
|
|
|
|
}
|
2015-02-12 00:48:55 +00:00
|
|
|
|
|
|
|
|
|
private:
|
2020-10-02 01:26:04 +00:00
|
|
|
|
using Fty = std::function<std::any(SemanticValues &vs, std::any &dt)>;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
template <typename F> Fty make_adaptor(F fn) {
|
|
|
|
|
if constexpr (argument_count<F>::value == 1) {
|
|
|
|
|
return [fn](auto &vs, auto & /*dt*/) { return call(fn, vs); };
|
|
|
|
|
} else {
|
|
|
|
|
return [fn](auto &vs, auto &dt) { return call(fn, vs, dt); };
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2015-02-19 03:28:57 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
Fty fn_;
|
2015-06-16 04:30:28 +00:00
|
|
|
|
};
|
2015-02-19 00:41:18 +00:00
|
|
|
|
|
2015-02-08 01:52:26 +00:00
|
|
|
|
/*
|
2021-01-13 15:11:06 +00:00
|
|
|
|
* Parse result helper
|
2015-02-08 01:52:26 +00:00
|
|
|
|
*/
|
2020-02-05 19:10:00 +00:00
|
|
|
|
inline bool success(size_t len) { return len != static_cast<size_t>(-1); }
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
inline bool fail(size_t len) { return len == static_cast<size_t>(-1); }
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2021-01-13 15:11:06 +00:00
|
|
|
|
/*
|
|
|
|
|
* Log
|
|
|
|
|
*/
|
2022-09-03 03:47:55 +00:00
|
|
|
|
using Log = std::function<void(size_t line, size_t col, const std::string &msg,
|
|
|
|
|
const std::string &rule)>;
|
2021-01-13 15:11:06 +00:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* ErrorInfo
|
|
|
|
|
*/
|
2022-07-05 23:32:00 +00:00
|
|
|
|
class Definition;
|
|
|
|
|
|
2021-01-13 15:11:06 +00:00
|
|
|
|
struct ErrorInfo {
|
|
|
|
|
const char *error_pos = nullptr;
|
2022-07-05 23:32:00 +00:00
|
|
|
|
std::vector<std::pair<const char *, const Definition *>> expected_tokens;
|
2021-01-13 15:11:06 +00:00
|
|
|
|
const char *message_pos = nullptr;
|
|
|
|
|
std::string message;
|
2022-09-03 03:47:55 +00:00
|
|
|
|
std::string label;
|
2022-09-03 11:41:08 +00:00
|
|
|
|
const char *last_output_pos = nullptr;
|
2022-05-28 01:48:12 +00:00
|
|
|
|
bool keep_previous_token = false;
|
2021-01-13 15:11:06 +00:00
|
|
|
|
|
|
|
|
|
void clear() {
|
|
|
|
|
error_pos = nullptr;
|
|
|
|
|
expected_tokens.clear();
|
|
|
|
|
message_pos = nullptr;
|
|
|
|
|
message.clear();
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-05 23:32:00 +00:00
|
|
|
|
void add(const char *error_literal, const Definition *error_rule) {
|
|
|
|
|
for (const auto &[t, r] : expected_tokens) {
|
|
|
|
|
if (t == error_literal && r == error_rule) { return; }
|
2021-01-13 15:11:06 +00:00
|
|
|
|
}
|
2022-07-05 23:32:00 +00:00
|
|
|
|
expected_tokens.emplace_back(error_literal, error_rule);
|
2021-01-13 15:11:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-09-03 11:41:08 +00:00
|
|
|
|
void output_log(const Log &log, const char *s, size_t n);
|
2021-01-13 15:11:06 +00:00
|
|
|
|
|
|
|
|
|
private:
|
2021-02-08 21:23:45 +00:00
|
|
|
|
int cast_char(char c) const { return static_cast<unsigned char>(c); }
|
|
|
|
|
|
2021-01-19 17:03:06 +00:00
|
|
|
|
std::string heuristic_error_token(const char *s, size_t n,
|
2021-03-29 18:25:11 +00:00
|
|
|
|
const char *pos) const {
|
|
|
|
|
auto len = n - std::distance(s, pos);
|
2021-01-13 15:11:06 +00:00
|
|
|
|
if (len) {
|
|
|
|
|
size_t i = 0;
|
2021-03-29 18:25:11 +00:00
|
|
|
|
auto c = cast_char(pos[i++]);
|
2021-01-15 21:51:36 +00:00
|
|
|
|
if (!std::ispunct(c) && !std::isspace(c)) {
|
2021-03-29 18:25:11 +00:00
|
|
|
|
while (i < len && !std::ispunct(cast_char(pos[i])) &&
|
|
|
|
|
!std::isspace(cast_char(pos[i]))) {
|
2021-01-13 15:11:06 +00:00
|
|
|
|
i++;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-02-04 15:45:18 +00:00
|
|
|
|
|
2022-07-31 19:39:38 +00:00
|
|
|
|
size_t count = CPPPEGLIB_HEURISTIC_ERROR_TOKEN_MAX_CHAR_COUNT;
|
2021-02-04 15:45:18 +00:00
|
|
|
|
size_t j = 0;
|
|
|
|
|
while (count > 0 && j < i) {
|
2021-03-29 18:25:11 +00:00
|
|
|
|
j += codepoint_length(&pos[j], i - j);
|
2021-02-04 15:45:18 +00:00
|
|
|
|
count--;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-29 18:25:11 +00:00
|
|
|
|
return escape_characters(pos, j);
|
2021-01-13 15:11:06 +00:00
|
|
|
|
}
|
|
|
|
|
return std::string();
|
|
|
|
|
}
|
2021-01-18 20:26:54 +00:00
|
|
|
|
|
|
|
|
|
std::string replace_all(std::string str, const std::string &from,
|
|
|
|
|
const std::string &to) const {
|
|
|
|
|
size_t pos = 0;
|
|
|
|
|
while ((pos = str.find(from, pos)) != std::string::npos) {
|
|
|
|
|
str.replace(pos, from.length(), to);
|
|
|
|
|
pos += to.length();
|
|
|
|
|
}
|
|
|
|
|
return str;
|
|
|
|
|
}
|
2021-01-13 15:11:06 +00:00
|
|
|
|
};
|
|
|
|
|
|
2015-02-26 00:31:00 +00:00
|
|
|
|
/*
|
|
|
|
|
* Context
|
|
|
|
|
*/
|
2018-07-12 17:06:48 +00:00
|
|
|
|
class Ope;
|
2015-11-30 04:07:02 +00:00
|
|
|
|
|
2022-06-03 22:42:44 +00:00
|
|
|
|
using TracerEnter = std::function<void(
|
|
|
|
|
const Ope &name, const char *s, size_t n, const SemanticValues &vs,
|
|
|
|
|
const Context &c, const std::any &dt, std::any &trace_data)>;
|
2020-01-28 21:55:37 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
using TracerLeave = std::function<void(
|
2021-01-13 15:11:06 +00:00
|
|
|
|
const Ope &ope, const char *s, size_t n, const SemanticValues &vs,
|
2022-06-03 22:42:44 +00:00
|
|
|
|
const Context &c, const std::any &dt, size_t, std::any &trace_data)>;
|
|
|
|
|
|
|
|
|
|
using TracerStartOrEnd = std::function<void(std::any &trace_data)>;
|
2015-11-26 01:53:04 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
class Context {
|
2015-12-03 23:59:12 +00:00
|
|
|
|
public:
|
2020-02-05 19:10:00 +00:00
|
|
|
|
const char *path;
|
|
|
|
|
const char *s;
|
|
|
|
|
const size_t l;
|
2020-01-25 00:56:37 +00:00
|
|
|
|
|
2021-01-13 15:11:06 +00:00
|
|
|
|
ErrorInfo error_info;
|
|
|
|
|
bool recovered = false;
|
2020-01-28 20:52:23 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
std::vector<std::shared_ptr<SemanticValues>> value_stack;
|
|
|
|
|
size_t value_stack_size = 0;
|
2020-06-01 03:46:46 +00:00
|
|
|
|
|
2020-06-01 23:47:32 +00:00
|
|
|
|
std::vector<Definition *> rule_stack;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
std::vector<std::vector<std::shared_ptr<Ope>>> args_stack;
|
2015-02-27 02:32:26 +00:00
|
|
|
|
|
2020-11-09 17:06:48 +00:00
|
|
|
|
size_t in_token_boundary_count = 0;
|
2020-01-24 02:57:13 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
std::shared_ptr<Ope> whitespaceOpe;
|
|
|
|
|
bool in_whitespace = false;
|
2020-01-25 00:56:37 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
std::shared_ptr<Ope> wordOpe;
|
2015-02-27 02:32:26 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
std::vector<std::map<std::string_view, std::string>> capture_scope_stack;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
size_t capture_scope_stack_size = 0;
|
2015-02-26 00:31:00 +00:00
|
|
|
|
|
2022-07-05 23:32:00 +00:00
|
|
|
|
std::vector<bool> cut_stack;
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
const size_t def_count;
|
|
|
|
|
const bool enablePackratParsing;
|
|
|
|
|
std::vector<bool> cache_registered;
|
|
|
|
|
std::vector<bool> cache_success;
|
2020-01-28 20:52:23 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
std::map<std::pair<size_t, size_t>, std::tuple<size_t, std::any>>
|
|
|
|
|
cache_values;
|
2015-02-26 00:31:00 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
TracerEnter tracer_enter;
|
|
|
|
|
TracerLeave tracer_leave;
|
2022-06-03 22:42:44 +00:00
|
|
|
|
std::any trace_data;
|
|
|
|
|
const bool verbose_trace;
|
2015-04-01 17:36:03 +00:00
|
|
|
|
|
2021-01-13 15:11:06 +00:00
|
|
|
|
Log log;
|
|
|
|
|
|
|
|
|
|
Context(const char *path, const char *s, size_t l, size_t def_count,
|
|
|
|
|
std::shared_ptr<Ope> whitespaceOpe, std::shared_ptr<Ope> wordOpe,
|
|
|
|
|
bool enablePackratParsing, TracerEnter tracer_enter,
|
2022-06-03 22:42:44 +00:00
|
|
|
|
TracerLeave tracer_leave, std::any trace_data, bool verbose_trace,
|
|
|
|
|
Log log)
|
2021-01-13 15:11:06 +00:00
|
|
|
|
: path(path), s(s), l(l), whitespaceOpe(whitespaceOpe), wordOpe(wordOpe),
|
|
|
|
|
def_count(def_count), enablePackratParsing(enablePackratParsing),
|
2020-02-05 19:10:00 +00:00
|
|
|
|
cache_registered(enablePackratParsing ? def_count * (l + 1) : 0),
|
|
|
|
|
cache_success(enablePackratParsing ? def_count * (l + 1) : 0),
|
2022-05-27 04:04:05 +00:00
|
|
|
|
tracer_enter(tracer_enter), tracer_leave(tracer_leave),
|
2022-06-03 22:42:44 +00:00
|
|
|
|
trace_data(trace_data), verbose_trace(verbose_trace), log(log) {
|
2018-07-25 22:08:10 +00:00
|
|
|
|
|
2022-07-05 23:32:00 +00:00
|
|
|
|
push_args({});
|
2020-02-05 19:10:00 +00:00
|
|
|
|
push_capture_scope();
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-03 23:50:46 +00:00
|
|
|
|
~Context() {
|
|
|
|
|
pop_capture_scope();
|
|
|
|
|
|
|
|
|
|
assert(!value_stack_size);
|
|
|
|
|
assert(!capture_scope_stack_size);
|
|
|
|
|
assert(cut_stack.empty());
|
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
|
|
|
|
|
Context(const Context &) = delete;
|
|
|
|
|
Context(Context &&) = delete;
|
|
|
|
|
Context operator=(const Context &) = delete;
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
2020-10-02 01:26:04 +00:00
|
|
|
|
void packrat(const char *a_s, size_t def_id, size_t &len, std::any &val,
|
|
|
|
|
T fn) {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
if (!enablePackratParsing) {
|
|
|
|
|
fn(val);
|
|
|
|
|
return;
|
2018-07-21 02:09:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
auto col = a_s - s;
|
|
|
|
|
auto idx = def_count * static_cast<size_t>(col) + def_id;
|
|
|
|
|
|
|
|
|
|
if (cache_registered[idx]) {
|
|
|
|
|
if (cache_success[idx]) {
|
2020-10-02 01:26:04 +00:00
|
|
|
|
auto key = std::pair(col, def_id);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
std::tie(len, val) = cache_values[key];
|
|
|
|
|
return;
|
|
|
|
|
} else {
|
|
|
|
|
len = static_cast<size_t>(-1);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
fn(val);
|
|
|
|
|
cache_registered[idx] = true;
|
|
|
|
|
cache_success[idx] = success(len);
|
|
|
|
|
if (success(len)) {
|
2020-10-02 01:26:04 +00:00
|
|
|
|
auto key = std::pair(col, def_id);
|
|
|
|
|
cache_values[key] = std::pair(len, val);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
return;
|
2018-07-21 02:09:54 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2018-07-21 02:09:54 +00:00
|
|
|
|
|
2022-07-05 23:32:00 +00:00
|
|
|
|
SemanticValues &push() {
|
|
|
|
|
push_capture_scope();
|
|
|
|
|
return push_semantic_values_scope();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void pop() {
|
|
|
|
|
pop_capture_scope();
|
|
|
|
|
pop_semantic_values_scope();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Semantic values
|
2022-07-03 23:23:35 +00:00
|
|
|
|
SemanticValues &push_semantic_values_scope() {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
assert(value_stack_size <= value_stack.size());
|
|
|
|
|
if (value_stack_size == value_stack.size()) {
|
2022-01-07 03:59:01 +00:00
|
|
|
|
value_stack.emplace_back(std::make_shared<SemanticValues>(this));
|
2020-02-05 19:10:00 +00:00
|
|
|
|
} else {
|
2020-10-02 01:26:04 +00:00
|
|
|
|
auto &vs = *value_stack[value_stack_size];
|
|
|
|
|
if (!vs.empty()) {
|
|
|
|
|
vs.clear();
|
|
|
|
|
if (!vs.tags.empty()) { vs.tags.clear(); }
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2020-10-02 01:26:04 +00:00
|
|
|
|
vs.sv_ = std::string_view();
|
|
|
|
|
vs.choice_count_ = 0;
|
|
|
|
|
vs.choice_ = 0;
|
|
|
|
|
if (!vs.tokens.empty()) { vs.tokens.clear(); }
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
auto &vs = *value_stack[value_stack_size++];
|
|
|
|
|
vs.path = path;
|
|
|
|
|
vs.ss = s;
|
|
|
|
|
return vs;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-07-03 23:23:35 +00:00
|
|
|
|
void pop_semantic_values_scope() { value_stack_size--; }
|
2020-02-05 19:10:00 +00:00
|
|
|
|
|
2022-07-05 23:32:00 +00:00
|
|
|
|
// Arguments
|
2020-02-05 19:10:00 +00:00
|
|
|
|
void push_args(std::vector<std::shared_ptr<Ope>> &&args) {
|
|
|
|
|
args_stack.emplace_back(args);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void pop_args() { args_stack.pop_back(); }
|
|
|
|
|
|
|
|
|
|
const std::vector<std::shared_ptr<Ope>> &top_args() const {
|
|
|
|
|
return args_stack[args_stack.size() - 1];
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-05 23:32:00 +00:00
|
|
|
|
// Capture scope
|
2020-02-05 19:10:00 +00:00
|
|
|
|
void push_capture_scope() {
|
|
|
|
|
assert(capture_scope_stack_size <= capture_scope_stack.size());
|
|
|
|
|
if (capture_scope_stack_size == capture_scope_stack.size()) {
|
2020-10-02 01:26:04 +00:00
|
|
|
|
capture_scope_stack.emplace_back(
|
|
|
|
|
std::map<std::string_view, std::string>());
|
2020-02-05 19:10:00 +00:00
|
|
|
|
} else {
|
|
|
|
|
auto &cs = capture_scope_stack[capture_scope_stack_size];
|
2020-05-18 05:24:53 +00:00
|
|
|
|
if (!cs.empty()) { cs.clear(); }
|
2018-07-21 02:09:54 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
capture_scope_stack_size++;
|
|
|
|
|
}
|
2018-07-21 02:09:54 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
void pop_capture_scope() { capture_scope_stack_size--; }
|
|
|
|
|
|
|
|
|
|
void shift_capture_values() {
|
2022-07-03 23:50:46 +00:00
|
|
|
|
assert(capture_scope_stack_size >= 2);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
auto curr = &capture_scope_stack[capture_scope_stack_size - 1];
|
|
|
|
|
auto prev = curr - 1;
|
2021-03-02 13:14:22 +00:00
|
|
|
|
for (const auto &[k, v] : *curr) {
|
|
|
|
|
(*prev)[k] = v;
|
2015-04-01 17:36:03 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-07-05 23:32:00 +00:00
|
|
|
|
// Error
|
2021-01-10 04:22:00 +00:00
|
|
|
|
void set_error_pos(const char *a_s, const char *literal = nullptr);
|
2015-11-30 04:07:02 +00:00
|
|
|
|
|
2022-07-05 23:32:00 +00:00
|
|
|
|
// Trace
|
2021-01-13 15:11:06 +00:00
|
|
|
|
void trace_enter(const Ope &ope, const char *a_s, size_t n,
|
2022-06-03 22:42:44 +00:00
|
|
|
|
const SemanticValues &vs, std::any &dt);
|
2021-01-13 15:11:06 +00:00
|
|
|
|
void trace_leave(const Ope &ope, const char *a_s, size_t n,
|
2022-06-03 22:42:44 +00:00
|
|
|
|
const SemanticValues &vs, std::any &dt, size_t len);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
bool is_traceable(const Ope &ope) const;
|
2020-01-28 21:55:37 +00:00
|
|
|
|
|
2022-09-03 03:47:55 +00:00
|
|
|
|
// Line info
|
|
|
|
|
std::pair<size_t, size_t> line_info(const char *cur) const {
|
2022-09-03 11:41:08 +00:00
|
|
|
|
std::call_once(source_line_index_init_, [this]() {
|
2022-09-03 03:47:55 +00:00
|
|
|
|
for (size_t pos = 0; pos < l; pos++) {
|
|
|
|
|
if (s[pos] == '\n') { source_line_index.push_back(pos); }
|
|
|
|
|
}
|
|
|
|
|
source_line_index.push_back(l);
|
2022-09-03 11:41:08 +00:00
|
|
|
|
});
|
2022-09-03 03:47:55 +00:00
|
|
|
|
|
|
|
|
|
auto pos = static_cast<size_t>(std::distance(s, cur));
|
|
|
|
|
|
|
|
|
|
auto it = std::lower_bound(
|
|
|
|
|
source_line_index.begin(), source_line_index.end(), pos,
|
|
|
|
|
[](size_t element, size_t value) { return element < value; });
|
|
|
|
|
|
|
|
|
|
auto id = static_cast<size_t>(std::distance(source_line_index.begin(), it));
|
|
|
|
|
auto off = pos - (id == 0 ? 0 : source_line_index[id - 1] + 1);
|
|
|
|
|
return std::pair(id + 1, off + 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
size_t next_trace_id = 0;
|
|
|
|
|
std::vector<size_t> trace_ids;
|
2022-05-27 04:04:05 +00:00
|
|
|
|
bool ignore_trace_state = false;
|
2022-09-03 11:41:08 +00:00
|
|
|
|
mutable std::once_flag source_line_index_init_;
|
|
|
|
|
mutable std::vector<size_t> source_line_index;
|
2015-02-26 00:31:00 +00:00
|
|
|
|
};
|
|
|
|
|
|
2015-02-08 01:52:26 +00:00
|
|
|
|
/*
|
2015-02-12 00:48:55 +00:00
|
|
|
|
* Parser operators
|
2015-02-08 01:52:26 +00:00
|
|
|
|
*/
|
2020-02-05 19:10:00 +00:00
|
|
|
|
class Ope {
|
2015-02-12 00:48:55 +00:00
|
|
|
|
public:
|
2020-02-05 19:10:00 +00:00
|
|
|
|
struct Visitor;
|
|
|
|
|
|
2021-03-08 18:56:22 +00:00
|
|
|
|
virtual ~Ope() = default;
|
2020-10-02 01:26:04 +00:00
|
|
|
|
size_t parse(const char *s, size_t n, SemanticValues &vs, Context &c,
|
|
|
|
|
std::any &dt) const;
|
|
|
|
|
virtual size_t parse_core(const char *s, size_t n, SemanticValues &vs,
|
|
|
|
|
Context &c, std::any &dt) const = 0;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
virtual void accept(Visitor &v) = 0;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class Sequence : public Ope {
|
|
|
|
|
public:
|
|
|
|
|
template <typename... Args>
|
2022-04-02 12:10:39 +00:00
|
|
|
|
Sequence(const Args &...args)
|
2020-02-05 19:10:00 +00:00
|
|
|
|
: opes_{static_cast<std::shared_ptr<Ope>>(args)...} {}
|
|
|
|
|
Sequence(const std::vector<std::shared_ptr<Ope>> &opes) : opes_(opes) {}
|
|
|
|
|
Sequence(std::vector<std::shared_ptr<Ope>> &&opes) : opes_(opes) {}
|
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
size_t parse_core(const char *s, size_t n, SemanticValues &vs, Context &c,
|
|
|
|
|
std::any &dt) const override {
|
2022-07-03 23:23:35 +00:00
|
|
|
|
auto &chvs = c.push_semantic_values_scope();
|
|
|
|
|
auto se = scope_exit([&]() { c.pop_semantic_values_scope(); });
|
2020-02-05 19:10:00 +00:00
|
|
|
|
size_t i = 0;
|
|
|
|
|
for (const auto &ope : opes_) {
|
2022-07-03 23:23:35 +00:00
|
|
|
|
auto len = ope->parse(s + i, n - i, chvs, c, dt);
|
2021-01-13 15:11:06 +00:00
|
|
|
|
if (fail(len)) { return len; }
|
2020-02-05 19:10:00 +00:00
|
|
|
|
i += len;
|
|
|
|
|
}
|
2022-07-05 23:32:00 +00:00
|
|
|
|
vs.append(chvs);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
return i;
|
|
|
|
|
}
|
2015-02-26 00:31:00 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
void accept(Visitor &v) override;
|
|
|
|
|
|
|
|
|
|
std::vector<std::shared_ptr<Ope>> opes_;
|
2015-02-09 22:12:59 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
class PrioritizedChoice : public Ope {
|
2015-02-08 01:52:26 +00:00
|
|
|
|
public:
|
2020-02-05 19:10:00 +00:00
|
|
|
|
template <typename... Args>
|
2022-04-02 12:10:39 +00:00
|
|
|
|
PrioritizedChoice(bool for_label, const Args &...args)
|
2021-01-26 03:46:28 +00:00
|
|
|
|
: opes_{static_cast<std::shared_ptr<Ope>>(args)...},
|
|
|
|
|
for_label_(for_label) {}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
PrioritizedChoice(const std::vector<std::shared_ptr<Ope>> &opes)
|
|
|
|
|
: opes_(opes) {}
|
|
|
|
|
PrioritizedChoice(std::vector<std::shared_ptr<Ope>> &&opes) : opes_(opes) {}
|
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
size_t parse_core(const char *s, size_t n, SemanticValues &vs, Context &c,
|
|
|
|
|
std::any &dt) const override {
|
2021-01-26 03:46:28 +00:00
|
|
|
|
size_t len = static_cast<size_t>(-1);
|
|
|
|
|
|
|
|
|
|
if (!for_label_) { c.cut_stack.push_back(false); }
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
size_t id = 0;
|
|
|
|
|
for (const auto &ope : opes_) {
|
2021-01-26 03:46:28 +00:00
|
|
|
|
if (!c.cut_stack.empty()) { c.cut_stack.back() = false; }
|
|
|
|
|
|
2022-07-05 23:32:00 +00:00
|
|
|
|
auto &chvs = c.push();
|
2022-05-28 01:48:12 +00:00
|
|
|
|
c.error_info.keep_previous_token = id > 0;
|
2020-10-02 01:26:04 +00:00
|
|
|
|
auto se = scope_exit([&]() {
|
2022-07-05 23:32:00 +00:00
|
|
|
|
c.pop();
|
2022-05-28 01:48:12 +00:00
|
|
|
|
c.error_info.keep_previous_token = false;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
});
|
2021-01-13 15:11:06 +00:00
|
|
|
|
|
2022-07-03 23:23:35 +00:00
|
|
|
|
len = ope->parse(s, n, chvs, c, dt);
|
2021-01-26 03:46:28 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
if (success(len)) {
|
2022-07-05 23:32:00 +00:00
|
|
|
|
vs.append(chvs);
|
2020-10-02 01:26:04 +00:00
|
|
|
|
vs.choice_count_ = opes_.size();
|
|
|
|
|
vs.choice_ = id;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
c.shift_capture_values();
|
2021-01-26 03:46:28 +00:00
|
|
|
|
break;
|
|
|
|
|
} else if (!c.cut_stack.empty() && c.cut_stack.back()) {
|
|
|
|
|
break;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2021-01-13 15:11:06 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
id++;
|
2015-02-09 22:12:59 +00:00
|
|
|
|
}
|
2021-01-26 03:46:28 +00:00
|
|
|
|
|
|
|
|
|
if (!for_label_) { c.cut_stack.pop_back(); }
|
|
|
|
|
|
|
|
|
|
return len;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2015-02-09 22:12:59 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
void accept(Visitor &v) override;
|
2015-02-26 00:31:00 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
size_t size() const { return opes_.size(); }
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
std::vector<std::shared_ptr<Ope>> opes_;
|
2021-01-26 03:46:28 +00:00
|
|
|
|
bool for_label_ = false;
|
2015-02-08 01:52:26 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-03-28 22:38:01 +00:00
|
|
|
|
class Repetition : public Ope {
|
2015-02-08 01:52:26 +00:00
|
|
|
|
public:
|
2020-03-28 22:38:01 +00:00
|
|
|
|
Repetition(const std::shared_ptr<Ope> &ope, size_t min, size_t max)
|
|
|
|
|
: ope_(ope), min_(min), max_(max) {}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
size_t parse_core(const char *s, size_t n, SemanticValues &vs, Context &c,
|
|
|
|
|
std::any &dt) const override {
|
2020-03-28 22:38:01 +00:00
|
|
|
|
size_t count = 0;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
size_t i = 0;
|
2020-03-28 22:38:01 +00:00
|
|
|
|
while (count < min_) {
|
2022-07-05 23:32:00 +00:00
|
|
|
|
auto &chvs = c.push();
|
|
|
|
|
auto se = scope_exit([&]() { c.pop(); });
|
2022-07-03 23:23:35 +00:00
|
|
|
|
|
|
|
|
|
auto len = ope_->parse(s + i, n - i, chvs, c, dt);
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
if (success(len)) {
|
2022-07-05 23:32:00 +00:00
|
|
|
|
vs.append(chvs);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
c.shift_capture_values();
|
|
|
|
|
} else {
|
2021-01-13 15:11:06 +00:00
|
|
|
|
return len;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
i += len;
|
2020-03-28 22:38:01 +00:00
|
|
|
|
count++;
|
2015-02-09 22:12:59 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
|
2022-06-25 10:29:50 +00:00
|
|
|
|
while (count < max_) {
|
2022-07-05 23:32:00 +00:00
|
|
|
|
auto &chvs = c.push();
|
|
|
|
|
auto se = scope_exit([&]() { c.pop(); });
|
2022-07-03 23:23:35 +00:00
|
|
|
|
|
|
|
|
|
auto len = ope_->parse(s + i, n - i, chvs, c, dt);
|
2022-05-28 01:48:12 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
if (success(len)) {
|
2022-07-05 23:32:00 +00:00
|
|
|
|
vs.append(chvs);
|
2022-07-03 23:23:35 +00:00
|
|
|
|
c.shift_capture_values();
|
|
|
|
|
} else {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
i += len;
|
2020-03-28 22:38:01 +00:00
|
|
|
|
count++;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
return i;
|
|
|
|
|
}
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
void accept(Visitor &v) override;
|
2015-02-26 00:31:00 +00:00
|
|
|
|
|
2020-03-28 22:38:01 +00:00
|
|
|
|
bool is_zom() const {
|
|
|
|
|
return min_ == 0 && max_ == std::numeric_limits<size_t>::max();
|
|
|
|
|
}
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2020-03-28 22:38:01 +00:00
|
|
|
|
static std::shared_ptr<Repetition> zom(const std::shared_ptr<Ope> &ope) {
|
|
|
|
|
return std::make_shared<Repetition>(ope, 0,
|
|
|
|
|
std::numeric_limits<size_t>::max());
|
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
|
2020-03-28 22:38:01 +00:00
|
|
|
|
static std::shared_ptr<Repetition> oom(const std::shared_ptr<Ope> &ope) {
|
|
|
|
|
return std::make_shared<Repetition>(ope, 1,
|
|
|
|
|
std::numeric_limits<size_t>::max());
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2020-03-28 22:38:01 +00:00
|
|
|
|
static std::shared_ptr<Repetition> opt(const std::shared_ptr<Ope> &ope) {
|
|
|
|
|
return std::make_shared<Repetition>(ope, 0, 1);
|
|
|
|
|
}
|
2015-02-26 00:31:00 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
std::shared_ptr<Ope> ope_;
|
2020-03-28 22:38:01 +00:00
|
|
|
|
size_t min_;
|
|
|
|
|
size_t max_;
|
2015-02-08 01:52:26 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
class AndPredicate : public Ope {
|
2015-02-08 01:52:26 +00:00
|
|
|
|
public:
|
2020-02-05 19:10:00 +00:00
|
|
|
|
AndPredicate(const std::shared_ptr<Ope> &ope) : ope_(ope) {}
|
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
size_t parse_core(const char *s, size_t n, SemanticValues & /*vs*/,
|
|
|
|
|
Context &c, std::any &dt) const override {
|
2022-07-05 23:32:00 +00:00
|
|
|
|
auto &chvs = c.push();
|
|
|
|
|
auto se = scope_exit([&]() { c.pop(); });
|
2022-07-03 23:23:35 +00:00
|
|
|
|
|
|
|
|
|
auto len = ope_->parse(s, n, chvs, c, dt);
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
if (success(len)) {
|
|
|
|
|
return 0;
|
|
|
|
|
} else {
|
2021-01-13 15:11:06 +00:00
|
|
|
|
return len;
|
2015-02-09 22:12:59 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
void accept(Visitor &v) override;
|
2015-02-26 00:31:00 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
std::shared_ptr<Ope> ope_;
|
2015-02-08 01:52:26 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
class NotPredicate : public Ope {
|
2015-02-08 01:52:26 +00:00
|
|
|
|
public:
|
2020-02-05 19:10:00 +00:00
|
|
|
|
NotPredicate(const std::shared_ptr<Ope> &ope) : ope_(ope) {}
|
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
size_t parse_core(const char *s, size_t n, SemanticValues & /*vs*/,
|
|
|
|
|
Context &c, std::any &dt) const override {
|
2022-07-05 23:32:00 +00:00
|
|
|
|
auto &chvs = c.push();
|
|
|
|
|
auto se = scope_exit([&]() { c.pop(); });
|
2022-07-03 23:23:35 +00:00
|
|
|
|
auto len = ope_->parse(s, n, chvs, c, dt);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
if (success(len)) {
|
|
|
|
|
c.set_error_pos(s);
|
|
|
|
|
return static_cast<size_t>(-1);
|
|
|
|
|
} else {
|
|
|
|
|
return 0;
|
2015-02-09 22:12:59 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
void accept(Visitor &v) override;
|
2015-02-26 00:31:00 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
std::shared_ptr<Ope> ope_;
|
2015-02-08 01:52:26 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-02-11 21:50:26 +00:00
|
|
|
|
class Dictionary : public Ope, public std::enable_shared_from_this<Dictionary> {
|
|
|
|
|
public:
|
|
|
|
|
Dictionary(const std::vector<std::string> &v) : trie_(v) {}
|
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
size_t parse_core(const char *s, size_t n, SemanticValues &vs, Context &c,
|
|
|
|
|
std::any &dt) const override;
|
2020-02-11 21:50:26 +00:00
|
|
|
|
|
|
|
|
|
void accept(Visitor &v) override;
|
|
|
|
|
|
|
|
|
|
Trie trie_;
|
|
|
|
|
};
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
class LiteralString : public Ope,
|
|
|
|
|
public std::enable_shared_from_this<LiteralString> {
|
2015-02-08 01:52:26 +00:00
|
|
|
|
public:
|
2020-05-18 05:24:53 +00:00
|
|
|
|
LiteralString(std::string &&s, bool ignore_case)
|
2020-08-07 14:21:47 +00:00
|
|
|
|
: lit_(s), ignore_case_(ignore_case), is_word_(false) {}
|
2020-05-18 05:24:53 +00:00
|
|
|
|
|
2020-06-01 23:47:32 +00:00
|
|
|
|
LiteralString(const std::string &s, bool ignore_case)
|
2020-08-07 14:21:47 +00:00
|
|
|
|
: lit_(s), ignore_case_(ignore_case), is_word_(false) {}
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
size_t parse_core(const char *s, size_t n, SemanticValues &vs, Context &c,
|
|
|
|
|
std::any &dt) const override;
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
void accept(Visitor &v) override;
|
2015-02-26 00:31:00 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
std::string lit_;
|
|
|
|
|
bool ignore_case_;
|
2020-06-09 12:48:19 +00:00
|
|
|
|
mutable std::once_flag init_is_word_;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
mutable bool is_word_;
|
2015-02-08 01:52:26 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
class CharacterClass : public Ope,
|
|
|
|
|
public std::enable_shared_from_this<CharacterClass> {
|
2015-02-08 01:52:26 +00:00
|
|
|
|
public:
|
2022-06-25 20:05:23 +00:00
|
|
|
|
CharacterClass(const std::string &s, bool negated, bool ignore_case)
|
|
|
|
|
: negated_(negated), ignore_case_(ignore_case) {
|
2020-10-02 01:26:04 +00:00
|
|
|
|
auto chars = decode(s.data(), s.length());
|
2020-02-05 19:10:00 +00:00
|
|
|
|
auto i = 0u;
|
|
|
|
|
while (i < chars.size()) {
|
|
|
|
|
if (i + 2 < chars.size() && chars[i + 1] == '-') {
|
|
|
|
|
auto cp1 = chars[i];
|
|
|
|
|
auto cp2 = chars[i + 2];
|
2020-10-02 01:26:04 +00:00
|
|
|
|
ranges_.emplace_back(std::pair(cp1, cp2));
|
2020-02-05 19:10:00 +00:00
|
|
|
|
i += 3;
|
|
|
|
|
} else {
|
|
|
|
|
auto cp = chars[i];
|
2020-10-02 01:26:04 +00:00
|
|
|
|
ranges_.emplace_back(std::pair(cp, cp));
|
2020-02-05 19:10:00 +00:00
|
|
|
|
i += 1;
|
|
|
|
|
}
|
2018-09-16 16:54:36 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
assert(!ranges_.empty());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CharacterClass(const std::vector<std::pair<char32_t, char32_t>> &ranges,
|
2022-06-25 20:05:23 +00:00
|
|
|
|
bool negated, bool ignore_case)
|
|
|
|
|
: ranges_(ranges), negated_(negated), ignore_case_(ignore_case) {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
assert(!ranges_.empty());
|
|
|
|
|
}
|
2018-09-16 16:54:36 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
size_t parse_core(const char *s, size_t n, SemanticValues & /*vs*/,
|
|
|
|
|
Context &c, std::any & /*dt*/) const override {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
if (n < 1) {
|
|
|
|
|
c.set_error_pos(s);
|
|
|
|
|
return static_cast<size_t>(-1);
|
2020-01-27 04:38:39 +00:00
|
|
|
|
}
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
char32_t cp = 0;
|
|
|
|
|
auto len = decode_codepoint(s, n, cp);
|
2018-09-16 16:54:36 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
for (const auto &range : ranges_) {
|
2022-06-25 20:05:23 +00:00
|
|
|
|
if (in_range(range, cp)) {
|
2020-01-27 04:38:39 +00:00
|
|
|
|
if (negated_) {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
c.set_error_pos(s);
|
|
|
|
|
return static_cast<size_t>(-1);
|
2020-01-27 04:38:39 +00:00
|
|
|
|
} else {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
return len;
|
2020-01-27 04:38:39 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2015-02-08 01:52:26 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
if (negated_) {
|
|
|
|
|
return len;
|
|
|
|
|
} else {
|
|
|
|
|
c.set_error_pos(s);
|
|
|
|
|
return static_cast<size_t>(-1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void accept(Visitor &v) override;
|
2015-02-26 00:31:00 +00:00
|
|
|
|
|
2022-06-25 20:05:23 +00:00
|
|
|
|
private:
|
|
|
|
|
bool in_range(const std::pair<char32_t, char32_t> &range, char32_t cp) const {
|
|
|
|
|
if (ignore_case_) {
|
|
|
|
|
auto cpl = std::tolower(cp);
|
|
|
|
|
return std::tolower(range.first) <= cpl &&
|
|
|
|
|
cpl <= std::tolower(range.second);
|
|
|
|
|
} else {
|
|
|
|
|
return range.first <= cp && cp <= range.second;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
std::vector<std::pair<char32_t, char32_t>> ranges_;
|
|
|
|
|
bool negated_;
|
2022-06-25 20:05:23 +00:00
|
|
|
|
bool ignore_case_;
|
2015-02-08 01:52:26 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
class Character : public Ope, public std::enable_shared_from_this<Character> {
|
2015-02-08 01:52:26 +00:00
|
|
|
|
public:
|
2020-02-05 19:10:00 +00:00
|
|
|
|
Character(char ch) : ch_(ch) {}
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
size_t parse_core(const char *s, size_t n, SemanticValues & /*vs*/,
|
|
|
|
|
Context &c, std::any & /*dt*/) const override {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
if (n < 1 || s[0] != ch_) {
|
|
|
|
|
c.set_error_pos(s);
|
|
|
|
|
return static_cast<size_t>(-1);
|
2015-02-08 01:52:26 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
return 1;
|
|
|
|
|
}
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
void accept(Visitor &v) override;
|
2015-02-26 00:31:00 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
char ch_;
|
2015-02-08 01:52:26 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
class AnyCharacter : public Ope,
|
|
|
|
|
public std::enable_shared_from_this<AnyCharacter> {
|
2015-02-08 01:52:26 +00:00
|
|
|
|
public:
|
2020-10-02 01:26:04 +00:00
|
|
|
|
size_t parse_core(const char *s, size_t n, SemanticValues & /*vs*/,
|
|
|
|
|
Context &c, std::any & /*dt*/) const override {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
auto len = codepoint_length(s, n);
|
|
|
|
|
if (len < 1) {
|
|
|
|
|
c.set_error_pos(s);
|
|
|
|
|
return static_cast<size_t>(-1);
|
2015-02-08 01:52:26 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
return len;
|
|
|
|
|
}
|
2015-02-12 00:48:55 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
void accept(Visitor &v) override;
|
2015-02-08 01:52:26 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
class CaptureScope : public Ope {
|
2018-07-21 02:09:54 +00:00
|
|
|
|
public:
|
2020-02-05 19:10:00 +00:00
|
|
|
|
CaptureScope(const std::shared_ptr<Ope> &ope) : ope_(ope) {}
|
2018-07-21 02:09:54 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
size_t parse_core(const char *s, size_t n, SemanticValues &vs, Context &c,
|
|
|
|
|
std::any &dt) const override {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
c.push_capture_scope();
|
2020-10-02 01:26:04 +00:00
|
|
|
|
auto se = scope_exit([&]() { c.pop_capture_scope(); });
|
2022-07-03 23:23:35 +00:00
|
|
|
|
return ope_->parse(s, n, vs, c, dt);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2018-07-21 02:09:54 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
void accept(Visitor &v) override;
|
2018-07-21 02:09:54 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
std::shared_ptr<Ope> ope_;
|
2018-07-21 02:09:54 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
class Capture : public Ope {
|
2015-02-08 01:52:26 +00:00
|
|
|
|
public:
|
2020-10-02 01:26:04 +00:00
|
|
|
|
using MatchAction = std::function<void(const char *s, size_t n, Context &c)>;
|
2018-07-12 17:06:48 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
Capture(const std::shared_ptr<Ope> &ope, MatchAction ma)
|
|
|
|
|
: ope_(ope), match_action_(ma) {}
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
size_t parse_core(const char *s, size_t n, SemanticValues &vs, Context &c,
|
|
|
|
|
std::any &dt) const override {
|
2022-07-03 23:23:35 +00:00
|
|
|
|
auto len = ope_->parse(s, n, vs, c, dt);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
if (success(len) && match_action_) { match_action_(s, len, c); }
|
|
|
|
|
return len;
|
|
|
|
|
}
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
void accept(Visitor &v) override;
|
2015-02-26 00:31:00 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
std::shared_ptr<Ope> ope_;
|
|
|
|
|
MatchAction match_action_;
|
2015-02-08 01:52:26 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
class TokenBoundary : public Ope {
|
2015-02-16 01:11:02 +00:00
|
|
|
|
public:
|
2020-02-05 19:10:00 +00:00
|
|
|
|
TokenBoundary(const std::shared_ptr<Ope> &ope) : ope_(ope) {}
|
2015-02-18 03:35:07 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
size_t parse_core(const char *s, size_t n, SemanticValues &vs, Context &c,
|
|
|
|
|
std::any &dt) const override;
|
2015-02-16 01:11:02 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
void accept(Visitor &v) override;
|
2015-02-26 00:31:00 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
std::shared_ptr<Ope> ope_;
|
2015-02-16 01:11:02 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
class Ignore : public Ope {
|
2015-06-12 22:52:26 +00:00
|
|
|
|
public:
|
2020-02-05 19:10:00 +00:00
|
|
|
|
Ignore(const std::shared_ptr<Ope> &ope) : ope_(ope) {}
|
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
size_t parse_core(const char *s, size_t n, SemanticValues & /*vs*/,
|
|
|
|
|
Context &c, std::any &dt) const override {
|
2022-07-03 23:23:35 +00:00
|
|
|
|
auto &chvs = c.push_semantic_values_scope();
|
|
|
|
|
auto se = scope_exit([&]() { c.pop_semantic_values_scope(); });
|
|
|
|
|
return ope_->parse(s, n, chvs, c, dt);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2015-06-12 22:52:26 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
void accept(Visitor &v) override;
|
2015-06-12 22:52:26 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
std::shared_ptr<Ope> ope_;
|
2015-06-12 22:52:26 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
using Parser = std::function<size_t(const char *s, size_t n, SemanticValues &vs,
|
|
|
|
|
std::any &dt)>;
|
2015-02-20 03:27:47 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
class User : public Ope {
|
2018-09-14 02:08:51 +00:00
|
|
|
|
public:
|
2020-02-05 19:10:00 +00:00
|
|
|
|
User(Parser fn) : fn_(fn) {}
|
2020-10-02 01:26:04 +00:00
|
|
|
|
size_t parse_core(const char *s, size_t n, SemanticValues &vs,
|
|
|
|
|
Context & /*c*/, std::any &dt) const override {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
assert(fn_);
|
2020-10-02 01:26:04 +00:00
|
|
|
|
return fn_(s, n, vs, dt);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
void accept(Visitor &v) override;
|
2020-10-02 01:26:04 +00:00
|
|
|
|
std::function<size_t(const char *s, size_t n, SemanticValues &vs,
|
|
|
|
|
std::any &dt)>
|
2020-02-05 19:10:00 +00:00
|
|
|
|
fn_;
|
2018-09-14 02:08:51 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
class WeakHolder : public Ope {
|
2015-02-08 01:52:26 +00:00
|
|
|
|
public:
|
2020-02-05 19:10:00 +00:00
|
|
|
|
WeakHolder(const std::shared_ptr<Ope> &ope) : weak_(ope) {}
|
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
size_t parse_core(const char *s, size_t n, SemanticValues &vs, Context &c,
|
|
|
|
|
std::any &dt) const override {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
auto ope = weak_.lock();
|
|
|
|
|
assert(ope);
|
2022-07-03 23:23:35 +00:00
|
|
|
|
return ope->parse(s, n, vs, c, dt);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
void accept(Visitor &v) override;
|
2015-02-26 00:31:00 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
std::weak_ptr<Ope> weak_;
|
2015-02-08 01:52:26 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
class Holder : public Ope {
|
2015-02-26 00:31:00 +00:00
|
|
|
|
public:
|
2020-02-05 19:10:00 +00:00
|
|
|
|
Holder(Definition *outer) : outer_(outer) {}
|
2015-02-26 00:31:00 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
size_t parse_core(const char *s, size_t n, SemanticValues &vs, Context &c,
|
|
|
|
|
std::any &dt) const override;
|
2015-02-26 00:31:00 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
void accept(Visitor &v) override;
|
2015-02-26 00:31:00 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
std::any reduce(SemanticValues &vs, std::any &dt) const;
|
2015-02-26 00:31:00 +00:00
|
|
|
|
|
2022-06-03 02:15:09 +00:00
|
|
|
|
const std::string &name() const;
|
|
|
|
|
const std::string &trace_name() const;
|
2020-01-28 21:55:37 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
std::shared_ptr<Ope> ope_;
|
|
|
|
|
Definition *outer_;
|
2022-09-03 11:41:08 +00:00
|
|
|
|
mutable std::once_flag trace_name_init_;
|
|
|
|
|
mutable std::string trace_name_;
|
2015-06-13 05:20:33 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
friend class Definition;
|
2015-02-26 00:31:00 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
using Grammar = std::unordered_map<std::string, Definition>;
|
2018-07-25 22:08:10 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
class Reference : public Ope, public std::enable_shared_from_this<Reference> {
|
2015-02-26 00:31:00 +00:00
|
|
|
|
public:
|
2020-02-05 19:10:00 +00:00
|
|
|
|
Reference(const Grammar &grammar, const std::string &name, const char *s,
|
|
|
|
|
bool is_macro, const std::vector<std::shared_ptr<Ope>> &args)
|
|
|
|
|
: grammar_(grammar), name_(name), s_(s), is_macro_(is_macro), args_(args),
|
|
|
|
|
rule_(nullptr), iarg_(0) {}
|
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
size_t parse_core(const char *s, size_t n, SemanticValues &vs, Context &c,
|
|
|
|
|
std::any &dt) const override;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
|
|
|
|
|
void accept(Visitor &v) override;
|
|
|
|
|
|
|
|
|
|
std::shared_ptr<Ope> get_core_operator() const;
|
|
|
|
|
|
|
|
|
|
const Grammar &grammar_;
|
|
|
|
|
const std::string name_;
|
|
|
|
|
const char *s_;
|
|
|
|
|
|
|
|
|
|
const bool is_macro_;
|
|
|
|
|
const std::vector<std::shared_ptr<Ope>> args_;
|
|
|
|
|
|
|
|
|
|
Definition *rule_;
|
|
|
|
|
size_t iarg_;
|
2015-02-26 00:31:00 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
class Whitespace : public Ope {
|
2015-12-03 23:59:12 +00:00
|
|
|
|
public:
|
2020-02-05 19:10:00 +00:00
|
|
|
|
Whitespace(const std::shared_ptr<Ope> &ope) : ope_(ope) {}
|
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
size_t parse_core(const char *s, size_t n, SemanticValues &vs, Context &c,
|
|
|
|
|
std::any &dt) const override {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
if (c.in_whitespace) { return 0; }
|
|
|
|
|
c.in_whitespace = true;
|
2020-10-02 01:26:04 +00:00
|
|
|
|
auto se = scope_exit([&]() { c.in_whitespace = false; });
|
2022-07-03 23:23:35 +00:00
|
|
|
|
return ope_->parse(s, n, vs, c, dt);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2015-12-03 23:59:12 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
void accept(Visitor &v) override;
|
2015-12-03 23:59:12 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
std::shared_ptr<Ope> ope_;
|
2015-12-03 23:59:12 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
class BackReference : public Ope {
|
2018-07-12 17:06:48 +00:00
|
|
|
|
public:
|
2020-10-02 01:26:04 +00:00
|
|
|
|
BackReference(std::string &&name) : name_(name) {}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
BackReference(const std::string &name) : name_(name) {}
|
2018-07-12 17:06:48 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
size_t parse_core(const char *s, size_t n, SemanticValues &vs, Context &c,
|
|
|
|
|
std::any &dt) const override;
|
2018-07-12 17:06:48 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
void accept(Visitor &v) override;
|
2018-07-12 17:06:48 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
std::string name_;
|
2018-07-12 17:06:48 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-02-05 21:03:02 +00:00
|
|
|
|
class PrecedenceClimbing : public Ope {
|
|
|
|
|
public:
|
2020-10-02 01:26:04 +00:00
|
|
|
|
using BinOpeInfo = std::map<std::string_view, std::pair<size_t, char>>;
|
2020-02-05 21:03:02 +00:00
|
|
|
|
|
|
|
|
|
PrecedenceClimbing(const std::shared_ptr<Ope> &atom,
|
|
|
|
|
const std::shared_ptr<Ope> &binop, const BinOpeInfo &info,
|
2020-02-07 20:50:06 +00:00
|
|
|
|
const Definition &rule)
|
|
|
|
|
: atom_(atom), binop_(binop), info_(info), rule_(rule) {}
|
2020-02-05 21:03:02 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
size_t parse_core(const char *s, size_t n, SemanticValues &vs, Context &c,
|
|
|
|
|
std::any &dt) const override {
|
|
|
|
|
return parse_expression(s, n, vs, c, dt, 0);
|
2020-02-05 21:03:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void accept(Visitor &v) override;
|
|
|
|
|
|
|
|
|
|
std::shared_ptr<Ope> atom_;
|
|
|
|
|
std::shared_ptr<Ope> binop_;
|
|
|
|
|
BinOpeInfo info_;
|
2020-02-07 20:50:06 +00:00
|
|
|
|
const Definition &rule_;
|
2020-02-05 21:03:02 +00:00
|
|
|
|
|
|
|
|
|
private:
|
2020-10-02 01:26:04 +00:00
|
|
|
|
size_t parse_expression(const char *s, size_t n, SemanticValues &vs,
|
|
|
|
|
Context &c, std::any &dt, size_t min_prec) const;
|
2020-02-07 20:50:06 +00:00
|
|
|
|
|
|
|
|
|
Definition &get_reference_for_binop(Context &c) const;
|
2020-02-05 21:03:02 +00:00
|
|
|
|
};
|
|
|
|
|
|
2021-01-13 15:11:06 +00:00
|
|
|
|
class Recovery : public Ope {
|
|
|
|
|
public:
|
|
|
|
|
Recovery(const std::shared_ptr<Ope> &ope) : ope_(ope) {}
|
|
|
|
|
|
|
|
|
|
size_t parse_core(const char *s, size_t n, SemanticValues &vs, Context &c,
|
|
|
|
|
std::any &dt) const override;
|
|
|
|
|
|
|
|
|
|
void accept(Visitor &v) override;
|
|
|
|
|
|
|
|
|
|
std::shared_ptr<Ope> ope_;
|
|
|
|
|
};
|
|
|
|
|
|
2021-01-26 03:46:28 +00:00
|
|
|
|
class Cut : public Ope, public std::enable_shared_from_this<Cut> {
|
|
|
|
|
public:
|
|
|
|
|
size_t parse_core(const char * /*s*/, size_t /*n*/, SemanticValues & /*vs*/,
|
|
|
|
|
Context &c, std::any & /*dt*/) const override {
|
2022-07-31 11:16:45 +00:00
|
|
|
|
if (!c.cut_stack.empty()) { c.cut_stack.back() = true; }
|
2021-01-26 03:46:28 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void accept(Visitor &v) override;
|
|
|
|
|
};
|
|
|
|
|
|
2018-07-25 22:08:10 +00:00
|
|
|
|
/*
|
|
|
|
|
* Factories
|
|
|
|
|
*/
|
2022-04-02 12:10:39 +00:00
|
|
|
|
template <typename... Args> std::shared_ptr<Ope> seq(Args &&...args) {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
return std::make_shared<Sequence>(static_cast<std::shared_ptr<Ope>>(args)...);
|
2018-07-25 22:08:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-04-02 12:10:39 +00:00
|
|
|
|
template <typename... Args> std::shared_ptr<Ope> cho(Args &&...args) {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
return std::make_shared<PrioritizedChoice>(
|
2021-01-26 03:46:28 +00:00
|
|
|
|
false, static_cast<std::shared_ptr<Ope>>(args)...);
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-02 12:10:39 +00:00
|
|
|
|
template <typename... Args> std::shared_ptr<Ope> cho4label_(Args &&...args) {
|
2021-01-26 03:46:28 +00:00
|
|
|
|
return std::make_shared<PrioritizedChoice>(
|
|
|
|
|
true, static_cast<std::shared_ptr<Ope>>(args)...);
|
2018-07-25 22:08:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
inline std::shared_ptr<Ope> zom(const std::shared_ptr<Ope> &ope) {
|
2020-03-28 22:38:01 +00:00
|
|
|
|
return Repetition::zom(ope);
|
2018-07-25 22:08:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
inline std::shared_ptr<Ope> oom(const std::shared_ptr<Ope> &ope) {
|
2020-03-28 22:38:01 +00:00
|
|
|
|
return Repetition::oom(ope);
|
2018-07-25 22:08:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
inline std::shared_ptr<Ope> opt(const std::shared_ptr<Ope> &ope) {
|
2020-03-28 22:38:01 +00:00
|
|
|
|
return Repetition::opt(ope);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inline std::shared_ptr<Ope> rep(const std::shared_ptr<Ope> &ope, size_t min,
|
|
|
|
|
size_t max) {
|
|
|
|
|
return std::make_shared<Repetition>(ope, min, max);
|
2018-07-25 22:08:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
inline std::shared_ptr<Ope> apd(const std::shared_ptr<Ope> &ope) {
|
|
|
|
|
return std::make_shared<AndPredicate>(ope);
|
2018-07-25 22:08:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
inline std::shared_ptr<Ope> npd(const std::shared_ptr<Ope> &ope) {
|
|
|
|
|
return std::make_shared<NotPredicate>(ope);
|
2018-07-25 22:08:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-11 21:50:26 +00:00
|
|
|
|
inline std::shared_ptr<Ope> dic(const std::vector<std::string> &v) {
|
|
|
|
|
return std::make_shared<Dictionary>(v);
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-18 05:24:53 +00:00
|
|
|
|
inline std::shared_ptr<Ope> lit(std::string &&s) {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
return std::make_shared<LiteralString>(s, false);
|
2019-08-27 16:07:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-05-18 05:24:53 +00:00
|
|
|
|
inline std::shared_ptr<Ope> liti(std::string &&s) {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
return std::make_shared<LiteralString>(s, true);
|
2018-07-25 22:08:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
inline std::shared_ptr<Ope> cls(const std::string &s) {
|
2022-06-25 20:05:23 +00:00
|
|
|
|
return std::make_shared<CharacterClass>(s, false, false);
|
2018-09-16 16:54:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
inline std::shared_ptr<Ope>
|
2022-06-25 20:05:23 +00:00
|
|
|
|
cls(const std::vector<std::pair<char32_t, char32_t>> &ranges,
|
|
|
|
|
bool ignore_case = false) {
|
|
|
|
|
return std::make_shared<CharacterClass>(ranges, false, ignore_case);
|
2020-01-27 04:38:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
inline std::shared_ptr<Ope> ncls(const std::string &s) {
|
2022-06-25 20:05:23 +00:00
|
|
|
|
return std::make_shared<CharacterClass>(s, true, false);
|
2020-01-27 04:38:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
inline std::shared_ptr<Ope>
|
2022-06-25 20:05:23 +00:00
|
|
|
|
ncls(const std::vector<std::pair<char32_t, char32_t>> &ranges,
|
|
|
|
|
bool ignore_case = false) {
|
|
|
|
|
return std::make_shared<CharacterClass>(ranges, true, ignore_case);
|
2018-07-25 22:08:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inline std::shared_ptr<Ope> chr(char dt) {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
return std::make_shared<Character>(dt);
|
2018-07-25 22:08:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
inline std::shared_ptr<Ope> dot() { return std::make_shared<AnyCharacter>(); }
|
2018-07-25 22:08:10 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
inline std::shared_ptr<Ope> csc(const std::shared_ptr<Ope> &ope) {
|
|
|
|
|
return std::make_shared<CaptureScope>(ope);
|
2018-07-25 22:08:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
inline std::shared_ptr<Ope> cap(const std::shared_ptr<Ope> &ope,
|
|
|
|
|
Capture::MatchAction ma) {
|
|
|
|
|
return std::make_shared<Capture>(ope, ma);
|
2018-07-25 22:08:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
inline std::shared_ptr<Ope> tok(const std::shared_ptr<Ope> &ope) {
|
|
|
|
|
return std::make_shared<TokenBoundary>(ope);
|
2018-07-25 22:08:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
inline std::shared_ptr<Ope> ign(const std::shared_ptr<Ope> &ope) {
|
|
|
|
|
return std::make_shared<Ignore>(ope);
|
2018-07-25 22:08:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
inline std::shared_ptr<Ope>
|
2020-10-02 01:26:04 +00:00
|
|
|
|
usr(std::function<size_t(const char *s, size_t n, SemanticValues &vs,
|
|
|
|
|
std::any &dt)>
|
2020-02-05 19:10:00 +00:00
|
|
|
|
fn) {
|
|
|
|
|
return std::make_shared<User>(fn);
|
2018-09-14 02:08:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
inline std::shared_ptr<Ope> ref(const Grammar &grammar, const std::string &name,
|
|
|
|
|
const char *s, bool is_macro,
|
|
|
|
|
const std::vector<std::shared_ptr<Ope>> &args) {
|
|
|
|
|
return std::make_shared<Reference>(grammar, name, s, is_macro, args);
|
2018-07-25 22:08:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
inline std::shared_ptr<Ope> wsp(const std::shared_ptr<Ope> &ope) {
|
|
|
|
|
return std::make_shared<Whitespace>(std::make_shared<Ignore>(ope));
|
2018-07-25 22:08:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
inline std::shared_ptr<Ope> bkr(std::string &&name) {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
return std::make_shared<BackReference>(name);
|
2018-07-25 22:08:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 21:03:02 +00:00
|
|
|
|
inline std::shared_ptr<Ope> pre(const std::shared_ptr<Ope> &atom,
|
|
|
|
|
const std::shared_ptr<Ope> &binop,
|
|
|
|
|
const PrecedenceClimbing::BinOpeInfo &info,
|
2020-02-07 20:50:06 +00:00
|
|
|
|
const Definition &rule) {
|
|
|
|
|
return std::make_shared<PrecedenceClimbing>(atom, binop, info, rule);
|
2020-02-05 21:03:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-01-13 15:11:06 +00:00
|
|
|
|
inline std::shared_ptr<Ope> rec(const std::shared_ptr<Ope> &ope) {
|
|
|
|
|
return std::make_shared<Recovery>(ope);
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-26 03:46:28 +00:00
|
|
|
|
inline std::shared_ptr<Ope> cut() { return std::make_shared<Cut>(); }
|
|
|
|
|
|
2015-02-26 00:31:00 +00:00
|
|
|
|
/*
|
|
|
|
|
* Visitor
|
|
|
|
|
*/
|
2020-02-05 19:10:00 +00:00
|
|
|
|
struct Ope::Visitor {
|
|
|
|
|
virtual ~Visitor() {}
|
2020-10-02 01:26:04 +00:00
|
|
|
|
virtual void visit(Sequence &) {}
|
|
|
|
|
virtual void visit(PrioritizedChoice &) {}
|
|
|
|
|
virtual void visit(Repetition &) {}
|
|
|
|
|
virtual void visit(AndPredicate &) {}
|
|
|
|
|
virtual void visit(NotPredicate &) {}
|
|
|
|
|
virtual void visit(Dictionary &) {}
|
|
|
|
|
virtual void visit(LiteralString &) {}
|
|
|
|
|
virtual void visit(CharacterClass &) {}
|
|
|
|
|
virtual void visit(Character &) {}
|
|
|
|
|
virtual void visit(AnyCharacter &) {}
|
|
|
|
|
virtual void visit(CaptureScope &) {}
|
|
|
|
|
virtual void visit(Capture &) {}
|
|
|
|
|
virtual void visit(TokenBoundary &) {}
|
|
|
|
|
virtual void visit(Ignore &) {}
|
|
|
|
|
virtual void visit(User &) {}
|
|
|
|
|
virtual void visit(WeakHolder &) {}
|
|
|
|
|
virtual void visit(Holder &) {}
|
|
|
|
|
virtual void visit(Reference &) {}
|
|
|
|
|
virtual void visit(Whitespace &) {}
|
|
|
|
|
virtual void visit(BackReference &) {}
|
|
|
|
|
virtual void visit(PrecedenceClimbing &) {}
|
2021-01-13 15:11:06 +00:00
|
|
|
|
virtual void visit(Recovery &) {}
|
2021-01-26 03:46:28 +00:00
|
|
|
|
virtual void visit(Cut &) {}
|
2015-02-26 00:31:00 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
struct TraceOpeName : public Ope::Visitor {
|
2021-01-13 15:11:06 +00:00
|
|
|
|
void visit(Sequence &) override { name_ = "Sequence"; }
|
|
|
|
|
void visit(PrioritizedChoice &) override { name_ = "PrioritizedChoice"; }
|
|
|
|
|
void visit(Repetition &) override { name_ = "Repetition"; }
|
|
|
|
|
void visit(AndPredicate &) override { name_ = "AndPredicate"; }
|
|
|
|
|
void visit(NotPredicate &) override { name_ = "NotPredicate"; }
|
|
|
|
|
void visit(Dictionary &) override { name_ = "Dictionary"; }
|
|
|
|
|
void visit(LiteralString &) override { name_ = "LiteralString"; }
|
|
|
|
|
void visit(CharacterClass &) override { name_ = "CharacterClass"; }
|
|
|
|
|
void visit(Character &) override { name_ = "Character"; }
|
|
|
|
|
void visit(AnyCharacter &) override { name_ = "AnyCharacter"; }
|
|
|
|
|
void visit(CaptureScope &) override { name_ = "CaptureScope"; }
|
|
|
|
|
void visit(Capture &) override { name_ = "Capture"; }
|
|
|
|
|
void visit(TokenBoundary &) override { name_ = "TokenBoundary"; }
|
|
|
|
|
void visit(Ignore &) override { name_ = "Ignore"; }
|
|
|
|
|
void visit(User &) override { name_ = "User"; }
|
|
|
|
|
void visit(WeakHolder &) override { name_ = "WeakHolder"; }
|
2022-06-03 02:15:09 +00:00
|
|
|
|
void visit(Holder &ope) override { name_ = ope.trace_name().data(); }
|
2021-01-13 15:11:06 +00:00
|
|
|
|
void visit(Reference &) override { name_ = "Reference"; }
|
|
|
|
|
void visit(Whitespace &) override { name_ = "Whitespace"; }
|
|
|
|
|
void visit(BackReference &) override { name_ = "BackReference"; }
|
|
|
|
|
void visit(PrecedenceClimbing &) override { name_ = "PrecedenceClimbing"; }
|
|
|
|
|
void visit(Recovery &) override { name_ = "Recovery"; }
|
2021-01-26 03:46:28 +00:00
|
|
|
|
void visit(Cut &) override { name_ = "Cut"; }
|
2021-01-13 15:11:06 +00:00
|
|
|
|
|
|
|
|
|
static std::string get(Ope &ope) {
|
|
|
|
|
TraceOpeName vis;
|
|
|
|
|
ope.accept(vis);
|
|
|
|
|
return vis.name_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
const char *name_ = nullptr;
|
2020-01-28 21:55:37 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
struct AssignIDToDefinition : public Ope::Visitor {
|
|
|
|
|
void visit(Sequence &ope) override {
|
|
|
|
|
for (auto op : ope.opes_) {
|
|
|
|
|
op->accept(*this);
|
2015-02-26 00:31:00 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
void visit(PrioritizedChoice &ope) override {
|
|
|
|
|
for (auto op : ope.opes_) {
|
|
|
|
|
op->accept(*this);
|
2015-02-26 00:31:00 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2020-03-28 22:38:01 +00:00
|
|
|
|
void visit(Repetition &ope) override { ope.ope_->accept(*this); }
|
2020-02-05 19:10:00 +00:00
|
|
|
|
void visit(AndPredicate &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(NotPredicate &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(CaptureScope &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(Capture &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(TokenBoundary &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(Ignore &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(WeakHolder &ope) override { ope.weak_.lock()->accept(*this); }
|
|
|
|
|
void visit(Holder &ope) override;
|
|
|
|
|
void visit(Reference &ope) override;
|
|
|
|
|
void visit(Whitespace &ope) override { ope.ope_->accept(*this); }
|
2020-06-09 02:54:35 +00:00
|
|
|
|
void visit(PrecedenceClimbing &ope) override;
|
2021-01-13 15:11:06 +00:00
|
|
|
|
void visit(Recovery &ope) override { ope.ope_->accept(*this); }
|
2020-02-05 19:10:00 +00:00
|
|
|
|
|
|
|
|
|
std::unordered_map<void *, size_t> ids;
|
2015-06-05 17:28:38 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
struct IsLiteralToken : public Ope::Visitor {
|
|
|
|
|
void visit(PrioritizedChoice &ope) override {
|
|
|
|
|
for (auto op : ope.opes_) {
|
|
|
|
|
if (!IsLiteralToken::check(*op)) { return; }
|
2019-08-27 06:44:04 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
result_ = true;
|
|
|
|
|
}
|
2019-08-27 06:44:04 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
void visit(Dictionary &) override { result_ = true; }
|
|
|
|
|
void visit(LiteralString &) override { result_ = true; }
|
2019-08-27 06:44:04 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
static bool check(Ope &ope) {
|
|
|
|
|
IsLiteralToken vis;
|
|
|
|
|
ope.accept(vis);
|
|
|
|
|
return vis.result_;
|
|
|
|
|
}
|
2019-08-27 06:44:04 +00:00
|
|
|
|
|
|
|
|
|
private:
|
2020-02-05 19:10:00 +00:00
|
|
|
|
bool result_ = false;
|
2019-08-27 06:44:04 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
struct TokenChecker : public Ope::Visitor {
|
|
|
|
|
void visit(Sequence &ope) override {
|
|
|
|
|
for (auto op : ope.opes_) {
|
|
|
|
|
op->accept(*this);
|
2015-02-26 00:31:00 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
void visit(PrioritizedChoice &ope) override {
|
|
|
|
|
for (auto op : ope.opes_) {
|
|
|
|
|
op->accept(*this);
|
2015-02-26 00:31:00 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2020-03-28 22:38:01 +00:00
|
|
|
|
void visit(Repetition &ope) override { ope.ope_->accept(*this); }
|
2020-02-05 19:10:00 +00:00
|
|
|
|
void visit(CaptureScope &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(Capture &ope) override { ope.ope_->accept(*this); }
|
2020-10-02 01:26:04 +00:00
|
|
|
|
void visit(TokenBoundary &) override { has_token_boundary_ = true; }
|
2020-02-05 19:10:00 +00:00
|
|
|
|
void visit(Ignore &ope) override { ope.ope_->accept(*this); }
|
2021-01-13 15:11:06 +00:00
|
|
|
|
void visit(WeakHolder &) override { has_rule_ = true; }
|
|
|
|
|
void visit(Holder &ope) override { ope.ope_->accept(*this); }
|
2020-02-05 19:10:00 +00:00
|
|
|
|
void visit(Reference &ope) override;
|
|
|
|
|
void visit(Whitespace &ope) override { ope.ope_->accept(*this); }
|
2020-02-05 21:03:02 +00:00
|
|
|
|
void visit(PrecedenceClimbing &ope) override { ope.atom_->accept(*this); }
|
2021-01-13 15:11:06 +00:00
|
|
|
|
void visit(Recovery &ope) override { ope.ope_->accept(*this); }
|
2020-02-05 19:10:00 +00:00
|
|
|
|
|
|
|
|
|
static bool is_token(Ope &ope) {
|
|
|
|
|
if (IsLiteralToken::check(ope)) { return true; }
|
|
|
|
|
|
|
|
|
|
TokenChecker vis;
|
|
|
|
|
ope.accept(vis);
|
|
|
|
|
return vis.has_token_boundary_ || !vis.has_rule_;
|
|
|
|
|
}
|
2015-02-26 00:31:00 +00:00
|
|
|
|
|
2018-07-25 22:08:10 +00:00
|
|
|
|
private:
|
2020-02-05 19:10:00 +00:00
|
|
|
|
bool has_token_boundary_ = false;
|
|
|
|
|
bool has_rule_ = false;
|
2015-02-26 00:31:00 +00:00
|
|
|
|
};
|
|
|
|
|
|
2021-01-10 04:22:00 +00:00
|
|
|
|
struct FindLiteralToken : public Ope::Visitor {
|
2022-06-03 02:15:09 +00:00
|
|
|
|
void visit(LiteralString &ope) override { token_ = ope.lit_.data(); }
|
2021-01-10 04:22:00 +00:00
|
|
|
|
void visit(TokenBoundary &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(Ignore &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(Reference &ope) override;
|
2021-01-13 15:11:06 +00:00
|
|
|
|
void visit(Recovery &ope) override { ope.ope_->accept(*this); }
|
2021-01-10 04:22:00 +00:00
|
|
|
|
|
|
|
|
|
static const char *token(Ope &ope) {
|
|
|
|
|
FindLiteralToken vis;
|
|
|
|
|
ope.accept(vis);
|
|
|
|
|
return vis.token_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
const char *token_ = nullptr;
|
|
|
|
|
};
|
|
|
|
|
|
2018-07-25 22:08:10 +00:00
|
|
|
|
struct DetectLeftRecursion : public Ope::Visitor {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
DetectLeftRecursion(const std::string &name) : name_(name) {}
|
|
|
|
|
|
|
|
|
|
void visit(Sequence &ope) override {
|
|
|
|
|
for (auto op : ope.opes_) {
|
|
|
|
|
op->accept(*this);
|
|
|
|
|
if (done_) {
|
|
|
|
|
break;
|
|
|
|
|
} else if (error_s) {
|
|
|
|
|
done_ = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2018-07-25 22:08:10 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
void visit(PrioritizedChoice &ope) override {
|
|
|
|
|
for (auto op : ope.opes_) {
|
|
|
|
|
op->accept(*this);
|
|
|
|
|
if (error_s) {
|
|
|
|
|
done_ = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2018-07-25 22:08:10 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2020-03-28 22:38:01 +00:00
|
|
|
|
void visit(Repetition &ope) override {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
ope.ope_->accept(*this);
|
2020-03-28 22:38:01 +00:00
|
|
|
|
done_ = ope.min_ > 0;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
void visit(AndPredicate &ope) override {
|
|
|
|
|
ope.ope_->accept(*this);
|
|
|
|
|
done_ = false;
|
|
|
|
|
}
|
|
|
|
|
void visit(NotPredicate &ope) override {
|
|
|
|
|
ope.ope_->accept(*this);
|
|
|
|
|
done_ = false;
|
|
|
|
|
}
|
2020-10-02 01:26:04 +00:00
|
|
|
|
void visit(Dictionary &) override { done_ = true; }
|
2020-02-05 19:10:00 +00:00
|
|
|
|
void visit(LiteralString &ope) override { done_ = !ope.lit_.empty(); }
|
2020-10-02 01:26:04 +00:00
|
|
|
|
void visit(CharacterClass &) override { done_ = true; }
|
|
|
|
|
void visit(Character &) override { done_ = true; }
|
|
|
|
|
void visit(AnyCharacter &) override { done_ = true; }
|
2020-02-05 19:10:00 +00:00
|
|
|
|
void visit(CaptureScope &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(Capture &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(TokenBoundary &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(Ignore &ope) override { ope.ope_->accept(*this); }
|
2020-10-02 01:26:04 +00:00
|
|
|
|
void visit(User &) override { done_ = true; }
|
2020-02-05 19:10:00 +00:00
|
|
|
|
void visit(WeakHolder &ope) override { ope.weak_.lock()->accept(*this); }
|
|
|
|
|
void visit(Holder &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(Reference &ope) override;
|
|
|
|
|
void visit(Whitespace &ope) override { ope.ope_->accept(*this); }
|
2020-10-02 01:26:04 +00:00
|
|
|
|
void visit(BackReference &) override { done_ = true; }
|
2020-02-05 21:03:02 +00:00
|
|
|
|
void visit(PrecedenceClimbing &ope) override { ope.atom_->accept(*this); }
|
2021-01-13 15:11:06 +00:00
|
|
|
|
void visit(Recovery &ope) override { ope.ope_->accept(*this); }
|
2021-01-26 03:46:28 +00:00
|
|
|
|
void visit(Cut &) override { done_ = true; }
|
2020-02-05 19:10:00 +00:00
|
|
|
|
|
|
|
|
|
const char *error_s = nullptr;
|
2018-07-25 22:08:10 +00:00
|
|
|
|
|
|
|
|
|
private:
|
2020-02-05 19:10:00 +00:00
|
|
|
|
std::string name_;
|
2022-07-02 02:15:21 +00:00
|
|
|
|
std::unordered_set<std::string> refs_;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
bool done_ = false;
|
2020-01-24 05:37:21 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
struct HasEmptyElement : public Ope::Visitor {
|
2022-06-17 01:34:21 +00:00
|
|
|
|
HasEmptyElement(std::vector<std::pair<const char *, std::string>> &refs,
|
|
|
|
|
std::unordered_map<std::string, bool> &has_error_cache)
|
|
|
|
|
: refs_(refs), has_error_cache_(has_error_cache) {}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
|
2022-06-07 23:45:34 +00:00
|
|
|
|
void visit(Sequence &ope) override;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
void visit(PrioritizedChoice &ope) override {
|
|
|
|
|
for (auto op : ope.opes_) {
|
|
|
|
|
op->accept(*this);
|
|
|
|
|
if (is_empty) { return; }
|
2020-01-24 05:37:21 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2020-03-28 22:38:01 +00:00
|
|
|
|
void visit(Repetition &ope) override {
|
|
|
|
|
if (ope.min_ == 0) {
|
|
|
|
|
set_error();
|
|
|
|
|
} else {
|
|
|
|
|
ope.ope_->accept(*this);
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-10-02 01:26:04 +00:00
|
|
|
|
void visit(AndPredicate &) override { set_error(); }
|
|
|
|
|
void visit(NotPredicate &) override { set_error(); }
|
2020-06-01 23:47:32 +00:00
|
|
|
|
void visit(LiteralString &ope) override {
|
|
|
|
|
if (ope.lit_.empty()) { set_error(); }
|
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
void visit(CaptureScope &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(Capture &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(TokenBoundary &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(Ignore &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(WeakHolder &ope) override { ope.weak_.lock()->accept(*this); }
|
|
|
|
|
void visit(Holder &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(Reference &ope) override;
|
|
|
|
|
void visit(Whitespace &ope) override { ope.ope_->accept(*this); }
|
2020-02-05 21:03:02 +00:00
|
|
|
|
void visit(PrecedenceClimbing &ope) override { ope.atom_->accept(*this); }
|
2021-01-13 15:11:06 +00:00
|
|
|
|
void visit(Recovery &ope) override { ope.ope_->accept(*this); }
|
2020-02-05 19:10:00 +00:00
|
|
|
|
|
|
|
|
|
bool is_empty = false;
|
|
|
|
|
const char *error_s = nullptr;
|
|
|
|
|
std::string error_name;
|
2020-01-24 05:37:21 +00:00
|
|
|
|
|
|
|
|
|
private:
|
2020-02-05 19:10:00 +00:00
|
|
|
|
void set_error() {
|
|
|
|
|
is_empty = true;
|
2021-03-02 13:14:22 +00:00
|
|
|
|
tie(error_s, error_name) = refs_.back();
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2022-05-06 20:31:33 +00:00
|
|
|
|
std::vector<std::pair<const char *, std::string>> &refs_;
|
2022-06-17 01:34:21 +00:00
|
|
|
|
std::unordered_map<std::string, bool> &has_error_cache_;
|
2020-01-24 05:37:21 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
struct DetectInfiniteLoop : public Ope::Visitor {
|
2022-06-07 23:45:34 +00:00
|
|
|
|
DetectInfiniteLoop(const char *s, const std::string &name,
|
2022-06-17 01:34:21 +00:00
|
|
|
|
std::vector<std::pair<const char *, std::string>> &refs,
|
|
|
|
|
std::unordered_map<std::string, bool> &has_error_cache)
|
|
|
|
|
: refs_(refs), has_error_cache_(has_error_cache) {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
refs_.emplace_back(s, name);
|
|
|
|
|
}
|
2020-01-24 05:37:21 +00:00
|
|
|
|
|
2022-06-17 01:34:21 +00:00
|
|
|
|
DetectInfiniteLoop(std::vector<std::pair<const char *, std::string>> &refs,
|
|
|
|
|
std::unordered_map<std::string, bool> &has_error_cache)
|
|
|
|
|
: refs_(refs), has_error_cache_(has_error_cache) {}
|
2022-06-07 23:45:34 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
void visit(Sequence &ope) override {
|
|
|
|
|
for (auto op : ope.opes_) {
|
|
|
|
|
op->accept(*this);
|
|
|
|
|
if (has_error) { return; }
|
2020-01-24 05:37:21 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
void visit(PrioritizedChoice &ope) override {
|
|
|
|
|
for (auto op : ope.opes_) {
|
|
|
|
|
op->accept(*this);
|
|
|
|
|
if (has_error) { return; }
|
2020-01-24 05:37:21 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2020-03-28 22:38:01 +00:00
|
|
|
|
void visit(Repetition &ope) override {
|
|
|
|
|
if (ope.max_ == std::numeric_limits<size_t>::max()) {
|
2022-06-17 01:34:21 +00:00
|
|
|
|
HasEmptyElement vis(refs_, has_error_cache_);
|
2020-03-28 22:38:01 +00:00
|
|
|
|
ope.ope_->accept(vis);
|
|
|
|
|
if (vis.is_empty) {
|
|
|
|
|
has_error = true;
|
|
|
|
|
error_s = vis.error_s;
|
|
|
|
|
error_name = vis.error_name;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
ope.ope_->accept(*this);
|
2020-01-24 05:37:21 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
void visit(AndPredicate &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(NotPredicate &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(CaptureScope &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(Capture &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(TokenBoundary &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(Ignore &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(WeakHolder &ope) override { ope.weak_.lock()->accept(*this); }
|
|
|
|
|
void visit(Holder &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(Reference &ope) override;
|
|
|
|
|
void visit(Whitespace &ope) override { ope.ope_->accept(*this); }
|
2020-02-05 21:03:02 +00:00
|
|
|
|
void visit(PrecedenceClimbing &ope) override { ope.atom_->accept(*this); }
|
2021-01-13 15:11:06 +00:00
|
|
|
|
void visit(Recovery &ope) override { ope.ope_->accept(*this); }
|
2020-02-05 19:10:00 +00:00
|
|
|
|
|
|
|
|
|
bool has_error = false;
|
|
|
|
|
const char *error_s = nullptr;
|
|
|
|
|
std::string error_name;
|
2020-01-24 05:37:21 +00:00
|
|
|
|
|
|
|
|
|
private:
|
2022-06-07 23:45:34 +00:00
|
|
|
|
std::vector<std::pair<const char *, std::string>> &refs_;
|
2022-06-17 01:34:21 +00:00
|
|
|
|
std::unordered_map<std::string, bool> &has_error_cache_;
|
2018-07-25 22:08:10 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct ReferenceChecker : public Ope::Visitor {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
ReferenceChecker(const Grammar &grammar,
|
|
|
|
|
const std::vector<std::string> ¶ms)
|
|
|
|
|
: grammar_(grammar), params_(params) {}
|
|
|
|
|
|
|
|
|
|
void visit(Sequence &ope) override {
|
|
|
|
|
for (auto op : ope.opes_) {
|
|
|
|
|
op->accept(*this);
|
2018-07-25 22:08:10 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
void visit(PrioritizedChoice &ope) override {
|
|
|
|
|
for (auto op : ope.opes_) {
|
|
|
|
|
op->accept(*this);
|
2018-07-25 22:08:10 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2020-03-28 22:38:01 +00:00
|
|
|
|
void visit(Repetition &ope) override { ope.ope_->accept(*this); }
|
2020-02-05 19:10:00 +00:00
|
|
|
|
void visit(AndPredicate &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(NotPredicate &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(CaptureScope &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(Capture &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(TokenBoundary &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(Ignore &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(WeakHolder &ope) override { ope.weak_.lock()->accept(*this); }
|
|
|
|
|
void visit(Holder &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(Reference &ope) override;
|
|
|
|
|
void visit(Whitespace &ope) override { ope.ope_->accept(*this); }
|
2020-02-05 21:03:02 +00:00
|
|
|
|
void visit(PrecedenceClimbing &ope) override { ope.atom_->accept(*this); }
|
2021-01-13 15:11:06 +00:00
|
|
|
|
void visit(Recovery &ope) override { ope.ope_->accept(*this); }
|
2020-02-05 19:10:00 +00:00
|
|
|
|
|
|
|
|
|
std::unordered_map<std::string, const char *> error_s;
|
|
|
|
|
std::unordered_map<std::string, std::string> error_message;
|
2021-03-02 13:14:22 +00:00
|
|
|
|
std::unordered_set<std::string> referenced;
|
2018-07-25 22:08:10 +00:00
|
|
|
|
|
|
|
|
|
private:
|
2020-02-05 19:10:00 +00:00
|
|
|
|
const Grammar &grammar_;
|
|
|
|
|
const std::vector<std::string> ¶ms_;
|
2018-07-25 22:08:10 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct LinkReferences : public Ope::Visitor {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
LinkReferences(Grammar &grammar, const std::vector<std::string> ¶ms)
|
|
|
|
|
: grammar_(grammar), params_(params) {}
|
|
|
|
|
|
|
|
|
|
void visit(Sequence &ope) override {
|
|
|
|
|
for (auto op : ope.opes_) {
|
|
|
|
|
op->accept(*this);
|
2018-07-25 22:08:10 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
void visit(PrioritizedChoice &ope) override {
|
|
|
|
|
for (auto op : ope.opes_) {
|
|
|
|
|
op->accept(*this);
|
2018-07-25 22:08:10 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2020-03-28 22:38:01 +00:00
|
|
|
|
void visit(Repetition &ope) override { ope.ope_->accept(*this); }
|
2020-02-05 19:10:00 +00:00
|
|
|
|
void visit(AndPredicate &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(NotPredicate &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(CaptureScope &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(Capture &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(TokenBoundary &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(Ignore &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(WeakHolder &ope) override { ope.weak_.lock()->accept(*this); }
|
|
|
|
|
void visit(Holder &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(Reference &ope) override;
|
|
|
|
|
void visit(Whitespace &ope) override { ope.ope_->accept(*this); }
|
2020-02-05 21:03:02 +00:00
|
|
|
|
void visit(PrecedenceClimbing &ope) override { ope.atom_->accept(*this); }
|
2021-01-13 15:11:06 +00:00
|
|
|
|
void visit(Recovery &ope) override { ope.ope_->accept(*this); }
|
2018-07-25 22:08:10 +00:00
|
|
|
|
|
|
|
|
|
private:
|
2020-02-05 19:10:00 +00:00
|
|
|
|
Grammar &grammar_;
|
|
|
|
|
const std::vector<std::string> ¶ms_;
|
2018-07-25 22:08:10 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct FindReference : public Ope::Visitor {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
FindReference(const std::vector<std::shared_ptr<Ope>> &args,
|
|
|
|
|
const std::vector<std::string> ¶ms)
|
|
|
|
|
: args_(args), params_(params) {}
|
2018-07-25 22:08:10 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
void visit(Sequence &ope) override {
|
|
|
|
|
std::vector<std::shared_ptr<Ope>> opes;
|
|
|
|
|
for (auto o : ope.opes_) {
|
|
|
|
|
o->accept(*this);
|
|
|
|
|
opes.push_back(found_ope);
|
2018-07-25 22:08:10 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
found_ope = std::make_shared<Sequence>(opes);
|
|
|
|
|
}
|
|
|
|
|
void visit(PrioritizedChoice &ope) override {
|
|
|
|
|
std::vector<std::shared_ptr<Ope>> opes;
|
|
|
|
|
for (auto o : ope.opes_) {
|
|
|
|
|
o->accept(*this);
|
|
|
|
|
opes.push_back(found_ope);
|
|
|
|
|
}
|
|
|
|
|
found_ope = std::make_shared<PrioritizedChoice>(opes);
|
|
|
|
|
}
|
2020-03-28 22:38:01 +00:00
|
|
|
|
void visit(Repetition &ope) override {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
ope.ope_->accept(*this);
|
2020-03-28 22:38:01 +00:00
|
|
|
|
found_ope = rep(found_ope, ope.min_, ope.max_);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
void visit(AndPredicate &ope) override {
|
|
|
|
|
ope.ope_->accept(*this);
|
|
|
|
|
found_ope = apd(found_ope);
|
|
|
|
|
}
|
|
|
|
|
void visit(NotPredicate &ope) override {
|
|
|
|
|
ope.ope_->accept(*this);
|
|
|
|
|
found_ope = npd(found_ope);
|
|
|
|
|
}
|
2020-02-11 21:50:26 +00:00
|
|
|
|
void visit(Dictionary &ope) override { found_ope = ope.shared_from_this(); }
|
2020-02-05 19:10:00 +00:00
|
|
|
|
void visit(LiteralString &ope) override {
|
|
|
|
|
found_ope = ope.shared_from_this();
|
|
|
|
|
}
|
|
|
|
|
void visit(CharacterClass &ope) override {
|
|
|
|
|
found_ope = ope.shared_from_this();
|
|
|
|
|
}
|
|
|
|
|
void visit(Character &ope) override { found_ope = ope.shared_from_this(); }
|
|
|
|
|
void visit(AnyCharacter &ope) override { found_ope = ope.shared_from_this(); }
|
|
|
|
|
void visit(CaptureScope &ope) override {
|
|
|
|
|
ope.ope_->accept(*this);
|
|
|
|
|
found_ope = csc(found_ope);
|
|
|
|
|
}
|
|
|
|
|
void visit(Capture &ope) override {
|
|
|
|
|
ope.ope_->accept(*this);
|
|
|
|
|
found_ope = cap(found_ope, ope.match_action_);
|
|
|
|
|
}
|
|
|
|
|
void visit(TokenBoundary &ope) override {
|
|
|
|
|
ope.ope_->accept(*this);
|
|
|
|
|
found_ope = tok(found_ope);
|
|
|
|
|
}
|
|
|
|
|
void visit(Ignore &ope) override {
|
|
|
|
|
ope.ope_->accept(*this);
|
|
|
|
|
found_ope = ign(found_ope);
|
|
|
|
|
}
|
|
|
|
|
void visit(WeakHolder &ope) override { ope.weak_.lock()->accept(*this); }
|
|
|
|
|
void visit(Holder &ope) override { ope.ope_->accept(*this); }
|
|
|
|
|
void visit(Reference &ope) override;
|
|
|
|
|
void visit(Whitespace &ope) override {
|
|
|
|
|
ope.ope_->accept(*this);
|
|
|
|
|
found_ope = wsp(found_ope);
|
|
|
|
|
}
|
2020-02-05 21:03:02 +00:00
|
|
|
|
void visit(PrecedenceClimbing &ope) override {
|
|
|
|
|
ope.atom_->accept(*this);
|
|
|
|
|
found_ope = csc(found_ope);
|
|
|
|
|
}
|
2021-01-13 15:11:06 +00:00
|
|
|
|
void visit(Recovery &ope) override {
|
|
|
|
|
ope.ope_->accept(*this);
|
|
|
|
|
found_ope = rec(found_ope);
|
|
|
|
|
}
|
2021-01-26 03:46:28 +00:00
|
|
|
|
void visit(Cut &ope) override { found_ope = ope.shared_from_this(); }
|
2020-02-05 19:10:00 +00:00
|
|
|
|
|
|
|
|
|
std::shared_ptr<Ope> found_ope;
|
2018-07-25 22:08:10 +00:00
|
|
|
|
|
|
|
|
|
private:
|
2020-02-05 19:10:00 +00:00
|
|
|
|
const std::vector<std::shared_ptr<Ope>> &args_;
|
|
|
|
|
const std::vector<std::string> ¶ms_;
|
2018-07-25 22:08:10 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Keywords
|
|
|
|
|
*/
|
2020-02-05 19:10:00 +00:00
|
|
|
|
static const char *WHITESPACE_DEFINITION_NAME = "%whitespace";
|
|
|
|
|
static const char *WORD_DEFINITION_NAME = "%word";
|
2021-01-13 15:11:06 +00:00
|
|
|
|
static const char *RECOVER_DEFINITION_NAME = "%recover";
|
2015-11-26 01:53:04 +00:00
|
|
|
|
|
2015-02-08 01:52:26 +00:00
|
|
|
|
/*
|
|
|
|
|
* Definition
|
|
|
|
|
*/
|
2020-02-05 19:10:00 +00:00
|
|
|
|
class Definition {
|
2015-02-08 01:52:26 +00:00
|
|
|
|
public:
|
2020-02-05 19:10:00 +00:00
|
|
|
|
struct Result {
|
|
|
|
|
bool ret;
|
2021-01-13 15:11:06 +00:00
|
|
|
|
bool recovered;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
size_t len;
|
2021-01-13 15:11:06 +00:00
|
|
|
|
ErrorInfo error_info;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
};
|
2015-02-26 13:27:05 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
Definition() : holder_(std::make_shared<Holder>(this)) {}
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
Definition(const Definition &rhs) : name(rhs.name), holder_(rhs.holder_) {
|
|
|
|
|
holder_->outer_ = this;
|
|
|
|
|
}
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
Definition(const std::shared_ptr<Ope> &ope)
|
|
|
|
|
: holder_(std::make_shared<Holder>(this)) {
|
|
|
|
|
*this <= ope;
|
|
|
|
|
}
|
2015-02-12 00:48:55 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
operator std::shared_ptr<Ope>() {
|
|
|
|
|
return std::make_shared<WeakHolder>(holder_);
|
|
|
|
|
}
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
Definition &operator<=(const std::shared_ptr<Ope> &ope) {
|
|
|
|
|
holder_->ope_ = ope;
|
|
|
|
|
return *this;
|
|
|
|
|
}
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2021-01-13 15:11:06 +00:00
|
|
|
|
Result parse(const char *s, size_t n, const char *path = nullptr,
|
|
|
|
|
Log log = nullptr) const {
|
2020-10-02 01:26:04 +00:00
|
|
|
|
SemanticValues vs;
|
|
|
|
|
std::any dt;
|
2021-01-13 15:11:06 +00:00
|
|
|
|
return parse_core(s, n, vs, dt, path, log);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2015-02-26 00:31:00 +00:00
|
|
|
|
|
2021-01-13 15:11:06 +00:00
|
|
|
|
Result parse(const char *s, const char *path = nullptr,
|
|
|
|
|
Log log = nullptr) const {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
auto n = strlen(s);
|
2021-01-13 15:11:06 +00:00
|
|
|
|
return parse(s, n, path, log);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2015-02-26 00:31:00 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
Result parse(const char *s, size_t n, std::any &dt,
|
2021-01-13 15:11:06 +00:00
|
|
|
|
const char *path = nullptr, Log log = nullptr) const {
|
2020-10-02 01:26:04 +00:00
|
|
|
|
SemanticValues vs;
|
2021-01-13 15:11:06 +00:00
|
|
|
|
return parse_core(s, n, vs, dt, path, log);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2015-02-26 00:31:00 +00:00
|
|
|
|
|
2021-01-13 15:11:06 +00:00
|
|
|
|
Result parse(const char *s, std::any &dt, const char *path = nullptr,
|
|
|
|
|
Log log = nullptr) const {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
auto n = strlen(s);
|
2021-01-13 15:11:06 +00:00
|
|
|
|
return parse(s, n, dt, path, log);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2015-02-15 00:02:54 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
template <typename T>
|
|
|
|
|
Result parse_and_get_value(const char *s, size_t n, T &val,
|
2021-01-13 15:11:06 +00:00
|
|
|
|
const char *path = nullptr,
|
|
|
|
|
Log log = nullptr) const {
|
2020-10-02 01:26:04 +00:00
|
|
|
|
SemanticValues vs;
|
|
|
|
|
std::any dt;
|
2021-01-13 15:11:06 +00:00
|
|
|
|
auto r = parse_core(s, n, vs, dt, path, log);
|
2020-10-02 01:26:04 +00:00
|
|
|
|
if (r.ret && !vs.empty() && vs.front().has_value()) {
|
|
|
|
|
val = std::any_cast<T>(vs[0]);
|
2015-02-08 01:52:26 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
return r;
|
|
|
|
|
}
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
template <typename T>
|
2021-01-13 15:11:06 +00:00
|
|
|
|
Result parse_and_get_value(const char *s, T &val, const char *path = nullptr,
|
|
|
|
|
Log log = nullptr) const {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
auto n = strlen(s);
|
2021-01-13 15:11:06 +00:00
|
|
|
|
return parse_and_get_value(s, n, val, path, log);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2015-03-09 18:58:43 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
template <typename T>
|
2020-10-02 01:26:04 +00:00
|
|
|
|
Result parse_and_get_value(const char *s, size_t n, std::any &dt, T &val,
|
2021-01-13 15:11:06 +00:00
|
|
|
|
const char *path = nullptr,
|
|
|
|
|
Log log = nullptr) const {
|
2020-10-02 01:26:04 +00:00
|
|
|
|
SemanticValues vs;
|
2021-01-13 15:11:06 +00:00
|
|
|
|
auto r = parse_core(s, n, vs, dt, path, log);
|
2020-10-02 01:26:04 +00:00
|
|
|
|
if (r.ret && !vs.empty() && vs.front().has_value()) {
|
|
|
|
|
val = std::any_cast<T>(vs[0]);
|
2015-03-09 18:58:43 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
return r;
|
|
|
|
|
}
|
2015-03-09 18:58:43 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
template <typename T>
|
2020-10-02 01:26:04 +00:00
|
|
|
|
Result parse_and_get_value(const char *s, std::any &dt, T &val,
|
2021-01-13 15:11:06 +00:00
|
|
|
|
const char *path = nullptr,
|
|
|
|
|
Log log = nullptr) const {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
auto n = strlen(s);
|
2021-01-13 15:11:06 +00:00
|
|
|
|
return parse_and_get_value(s, n, dt, val, path, log);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2022-06-14 03:16:07 +00:00
|
|
|
|
#if defined(__cpp_lib_char8_t)
|
|
|
|
|
Result parse(const char8_t *s, size_t n, const char *path = nullptr,
|
|
|
|
|
Log log = nullptr) const {
|
|
|
|
|
return parse(reinterpret_cast<const char *>(s), n, path, log);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Result parse(const char8_t *s, const char *path = nullptr,
|
|
|
|
|
Log log = nullptr) const {
|
|
|
|
|
return parse(reinterpret_cast<const char *>(s), path, log);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Result parse(const char8_t *s, size_t n, std::any &dt,
|
|
|
|
|
const char *path = nullptr, Log log = nullptr) const {
|
|
|
|
|
return parse(reinterpret_cast<const char *>(s), n, dt, path, log);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Result parse(const char8_t *s, std::any &dt, const char *path = nullptr,
|
|
|
|
|
Log log = nullptr) const {
|
|
|
|
|
return parse(reinterpret_cast<const char *>(s), dt, path, log);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
|
Result parse_and_get_value(const char8_t *s, size_t n, T &val,
|
|
|
|
|
const char *path = nullptr,
|
|
|
|
|
Log log = nullptr) const {
|
|
|
|
|
return parse_and_get_value(reinterpret_cast<const char *>(s), n, val, *path,
|
|
|
|
|
log);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
|
Result parse_and_get_value(const char8_t *s, T &val,
|
|
|
|
|
const char *path = nullptr,
|
|
|
|
|
Log log = nullptr) const {
|
|
|
|
|
return parse_and_get_value(reinterpret_cast<const char *>(s), val, *path,
|
|
|
|
|
log);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
|
Result parse_and_get_value(const char8_t *s, size_t n, std::any &dt, T &val,
|
|
|
|
|
const char *path = nullptr,
|
|
|
|
|
Log log = nullptr) const {
|
|
|
|
|
return parse_and_get_value(reinterpret_cast<const char *>(s), n, dt, val,
|
|
|
|
|
*path, log);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
|
Result parse_and_get_value(const char8_t *s, std::any &dt, T &val,
|
|
|
|
|
const char *path = nullptr,
|
|
|
|
|
Log log = nullptr) const {
|
|
|
|
|
return parse_and_get_value(reinterpret_cast<const char *>(s), dt, val,
|
|
|
|
|
*path, log);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
void operator=(Action a) { action = a; }
|
2015-02-09 22:12:59 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
template <typename T> Definition &operator,(T fn) {
|
|
|
|
|
operator=(fn);
|
|
|
|
|
return *this;
|
|
|
|
|
}
|
2015-02-12 00:48:55 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
Definition &operator~() {
|
|
|
|
|
ignoreSemanticValue = true;
|
|
|
|
|
return *this;
|
|
|
|
|
}
|
2015-02-18 23:00:11 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
void accept(Ope::Visitor &v) { holder_->accept(v); }
|
2015-02-26 00:31:00 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
std::shared_ptr<Ope> get_core_operator() const { return holder_->ope_; }
|
2015-11-26 01:53:04 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
bool is_token() const {
|
|
|
|
|
std::call_once(is_token_init_, [this]() {
|
|
|
|
|
is_token_ = TokenChecker::is_token(*get_core_operator());
|
|
|
|
|
});
|
|
|
|
|
return is_token_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::string name;
|
2020-02-25 16:34:19 +00:00
|
|
|
|
const char *s_ = nullptr;
|
2022-07-05 23:34:08 +00:00
|
|
|
|
std::pair<size_t, size_t> line_ = {1, 1};
|
2020-02-25 16:34:19 +00:00
|
|
|
|
|
2022-06-30 23:58:23 +00:00
|
|
|
|
std::function<bool(const SemanticValues &vs, const std::any &dt,
|
|
|
|
|
std::string &msg)>
|
|
|
|
|
predicate;
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
size_t id = 0;
|
|
|
|
|
Action action;
|
2022-09-03 03:47:55 +00:00
|
|
|
|
std::function<void(const Context &c, const char *s, size_t n, std::any &dt)>
|
|
|
|
|
enter;
|
|
|
|
|
std::function<void(const Context &c, const char *s, size_t n, size_t matchlen,
|
|
|
|
|
std::any &value, std::any &dt)>
|
2020-02-05 19:10:00 +00:00
|
|
|
|
leave;
|
|
|
|
|
bool ignoreSemanticValue = false;
|
|
|
|
|
std::shared_ptr<Ope> whitespaceOpe;
|
|
|
|
|
std::shared_ptr<Ope> wordOpe;
|
|
|
|
|
bool enablePackratParsing = false;
|
|
|
|
|
bool is_macro = false;
|
|
|
|
|
std::vector<std::string> params;
|
2022-06-03 22:42:44 +00:00
|
|
|
|
bool disable_action = false;
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
TracerEnter tracer_enter;
|
|
|
|
|
TracerLeave tracer_leave;
|
2022-06-03 22:42:44 +00:00
|
|
|
|
bool verbose_trace = false;
|
|
|
|
|
TracerStartOrEnd tracer_start;
|
|
|
|
|
TracerStartOrEnd tracer_end;
|
2015-03-04 19:49:58 +00:00
|
|
|
|
|
2021-01-16 00:27:31 +00:00
|
|
|
|
std::string error_message;
|
2021-01-22 01:56:05 +00:00
|
|
|
|
bool no_ast_opt = false;
|
2021-01-16 00:27:31 +00:00
|
|
|
|
|
2022-07-05 23:32:00 +00:00
|
|
|
|
bool eoi_check = true;
|
|
|
|
|
|
2015-02-08 01:52:26 +00:00
|
|
|
|
private:
|
2020-02-05 19:10:00 +00:00
|
|
|
|
friend class Reference;
|
2020-02-05 21:03:02 +00:00
|
|
|
|
friend class ParserGenerator;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
|
|
|
|
|
Definition &operator=(const Definition &rhs);
|
|
|
|
|
Definition &operator=(Definition &&rhs);
|
|
|
|
|
|
|
|
|
|
void initialize_definition_ids() const {
|
|
|
|
|
std::call_once(definition_ids_init_, [&]() {
|
|
|
|
|
AssignIDToDefinition vis;
|
|
|
|
|
holder_->accept(vis);
|
|
|
|
|
if (whitespaceOpe) { whitespaceOpe->accept(vis); }
|
|
|
|
|
if (wordOpe) { wordOpe->accept(vis); }
|
|
|
|
|
definition_ids_.swap(vis.ids);
|
|
|
|
|
});
|
|
|
|
|
}
|
2018-07-29 17:49:00 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
Result parse_core(const char *s, size_t n, SemanticValues &vs, std::any &dt,
|
2021-01-13 15:11:06 +00:00
|
|
|
|
const char *path, Log log) const {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
initialize_definition_ids();
|
2015-03-03 02:52:09 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
std::shared_ptr<Ope> ope = holder_;
|
2016-01-24 01:26:54 +00:00
|
|
|
|
|
2022-06-03 22:42:44 +00:00
|
|
|
|
std::any trace_data;
|
|
|
|
|
if (tracer_start) { tracer_start(trace_data); }
|
|
|
|
|
auto se = scope_exit([&]() {
|
|
|
|
|
if (tracer_end) { tracer_end(trace_data); }
|
|
|
|
|
});
|
|
|
|
|
|
2022-05-27 04:04:05 +00:00
|
|
|
|
Context c(path, s, n, definition_ids_.size(), whitespaceOpe, wordOpe,
|
2022-06-03 22:42:44 +00:00
|
|
|
|
enablePackratParsing, tracer_enter, tracer_leave, trace_data,
|
|
|
|
|
verbose_trace, log);
|
2022-05-27 04:04:05 +00:00
|
|
|
|
|
|
|
|
|
size_t i = 0;
|
|
|
|
|
|
|
|
|
|
if (whitespaceOpe) {
|
|
|
|
|
auto save_ignore_trace_state = c.ignore_trace_state;
|
2022-06-03 22:42:44 +00:00
|
|
|
|
c.ignore_trace_state = !c.verbose_trace;
|
2022-05-28 01:50:27 +00:00
|
|
|
|
auto se =
|
|
|
|
|
scope_exit([&]() { c.ignore_trace_state = save_ignore_trace_state; });
|
2020-01-28 21:55:37 +00:00
|
|
|
|
|
2022-05-27 04:04:05 +00:00
|
|
|
|
auto len = whitespaceOpe->parse(s, n, vs, c, dt);
|
2022-06-08 14:56:33 +00:00
|
|
|
|
if (fail(len)) { return Result{false, c.recovered, i, c.error_info}; }
|
2022-05-27 04:04:05 +00:00
|
|
|
|
|
|
|
|
|
i = len;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
auto len = ope->parse(s + i, n - i, vs, c, dt);
|
2022-06-08 14:56:33 +00:00
|
|
|
|
auto ret = success(len);
|
|
|
|
|
if (ret) {
|
|
|
|
|
i += len;
|
2022-06-08 15:10:59 +00:00
|
|
|
|
if (eoi_check) {
|
|
|
|
|
if (i < n) {
|
|
|
|
|
if (c.error_info.error_pos - c.s < s + i - c.s) {
|
|
|
|
|
c.error_info.message_pos = s + i;
|
|
|
|
|
c.error_info.message = "expected end of input";
|
|
|
|
|
}
|
|
|
|
|
ret = false;
|
2022-06-08 14:56:33 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2022-06-08 12:38:50 +00:00
|
|
|
|
}
|
2022-06-08 14:56:33 +00:00
|
|
|
|
return Result{ret, c.recovered, i, c.error_info};
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2015-03-03 02:52:09 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
std::shared_ptr<Holder> holder_;
|
|
|
|
|
mutable std::once_flag is_token_init_;
|
|
|
|
|
mutable bool is_token_ = false;
|
|
|
|
|
mutable std::once_flag assign_id_to_definition_init_;
|
|
|
|
|
mutable std::once_flag definition_ids_init_;
|
|
|
|
|
mutable std::unordered_map<void *, size_t> definition_ids_;
|
2015-02-26 00:31:00 +00:00
|
|
|
|
};
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2015-02-26 00:31:00 +00:00
|
|
|
|
/*
|
|
|
|
|
* Implementations
|
|
|
|
|
*/
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
inline size_t parse_literal(const char *s, size_t n, SemanticValues &vs,
|
|
|
|
|
Context &c, std::any &dt, const std::string &lit,
|
2020-06-09 12:48:19 +00:00
|
|
|
|
std::once_flag &init_is_word, bool &is_word,
|
2020-02-05 19:10:00 +00:00
|
|
|
|
bool ignore_case) {
|
|
|
|
|
size_t i = 0;
|
|
|
|
|
for (; i < lit.size(); i++) {
|
|
|
|
|
if (i >= n || (ignore_case ? (std::tolower(s[i]) != std::tolower(lit[i]))
|
|
|
|
|
: (s[i] != lit[i]))) {
|
2022-06-03 02:15:09 +00:00
|
|
|
|
c.set_error_pos(s, lit.data());
|
2020-02-05 19:10:00 +00:00
|
|
|
|
return static_cast<size_t>(-1);
|
2015-11-26 01:53:04 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2015-11-26 01:53:04 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
// Word check
|
2021-03-14 01:49:24 +00:00
|
|
|
|
if (c.wordOpe) {
|
2022-05-27 04:04:05 +00:00
|
|
|
|
auto save_ignore_trace_state = c.ignore_trace_state;
|
2022-06-03 22:42:44 +00:00
|
|
|
|
c.ignore_trace_state = !c.verbose_trace;
|
2022-05-28 01:50:27 +00:00
|
|
|
|
auto se =
|
|
|
|
|
scope_exit([&]() { c.ignore_trace_state = save_ignore_trace_state; });
|
2022-05-27 04:04:05 +00:00
|
|
|
|
|
2021-03-14 01:49:24 +00:00
|
|
|
|
std::call_once(init_is_word, [&]() {
|
|
|
|
|
SemanticValues dummy_vs;
|
|
|
|
|
Context dummy_c(nullptr, c.s, c.l, 0, nullptr, nullptr, false, nullptr,
|
2022-06-03 22:42:44 +00:00
|
|
|
|
nullptr, nullptr, false, nullptr);
|
2021-03-14 01:49:24 +00:00
|
|
|
|
std::any dummy_dt;
|
2018-07-13 21:26:57 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
auto len =
|
2021-01-13 15:11:06 +00:00
|
|
|
|
c.wordOpe->parse(lit.data(), lit.size(), dummy_vs, dummy_c, dummy_dt);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
is_word = success(len);
|
2021-03-14 01:49:24 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (is_word) {
|
|
|
|
|
SemanticValues dummy_vs;
|
|
|
|
|
Context dummy_c(nullptr, c.s, c.l, 0, nullptr, nullptr, false, nullptr,
|
2022-06-03 22:42:44 +00:00
|
|
|
|
nullptr, nullptr, false, nullptr);
|
2021-03-14 01:49:24 +00:00
|
|
|
|
std::any dummy_dt;
|
2018-07-13 21:26:57 +00:00
|
|
|
|
|
2021-03-14 01:49:24 +00:00
|
|
|
|
NotPredicate ope(c.wordOpe);
|
|
|
|
|
auto len = ope.parse(s + i, n - i, dummy_vs, dummy_c, dummy_dt);
|
2022-05-29 04:52:39 +00:00
|
|
|
|
if (fail(len)) {
|
|
|
|
|
c.set_error_pos(s, lit.data());
|
|
|
|
|
return len;
|
|
|
|
|
}
|
2021-03-14 01:49:24 +00:00
|
|
|
|
i += len;
|
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2018-07-13 21:26:57 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
// Skip whiltespace
|
2022-09-06 21:18:23 +00:00
|
|
|
|
if (!c.in_token_boundary_count && c.whitespaceOpe) {
|
|
|
|
|
auto save_ignore_trace_state = c.ignore_trace_state;
|
|
|
|
|
c.ignore_trace_state = !c.verbose_trace;
|
|
|
|
|
auto se =
|
|
|
|
|
scope_exit([&]() { c.ignore_trace_state = save_ignore_trace_state; });
|
2022-05-27 04:04:05 +00:00
|
|
|
|
|
2022-09-06 21:18:23 +00:00
|
|
|
|
auto len = c.whitespaceOpe->parse(s + i, n - i, vs, c, dt);
|
|
|
|
|
if (fail(len)) { return len; }
|
|
|
|
|
i += len;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2015-11-26 01:53:04 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
return i;
|
2015-11-26 01:53:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-09-03 03:47:55 +00:00
|
|
|
|
inline std::pair<size_t, size_t> SemanticValues::line_info() const {
|
2022-08-20 02:52:19 +00:00
|
|
|
|
assert(c_);
|
2022-09-03 03:47:55 +00:00
|
|
|
|
return c_->line_info(sv_.data());
|
2022-01-07 03:59:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-09-03 12:12:12 +00:00
|
|
|
|
inline void ErrorInfo::output_log(const Log &log, const char *s, size_t n) {
|
2022-07-05 23:32:00 +00:00
|
|
|
|
if (message_pos) {
|
|
|
|
|
if (message_pos > last_output_pos) {
|
|
|
|
|
last_output_pos = message_pos;
|
|
|
|
|
auto line = line_info(s, message_pos);
|
|
|
|
|
std::string msg;
|
|
|
|
|
if (auto unexpected_token = heuristic_error_token(s, n, message_pos);
|
|
|
|
|
!unexpected_token.empty()) {
|
|
|
|
|
msg = replace_all(message, "%t", unexpected_token);
|
|
|
|
|
|
|
|
|
|
auto unexpected_char = unexpected_token.substr(
|
|
|
|
|
0,
|
|
|
|
|
codepoint_length(unexpected_token.data(), unexpected_token.size()));
|
|
|
|
|
|
|
|
|
|
msg = replace_all(msg, "%c", unexpected_char);
|
|
|
|
|
} else {
|
|
|
|
|
msg = message;
|
|
|
|
|
}
|
2022-09-03 03:47:55 +00:00
|
|
|
|
log(line.first, line.second, msg, label);
|
2022-07-05 23:32:00 +00:00
|
|
|
|
}
|
|
|
|
|
} else if (error_pos) {
|
|
|
|
|
if (error_pos > last_output_pos) {
|
|
|
|
|
last_output_pos = error_pos;
|
|
|
|
|
auto line = line_info(s, error_pos);
|
|
|
|
|
|
|
|
|
|
std::string msg;
|
|
|
|
|
if (expected_tokens.empty()) {
|
|
|
|
|
msg = "syntax error.";
|
|
|
|
|
} else {
|
|
|
|
|
msg = "syntax error";
|
|
|
|
|
|
|
|
|
|
// unexpected token
|
|
|
|
|
if (auto unexpected_token = heuristic_error_token(s, n, error_pos);
|
|
|
|
|
!unexpected_token.empty()) {
|
|
|
|
|
msg += ", unexpected '";
|
|
|
|
|
msg += unexpected_token;
|
|
|
|
|
msg += "'";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
auto first_item = true;
|
|
|
|
|
size_t i = 0;
|
|
|
|
|
while (i < expected_tokens.size()) {
|
|
|
|
|
auto [error_literal, error_rule] = expected_tokens[i];
|
|
|
|
|
|
|
|
|
|
// Skip rules start with '_'
|
|
|
|
|
if (!(error_rule && error_rule->name[0] == '_')) {
|
|
|
|
|
msg += (first_item ? ", expecting " : ", ");
|
|
|
|
|
if (error_literal) {
|
|
|
|
|
msg += "'";
|
|
|
|
|
msg += error_literal;
|
|
|
|
|
msg += "'";
|
|
|
|
|
} else {
|
|
|
|
|
msg += "<" + error_rule->name + ">";
|
2022-09-06 21:18:23 +00:00
|
|
|
|
if (label.empty()) { label = error_rule->name; }
|
2022-07-05 23:32:00 +00:00
|
|
|
|
}
|
|
|
|
|
first_item = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
i++;
|
|
|
|
|
}
|
|
|
|
|
msg += ".";
|
|
|
|
|
}
|
2022-09-03 03:47:55 +00:00
|
|
|
|
log(line.first, line.second, msg, label);
|
2022-07-05 23:32:00 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-10 04:22:00 +00:00
|
|
|
|
inline void Context::set_error_pos(const char *a_s, const char *literal) {
|
2021-01-13 15:11:06 +00:00
|
|
|
|
if (log) {
|
|
|
|
|
if (error_info.error_pos <= a_s) {
|
2022-05-28 01:48:12 +00:00
|
|
|
|
if (error_info.error_pos < a_s || !error_info.keep_previous_token) {
|
2021-01-13 15:11:06 +00:00
|
|
|
|
error_info.error_pos = a_s;
|
|
|
|
|
error_info.expected_tokens.clear();
|
|
|
|
|
}
|
2022-07-05 23:32:00 +00:00
|
|
|
|
|
|
|
|
|
const char *error_literal = nullptr;
|
|
|
|
|
const Definition *error_rule = nullptr;
|
|
|
|
|
|
2021-01-13 15:11:06 +00:00
|
|
|
|
if (literal) {
|
2022-07-05 23:32:00 +00:00
|
|
|
|
error_literal = literal;
|
2021-01-13 15:11:06 +00:00
|
|
|
|
} else if (!rule_stack.empty()) {
|
|
|
|
|
auto rule = rule_stack.back();
|
|
|
|
|
auto ope = rule->get_core_operator();
|
|
|
|
|
if (auto token = FindLiteralToken::token(*ope);
|
|
|
|
|
token && token[0] != '\0') {
|
2022-07-05 23:32:00 +00:00
|
|
|
|
error_literal = token;
|
2021-01-13 15:11:06 +00:00
|
|
|
|
}
|
2021-01-10 04:22:00 +00:00
|
|
|
|
}
|
2022-07-05 23:32:00 +00:00
|
|
|
|
|
2022-08-02 03:26:26 +00:00
|
|
|
|
for (auto r : rule_stack) {
|
|
|
|
|
error_rule = r;
|
|
|
|
|
if (r->is_token()) { break; }
|
|
|
|
|
}
|
2022-07-05 23:32:00 +00:00
|
|
|
|
|
|
|
|
|
if (error_literal || error_rule) {
|
|
|
|
|
error_info.add(error_literal, error_rule);
|
|
|
|
|
}
|
2021-01-10 04:22:00 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-13 15:11:06 +00:00
|
|
|
|
inline void Context::trace_enter(const Ope &ope, const char *a_s, size_t n,
|
2022-06-03 22:42:44 +00:00
|
|
|
|
const SemanticValues &vs, std::any &dt) {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
trace_ids.push_back(next_trace_id++);
|
2022-06-03 22:42:44 +00:00
|
|
|
|
tracer_enter(ope, a_s, n, vs, *this, dt, trace_data);
|
2020-01-28 21:55:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-01-13 15:11:06 +00:00
|
|
|
|
inline void Context::trace_leave(const Ope &ope, const char *a_s, size_t n,
|
2022-06-03 22:42:44 +00:00
|
|
|
|
const SemanticValues &vs, std::any &dt,
|
|
|
|
|
size_t len) {
|
|
|
|
|
tracer_leave(ope, a_s, n, vs, *this, dt, len, trace_data);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
trace_ids.pop_back();
|
2020-01-28 21:55:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
inline bool Context::is_traceable(const Ope &ope) const {
|
|
|
|
|
if (tracer_enter && tracer_leave) {
|
2022-05-27 21:36:25 +00:00
|
|
|
|
if (ignore_trace_state) { return false; }
|
2022-06-03 22:42:44 +00:00
|
|
|
|
return !dynamic_cast<const peg::Reference *>(&ope);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
return false;
|
2020-01-28 21:55:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
inline size_t Ope::parse(const char *s, size_t n, SemanticValues &vs,
|
|
|
|
|
Context &c, std::any &dt) const {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
if (c.is_traceable(*this)) {
|
2021-01-13 15:11:06 +00:00
|
|
|
|
c.trace_enter(*this, s, n, vs, dt);
|
2020-10-02 01:26:04 +00:00
|
|
|
|
auto len = parse_core(s, n, vs, c, dt);
|
2021-01-13 15:11:06 +00:00
|
|
|
|
c.trace_leave(*this, s, n, vs, dt, len);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
return len;
|
|
|
|
|
}
|
2020-10-02 01:26:04 +00:00
|
|
|
|
return parse_core(s, n, vs, c, dt);
|
2020-01-28 21:55:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-11 21:50:26 +00:00
|
|
|
|
inline size_t Dictionary::parse_core(const char *s, size_t n,
|
2022-09-06 21:18:23 +00:00
|
|
|
|
SemanticValues &vs, Context &c,
|
|
|
|
|
std::any &dt) const {
|
|
|
|
|
auto i = trie_.match(s, n);
|
|
|
|
|
if (i == 0) {
|
|
|
|
|
c.set_error_pos(s);
|
|
|
|
|
return static_cast<size_t>(-1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Word check
|
|
|
|
|
if (c.wordOpe) {
|
|
|
|
|
auto save_ignore_trace_state = c.ignore_trace_state;
|
|
|
|
|
c.ignore_trace_state = !c.verbose_trace;
|
|
|
|
|
auto se =
|
|
|
|
|
scope_exit([&]() { c.ignore_trace_state = save_ignore_trace_state; });
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
SemanticValues dummy_vs;
|
|
|
|
|
Context dummy_c(nullptr, c.s, c.l, 0, nullptr, nullptr, false, nullptr,
|
|
|
|
|
nullptr, nullptr, false, nullptr);
|
|
|
|
|
std::any dummy_dt;
|
|
|
|
|
|
|
|
|
|
NotPredicate ope(c.wordOpe);
|
|
|
|
|
auto len = ope.parse(s + i, n - i, dummy_vs, dummy_c, dummy_dt);
|
|
|
|
|
if (fail(len)) {
|
|
|
|
|
c.set_error_pos(s);
|
|
|
|
|
return len;
|
|
|
|
|
}
|
|
|
|
|
i += len;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Skip whiltespace
|
|
|
|
|
if (!c.in_token_boundary_count && c.whitespaceOpe) {
|
|
|
|
|
auto save_ignore_trace_state = c.ignore_trace_state;
|
|
|
|
|
c.ignore_trace_state = !c.verbose_trace;
|
|
|
|
|
auto se =
|
|
|
|
|
scope_exit([&]() { c.ignore_trace_state = save_ignore_trace_state; });
|
|
|
|
|
|
|
|
|
|
auto len = c.whitespaceOpe->parse(s + i, n - i, vs, c, dt);
|
|
|
|
|
if (fail(len)) { return len; }
|
|
|
|
|
i += len;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return i;
|
2020-02-11 21:50:26 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
inline size_t LiteralString::parse_core(const char *s, size_t n,
|
2020-10-02 01:26:04 +00:00
|
|
|
|
SemanticValues &vs, Context &c,
|
|
|
|
|
std::any &dt) const {
|
|
|
|
|
return parse_literal(s, n, vs, c, dt, lit_, init_is_word_, is_word_,
|
2020-02-05 19:10:00 +00:00
|
|
|
|
ignore_case_);
|
2018-07-12 17:06:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
inline size_t TokenBoundary::parse_core(const char *s, size_t n,
|
2020-10-02 01:26:04 +00:00
|
|
|
|
SemanticValues &vs, Context &c,
|
|
|
|
|
std::any &dt) const {
|
2022-05-27 04:04:05 +00:00
|
|
|
|
auto save_ignore_trace_state = c.ignore_trace_state;
|
2022-06-03 22:42:44 +00:00
|
|
|
|
c.ignore_trace_state = !c.verbose_trace;
|
2022-05-28 01:50:27 +00:00
|
|
|
|
auto se =
|
|
|
|
|
scope_exit([&]() { c.ignore_trace_state = save_ignore_trace_state; });
|
2022-05-27 04:04:05 +00:00
|
|
|
|
|
2020-11-09 17:06:48 +00:00
|
|
|
|
size_t len;
|
|
|
|
|
{
|
|
|
|
|
c.in_token_boundary_count++;
|
2020-10-02 01:26:04 +00:00
|
|
|
|
auto se = scope_exit([&]() { c.in_token_boundary_count--; });
|
|
|
|
|
len = ope_->parse(s, n, vs, c, dt);
|
2020-11-09 17:06:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
if (success(len)) {
|
2020-10-02 01:26:04 +00:00
|
|
|
|
vs.tokens.emplace_back(std::string_view(s, len));
|
2020-02-05 19:10:00 +00:00
|
|
|
|
|
2020-11-09 17:06:48 +00:00
|
|
|
|
if (!c.in_token_boundary_count) {
|
|
|
|
|
if (c.whitespaceOpe) {
|
2020-10-02 01:26:04 +00:00
|
|
|
|
auto l = c.whitespaceOpe->parse(s + len, n - len, vs, c, dt);
|
2021-01-13 15:11:06 +00:00
|
|
|
|
if (fail(l)) { return l; }
|
2020-11-09 17:06:48 +00:00
|
|
|
|
len += l;
|
|
|
|
|
}
|
2016-01-24 01:26:54 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
return len;
|
2016-01-24 01:26:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
inline size_t Holder::parse_core(const char *s, size_t n, SemanticValues &vs,
|
|
|
|
|
Context &c, std::any &dt) const {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
if (!ope_) {
|
|
|
|
|
throw std::logic_error("Uninitialized definition ope was used...");
|
|
|
|
|
}
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
// Macro reference
|
2020-06-01 03:46:46 +00:00
|
|
|
|
if (outer_->is_macro) {
|
|
|
|
|
c.rule_stack.push_back(outer_);
|
2020-10-02 01:26:04 +00:00
|
|
|
|
auto len = ope_->parse(s, n, vs, c, dt);
|
2020-06-01 03:46:46 +00:00
|
|
|
|
c.rule_stack.pop_back();
|
|
|
|
|
return len;
|
|
|
|
|
}
|
2018-07-25 22:08:10 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
size_t len;
|
2020-10-02 01:26:04 +00:00
|
|
|
|
std::any val;
|
2015-03-04 03:04:14 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
c.packrat(s, outer_->id, len, val, [&](std::any &a_val) {
|
2022-09-03 03:47:55 +00:00
|
|
|
|
if (outer_->enter) { outer_->enter(c, s, n, dt); }
|
2022-07-03 23:23:35 +00:00
|
|
|
|
auto &chvs = c.push_semantic_values_scope();
|
|
|
|
|
auto se = scope_exit([&]() {
|
|
|
|
|
c.pop_semantic_values_scope();
|
2022-09-03 03:47:55 +00:00
|
|
|
|
if (outer_->leave) { outer_->leave(c, s, n, len, a_val, dt); }
|
2015-02-27 02:32:26 +00:00
|
|
|
|
});
|
|
|
|
|
|
2020-06-01 03:46:46 +00:00
|
|
|
|
c.rule_stack.push_back(outer_);
|
2022-07-03 23:23:35 +00:00
|
|
|
|
len = ope_->parse(s, n, chvs, c, dt);
|
2020-06-01 03:46:46 +00:00
|
|
|
|
c.rule_stack.pop_back();
|
2020-02-05 19:10:00 +00:00
|
|
|
|
|
|
|
|
|
// Invoke action
|
2015-11-17 11:16:46 +00:00
|
|
|
|
if (success(len)) {
|
2022-07-03 23:23:35 +00:00
|
|
|
|
chvs.sv_ = std::string_view(s, len);
|
|
|
|
|
chvs.name_ = outer_->name;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
|
2022-06-03 22:42:44 +00:00
|
|
|
|
if (!dynamic_cast<const peg::PrioritizedChoice *>(ope_.get())) {
|
2022-07-03 23:23:35 +00:00
|
|
|
|
chvs.choice_count_ = 0;
|
|
|
|
|
chvs.choice_ = 0;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-06-30 23:58:23 +00:00
|
|
|
|
std::string msg;
|
2022-07-03 23:23:35 +00:00
|
|
|
|
if (outer_->predicate && !outer_->predicate(chvs, dt, msg)) {
|
2022-06-30 23:58:23 +00:00
|
|
|
|
if (c.log && !msg.empty() && c.error_info.message_pos < s) {
|
|
|
|
|
c.error_info.message_pos = s;
|
|
|
|
|
c.error_info.message = msg;
|
2022-09-03 03:47:55 +00:00
|
|
|
|
c.error_info.label = outer_->name;
|
2015-11-17 11:16:46 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
len = static_cast<size_t>(-1);
|
2022-07-02 22:28:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (success(len)) {
|
2022-09-03 11:09:31 +00:00
|
|
|
|
if (!c.recovered) { a_val = reduce(chvs, dt); }
|
2022-07-02 22:28:57 +00:00
|
|
|
|
} else {
|
|
|
|
|
if (c.log && !msg.empty() && c.error_info.message_pos < s) {
|
|
|
|
|
c.error_info.message_pos = s;
|
|
|
|
|
c.error_info.message = msg;
|
2022-09-03 03:47:55 +00:00
|
|
|
|
c.error_info.label = outer_->name;
|
2022-07-02 22:28:57 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2022-09-01 23:49:32 +00:00
|
|
|
|
} else {
|
|
|
|
|
if (c.log && !outer_->error_message.empty() &&
|
|
|
|
|
c.error_info.message_pos < s) {
|
|
|
|
|
c.error_info.message_pos = s;
|
|
|
|
|
c.error_info.message = outer_->error_message;
|
2022-09-03 03:47:55 +00:00
|
|
|
|
c.error_info.label = outer_->name;
|
2022-09-01 23:49:32 +00:00
|
|
|
|
}
|
2015-04-01 17:36:03 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
});
|
2015-04-01 17:36:03 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
if (success(len)) {
|
|
|
|
|
if (!outer_->ignoreSemanticValue) {
|
2020-10-02 01:26:04 +00:00
|
|
|
|
vs.emplace_back(std::move(val));
|
|
|
|
|
vs.tags.emplace_back(str2tag(outer_->name));
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return len;
|
2015-02-26 00:31:00 +00:00
|
|
|
|
}
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
inline std::any Holder::reduce(SemanticValues &vs, std::any &dt) const {
|
2020-02-05 21:03:02 +00:00
|
|
|
|
if (outer_->action && !outer_->disable_action) {
|
2020-10-02 01:26:04 +00:00
|
|
|
|
return outer_->action(vs, dt);
|
|
|
|
|
} else if (vs.empty()) {
|
|
|
|
|
return std::any();
|
2020-02-05 19:10:00 +00:00
|
|
|
|
} else {
|
2020-10-02 01:26:04 +00:00
|
|
|
|
return std::move(vs.front());
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2015-02-26 13:27:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-06-03 22:42:44 +00:00
|
|
|
|
inline const std::string &Holder::name() const { return outer_->name; }
|
2022-06-03 02:15:09 +00:00
|
|
|
|
|
|
|
|
|
inline const std::string &Holder::trace_name() const {
|
2022-09-03 11:41:08 +00:00
|
|
|
|
std::call_once(trace_name_init_,
|
|
|
|
|
[this]() { trace_name_ = "[" + outer_->name + "]"; });
|
2022-06-03 02:15:09 +00:00
|
|
|
|
return trace_name_;
|
2020-01-28 21:55:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
inline size_t Reference::parse_core(const char *s, size_t n, SemanticValues &vs,
|
|
|
|
|
Context &c, std::any &dt) const {
|
2022-05-27 21:36:25 +00:00
|
|
|
|
auto save_ignore_trace_state = c.ignore_trace_state;
|
|
|
|
|
if (rule_ && rule_->ignoreSemanticValue) {
|
2022-06-03 22:42:44 +00:00
|
|
|
|
c.ignore_trace_state = !c.verbose_trace;
|
2022-05-27 21:36:25 +00:00
|
|
|
|
}
|
2022-05-28 01:50:27 +00:00
|
|
|
|
auto se =
|
|
|
|
|
scope_exit([&]() { c.ignore_trace_state = save_ignore_trace_state; });
|
2022-05-27 21:36:25 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
if (rule_) {
|
|
|
|
|
// Reference rule
|
|
|
|
|
if (rule_->is_macro) {
|
|
|
|
|
// Macro
|
2020-06-01 03:46:46 +00:00
|
|
|
|
FindReference vis(c.top_args(), c.rule_stack.back()->params);
|
2018-07-25 22:08:10 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
// Collect arguments
|
|
|
|
|
std::vector<std::shared_ptr<Ope>> args;
|
|
|
|
|
for (auto arg : args_) {
|
|
|
|
|
arg->accept(vis);
|
2020-05-18 05:24:53 +00:00
|
|
|
|
args.emplace_back(std::move(vis.found_ope));
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2018-07-25 22:08:10 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
c.push_args(std::move(args));
|
2020-10-02 01:26:04 +00:00
|
|
|
|
auto se = scope_exit([&]() { c.pop_args(); });
|
2020-02-05 19:10:00 +00:00
|
|
|
|
auto ope = get_core_operator();
|
2020-10-02 01:26:04 +00:00
|
|
|
|
return ope->parse(s, n, vs, c, dt);
|
2018-10-07 02:29:51 +00:00
|
|
|
|
} else {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
// Definition
|
2020-06-01 03:46:46 +00:00
|
|
|
|
c.push_args(std::vector<std::shared_ptr<Ope>>());
|
2020-10-02 01:26:04 +00:00
|
|
|
|
auto se = scope_exit([&]() { c.pop_args(); });
|
2020-02-05 19:10:00 +00:00
|
|
|
|
auto ope = get_core_operator();
|
2020-10-02 01:26:04 +00:00
|
|
|
|
return ope->parse(s, n, vs, c, dt);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
// Reference parameter in macro
|
|
|
|
|
const auto &args = c.top_args();
|
2020-10-02 01:26:04 +00:00
|
|
|
|
return args[iarg_]->parse(s, n, vs, c, dt);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2015-02-26 00:31:00 +00:00
|
|
|
|
}
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2018-07-25 22:08:10 +00:00
|
|
|
|
inline std::shared_ptr<Ope> Reference::get_core_operator() const {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
return rule_->holder_;
|
2015-02-26 13:27:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
inline size_t BackReference::parse_core(const char *s, size_t n,
|
2020-10-02 01:26:04 +00:00
|
|
|
|
SemanticValues &vs, Context &c,
|
|
|
|
|
std::any &dt) const {
|
2020-02-05 21:03:02 +00:00
|
|
|
|
auto size = static_cast<int>(c.capture_scope_stack_size);
|
|
|
|
|
for (auto i = size - 1; i >= 0; i--) {
|
2020-02-25 16:34:19 +00:00
|
|
|
|
auto index = static_cast<size_t>(i);
|
|
|
|
|
const auto &cs = c.capture_scope_stack[index];
|
2020-02-05 19:10:00 +00:00
|
|
|
|
if (cs.find(name_) != cs.end()) {
|
|
|
|
|
const auto &lit = cs.at(name_);
|
2020-06-09 12:48:19 +00:00
|
|
|
|
std::once_flag init_is_word;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
auto is_word = false;
|
2020-10-02 01:26:04 +00:00
|
|
|
|
return parse_literal(s, n, vs, c, dt, lit, init_is_word, is_word, false);
|
2018-07-25 22:08:10 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2022-06-02 19:42:03 +00:00
|
|
|
|
|
|
|
|
|
c.error_info.message_pos = s;
|
|
|
|
|
c.error_info.message = "undefined back reference '$" + name_ + "'...";
|
|
|
|
|
return static_cast<size_t>(-1);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-11 21:50:26 +00:00
|
|
|
|
inline Definition &
|
|
|
|
|
PrecedenceClimbing::get_reference_for_binop(Context &c) const {
|
2020-02-07 20:50:06 +00:00
|
|
|
|
if (rule_.is_macro) {
|
|
|
|
|
// Reference parameter in macro
|
|
|
|
|
const auto &args = c.top_args();
|
|
|
|
|
auto iarg = dynamic_cast<Reference &>(*binop_).iarg_;
|
|
|
|
|
auto arg = args[iarg];
|
|
|
|
|
return *dynamic_cast<Reference &>(*arg).rule_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return *dynamic_cast<Reference &>(*binop_).rule_;
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 21:03:02 +00:00
|
|
|
|
inline size_t PrecedenceClimbing::parse_expression(const char *s, size_t n,
|
2020-10-02 01:26:04 +00:00
|
|
|
|
SemanticValues &vs,
|
|
|
|
|
Context &c, std::any &dt,
|
2020-02-05 21:03:02 +00:00
|
|
|
|
size_t min_prec) const {
|
2020-10-02 01:26:04 +00:00
|
|
|
|
auto len = atom_->parse(s, n, vs, c, dt);
|
2020-02-05 21:03:02 +00:00
|
|
|
|
if (fail(len)) { return len; }
|
|
|
|
|
|
|
|
|
|
std::string tok;
|
2020-02-07 20:50:06 +00:00
|
|
|
|
auto &rule = get_reference_for_binop(c);
|
2020-10-02 01:26:04 +00:00
|
|
|
|
auto action = std::move(rule.action);
|
2020-02-05 21:03:02 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
rule.action = [&](SemanticValues &vs2, std::any &dt2) {
|
|
|
|
|
tok = vs2.token();
|
2020-02-05 21:03:02 +00:00
|
|
|
|
if (action) {
|
2020-10-02 01:26:04 +00:00
|
|
|
|
return action(vs2, dt2);
|
|
|
|
|
} else if (!vs2.empty()) {
|
|
|
|
|
return vs2[0];
|
2020-02-05 21:03:02 +00:00
|
|
|
|
}
|
2020-10-02 01:26:04 +00:00
|
|
|
|
return std::any();
|
2020-02-05 21:03:02 +00:00
|
|
|
|
};
|
2020-10-02 01:26:04 +00:00
|
|
|
|
auto action_se = scope_exit([&]() { rule.action = std::move(action); });
|
2020-02-05 21:03:02 +00:00
|
|
|
|
|
|
|
|
|
auto i = len;
|
|
|
|
|
while (i < n) {
|
2020-10-02 01:26:04 +00:00
|
|
|
|
std::vector<std::any> save_values(vs.begin(), vs.end());
|
|
|
|
|
auto save_tokens = vs.tokens;
|
2020-02-05 21:03:02 +00:00
|
|
|
|
|
2022-07-03 23:23:35 +00:00
|
|
|
|
auto chvs = c.push_semantic_values_scope();
|
|
|
|
|
auto chlen = binop_->parse(s + i, n - i, chvs, c, dt);
|
|
|
|
|
c.pop_semantic_values_scope();
|
2020-02-05 21:03:02 +00:00
|
|
|
|
|
2022-07-03 23:23:35 +00:00
|
|
|
|
if (fail(chlen)) { break; }
|
2020-02-05 21:03:02 +00:00
|
|
|
|
|
|
|
|
|
auto it = info_.find(tok);
|
|
|
|
|
if (it == info_.end()) { break; }
|
|
|
|
|
|
|
|
|
|
auto level = std::get<0>(it->second);
|
|
|
|
|
auto assoc = std::get<1>(it->second);
|
|
|
|
|
|
|
|
|
|
if (level < min_prec) { break; }
|
|
|
|
|
|
2022-07-03 23:23:35 +00:00
|
|
|
|
vs.emplace_back(std::move(chvs[0]));
|
|
|
|
|
i += chlen;
|
2020-02-05 21:03:02 +00:00
|
|
|
|
|
|
|
|
|
auto next_min_prec = level;
|
|
|
|
|
if (assoc == 'L') { next_min_prec = level + 1; }
|
|
|
|
|
|
2022-07-03 23:23:35 +00:00
|
|
|
|
chvs = c.push_semantic_values_scope();
|
|
|
|
|
chlen = parse_expression(s + i, n - i, chvs, c, dt, next_min_prec);
|
|
|
|
|
c.pop_semantic_values_scope();
|
2020-02-05 21:03:02 +00:00
|
|
|
|
|
2022-07-03 23:23:35 +00:00
|
|
|
|
if (fail(chlen)) {
|
2020-10-02 01:26:04 +00:00
|
|
|
|
vs.assign(save_values.begin(), save_values.end());
|
|
|
|
|
vs.tokens = save_tokens;
|
2022-07-03 23:23:35 +00:00
|
|
|
|
i = chlen;
|
2020-02-05 21:03:02 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-03 23:23:35 +00:00
|
|
|
|
vs.emplace_back(std::move(chvs[0]));
|
|
|
|
|
i += chlen;
|
2020-02-05 21:03:02 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
std::any val;
|
2020-02-07 20:50:06 +00:00
|
|
|
|
if (rule_.action) {
|
2020-10-02 01:26:04 +00:00
|
|
|
|
vs.sv_ = std::string_view(s, i);
|
|
|
|
|
val = rule_.action(vs, dt);
|
|
|
|
|
} else if (!vs.empty()) {
|
|
|
|
|
val = vs[0];
|
2020-02-05 21:03:02 +00:00
|
|
|
|
}
|
2020-10-02 01:26:04 +00:00
|
|
|
|
vs.clear();
|
|
|
|
|
vs.emplace_back(std::move(val));
|
2020-02-05 21:03:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return i;
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-20 20:48:28 +00:00
|
|
|
|
inline size_t Recovery::parse_core(const char *s, size_t n,
|
|
|
|
|
SemanticValues & /*vs*/, Context &c,
|
|
|
|
|
std::any & /*dt*/) const {
|
2021-01-13 15:11:06 +00:00
|
|
|
|
const auto &rule = dynamic_cast<Reference &>(*ope_);
|
|
|
|
|
|
2021-01-26 03:46:28 +00:00
|
|
|
|
// Custom error message
|
|
|
|
|
if (c.log) {
|
|
|
|
|
auto label = dynamic_cast<Reference *>(rule.args_[0].get());
|
2022-07-05 23:34:08 +00:00
|
|
|
|
if (label && !label->rule_->error_message.empty()) {
|
|
|
|
|
c.error_info.message_pos = s;
|
|
|
|
|
c.error_info.message = label->rule_->error_message;
|
|
|
|
|
c.error_info.label = label->rule_->name;
|
2021-01-26 03:46:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Recovery
|
2022-09-03 11:09:31 +00:00
|
|
|
|
auto len = static_cast<size_t>(-1);
|
2021-01-26 03:46:28 +00:00
|
|
|
|
{
|
|
|
|
|
auto save_log = c.log;
|
|
|
|
|
c.log = nullptr;
|
|
|
|
|
auto se = scope_exit([&]() { c.log = save_log; });
|
2021-01-13 15:11:06 +00:00
|
|
|
|
|
2021-01-26 03:46:28 +00:00
|
|
|
|
SemanticValues dummy_vs;
|
|
|
|
|
std::any dummy_dt;
|
|
|
|
|
|
|
|
|
|
len = rule.parse(s, n, dummy_vs, c, dummy_dt);
|
|
|
|
|
}
|
2021-01-13 15:11:06 +00:00
|
|
|
|
|
2022-08-20 02:31:04 +00:00
|
|
|
|
if (success(len)) {
|
|
|
|
|
c.recovered = true;
|
|
|
|
|
|
|
|
|
|
if (c.log) {
|
|
|
|
|
c.error_info.output_log(c.log, c.s, c.l);
|
|
|
|
|
c.error_info.clear();
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-01-26 03:46:28 +00:00
|
|
|
|
|
|
|
|
|
// Cut
|
|
|
|
|
if (!c.cut_stack.empty()) {
|
|
|
|
|
c.cut_stack.back() = true;
|
|
|
|
|
|
|
|
|
|
if (c.cut_stack.size() == 1) {
|
|
|
|
|
// TODO: Remove unneeded entries in packrat memoise table
|
2021-01-16 00:27:31 +00:00
|
|
|
|
}
|
2021-01-13 15:11:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return len;
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
inline void Sequence::accept(Visitor &v) { v.visit(*this); }
|
|
|
|
|
inline void PrioritizedChoice::accept(Visitor &v) { v.visit(*this); }
|
2020-03-28 22:38:01 +00:00
|
|
|
|
inline void Repetition::accept(Visitor &v) { v.visit(*this); }
|
2020-02-05 19:10:00 +00:00
|
|
|
|
inline void AndPredicate::accept(Visitor &v) { v.visit(*this); }
|
|
|
|
|
inline void NotPredicate::accept(Visitor &v) { v.visit(*this); }
|
2020-02-11 21:50:26 +00:00
|
|
|
|
inline void Dictionary::accept(Visitor &v) { v.visit(*this); }
|
2020-02-05 19:10:00 +00:00
|
|
|
|
inline void LiteralString::accept(Visitor &v) { v.visit(*this); }
|
|
|
|
|
inline void CharacterClass::accept(Visitor &v) { v.visit(*this); }
|
|
|
|
|
inline void Character::accept(Visitor &v) { v.visit(*this); }
|
|
|
|
|
inline void AnyCharacter::accept(Visitor &v) { v.visit(*this); }
|
|
|
|
|
inline void CaptureScope::accept(Visitor &v) { v.visit(*this); }
|
|
|
|
|
inline void Capture::accept(Visitor &v) { v.visit(*this); }
|
|
|
|
|
inline void TokenBoundary::accept(Visitor &v) { v.visit(*this); }
|
|
|
|
|
inline void Ignore::accept(Visitor &v) { v.visit(*this); }
|
|
|
|
|
inline void User::accept(Visitor &v) { v.visit(*this); }
|
|
|
|
|
inline void WeakHolder::accept(Visitor &v) { v.visit(*this); }
|
|
|
|
|
inline void Holder::accept(Visitor &v) { v.visit(*this); }
|
|
|
|
|
inline void Reference::accept(Visitor &v) { v.visit(*this); }
|
|
|
|
|
inline void Whitespace::accept(Visitor &v) { v.visit(*this); }
|
|
|
|
|
inline void BackReference::accept(Visitor &v) { v.visit(*this); }
|
2020-02-05 21:03:02 +00:00
|
|
|
|
inline void PrecedenceClimbing::accept(Visitor &v) { v.visit(*this); }
|
2021-01-13 15:11:06 +00:00
|
|
|
|
inline void Recovery::accept(Visitor &v) { v.visit(*this); }
|
2021-01-26 03:46:28 +00:00
|
|
|
|
inline void Cut::accept(Visitor &v) { v.visit(*this); }
|
2020-02-05 19:10:00 +00:00
|
|
|
|
|
|
|
|
|
inline void AssignIDToDefinition::visit(Holder &ope) {
|
|
|
|
|
auto p = static_cast<void *>(ope.outer_);
|
|
|
|
|
if (ids.count(p)) { return; }
|
|
|
|
|
auto id = ids.size();
|
|
|
|
|
ids[p] = id;
|
|
|
|
|
ope.outer_->id = id;
|
|
|
|
|
ope.ope_->accept(*this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inline void AssignIDToDefinition::visit(Reference &ope) {
|
|
|
|
|
if (ope.rule_) {
|
|
|
|
|
for (auto arg : ope.args_) {
|
|
|
|
|
arg->accept(*this);
|
|
|
|
|
}
|
|
|
|
|
ope.rule_->accept(*this);
|
|
|
|
|
}
|
2015-02-16 01:11:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-09 02:54:35 +00:00
|
|
|
|
inline void AssignIDToDefinition::visit(PrecedenceClimbing &ope) {
|
|
|
|
|
ope.atom_->accept(*this);
|
|
|
|
|
ope.binop_->accept(*this);
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
inline void TokenChecker::visit(Reference &ope) {
|
|
|
|
|
if (ope.is_macro_) {
|
|
|
|
|
for (auto arg : ope.args_) {
|
|
|
|
|
arg->accept(*this);
|
2018-07-25 22:08:10 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
} else {
|
|
|
|
|
has_rule_ = true;
|
|
|
|
|
}
|
2015-06-12 22:52:26 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-01-10 04:22:00 +00:00
|
|
|
|
inline void FindLiteralToken::visit(Reference &ope) {
|
|
|
|
|
if (ope.is_macro_) {
|
|
|
|
|
ope.rule_->accept(*this);
|
|
|
|
|
for (auto arg : ope.args_) {
|
|
|
|
|
arg->accept(*this);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
inline void DetectLeftRecursion::visit(Reference &ope) {
|
|
|
|
|
if (ope.name_ == name_) {
|
|
|
|
|
error_s = ope.s_;
|
|
|
|
|
} else if (!refs_.count(ope.name_)) {
|
|
|
|
|
refs_.insert(ope.name_);
|
|
|
|
|
if (ope.rule_) {
|
|
|
|
|
ope.rule_->accept(*this);
|
|
|
|
|
if (done_ == false) { return; }
|
2018-07-25 22:08:10 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
done_ = true;
|
2015-02-08 01:52:26 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-06-07 23:45:34 +00:00
|
|
|
|
inline void HasEmptyElement::visit(Sequence &ope) {
|
|
|
|
|
auto save_is_empty = false;
|
|
|
|
|
const char *save_error_s = nullptr;
|
|
|
|
|
std::string save_error_name;
|
|
|
|
|
|
|
|
|
|
auto it = ope.opes_.begin();
|
|
|
|
|
while (it != ope.opes_.end()) {
|
|
|
|
|
(*it)->accept(*this);
|
|
|
|
|
if (!is_empty) {
|
|
|
|
|
++it;
|
|
|
|
|
while (it != ope.opes_.end()) {
|
2022-06-17 01:34:21 +00:00
|
|
|
|
DetectInfiniteLoop vis(refs_, has_error_cache_);
|
2022-06-07 23:45:34 +00:00
|
|
|
|
(*it)->accept(vis);
|
|
|
|
|
if (vis.has_error) {
|
|
|
|
|
is_empty = true;
|
|
|
|
|
error_s = vis.error_s;
|
|
|
|
|
error_name = vis.error_name;
|
|
|
|
|
}
|
|
|
|
|
++it;
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
save_is_empty = is_empty;
|
|
|
|
|
save_error_s = error_s;
|
|
|
|
|
save_error_name = error_name;
|
|
|
|
|
|
|
|
|
|
is_empty = false;
|
|
|
|
|
error_name.clear();
|
|
|
|
|
++it;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
is_empty = save_is_empty;
|
|
|
|
|
error_s = save_error_s;
|
|
|
|
|
error_name = save_error_name;
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
inline void HasEmptyElement::visit(Reference &ope) {
|
|
|
|
|
auto it = std::find_if(refs_.begin(), refs_.end(),
|
|
|
|
|
[&](const std::pair<const char *, std::string> &ref) {
|
|
|
|
|
return ope.name_ == ref.second;
|
|
|
|
|
});
|
|
|
|
|
if (it != refs_.end()) { return; }
|
2020-01-24 05:37:21 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
if (ope.rule_) {
|
|
|
|
|
refs_.emplace_back(ope.s_, ope.name_);
|
|
|
|
|
ope.rule_->accept(*this);
|
|
|
|
|
refs_.pop_back();
|
|
|
|
|
}
|
2020-01-24 05:37:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
inline void DetectInfiniteLoop::visit(Reference &ope) {
|
|
|
|
|
auto it = std::find_if(refs_.begin(), refs_.end(),
|
|
|
|
|
[&](const std::pair<const char *, std::string> &ref) {
|
|
|
|
|
return ope.name_ == ref.second;
|
|
|
|
|
});
|
|
|
|
|
if (it != refs_.end()) { return; }
|
2020-01-24 05:37:21 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
if (ope.rule_) {
|
2022-05-06 20:31:33 +00:00
|
|
|
|
auto it = has_error_cache_.find(ope.name_);
|
|
|
|
|
if (it != has_error_cache_.end()) {
|
|
|
|
|
has_error = it->second;
|
|
|
|
|
} else {
|
|
|
|
|
refs_.emplace_back(ope.s_, ope.name_);
|
|
|
|
|
ope.rule_->accept(*this);
|
|
|
|
|
refs_.pop_back();
|
|
|
|
|
has_error_cache_[ope.name_] = has_error;
|
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2021-03-31 00:59:17 +00:00
|
|
|
|
|
|
|
|
|
if (ope.is_macro_) {
|
|
|
|
|
for (auto arg : ope.args_) {
|
|
|
|
|
arg->accept(*this);
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-01-24 05:37:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
inline void ReferenceChecker::visit(Reference &ope) {
|
|
|
|
|
auto it = std::find(params_.begin(), params_.end(), ope.name_);
|
|
|
|
|
if (it != params_.end()) { return; }
|
2015-12-03 23:59:12 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
if (!grammar_.count(ope.name_)) {
|
|
|
|
|
error_s[ope.name_] = ope.s_;
|
|
|
|
|
error_message[ope.name_] = "'" + ope.name_ + "' is not defined.";
|
|
|
|
|
} else {
|
2021-03-02 13:14:22 +00:00
|
|
|
|
if (!referenced.count(ope.name_)) { referenced.insert(ope.name_); }
|
2020-02-05 19:10:00 +00:00
|
|
|
|
const auto &rule = grammar_.at(ope.name_);
|
|
|
|
|
if (rule.is_macro) {
|
|
|
|
|
if (!ope.is_macro_ || ope.args_.size() != rule.params.size()) {
|
2018-07-25 22:08:10 +00:00
|
|
|
|
error_s[ope.name_] = ope.s_;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
error_message[ope.name_] = "incorrect number of arguments.";
|
|
|
|
|
}
|
|
|
|
|
} else if (ope.is_macro_) {
|
|
|
|
|
error_s[ope.name_] = ope.s_;
|
|
|
|
|
error_message[ope.name_] = "'" + ope.name_ + "' is not macro.";
|
2018-07-25 22:08:10 +00:00
|
|
|
|
}
|
2021-01-16 04:36:01 +00:00
|
|
|
|
for (auto arg : ope.args_) {
|
|
|
|
|
arg->accept(*this);
|
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2018-07-12 17:06:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
inline void LinkReferences::visit(Reference &ope) {
|
|
|
|
|
// Check if the reference is a macro parameter
|
|
|
|
|
auto found_param = false;
|
|
|
|
|
for (size_t i = 0; i < params_.size(); i++) {
|
|
|
|
|
const auto ¶m = params_[i];
|
|
|
|
|
if (param == ope.name_) {
|
|
|
|
|
ope.iarg_ = i;
|
|
|
|
|
found_param = true;
|
|
|
|
|
break;
|
2019-11-29 05:57:45 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2019-11-29 05:57:45 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
// Check if the reference is a definition rule
|
|
|
|
|
if (!found_param && grammar_.count(ope.name_)) {
|
|
|
|
|
auto &rule = grammar_.at(ope.name_);
|
|
|
|
|
ope.rule_ = &rule;
|
|
|
|
|
}
|
2019-11-29 05:57:45 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
for (auto arg : ope.args_) {
|
|
|
|
|
arg->accept(*this);
|
|
|
|
|
}
|
2018-07-28 02:47:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
inline void FindReference::visit(Reference &ope) {
|
|
|
|
|
for (size_t i = 0; i < args_.size(); i++) {
|
|
|
|
|
const auto &name = params_[i];
|
|
|
|
|
if (name == ope.name_) {
|
|
|
|
|
found_ope = args_[i];
|
|
|
|
|
return;
|
2018-07-28 02:47:00 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
found_ope = ope.shared_from_this();
|
2018-07-28 02:47:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-02-08 01:52:26 +00:00
|
|
|
|
/*-----------------------------------------------------------------------------
|
|
|
|
|
* PEG parser generator
|
|
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
using Rules = std::unordered_map<std::string, std::shared_ptr<Ope>>;
|
2015-02-14 13:52:52 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
class ParserGenerator {
|
2015-02-14 03:41:17 +00:00
|
|
|
|
public:
|
2020-02-05 19:10:00 +00:00
|
|
|
|
static std::shared_ptr<Grammar> parse(const char *s, size_t n,
|
|
|
|
|
const Rules &rules, std::string &start,
|
2021-03-17 13:33:40 +00:00
|
|
|
|
bool &enablePackratParsing, Log log) {
|
|
|
|
|
return get_instance().perform_core(s, n, rules, start, enablePackratParsing,
|
|
|
|
|
log);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2018-09-14 02:08:51 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
static std::shared_ptr<Grammar> parse(const char *s, size_t n,
|
2021-03-17 13:33:40 +00:00
|
|
|
|
std::string &start,
|
|
|
|
|
bool &enablePackratParsing, Log log) {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
Rules dummy;
|
2021-03-17 13:33:40 +00:00
|
|
|
|
return parse(s, n, dummy, start, enablePackratParsing, log);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2015-02-14 15:13:10 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
// For debuging purpose
|
|
|
|
|
static Grammar &grammar() { return get_instance().g; }
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2015-02-14 03:41:17 +00:00
|
|
|
|
private:
|
2020-02-05 19:10:00 +00:00
|
|
|
|
static ParserGenerator &get_instance() {
|
|
|
|
|
static ParserGenerator instance;
|
|
|
|
|
return instance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ParserGenerator() {
|
|
|
|
|
make_grammar();
|
|
|
|
|
setup_actions();
|
|
|
|
|
}
|
2015-02-14 15:13:10 +00:00
|
|
|
|
|
2020-02-05 21:03:02 +00:00
|
|
|
|
struct Instruction {
|
|
|
|
|
std::string type;
|
2020-10-02 01:26:04 +00:00
|
|
|
|
std::any data;
|
2022-04-02 12:10:39 +00:00
|
|
|
|
std::string_view sv;
|
2020-02-05 21:03:02 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
struct Data {
|
|
|
|
|
std::shared_ptr<Grammar> grammar;
|
|
|
|
|
std::string start;
|
|
|
|
|
const char *start_pos = nullptr;
|
2022-06-02 19:42:03 +00:00
|
|
|
|
|
2022-04-02 12:10:39 +00:00
|
|
|
|
std::vector<std::pair<std::string, const char *>> duplicates_of_definition;
|
2022-06-02 19:42:03 +00:00
|
|
|
|
|
2022-04-02 12:10:39 +00:00
|
|
|
|
std::vector<std::pair<std::string, const char *>> duplicates_of_instruction;
|
|
|
|
|
std::map<std::string, std::vector<Instruction>> instructions;
|
2022-06-02 19:42:03 +00:00
|
|
|
|
|
|
|
|
|
std::vector<std::pair<std::string, const char *>> undefined_back_references;
|
|
|
|
|
std::vector<std::set<std::string_view>> captures_stack{{}};
|
|
|
|
|
|
|
|
|
|
std::set<std::string_view> captures_in_current_definition;
|
2021-03-17 13:33:40 +00:00
|
|
|
|
bool enablePackratParsing = true;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
|
|
|
|
|
Data() : grammar(std::make_shared<Grammar>()) {}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void make_grammar() {
|
|
|
|
|
// Setup PEG syntax parser
|
|
|
|
|
g["Grammar"] <= seq(g["Spacing"], oom(g["Definition"]), g["EndOfFile"]);
|
|
|
|
|
g["Definition"] <=
|
|
|
|
|
cho(seq(g["Ignore"], g["IdentCont"], g["Parameters"], g["LEFTARROW"],
|
2020-02-05 21:03:02 +00:00
|
|
|
|
g["Expression"], opt(g["Instruction"])),
|
|
|
|
|
seq(g["Ignore"], g["Identifier"], g["LEFTARROW"], g["Expression"],
|
|
|
|
|
opt(g["Instruction"])));
|
2020-02-05 19:10:00 +00:00
|
|
|
|
g["Expression"] <= seq(g["Sequence"], zom(seq(g["SLASH"], g["Sequence"])));
|
2021-01-26 03:46:28 +00:00
|
|
|
|
g["Sequence"] <= zom(cho(g["CUT"], g["Prefix"]));
|
2021-01-16 01:18:19 +00:00
|
|
|
|
g["Prefix"] <= seq(opt(cho(g["AND"], g["NOT"])), g["SuffixWithLabel"]);
|
2021-01-16 04:37:27 +00:00
|
|
|
|
g["SuffixWithLabel"] <=
|
2021-01-26 03:46:28 +00:00
|
|
|
|
seq(g["Suffix"], opt(seq(g["LABEL"], g["Identifier"])));
|
2020-03-28 22:38:01 +00:00
|
|
|
|
g["Suffix"] <= seq(g["Primary"], opt(g["Loop"]));
|
|
|
|
|
g["Loop"] <= cho(g["QUESTION"], g["STAR"], g["PLUS"], g["Repetition"]);
|
2022-06-25 20:05:23 +00:00
|
|
|
|
g["Primary"] <=
|
|
|
|
|
cho(seq(g["Ignore"], g["IdentCont"], g["Arguments"],
|
|
|
|
|
npd(g["LEFTARROW"])),
|
|
|
|
|
seq(g["Ignore"], g["Identifier"],
|
|
|
|
|
npd(seq(opt(g["Parameters"]), g["LEFTARROW"]))),
|
|
|
|
|
seq(g["OPEN"], g["Expression"], g["CLOSE"]),
|
|
|
|
|
seq(g["BeginTok"], g["Expression"], g["EndTok"]), g["CapScope"],
|
|
|
|
|
seq(g["BeginCap"], g["Expression"], g["EndCap"]), g["BackRef"],
|
|
|
|
|
g["LiteralI"], g["Dictionary"], g["Literal"], g["NegatedClassI"],
|
|
|
|
|
g["NegatedClass"], g["ClassI"], g["Class"], g["DOT"]);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
|
|
|
|
|
g["Identifier"] <= seq(g["IdentCont"], g["Spacing"]);
|
|
|
|
|
g["IdentCont"] <= seq(g["IdentStart"], zom(g["IdentRest"]));
|
|
|
|
|
|
|
|
|
|
const static std::vector<std::pair<char32_t, char32_t>> range = {
|
|
|
|
|
{0x0080, 0xFFFF}};
|
2021-02-04 15:45:18 +00:00
|
|
|
|
g["IdentStart"] <= seq(npd(lit(u8(u8"↑"))), npd(lit(u8(u8"⇑"))),
|
|
|
|
|
cho(cls("a-zA-Z_%"), cls(range)));
|
2020-02-05 19:10:00 +00:00
|
|
|
|
|
|
|
|
|
g["IdentRest"] <= cho(g["IdentStart"], cls("0-9"));
|
|
|
|
|
|
2020-02-11 21:50:26 +00:00
|
|
|
|
g["Dictionary"] <= seq(g["LiteralD"], oom(seq(g["PIPE"], g["LiteralD"])));
|
|
|
|
|
|
|
|
|
|
auto lit_ope = cho(seq(cls("'"), tok(zom(seq(npd(cls("'")), g["Char"]))),
|
|
|
|
|
cls("'"), g["Spacing"]),
|
|
|
|
|
seq(cls("\""), tok(zom(seq(npd(cls("\"")), g["Char"]))),
|
|
|
|
|
cls("\""), g["Spacing"]));
|
|
|
|
|
g["Literal"] <= lit_ope;
|
|
|
|
|
g["LiteralD"] <= lit_ope;
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
g["LiteralI"] <=
|
|
|
|
|
cho(seq(cls("'"), tok(zom(seq(npd(cls("'")), g["Char"]))), lit("'i"),
|
|
|
|
|
g["Spacing"]),
|
|
|
|
|
seq(cls("\""), tok(zom(seq(npd(cls("\"")), g["Char"]))), lit("\"i"),
|
|
|
|
|
g["Spacing"]));
|
|
|
|
|
|
|
|
|
|
// NOTE: The original Brian Ford's paper uses 'zom' instead of 'oom'.
|
|
|
|
|
g["Class"] <= seq(chr('['), npd(chr('^')),
|
|
|
|
|
tok(oom(seq(npd(chr(']')), g["Range"]))), chr(']'),
|
|
|
|
|
g["Spacing"]);
|
2022-06-25 20:05:23 +00:00
|
|
|
|
g["ClassI"] <= seq(chr('['), npd(chr('^')),
|
|
|
|
|
tok(oom(seq(npd(chr(']')), g["Range"]))), lit("]i"),
|
|
|
|
|
g["Spacing"]);
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
g["NegatedClass"] <= seq(lit("[^"),
|
|
|
|
|
tok(oom(seq(npd(chr(']')), g["Range"]))), chr(']'),
|
|
|
|
|
g["Spacing"]);
|
2022-06-25 20:05:23 +00:00
|
|
|
|
g["NegatedClassI"] <= seq(lit("[^"),
|
|
|
|
|
tok(oom(seq(npd(chr(']')), g["Range"]))),
|
|
|
|
|
lit("]i"), g["Spacing"]);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
|
2022-05-05 03:26:36 +00:00
|
|
|
|
// NOTE: This is different from The original Brian Ford's paper, and this
|
|
|
|
|
// modification allows us to specify `[+-]` as a valid char class.
|
2022-05-28 01:50:27 +00:00
|
|
|
|
g["Range"] <=
|
|
|
|
|
cho(seq(g["Char"], chr('-'), npd(chr(']')), g["Char"]), g["Char"]);
|
2022-05-05 03:26:36 +00:00
|
|
|
|
|
2021-01-15 22:26:29 +00:00
|
|
|
|
g["Char"] <=
|
2022-05-06 19:23:29 +00:00
|
|
|
|
cho(seq(chr('\\'), cls("fnrtv'\"[]\\^")),
|
2021-01-15 22:26:29 +00:00
|
|
|
|
seq(chr('\\'), cls("0-3"), cls("0-7"), cls("0-7")),
|
|
|
|
|
seq(chr('\\'), cls("0-7"), opt(cls("0-7"))),
|
|
|
|
|
seq(lit("\\x"), cls("0-9a-fA-F"), opt(cls("0-9a-fA-F"))),
|
|
|
|
|
seq(lit("\\u"),
|
|
|
|
|
cho(seq(cho(seq(chr('0'), cls("0-9a-fA-F")), lit("10")),
|
|
|
|
|
rep(cls("0-9a-fA-F"), 4, 4)),
|
|
|
|
|
rep(cls("0-9a-fA-F"), 4, 5))),
|
|
|
|
|
seq(npd(chr('\\')), dot()));
|
2020-02-05 19:10:00 +00:00
|
|
|
|
|
2020-03-28 22:38:01 +00:00
|
|
|
|
g["Repetition"] <=
|
|
|
|
|
seq(g["BeginBlacket"], g["RepetitionRange"], g["EndBlacket"]);
|
|
|
|
|
g["RepetitionRange"] <= cho(seq(g["Number"], g["COMMA"], g["Number"]),
|
|
|
|
|
seq(g["Number"], g["COMMA"]), g["Number"],
|
|
|
|
|
seq(g["COMMA"], g["Number"]));
|
|
|
|
|
g["Number"] <= seq(oom(cls("0-9")), g["Spacing"]);
|
|
|
|
|
|
2022-06-02 19:42:03 +00:00
|
|
|
|
g["CapScope"] <= seq(g["BeginCapScope"], g["Expression"], g["EndCapScope"]);
|
|
|
|
|
|
2021-01-27 18:03:13 +00:00
|
|
|
|
g["LEFTARROW"] <= seq(cho(lit("<-"), lit(u8(u8"←"))), g["Spacing"]);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
~g["SLASH"] <= seq(chr('/'), g["Spacing"]);
|
2020-02-11 21:50:26 +00:00
|
|
|
|
~g["PIPE"] <= seq(chr('|'), g["Spacing"]);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
g["AND"] <= seq(chr('&'), g["Spacing"]);
|
|
|
|
|
g["NOT"] <= seq(chr('!'), g["Spacing"]);
|
|
|
|
|
g["QUESTION"] <= seq(chr('?'), g["Spacing"]);
|
|
|
|
|
g["STAR"] <= seq(chr('*'), g["Spacing"]);
|
|
|
|
|
g["PLUS"] <= seq(chr('+'), g["Spacing"]);
|
|
|
|
|
~g["OPEN"] <= seq(chr('('), g["Spacing"]);
|
|
|
|
|
~g["CLOSE"] <= seq(chr(')'), g["Spacing"]);
|
|
|
|
|
g["DOT"] <= seq(chr('.'), g["Spacing"]);
|
|
|
|
|
|
2021-01-27 18:03:13 +00:00
|
|
|
|
g["CUT"] <= seq(lit(u8(u8"↑")), g["Spacing"]);
|
|
|
|
|
~g["LABEL"] <= seq(cho(chr('^'), lit(u8(u8"⇑"))), g["Spacing"]);
|
2021-01-26 03:46:28 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
~g["Spacing"] <= zom(cho(g["Space"], g["Comment"]));
|
|
|
|
|
g["Comment"] <=
|
|
|
|
|
seq(chr('#'), zom(seq(npd(g["EndOfLine"]), dot())), g["EndOfLine"]);
|
|
|
|
|
g["Space"] <= cho(chr(' '), chr('\t'), g["EndOfLine"]);
|
|
|
|
|
g["EndOfLine"] <= cho(lit("\r\n"), chr('\n'), chr('\r'));
|
|
|
|
|
g["EndOfFile"] <= npd(dot());
|
|
|
|
|
|
|
|
|
|
~g["BeginTok"] <= seq(chr('<'), g["Spacing"]);
|
|
|
|
|
~g["EndTok"] <= seq(chr('>'), g["Spacing"]);
|
|
|
|
|
|
|
|
|
|
~g["BeginCapScope"] <= seq(chr('$'), chr('('), g["Spacing"]);
|
|
|
|
|
~g["EndCapScope"] <= seq(chr(')'), g["Spacing"]);
|
|
|
|
|
|
|
|
|
|
g["BeginCap"] <= seq(chr('$'), tok(g["IdentCont"]), chr('<'), g["Spacing"]);
|
|
|
|
|
~g["EndCap"] <= seq(chr('>'), g["Spacing"]);
|
|
|
|
|
|
|
|
|
|
g["BackRef"] <= seq(chr('$'), tok(g["IdentCont"]), g["Spacing"]);
|
|
|
|
|
|
|
|
|
|
g["IGNORE"] <= chr('~');
|
|
|
|
|
|
|
|
|
|
g["Ignore"] <= opt(g["IGNORE"]);
|
|
|
|
|
g["Parameters"] <= seq(g["OPEN"], g["Identifier"],
|
|
|
|
|
zom(seq(g["COMMA"], g["Identifier"])), g["CLOSE"]);
|
|
|
|
|
g["Arguments"] <= seq(g["OPEN"], g["Expression"],
|
|
|
|
|
zom(seq(g["COMMA"], g["Expression"])), g["CLOSE"]);
|
|
|
|
|
~g["COMMA"] <= seq(chr(','), g["Spacing"]);
|
|
|
|
|
|
2020-02-05 21:03:02 +00:00
|
|
|
|
// Instruction grammars
|
2022-04-02 12:10:39 +00:00
|
|
|
|
g["Instruction"] <=
|
|
|
|
|
seq(g["BeginBlacket"],
|
|
|
|
|
opt(seq(g["InstructionItem"], zom(seq(g["InstructionItemSeparator"],
|
|
|
|
|
g["InstructionItem"])))),
|
|
|
|
|
g["EndBlacket"]);
|
2022-09-01 23:49:32 +00:00
|
|
|
|
g["InstructionItem"] <=
|
|
|
|
|
cho(g["PrecedenceClimbing"], g["ErrorMessage"], g["NoAstOpt"]);
|
2022-04-02 12:10:39 +00:00
|
|
|
|
~g["InstructionItemSeparator"] <= seq(chr(';'), g["Spacing"]);
|
2020-02-05 21:03:02 +00:00
|
|
|
|
|
|
|
|
|
~g["SpacesZom"] <= zom(g["Space"]);
|
|
|
|
|
~g["SpacesOom"] <= oom(g["Space"]);
|
|
|
|
|
~g["BeginBlacket"] <= seq(chr('{'), g["Spacing"]);
|
|
|
|
|
~g["EndBlacket"] <= seq(chr('}'), g["Spacing"]);
|
|
|
|
|
|
|
|
|
|
// PrecedenceClimbing instruction
|
|
|
|
|
g["PrecedenceClimbing"] <=
|
2021-01-16 00:27:31 +00:00
|
|
|
|
seq(lit("precedence"), g["SpacesOom"], g["PrecedenceInfo"],
|
2020-02-05 21:03:02 +00:00
|
|
|
|
zom(seq(g["SpacesOom"], g["PrecedenceInfo"])), g["SpacesZom"]);
|
|
|
|
|
g["PrecedenceInfo"] <=
|
|
|
|
|
seq(g["PrecedenceAssoc"],
|
|
|
|
|
oom(seq(ign(g["SpacesOom"]), g["PrecedenceOpe"])));
|
|
|
|
|
g["PrecedenceOpe"] <=
|
2021-03-05 00:31:31 +00:00
|
|
|
|
cho(seq(cls("'"),
|
|
|
|
|
tok(zom(seq(npd(cho(g["Space"], cls("'"))), g["Char"]))),
|
|
|
|
|
cls("'")),
|
|
|
|
|
seq(cls("\""),
|
|
|
|
|
tok(zom(seq(npd(cho(g["Space"], cls("\""))), g["Char"]))),
|
|
|
|
|
cls("\"")),
|
|
|
|
|
tok(oom(seq(npd(cho(g["PrecedenceAssoc"], g["Space"], chr('}'))),
|
|
|
|
|
dot()))));
|
2020-02-05 21:03:02 +00:00
|
|
|
|
g["PrecedenceAssoc"] <= cls("LR");
|
|
|
|
|
|
2021-01-16 00:27:31 +00:00
|
|
|
|
// Error message instruction
|
2022-09-01 23:59:46 +00:00
|
|
|
|
g["ErrorMessage"] <= seq(lit("error_message"), g["SpacesOom"],
|
|
|
|
|
g["LiteralD"], g["SpacesZom"]);
|
2021-01-16 00:27:31 +00:00
|
|
|
|
|
2021-01-22 01:56:05 +00:00
|
|
|
|
// No Ast node optimazation instruction
|
|
|
|
|
g["NoAstOpt"] <= seq(lit("no_ast_opt"), g["SpacesZom"]);
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
// Set definition names
|
|
|
|
|
for (auto &x : g) {
|
|
|
|
|
x.second.name = x.first;
|
2015-02-14 15:13:10 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void setup_actions() {
|
2020-10-02 01:26:04 +00:00
|
|
|
|
g["Definition"] = [&](const SemanticValues &vs, std::any &dt) {
|
2021-01-16 01:18:19 +00:00
|
|
|
|
auto &data = *std::any_cast<Data *>(dt);
|
2020-02-05 21:03:02 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
auto is_macro = vs.choice() == 0;
|
|
|
|
|
auto ignore = std::any_cast<bool>(vs[0]);
|
|
|
|
|
auto name = std::any_cast<std::string>(vs[1]);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
|
|
|
|
|
std::vector<std::string> params;
|
|
|
|
|
std::shared_ptr<Ope> ope;
|
2022-04-02 12:10:39 +00:00
|
|
|
|
auto has_instructions = false;
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
if (is_macro) {
|
2020-10-02 01:26:04 +00:00
|
|
|
|
params = std::any_cast<std::vector<std::string>>(vs[2]);
|
|
|
|
|
ope = std::any_cast<std::shared_ptr<Ope>>(vs[4]);
|
2022-05-28 01:50:27 +00:00
|
|
|
|
if (vs.size() == 6) { has_instructions = true; }
|
2020-02-05 19:10:00 +00:00
|
|
|
|
} else {
|
2020-10-02 01:26:04 +00:00
|
|
|
|
ope = std::any_cast<std::shared_ptr<Ope>>(vs[3]);
|
2022-05-28 01:50:27 +00:00
|
|
|
|
if (vs.size() == 5) { has_instructions = true; }
|
2022-04-02 12:10:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (has_instructions) {
|
|
|
|
|
auto index = is_macro ? 5 : 4;
|
2022-07-02 02:15:21 +00:00
|
|
|
|
std::unordered_set<std::string> types;
|
2022-04-02 12:10:39 +00:00
|
|
|
|
for (const auto &instruction :
|
|
|
|
|
std::any_cast<std::vector<Instruction>>(vs[index])) {
|
|
|
|
|
const auto &type = instruction.type;
|
|
|
|
|
if (types.find(type) == types.end()) {
|
|
|
|
|
data.instructions[name].push_back(instruction);
|
|
|
|
|
types.insert(instruction.type);
|
2022-07-02 02:15:21 +00:00
|
|
|
|
if (type == "declare_symbol" || type == "check_symbol") {
|
|
|
|
|
if (!TokenChecker::is_token(*ope)) { ope = tok(ope); }
|
|
|
|
|
}
|
2022-04-02 12:10:39 +00:00
|
|
|
|
} else {
|
2022-05-28 01:50:27 +00:00
|
|
|
|
data.duplicates_of_instruction.emplace_back(type,
|
|
|
|
|
instruction.sv.data());
|
2022-04-02 12:10:39 +00:00
|
|
|
|
}
|
2020-02-05 21:03:02 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
auto &grammar = *data.grammar;
|
|
|
|
|
if (!grammar.count(name)) {
|
|
|
|
|
auto &rule = grammar[name];
|
|
|
|
|
rule <= ope;
|
|
|
|
|
rule.name = name;
|
2020-10-02 01:26:04 +00:00
|
|
|
|
rule.s_ = vs.sv().data();
|
2022-07-05 23:34:08 +00:00
|
|
|
|
rule.line_ = line_info(vs.ss, rule.s_);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
rule.ignoreSemanticValue = ignore;
|
|
|
|
|
rule.is_macro = is_macro;
|
|
|
|
|
rule.params = params;
|
2015-02-15 22:52:39 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
if (data.start.empty()) {
|
2022-07-05 23:34:08 +00:00
|
|
|
|
data.start = rule.name;
|
|
|
|
|
data.start_pos = rule.s_;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
} else {
|
2022-04-02 12:10:39 +00:00
|
|
|
|
data.duplicates_of_definition.emplace_back(name, vs.sv().data());
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2015-02-15 00:02:54 +00:00
|
|
|
|
};
|
|
|
|
|
|
2022-09-03 03:47:55 +00:00
|
|
|
|
g["Definition"].enter = [](const Context & /*c*/, const char * /*s*/,
|
|
|
|
|
size_t /*n*/, std::any &dt) {
|
2021-03-17 13:33:40 +00:00
|
|
|
|
auto &data = *std::any_cast<Data *>(dt);
|
2022-06-02 19:42:03 +00:00
|
|
|
|
data.captures_in_current_definition.clear();
|
2021-03-17 13:33:40 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
g["Expression"] = [&](const SemanticValues &vs) {
|
|
|
|
|
if (vs.size() == 1) {
|
|
|
|
|
return std::any_cast<std::shared_ptr<Ope>>(vs[0]);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
} else {
|
|
|
|
|
std::vector<std::shared_ptr<Ope>> opes;
|
2020-10-02 01:26:04 +00:00
|
|
|
|
for (auto i = 0u; i < vs.size(); i++) {
|
|
|
|
|
opes.emplace_back(std::any_cast<std::shared_ptr<Ope>>(vs[i]));
|
2015-02-14 15:13:10 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
const std::shared_ptr<Ope> ope =
|
|
|
|
|
std::make_shared<PrioritizedChoice>(opes);
|
|
|
|
|
return ope;
|
|
|
|
|
}
|
|
|
|
|
};
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
g["Sequence"] = [&](const SemanticValues &vs) {
|
2021-01-09 20:10:42 +00:00
|
|
|
|
if (vs.empty()) {
|
2021-01-15 05:05:22 +00:00
|
|
|
|
return npd(lit(""));
|
2021-01-09 20:10:42 +00:00
|
|
|
|
} else if (vs.size() == 1) {
|
2020-10-02 01:26:04 +00:00
|
|
|
|
return std::any_cast<std::shared_ptr<Ope>>(vs[0]);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
} else {
|
|
|
|
|
std::vector<std::shared_ptr<Ope>> opes;
|
2020-10-02 01:26:04 +00:00
|
|
|
|
for (const auto &x : vs) {
|
|
|
|
|
opes.emplace_back(std::any_cast<std::shared_ptr<Ope>>(x));
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
const std::shared_ptr<Ope> ope = std::make_shared<Sequence>(opes);
|
|
|
|
|
return ope;
|
|
|
|
|
}
|
|
|
|
|
};
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
g["Prefix"] = [&](const SemanticValues &vs) {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
std::shared_ptr<Ope> ope;
|
2020-10-02 01:26:04 +00:00
|
|
|
|
if (vs.size() == 1) {
|
|
|
|
|
ope = std::any_cast<std::shared_ptr<Ope>>(vs[0]);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
} else {
|
2020-10-02 01:26:04 +00:00
|
|
|
|
assert(vs.size() == 2);
|
|
|
|
|
auto tok = std::any_cast<char>(vs[0]);
|
|
|
|
|
ope = std::any_cast<std::shared_ptr<Ope>>(vs[1]);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
if (tok == '&') {
|
|
|
|
|
ope = apd(ope);
|
|
|
|
|
} else { // '!'
|
|
|
|
|
ope = npd(ope);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return ope;
|
|
|
|
|
};
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2021-01-16 01:18:19 +00:00
|
|
|
|
g["SuffixWithLabel"] = [&](const SemanticValues &vs, std::any &dt) {
|
|
|
|
|
auto ope = std::any_cast<std::shared_ptr<Ope>>(vs[0]);
|
|
|
|
|
if (vs.size() == 1) {
|
|
|
|
|
return ope;
|
|
|
|
|
} else {
|
|
|
|
|
assert(vs.size() == 2);
|
|
|
|
|
auto &data = *std::any_cast<Data *>(dt);
|
|
|
|
|
const auto &ident = std::any_cast<std::string>(vs[1]);
|
|
|
|
|
auto label = ref(*data.grammar, ident, vs.sv().data(), false, {});
|
2021-01-16 04:37:27 +00:00
|
|
|
|
auto recovery = rec(ref(*data.grammar, RECOVER_DEFINITION_NAME,
|
|
|
|
|
vs.sv().data(), true, {label}));
|
2021-01-26 03:46:28 +00:00
|
|
|
|
return cho4label_(ope, recovery);
|
2021-01-16 01:18:19 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2020-03-28 22:38:01 +00:00
|
|
|
|
struct Loop {
|
|
|
|
|
enum class Type { opt = 0, zom, oom, rep };
|
|
|
|
|
Type type;
|
|
|
|
|
std::pair<size_t, size_t> range;
|
|
|
|
|
};
|
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
g["Suffix"] = [&](const SemanticValues &vs) {
|
|
|
|
|
auto ope = std::any_cast<std::shared_ptr<Ope>>(vs[0]);
|
|
|
|
|
if (vs.size() == 1) {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
return ope;
|
|
|
|
|
} else {
|
2020-10-02 01:26:04 +00:00
|
|
|
|
assert(vs.size() == 2);
|
|
|
|
|
auto loop = std::any_cast<Loop>(vs[1]);
|
2020-03-28 22:38:01 +00:00
|
|
|
|
switch (loop.type) {
|
|
|
|
|
case Loop::Type::opt: return opt(ope);
|
|
|
|
|
case Loop::Type::zom: return zom(ope);
|
|
|
|
|
case Loop::Type::oom: return oom(ope);
|
2020-04-19 01:12:55 +00:00
|
|
|
|
default: // Regex-like repetition
|
2020-03-28 22:38:01 +00:00
|
|
|
|
return rep(ope, loop.range.first, loop.range.second);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
g["Loop"] = [&](const SemanticValues &vs) {
|
|
|
|
|
switch (vs.choice()) {
|
2020-03-28 22:38:01 +00:00
|
|
|
|
case 0: // Option
|
|
|
|
|
return Loop{Loop::Type::opt, std::pair<size_t, size_t>()};
|
|
|
|
|
case 1: // Zero or More
|
|
|
|
|
return Loop{Loop::Type::zom, std::pair<size_t, size_t>()};
|
|
|
|
|
case 2: // One or More
|
|
|
|
|
return Loop{Loop::Type::oom, std::pair<size_t, size_t>()};
|
|
|
|
|
default: // Regex-like repetition
|
|
|
|
|
return Loop{Loop::Type::rep,
|
2020-10-02 01:26:04 +00:00
|
|
|
|
std::any_cast<std::pair<size_t, size_t>>(vs[0])};
|
2020-03-28 22:38:01 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
g["Primary"] = [&](const SemanticValues &vs, std::any &dt) {
|
2021-01-16 01:18:19 +00:00
|
|
|
|
auto &data = *std::any_cast<Data *>(dt);
|
2015-02-12 04:57:00 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
switch (vs.choice()) {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
case 0: // Macro Reference
|
|
|
|
|
case 1: { // Reference
|
2020-10-02 01:26:04 +00:00
|
|
|
|
auto is_macro = vs.choice() == 0;
|
|
|
|
|
auto ignore = std::any_cast<bool>(vs[0]);
|
|
|
|
|
const auto &ident = std::any_cast<std::string>(vs[1]);
|
2015-02-14 03:41:17 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
std::vector<std::shared_ptr<Ope>> args;
|
|
|
|
|
if (is_macro) {
|
2020-10-02 01:26:04 +00:00
|
|
|
|
args = std::any_cast<std::vector<std::shared_ptr<Ope>>>(vs[2]);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2015-02-15 00:02:54 +00:00
|
|
|
|
|
2021-01-13 15:11:06 +00:00
|
|
|
|
auto ope = ref(*data.grammar, ident, vs.sv().data(), is_macro, args);
|
2021-01-15 22:26:29 +00:00
|
|
|
|
if (ident == RECOVER_DEFINITION_NAME) { ope = rec(ope); }
|
2020-02-05 21:03:02 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
if (ignore) {
|
2020-02-05 21:03:02 +00:00
|
|
|
|
return ign(ope);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
} else {
|
2020-02-05 21:03:02 +00:00
|
|
|
|
return ope;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
case 2: { // (Expression)
|
2020-10-02 01:26:04 +00:00
|
|
|
|
return std::any_cast<std::shared_ptr<Ope>>(vs[0]);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
case 3: { // TokenBoundary
|
2020-10-02 01:26:04 +00:00
|
|
|
|
return tok(std::any_cast<std::shared_ptr<Ope>>(vs[0]));
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
case 4: { // CaptureScope
|
2020-10-02 01:26:04 +00:00
|
|
|
|
return csc(std::any_cast<std::shared_ptr<Ope>>(vs[0]));
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
case 5: { // Capture
|
2020-10-02 01:26:04 +00:00
|
|
|
|
const auto &name = std::any_cast<std::string_view>(vs[0]);
|
|
|
|
|
auto ope = std::any_cast<std::shared_ptr<Ope>>(vs[1]);
|
2021-03-17 13:33:40 +00:00
|
|
|
|
|
2022-06-02 19:42:03 +00:00
|
|
|
|
data.captures_stack.back().insert(name);
|
|
|
|
|
data.captures_in_current_definition.insert(name);
|
2021-03-17 13:33:40 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
return cap(ope, [name](const char *a_s, size_t a_n, Context &c) {
|
|
|
|
|
auto &cs = c.capture_scope_stack[c.capture_scope_stack_size - 1];
|
|
|
|
|
cs[name] = std::string(a_s, a_n);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
default: {
|
2020-10-02 01:26:04 +00:00
|
|
|
|
return std::any_cast<std::shared_ptr<Ope>>(vs[0]);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
2018-09-16 16:54:36 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
g["IdentCont"] = [](const SemanticValues &vs) {
|
|
|
|
|
return std::string(vs.sv().data(), vs.sv().length());
|
2020-02-05 19:10:00 +00:00
|
|
|
|
};
|
2019-08-27 16:07:35 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
g["Dictionary"] = [](const SemanticValues &vs) {
|
|
|
|
|
auto items = vs.transform<std::string>();
|
2020-02-11 21:50:26 +00:00
|
|
|
|
return dic(items);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
};
|
2020-02-11 21:50:26 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
g["Literal"] = [](const SemanticValues &vs) {
|
|
|
|
|
const auto &tok = vs.tokens.front();
|
|
|
|
|
return lit(resolve_escape_sequence(tok.data(), tok.size()));
|
2020-02-05 19:10:00 +00:00
|
|
|
|
};
|
2020-10-02 01:26:04 +00:00
|
|
|
|
g["LiteralI"] = [](const SemanticValues &vs) {
|
|
|
|
|
const auto &tok = vs.tokens.front();
|
|
|
|
|
return liti(resolve_escape_sequence(tok.data(), tok.size()));
|
2020-02-11 21:50:26 +00:00
|
|
|
|
};
|
2020-10-02 01:26:04 +00:00
|
|
|
|
g["LiteralD"] = [](const SemanticValues &vs) {
|
|
|
|
|
auto &tok = vs.tokens.front();
|
|
|
|
|
return resolve_escape_sequence(tok.data(), tok.size());
|
2020-02-11 21:50:26 +00:00
|
|
|
|
};
|
2015-02-14 03:41:17 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
g["Class"] = [](const SemanticValues &vs) {
|
|
|
|
|
auto ranges = vs.transform<std::pair<char32_t, char32_t>>();
|
2020-02-05 19:10:00 +00:00
|
|
|
|
return cls(ranges);
|
|
|
|
|
};
|
2022-06-25 20:05:23 +00:00
|
|
|
|
g["ClassI"] = [](const SemanticValues &vs) {
|
|
|
|
|
auto ranges = vs.transform<std::pair<char32_t, char32_t>>();
|
|
|
|
|
return cls(ranges, true);
|
|
|
|
|
};
|
2020-10-02 01:26:04 +00:00
|
|
|
|
g["NegatedClass"] = [](const SemanticValues &vs) {
|
|
|
|
|
auto ranges = vs.transform<std::pair<char32_t, char32_t>>();
|
2020-02-05 19:10:00 +00:00
|
|
|
|
return ncls(ranges);
|
|
|
|
|
};
|
2022-06-25 20:05:23 +00:00
|
|
|
|
g["NegatedClassI"] = [](const SemanticValues &vs) {
|
|
|
|
|
auto ranges = vs.transform<std::pair<char32_t, char32_t>>();
|
|
|
|
|
return ncls(ranges, true);
|
|
|
|
|
};
|
2020-10-02 01:26:04 +00:00
|
|
|
|
g["Range"] = [](const SemanticValues &vs) {
|
|
|
|
|
switch (vs.choice()) {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
case 0: {
|
2020-10-02 01:26:04 +00:00
|
|
|
|
auto s1 = std::any_cast<std::string>(vs[0]);
|
|
|
|
|
auto s2 = std::any_cast<std::string>(vs[1]);
|
|
|
|
|
auto cp1 = decode_codepoint(s1.data(), s1.length());
|
|
|
|
|
auto cp2 = decode_codepoint(s2.data(), s2.length());
|
|
|
|
|
return std::pair(cp1, cp2);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
case 1: {
|
2020-10-02 01:26:04 +00:00
|
|
|
|
auto s = std::any_cast<std::string>(vs[0]);
|
|
|
|
|
auto cp = decode_codepoint(s.data(), s.length());
|
|
|
|
|
return std::pair(cp, cp);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2020-10-02 01:26:04 +00:00
|
|
|
|
return std::pair<char32_t, char32_t>(0, 0);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
};
|
2020-10-02 01:26:04 +00:00
|
|
|
|
g["Char"] = [](const SemanticValues &vs) {
|
|
|
|
|
return resolve_escape_sequence(vs.sv().data(), vs.sv().length());
|
2020-02-05 19:10:00 +00:00
|
|
|
|
};
|
2015-05-19 13:07:03 +00:00
|
|
|
|
|
2022-06-02 19:42:03 +00:00
|
|
|
|
g["RepetitionRange"] = [&](const SemanticValues &vs) {
|
|
|
|
|
switch (vs.choice()) {
|
|
|
|
|
case 0: { // Number COMMA Number
|
|
|
|
|
auto min = std::any_cast<size_t>(vs[0]);
|
|
|
|
|
auto max = std::any_cast<size_t>(vs[1]);
|
|
|
|
|
return std::pair(min, max);
|
|
|
|
|
}
|
|
|
|
|
case 1: // Number COMMA
|
|
|
|
|
return std::pair(std::any_cast<size_t>(vs[0]),
|
|
|
|
|
std::numeric_limits<size_t>::max());
|
|
|
|
|
case 2: { // Number
|
|
|
|
|
auto n = std::any_cast<size_t>(vs[0]);
|
|
|
|
|
return std::pair(n, n);
|
|
|
|
|
}
|
|
|
|
|
default: // COMMA Number
|
|
|
|
|
return std::pair(std::numeric_limits<size_t>::min(),
|
|
|
|
|
std::any_cast<size_t>(vs[0]));
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
g["Number"] = [&](const SemanticValues &vs) {
|
|
|
|
|
return vs.token_to_number<size_t>();
|
|
|
|
|
};
|
|
|
|
|
|
2022-09-03 03:47:55 +00:00
|
|
|
|
g["CapScope"].enter = [](const Context & /*c*/, const char * /*s*/,
|
|
|
|
|
size_t /*n*/, std::any &dt) {
|
2022-06-02 19:42:03 +00:00
|
|
|
|
auto &data = *std::any_cast<Data *>(dt);
|
|
|
|
|
data.captures_stack.emplace_back();
|
|
|
|
|
};
|
2022-09-03 03:47:55 +00:00
|
|
|
|
g["CapScope"].leave = [](const Context & /*c*/, const char * /*s*/,
|
|
|
|
|
size_t /*n*/, size_t /*matchlen*/,
|
|
|
|
|
std::any & /*value*/, std::any &dt) {
|
2022-06-02 19:42:03 +00:00
|
|
|
|
auto &data = *std::any_cast<Data *>(dt);
|
|
|
|
|
data.captures_stack.pop_back();
|
|
|
|
|
};
|
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
g["AND"] = [](const SemanticValues &vs) { return *vs.sv().data(); };
|
|
|
|
|
g["NOT"] = [](const SemanticValues &vs) { return *vs.sv().data(); };
|
|
|
|
|
g["QUESTION"] = [](const SemanticValues &vs) { return *vs.sv().data(); };
|
|
|
|
|
g["STAR"] = [](const SemanticValues &vs) { return *vs.sv().data(); };
|
|
|
|
|
g["PLUS"] = [](const SemanticValues &vs) { return *vs.sv().data(); };
|
2016-01-24 01:26:54 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
g["DOT"] = [](const SemanticValues & /*vs*/) { return dot(); };
|
2018-07-12 17:06:48 +00:00
|
|
|
|
|
2021-01-26 03:46:28 +00:00
|
|
|
|
g["CUT"] = [](const SemanticValues & /*vs*/) { return cut(); };
|
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
g["BeginCap"] = [](const SemanticValues &vs) { return vs.token(); };
|
2018-07-25 22:08:10 +00:00
|
|
|
|
|
2021-03-17 13:33:40 +00:00
|
|
|
|
g["BackRef"] = [&](const SemanticValues &vs, std::any &dt) {
|
|
|
|
|
auto &data = *std::any_cast<Data *>(dt);
|
2022-06-02 19:42:03 +00:00
|
|
|
|
|
|
|
|
|
// Undefined back reference check
|
|
|
|
|
{
|
|
|
|
|
auto found = false;
|
|
|
|
|
auto it = data.captures_stack.rbegin();
|
|
|
|
|
while (it != data.captures_stack.rend()) {
|
|
|
|
|
if (it->find(vs.token()) != it->end()) {
|
|
|
|
|
found = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
++it;
|
|
|
|
|
}
|
|
|
|
|
if (!found) {
|
|
|
|
|
auto ptr = vs.token().data() - 1; // include '$' symbol
|
|
|
|
|
data.undefined_back_references.emplace_back(vs.token(), ptr);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// NOTE: Disable packrat parsing if a back reference is not defined in
|
|
|
|
|
// captures in the current definition rule.
|
|
|
|
|
if (data.captures_in_current_definition.find(vs.token()) ==
|
|
|
|
|
data.captures_in_current_definition.end()) {
|
2021-03-17 13:33:40 +00:00
|
|
|
|
data.enablePackratParsing = false;
|
|
|
|
|
}
|
2022-06-02 19:42:03 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
return bkr(vs.token_to_string());
|
|
|
|
|
};
|
2018-07-25 22:08:10 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
g["Ignore"] = [](const SemanticValues &vs) { return vs.size() > 0; };
|
2018-07-25 22:08:10 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
g["Parameters"] = [](const SemanticValues &vs) {
|
|
|
|
|
return vs.transform<std::string>();
|
2020-02-05 19:10:00 +00:00
|
|
|
|
};
|
2015-02-14 03:41:17 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
g["Arguments"] = [](const SemanticValues &vs) {
|
|
|
|
|
return vs.transform<std::shared_ptr<Ope>>();
|
2020-02-05 19:10:00 +00:00
|
|
|
|
};
|
2020-02-05 21:03:02 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
g["PrecedenceClimbing"] = [](const SemanticValues &vs) {
|
2020-02-05 21:03:02 +00:00
|
|
|
|
PrecedenceClimbing::BinOpeInfo binOpeInfo;
|
|
|
|
|
size_t level = 1;
|
2020-10-02 01:26:04 +00:00
|
|
|
|
for (auto v : vs) {
|
|
|
|
|
auto tokens = std::any_cast<std::vector<std::string_view>>(v);
|
2020-02-05 21:03:02 +00:00
|
|
|
|
auto assoc = tokens[0][0];
|
|
|
|
|
for (size_t i = 1; i < tokens.size(); i++) {
|
2020-10-02 01:26:04 +00:00
|
|
|
|
binOpeInfo[tokens[i]] = std::pair(level, assoc);
|
2020-02-05 21:03:02 +00:00
|
|
|
|
}
|
|
|
|
|
level++;
|
|
|
|
|
}
|
|
|
|
|
Instruction instruction;
|
|
|
|
|
instruction.type = "precedence";
|
|
|
|
|
instruction.data = binOpeInfo;
|
2022-04-02 12:10:39 +00:00
|
|
|
|
instruction.sv = vs.sv();
|
2020-02-05 21:03:02 +00:00
|
|
|
|
return instruction;
|
|
|
|
|
};
|
2020-10-02 01:26:04 +00:00
|
|
|
|
g["PrecedenceInfo"] = [](const SemanticValues &vs) {
|
|
|
|
|
return vs.transform<std::string_view>();
|
2020-02-05 21:03:02 +00:00
|
|
|
|
};
|
2020-10-02 01:26:04 +00:00
|
|
|
|
g["PrecedenceOpe"] = [](const SemanticValues &vs) { return vs.token(); };
|
|
|
|
|
g["PrecedenceAssoc"] = [](const SemanticValues &vs) { return vs.token(); };
|
2021-01-16 00:27:31 +00:00
|
|
|
|
|
|
|
|
|
g["ErrorMessage"] = [](const SemanticValues &vs) {
|
|
|
|
|
Instruction instruction;
|
2022-09-01 23:59:46 +00:00
|
|
|
|
instruction.type = "error_message";
|
2021-01-16 00:27:31 +00:00
|
|
|
|
instruction.data = std::any_cast<std::string>(vs[0]);
|
2022-04-02 12:10:39 +00:00
|
|
|
|
instruction.sv = vs.sv();
|
2021-01-16 00:27:31 +00:00
|
|
|
|
return instruction;
|
|
|
|
|
};
|
2021-01-22 01:56:05 +00:00
|
|
|
|
|
2022-05-28 01:50:27 +00:00
|
|
|
|
g["NoAstOpt"] = [](const SemanticValues &vs) {
|
2021-01-22 01:56:05 +00:00
|
|
|
|
Instruction instruction;
|
|
|
|
|
instruction.type = "no_ast_opt";
|
2022-04-02 12:10:39 +00:00
|
|
|
|
instruction.sv = vs.sv();
|
2021-01-22 01:56:05 +00:00
|
|
|
|
return instruction;
|
|
|
|
|
};
|
2022-04-02 12:10:39 +00:00
|
|
|
|
|
|
|
|
|
g["Instruction"] = [](const SemanticValues &vs) {
|
|
|
|
|
return vs.transform<Instruction>();
|
|
|
|
|
};
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2015-02-14 13:52:52 +00:00
|
|
|
|
|
2020-02-07 20:50:06 +00:00
|
|
|
|
bool apply_precedence_instruction(Definition &rule,
|
|
|
|
|
const PrecedenceClimbing::BinOpeInfo &info,
|
2021-01-16 19:38:06 +00:00
|
|
|
|
const char *s, Log log) {
|
2020-02-07 20:50:06 +00:00
|
|
|
|
try {
|
|
|
|
|
auto &seq = dynamic_cast<Sequence &>(*rule.get_core_operator());
|
|
|
|
|
auto atom = seq.opes_[0];
|
2020-03-28 22:38:01 +00:00
|
|
|
|
auto &rep = dynamic_cast<Repetition &>(*seq.opes_[1]);
|
|
|
|
|
auto &seq1 = dynamic_cast<Sequence &>(*rep.ope_);
|
2020-02-07 20:50:06 +00:00
|
|
|
|
auto binop = seq1.opes_[0];
|
|
|
|
|
auto atom1 = seq1.opes_[1];
|
|
|
|
|
|
|
|
|
|
auto atom_name = dynamic_cast<Reference &>(*atom).name_;
|
|
|
|
|
auto binop_name = dynamic_cast<Reference &>(*binop).name_;
|
|
|
|
|
auto atom1_name = dynamic_cast<Reference &>(*atom1).name_;
|
|
|
|
|
|
2020-03-28 22:38:01 +00:00
|
|
|
|
if (!rep.is_zom() || atom_name != atom1_name || atom_name == binop_name) {
|
2020-02-07 20:50:06 +00:00
|
|
|
|
if (log) {
|
2020-02-25 16:34:19 +00:00
|
|
|
|
auto line = line_info(s, rule.s_);
|
2020-02-07 20:50:06 +00:00
|
|
|
|
log(line.first, line.second,
|
2021-01-13 15:11:06 +00:00
|
|
|
|
"'precedence' instruction cannot be applied to '" + rule.name +
|
2022-09-03 03:47:55 +00:00
|
|
|
|
"'.",
|
|
|
|
|
"");
|
2020-02-07 20:50:06 +00:00
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
rule.holder_->ope_ = pre(atom, binop, info, rule);
|
|
|
|
|
rule.disable_action = true;
|
|
|
|
|
} catch (...) {
|
|
|
|
|
if (log) {
|
2020-02-25 16:34:19 +00:00
|
|
|
|
auto line = line_info(s, rule.s_);
|
2020-02-07 20:50:06 +00:00
|
|
|
|
log(line.first, line.second,
|
2021-01-13 15:11:06 +00:00
|
|
|
|
"'precedence' instruction cannot be applied to '" + rule.name +
|
2022-09-03 03:47:55 +00:00
|
|
|
|
"'.",
|
|
|
|
|
"");
|
2020-02-07 20:50:06 +00:00
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
std::shared_ptr<Grammar> perform_core(const char *s, size_t n,
|
|
|
|
|
const Rules &rules, std::string &start,
|
2021-03-17 13:33:40 +00:00
|
|
|
|
bool &enablePackratParsing, Log log) {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
Data data;
|
2021-01-13 15:11:06 +00:00
|
|
|
|
auto &grammar = *data.grammar;
|
|
|
|
|
|
|
|
|
|
// Built-in macros
|
|
|
|
|
{
|
|
|
|
|
// `%recover`
|
|
|
|
|
{
|
|
|
|
|
auto &rule = grammar[RECOVER_DEFINITION_NAME];
|
|
|
|
|
rule <= ref(grammar, "x", "", false, {});
|
|
|
|
|
rule.name = RECOVER_DEFINITION_NAME;
|
|
|
|
|
rule.s_ = "[native]";
|
|
|
|
|
rule.ignoreSemanticValue = true;
|
|
|
|
|
rule.is_macro = true;
|
|
|
|
|
rule.params = {"x"};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
std::any dt = &data;
|
2021-01-16 19:38:06 +00:00
|
|
|
|
auto r = g["Grammar"].parse(s, n, dt, nullptr, log);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
|
|
|
|
|
if (!r.ret) {
|
|
|
|
|
if (log) {
|
2021-01-13 15:11:06 +00:00
|
|
|
|
if (r.error_info.message_pos) {
|
|
|
|
|
auto line = line_info(s, r.error_info.message_pos);
|
2022-09-03 03:47:55 +00:00
|
|
|
|
log(line.first, line.second, r.error_info.message,
|
|
|
|
|
r.error_info.label);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
} else {
|
2021-01-13 15:11:06 +00:00
|
|
|
|
auto line = line_info(s, r.error_info.error_pos);
|
2022-09-03 03:47:55 +00:00
|
|
|
|
log(line.first, line.second, "syntax error", r.error_info.label);
|
2018-09-14 02:08:51 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
2018-09-14 02:08:51 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
// User provided rules
|
2021-03-02 13:14:22 +00:00
|
|
|
|
for (auto [user_name, user_rule] : rules) {
|
|
|
|
|
auto name = user_name;
|
2020-10-02 01:26:04 +00:00
|
|
|
|
auto ignore = false;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
if (!name.empty() && name[0] == '~') {
|
|
|
|
|
ignore = true;
|
|
|
|
|
name.erase(0, 1);
|
|
|
|
|
}
|
|
|
|
|
if (!name.empty()) {
|
|
|
|
|
auto &rule = grammar[name];
|
2021-03-02 13:14:22 +00:00
|
|
|
|
rule <= user_rule;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
rule.name = name;
|
|
|
|
|
rule.ignoreSemanticValue = ignore;
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-06-13 04:57:45 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
// Check duplicated definitions
|
2022-04-02 12:10:39 +00:00
|
|
|
|
auto ret = true;
|
2015-02-14 13:52:52 +00:00
|
|
|
|
|
2022-04-02 12:10:39 +00:00
|
|
|
|
if (!data.duplicates_of_definition.empty()) {
|
|
|
|
|
for (const auto &[name, ptr] : data.duplicates_of_definition) {
|
|
|
|
|
if (log) {
|
|
|
|
|
auto line = line_info(s, ptr);
|
2022-05-28 01:50:27 +00:00
|
|
|
|
log(line.first, line.second,
|
2022-09-03 03:47:55 +00:00
|
|
|
|
"The definition '" + name + "' is already defined.", "");
|
2022-04-02 12:10:39 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2022-04-02 12:10:39 +00:00
|
|
|
|
ret = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Check duplicated instructions
|
|
|
|
|
if (!data.duplicates_of_instruction.empty()) {
|
|
|
|
|
for (const auto &[type, ptr] : data.duplicates_of_instruction) {
|
|
|
|
|
if (log) {
|
|
|
|
|
auto line = line_info(s, ptr);
|
2022-05-28 01:50:27 +00:00
|
|
|
|
log(line.first, line.second,
|
2022-09-03 03:47:55 +00:00
|
|
|
|
"The instruction '" + type + "' is already defined.", "");
|
2022-04-02 12:10:39 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
ret = false;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2015-06-13 04:38:38 +00:00
|
|
|
|
|
2022-06-02 19:42:03 +00:00
|
|
|
|
// Check undefined back references
|
|
|
|
|
if (!data.undefined_back_references.empty()) {
|
|
|
|
|
for (const auto &[name, ptr] : data.undefined_back_references) {
|
|
|
|
|
if (log) {
|
|
|
|
|
auto line = line_info(s, ptr);
|
|
|
|
|
log(line.first, line.second,
|
2022-09-03 03:47:55 +00:00
|
|
|
|
"The back reference '" + name + "' is undefined.", "");
|
2022-06-02 19:42:03 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
ret = false;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-02 13:14:22 +00:00
|
|
|
|
// Set root definition
|
|
|
|
|
auto &start_rule = grammar[data.start];
|
|
|
|
|
|
2020-08-07 14:21:47 +00:00
|
|
|
|
// Check if the start rule has ignore operator
|
|
|
|
|
{
|
2021-03-02 13:14:22 +00:00
|
|
|
|
if (start_rule.ignoreSemanticValue) {
|
2020-08-07 14:21:47 +00:00
|
|
|
|
if (log) {
|
2021-03-02 13:14:22 +00:00
|
|
|
|
auto line = line_info(s, start_rule.s_);
|
2020-08-07 14:21:47 +00:00
|
|
|
|
log(line.first, line.second,
|
2022-09-03 03:47:55 +00:00
|
|
|
|
"Ignore operator cannot be applied to '" + start_rule.name + "'.",
|
|
|
|
|
"");
|
2020-08-07 14:21:47 +00:00
|
|
|
|
}
|
|
|
|
|
ret = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!ret) { return nullptr; }
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
// Check missing definitions
|
2021-03-02 13:14:22 +00:00
|
|
|
|
auto referenced = std::unordered_set<std::string>{
|
|
|
|
|
WHITESPACE_DEFINITION_NAME,
|
|
|
|
|
WORD_DEFINITION_NAME,
|
|
|
|
|
RECOVER_DEFINITION_NAME,
|
|
|
|
|
start_rule.name,
|
|
|
|
|
};
|
2018-07-25 22:08:10 +00:00
|
|
|
|
|
2021-03-02 13:14:22 +00:00
|
|
|
|
for (auto &[_, rule] : grammar) {
|
2021-01-18 22:50:45 +00:00
|
|
|
|
ReferenceChecker vis(grammar, rule.params);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
rule.accept(vis);
|
2021-03-02 13:14:22 +00:00
|
|
|
|
referenced.insert(vis.referenced.begin(), vis.referenced.end());
|
|
|
|
|
for (const auto &[name, ptr] : vis.error_s) {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
if (log) {
|
|
|
|
|
auto line = line_info(s, ptr);
|
2022-09-03 03:47:55 +00:00
|
|
|
|
log(line.first, line.second, vis.error_message[name], "");
|
2015-06-13 04:38:38 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
ret = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-06-13 04:38:38 +00:00
|
|
|
|
|
2021-03-02 13:14:22 +00:00
|
|
|
|
for (auto &[name, rule] : grammar) {
|
|
|
|
|
if (!referenced.count(name)) {
|
|
|
|
|
if (log) {
|
|
|
|
|
auto line = line_info(s, rule.s_);
|
|
|
|
|
auto msg = "'" + name + "' is not referenced.";
|
2022-09-03 03:47:55 +00:00
|
|
|
|
log(line.first, line.second, msg, "");
|
2021-03-02 13:14:22 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
if (!ret) { return nullptr; }
|
2015-06-13 04:38:38 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
// Link references
|
|
|
|
|
for (auto &x : grammar) {
|
|
|
|
|
auto &rule = x.second;
|
2021-01-18 22:50:45 +00:00
|
|
|
|
LinkReferences vis(grammar, rule.params);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
rule.accept(vis);
|
|
|
|
|
}
|
2015-02-15 00:02:54 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
// Check left recursion
|
|
|
|
|
ret = true;
|
|
|
|
|
|
2021-03-02 13:14:22 +00:00
|
|
|
|
for (auto &[name, rule] : grammar) {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
DetectLeftRecursion vis(name);
|
|
|
|
|
rule.accept(vis);
|
|
|
|
|
if (vis.error_s) {
|
|
|
|
|
if (log) {
|
|
|
|
|
auto line = line_info(s, vis.error_s);
|
2022-09-03 03:47:55 +00:00
|
|
|
|
log(line.first, line.second, "'" + name + "' is left recursive.", "");
|
2015-11-26 01:53:04 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
ret = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!ret) { return nullptr; }
|
2015-11-26 01:53:04 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
// Check infinite loop
|
2022-05-28 01:50:27 +00:00
|
|
|
|
if (detect_infiniteLoop(data, start_rule, log, s)) { return nullptr; }
|
2018-07-13 21:26:57 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
// Automatic whitespace skipping
|
|
|
|
|
if (grammar.count(WHITESPACE_DEFINITION_NAME)) {
|
|
|
|
|
for (auto &x : grammar) {
|
|
|
|
|
auto &rule = x.second;
|
|
|
|
|
auto ope = rule.get_core_operator();
|
|
|
|
|
if (IsLiteralToken::check(*ope)) { rule <= tok(ope); }
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-27 01:37:08 +00:00
|
|
|
|
auto &rule = grammar[WHITESPACE_DEFINITION_NAME];
|
|
|
|
|
start_rule.whitespaceOpe = wsp(rule.get_core_operator());
|
|
|
|
|
|
2022-05-28 01:50:27 +00:00
|
|
|
|
if (detect_infiniteLoop(data, rule, log, s)) { return nullptr; }
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2020-01-24 05:37:21 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
// Word expression
|
|
|
|
|
if (grammar.count(WORD_DEFINITION_NAME)) {
|
2022-05-27 01:37:08 +00:00
|
|
|
|
auto &rule = grammar[WORD_DEFINITION_NAME];
|
|
|
|
|
start_rule.wordOpe = rule.get_core_operator();
|
|
|
|
|
|
2022-05-28 01:50:27 +00:00
|
|
|
|
if (detect_infiniteLoop(data, rule, log, s)) { return nullptr; }
|
2015-02-14 13:52:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 21:03:02 +00:00
|
|
|
|
// Apply instructions
|
2022-04-02 12:10:39 +00:00
|
|
|
|
for (const auto &[name, instructions] : data.instructions) {
|
2020-02-07 20:50:06 +00:00
|
|
|
|
auto &rule = grammar[name];
|
2020-02-05 21:03:02 +00:00
|
|
|
|
|
2022-05-28 01:50:27 +00:00
|
|
|
|
for (const auto &instruction : instructions) {
|
2022-04-02 12:10:39 +00:00
|
|
|
|
if (instruction.type == "precedence") {
|
|
|
|
|
const auto &info =
|
|
|
|
|
std::any_cast<PrecedenceClimbing::BinOpeInfo>(instruction.data);
|
2020-02-05 21:03:02 +00:00
|
|
|
|
|
2022-04-02 12:10:39 +00:00
|
|
|
|
if (!apply_precedence_instruction(rule, info, s, log)) {
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
2022-09-01 23:59:46 +00:00
|
|
|
|
} else if (instruction.type == "error_message") {
|
2022-04-02 12:10:39 +00:00
|
|
|
|
rule.error_message = std::any_cast<std::string>(instruction.data);
|
|
|
|
|
} else if (instruction.type == "no_ast_opt") {
|
|
|
|
|
rule.no_ast_opt = true;
|
2020-02-07 20:50:06 +00:00
|
|
|
|
}
|
2020-02-05 21:03:02 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
// Set root definition
|
|
|
|
|
start = data.start;
|
2021-03-17 13:33:40 +00:00
|
|
|
|
enablePackratParsing = data.enablePackratParsing;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
|
|
|
|
|
return data.grammar;
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-28 01:50:27 +00:00
|
|
|
|
bool detect_infiniteLoop(const Data &data, Definition &rule, const Log &log,
|
|
|
|
|
const char *s) const {
|
2022-06-07 23:45:34 +00:00
|
|
|
|
std::vector<std::pair<const char *, std::string>> refs;
|
2022-06-17 01:34:21 +00:00
|
|
|
|
std::unordered_map<std::string, bool> has_error_cache;
|
|
|
|
|
DetectInfiniteLoop vis(data.start_pos, rule.name, refs, has_error_cache);
|
2022-05-27 01:37:08 +00:00
|
|
|
|
rule.accept(vis);
|
|
|
|
|
if (vis.has_error) {
|
|
|
|
|
if (log) {
|
|
|
|
|
auto line = line_info(s, vis.error_s);
|
|
|
|
|
log(line.first, line.second,
|
2022-09-03 03:47:55 +00:00
|
|
|
|
"infinite loop is detected in '" + vis.error_name + "'.", "");
|
2022-05-27 01:37:08 +00:00
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
Grammar g;
|
2015-02-14 03:41:17 +00:00
|
|
|
|
};
|
|
|
|
|
|
2015-05-19 13:07:03 +00:00
|
|
|
|
/*-----------------------------------------------------------------------------
|
|
|
|
|
* AST
|
|
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
template <typename Annotation> struct AstBase : public Annotation {
|
2021-01-13 15:11:06 +00:00
|
|
|
|
AstBase(const char *path, size_t line, size_t column, const char *name,
|
|
|
|
|
const std::vector<std::shared_ptr<AstBase>> &nodes,
|
|
|
|
|
size_t position = 0, size_t length = 0, size_t choice_count = 0,
|
|
|
|
|
size_t choice = 0)
|
|
|
|
|
: path(path ? path : ""), line(line), column(column), name(name),
|
|
|
|
|
position(position), length(length), choice_count(choice_count),
|
|
|
|
|
choice(choice), original_name(name),
|
|
|
|
|
original_choice_count(choice_count), original_choice(choice),
|
|
|
|
|
tag(str2tag(name)), original_tag(tag), is_token(false), nodes(nodes) {}
|
|
|
|
|
|
|
|
|
|
AstBase(const char *path, size_t line, size_t column, const char *name,
|
|
|
|
|
const std::string_view &token, size_t position = 0, size_t length = 0,
|
|
|
|
|
size_t choice_count = 0, size_t choice = 0)
|
|
|
|
|
: path(path ? path : ""), line(line), column(column), name(name),
|
|
|
|
|
position(position), length(length), choice_count(choice_count),
|
|
|
|
|
choice(choice), original_name(name),
|
|
|
|
|
original_choice_count(choice_count), original_choice(choice),
|
|
|
|
|
tag(str2tag(name)), original_tag(tag), is_token(true), token(token) {}
|
|
|
|
|
|
|
|
|
|
AstBase(const AstBase &ast, const char *original_name, size_t position = 0,
|
|
|
|
|
size_t length = 0, size_t original_choice_count = 0,
|
2022-07-06 11:07:47 +00:00
|
|
|
|
size_t original_choice = 0)
|
2020-02-05 19:10:00 +00:00
|
|
|
|
: path(ast.path), line(ast.line), column(ast.column), name(ast.name),
|
2021-01-13 15:11:06 +00:00
|
|
|
|
position(position), length(length), choice_count(ast.choice_count),
|
|
|
|
|
choice(ast.choice), original_name(original_name),
|
|
|
|
|
original_choice_count(original_choice_count),
|
2022-07-06 11:07:47 +00:00
|
|
|
|
original_choice(original_choice), tag(ast.tag),
|
2021-01-13 15:11:06 +00:00
|
|
|
|
original_tag(str2tag(original_name)), is_token(ast.is_token),
|
2020-02-05 19:10:00 +00:00
|
|
|
|
token(ast.token), nodes(ast.nodes), parent(ast.parent) {}
|
|
|
|
|
|
|
|
|
|
const std::string path;
|
|
|
|
|
const size_t line = 1;
|
|
|
|
|
const size_t column = 1;
|
|
|
|
|
|
|
|
|
|
const std::string name;
|
|
|
|
|
size_t position;
|
|
|
|
|
size_t length;
|
|
|
|
|
const size_t choice_count;
|
|
|
|
|
const size_t choice;
|
|
|
|
|
const std::string original_name;
|
|
|
|
|
const size_t original_choice_count;
|
|
|
|
|
const size_t original_choice;
|
|
|
|
|
const unsigned int tag;
|
|
|
|
|
const unsigned int original_tag;
|
|
|
|
|
|
|
|
|
|
const bool is_token;
|
2020-10-02 01:26:04 +00:00
|
|
|
|
const std::string_view token;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
|
|
|
|
|
std::vector<std::shared_ptr<AstBase<Annotation>>> nodes;
|
|
|
|
|
std::weak_ptr<AstBase<Annotation>> parent;
|
2020-10-02 01:26:04 +00:00
|
|
|
|
|
|
|
|
|
std::string token_to_string() const {
|
|
|
|
|
assert(is_token);
|
|
|
|
|
return std::string(token);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename T> T token_to_number() const {
|
2021-01-29 00:21:59 +00:00
|
|
|
|
return token_to_number_<T>(token);
|
2020-10-02 01:26:04 +00:00
|
|
|
|
}
|
2015-05-19 13:07:03 +00:00
|
|
|
|
};
|
|
|
|
|
|
2015-08-28 02:26:34 +00:00
|
|
|
|
template <typename T>
|
2020-02-05 19:10:00 +00:00
|
|
|
|
void ast_to_s_core(const std::shared_ptr<T> &ptr, std::string &s, int level,
|
|
|
|
|
std::function<std::string(const T &ast, int level)> fn) {
|
|
|
|
|
const auto &ast = *ptr;
|
|
|
|
|
for (auto i = 0; i < level; i++) {
|
|
|
|
|
s += " ";
|
|
|
|
|
}
|
|
|
|
|
auto name = ast.original_name;
|
|
|
|
|
if (ast.original_choice_count > 0) {
|
|
|
|
|
name += "/" + std::to_string(ast.original_choice);
|
|
|
|
|
}
|
|
|
|
|
if (ast.name != ast.original_name) { name += "[" + ast.name + "]"; }
|
|
|
|
|
if (ast.is_token) {
|
2020-10-02 01:26:04 +00:00
|
|
|
|
s += "- " + name + " (";
|
|
|
|
|
s += ast.token;
|
|
|
|
|
s += ")\n";
|
2020-02-05 19:10:00 +00:00
|
|
|
|
} else {
|
|
|
|
|
s += "+ " + name + "\n";
|
|
|
|
|
}
|
|
|
|
|
if (fn) { s += fn(ast, level + 1); }
|
|
|
|
|
for (auto node : ast.nodes) {
|
|
|
|
|
ast_to_s_core(node, s, level + 1, fn);
|
|
|
|
|
}
|
2015-11-27 20:32:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
2020-02-05 19:10:00 +00:00
|
|
|
|
std::string
|
|
|
|
|
ast_to_s(const std::shared_ptr<T> &ptr,
|
|
|
|
|
std::function<std::string(const T &ast, int level)> fn = nullptr) {
|
|
|
|
|
std::string s;
|
|
|
|
|
ast_to_s_core(ptr, s, 0, fn);
|
|
|
|
|
return s;
|
2015-08-28 02:26:34 +00:00
|
|
|
|
}
|
2015-05-19 13:07:03 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
struct AstOptimizer {
|
2020-06-01 23:47:32 +00:00
|
|
|
|
AstOptimizer(bool mode, const std::vector<std::string> &rules = {})
|
2020-05-25 21:31:22 +00:00
|
|
|
|
: mode_(mode), rules_(rules) {}
|
2015-07-31 17:06:31 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
template <typename T>
|
|
|
|
|
std::shared_ptr<T> optimize(std::shared_ptr<T> original,
|
|
|
|
|
std::shared_ptr<T> parent = nullptr) {
|
2020-06-01 23:47:32 +00:00
|
|
|
|
auto found =
|
|
|
|
|
std::find(rules_.begin(), rules_.end(), original->name) != rules_.end();
|
2022-01-03 16:23:41 +00:00
|
|
|
|
auto opt = mode_ ? !found : found;
|
2015-07-31 17:06:31 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
if (opt && original->nodes.size() == 1) {
|
|
|
|
|
auto child = optimize(original->nodes[0], parent);
|
2022-01-03 16:23:41 +00:00
|
|
|
|
auto ast = std::make_shared<T>(*child, original->name.data(),
|
|
|
|
|
original->choice_count, original->position,
|
|
|
|
|
original->length, original->choice);
|
|
|
|
|
for (auto node : ast->nodes) {
|
|
|
|
|
node->parent = ast;
|
|
|
|
|
}
|
|
|
|
|
return ast;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2015-07-31 17:06:31 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
auto ast = std::make_shared<T>(*original);
|
|
|
|
|
ast->parent = parent;
|
|
|
|
|
ast->nodes.clear();
|
|
|
|
|
for (auto node : original->nodes) {
|
|
|
|
|
auto child = optimize(node, ast);
|
|
|
|
|
ast->nodes.push_back(child);
|
2015-07-31 17:06:31 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
return ast;
|
|
|
|
|
}
|
2015-07-31 17:06:31 +00:00
|
|
|
|
|
|
|
|
|
private:
|
2020-05-25 21:31:22 +00:00
|
|
|
|
const bool mode_;
|
|
|
|
|
const std::vector<std::string> rules_;
|
2015-07-31 17:06:31 +00:00
|
|
|
|
};
|
|
|
|
|
|
2015-08-03 21:53:35 +00:00
|
|
|
|
struct EmptyType {};
|
2020-10-02 01:26:04 +00:00
|
|
|
|
using Ast = AstBase<EmptyType>;
|
2015-08-03 21:53:35 +00:00
|
|
|
|
|
2020-06-08 03:52:18 +00:00
|
|
|
|
template <typename T = Ast> void add_ast_action(Definition &rule) {
|
2020-10-02 01:26:04 +00:00
|
|
|
|
rule.action = [&](const SemanticValues &vs) {
|
|
|
|
|
auto line = vs.line_info();
|
2020-06-07 03:13:57 +00:00
|
|
|
|
|
2020-06-07 12:46:49 +00:00
|
|
|
|
if (rule.is_token()) {
|
2020-10-02 01:26:04 +00:00
|
|
|
|
return std::make_shared<T>(
|
|
|
|
|
vs.path, line.first, line.second, rule.name.data(), vs.token(),
|
|
|
|
|
std::distance(vs.ss, vs.sv().data()), vs.sv().length(),
|
|
|
|
|
vs.choice_count(), vs.choice());
|
2020-06-07 12:46:49 +00:00
|
|
|
|
}
|
2020-06-07 03:13:57 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
auto ast =
|
|
|
|
|
std::make_shared<T>(vs.path, line.first, line.second, rule.name.data(),
|
|
|
|
|
vs.transform<std::shared_ptr<T>>(),
|
|
|
|
|
std::distance(vs.ss, vs.sv().data()),
|
|
|
|
|
vs.sv().length(), vs.choice_count(), vs.choice());
|
2020-06-07 12:46:49 +00:00
|
|
|
|
|
|
|
|
|
for (auto node : ast->nodes) {
|
|
|
|
|
node->parent = ast;
|
|
|
|
|
}
|
|
|
|
|
return ast;
|
|
|
|
|
};
|
2020-06-07 03:13:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-08 00:27:19 +00:00
|
|
|
|
#define PEG_EXPAND(...) __VA_ARGS__
|
2020-06-08 03:52:18 +00:00
|
|
|
|
#define PEG_CONCAT(a, b) a##b
|
2020-06-08 00:27:19 +00:00
|
|
|
|
#define PEG_CONCAT2(a, b) PEG_CONCAT(a, b)
|
|
|
|
|
|
2020-06-08 03:52:18 +00:00
|
|
|
|
#define PEG_PICK( \
|
|
|
|
|
a0, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15, a16, \
|
|
|
|
|
a17, a18, a19, a20, a21, a22, a23, a24, a25, a26, a27, a28, a29, a30, a31, \
|
|
|
|
|
a32, a33, a34, a35, a36, a37, a38, a39, a40, a41, a42, a43, a44, a45, a46, \
|
|
|
|
|
a47, a48, a49, a50, a51, a52, a53, a54, a55, a56, a57, a58, a59, a60, a61, \
|
|
|
|
|
a62, a63, a64, a65, a66, a67, a68, a69, a70, a71, a72, a73, a74, a75, a76, \
|
|
|
|
|
a77, a78, a79, a80, a81, a82, a83, a84, a85, a86, a87, a88, a89, a90, a91, \
|
|
|
|
|
a92, a93, a94, a95, a96, a97, a98, a99, a100, ...) \
|
|
|
|
|
a100
|
|
|
|
|
|
|
|
|
|
#define PEG_COUNT(...) \
|
|
|
|
|
PEG_EXPAND(PEG_PICK( \
|
|
|
|
|
__VA_ARGS__, 100, 99, 98, 97, 96, 95, 94, 93, 92, 91, 90, 89, 88, 87, \
|
|
|
|
|
86, 85, 84, 83, 82, 81, 80, 79, 78, 77, 76, 75, 74, 73, 72, 71, 70, 69, \
|
|
|
|
|
68, 67, 66, 65, 64, 63, 62, 61, 60, 59, 58, 57, 56, 55, 54, 53, 52, 51, \
|
|
|
|
|
50, 49, 48, 47, 46, 45, 44, 43, 42, 41, 40, 39, 38, 37, 36, 35, 34, 33, \
|
|
|
|
|
32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 22, 21, 20, 19, 18, 17, 16, 15, \
|
|
|
|
|
14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0))
|
|
|
|
|
|
|
|
|
|
#define PEG_DEF_1(r) \
|
|
|
|
|
peg::Definition r; \
|
|
|
|
|
r.name = #r; \
|
|
|
|
|
peg::add_ast_action(r);
|
|
|
|
|
|
|
|
|
|
#define PEG_DEF_2(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_1(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_3(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_2(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_4(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_3(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_5(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_4(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_6(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_5(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_7(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_6(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_8(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_7(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_9(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_8(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_10(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_9(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_11(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_10(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_12(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_11(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_13(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_12(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_14(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_13(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_15(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_14(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_16(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_15(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_17(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_16(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_18(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_17(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_19(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_18(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_20(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_19(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_21(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_20(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_22(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_21(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_23(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_22(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_24(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_23(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_25(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_24(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_26(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_25(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_27(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_26(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_28(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_27(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_29(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_28(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_30(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_29(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_31(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_30(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_32(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_31(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_33(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_32(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_34(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_33(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_35(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_34(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_36(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_35(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_37(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_36(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_38(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_37(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_39(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_38(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_40(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_39(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_41(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_40(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_42(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_41(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_43(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_42(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_44(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_43(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_45(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_44(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_46(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_45(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_47(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_46(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_48(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_47(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_49(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_48(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_50(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_49(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_51(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_50(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_52(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_51(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_53(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_52(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_54(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_53(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_55(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_54(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_56(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_55(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_57(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_56(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_58(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_57(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_59(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_58(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_60(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_59(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_61(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_60(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_62(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_61(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_63(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_62(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_64(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_63(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_65(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_64(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_66(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_65(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_67(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_66(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_68(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_67(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_69(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_68(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_70(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_69(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_71(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_70(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_72(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_71(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_73(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_72(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_74(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_73(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_75(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_74(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_76(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_75(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_77(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_76(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_78(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_77(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_79(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_78(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_80(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_79(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_81(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_80(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_82(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_81(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_83(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_82(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_84(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_83(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_85(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_84(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_86(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_85(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_87(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_86(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_88(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_87(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_89(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_88(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_90(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_89(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_91(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_90(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_92(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_91(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_93(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_92(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_94(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_93(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_95(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_94(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_96(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_95(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_97(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_96(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_98(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_97(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_99(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_98(__VA_ARGS__))
|
|
|
|
|
#define PEG_DEF_100(r1, ...) PEG_EXPAND(PEG_DEF_1(r1) PEG_DEF_99(__VA_ARGS__))
|
|
|
|
|
|
|
|
|
|
#define AST_DEFINITIONS(...) \
|
|
|
|
|
PEG_EXPAND(PEG_CONCAT2(PEG_DEF_, PEG_COUNT(__VA_ARGS__))(__VA_ARGS__))
|
2020-06-08 00:27:19 +00:00
|
|
|
|
|
2015-02-08 01:52:26 +00:00
|
|
|
|
/*-----------------------------------------------------------------------------
|
2015-08-10 20:37:56 +00:00
|
|
|
|
* parser
|
2015-02-08 01:52:26 +00:00
|
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
class parser {
|
2015-02-08 01:52:26 +00:00
|
|
|
|
public:
|
2020-02-05 19:10:00 +00:00
|
|
|
|
parser() = default;
|
2015-02-15 22:52:39 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
parser(const char *s, size_t n, const Rules &rules) {
|
|
|
|
|
load_grammar(s, n, rules);
|
|
|
|
|
}
|
2015-03-09 18:58:43 +00:00
|
|
|
|
|
2022-06-14 03:16:07 +00:00
|
|
|
|
parser(const char *s, size_t n) : parser(s, n, Rules()) {}
|
|
|
|
|
|
2021-01-22 14:16:42 +00:00
|
|
|
|
parser(std::string_view sv, const Rules &rules)
|
|
|
|
|
: parser(sv.data(), sv.size(), rules) {}
|
2018-09-14 02:08:51 +00:00
|
|
|
|
|
2021-01-22 14:16:42 +00:00
|
|
|
|
parser(std::string_view sv) : parser(sv.data(), sv.size(), Rules()) {}
|
2015-03-09 18:58:43 +00:00
|
|
|
|
|
2022-06-14 03:16:07 +00:00
|
|
|
|
#if defined(__cpp_lib_char8_t)
|
|
|
|
|
parser(std::u8string_view sv, const Rules &rules)
|
|
|
|
|
: parser(reinterpret_cast<const char *>(sv.data()), sv.size(), rules) {}
|
|
|
|
|
|
|
|
|
|
parser(std::u8string_view sv)
|
|
|
|
|
: parser(reinterpret_cast<const char *>(sv.data()), sv.size(), Rules()) {}
|
|
|
|
|
#endif
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
operator bool() { return grammar_ != nullptr; }
|
2015-03-09 18:58:43 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
bool load_grammar(const char *s, size_t n, const Rules &rules) {
|
2022-09-03 12:12:12 +00:00
|
|
|
|
grammar_ = ParserGenerator::parse(s, n, rules, start_,
|
|
|
|
|
enablePackratParsing_, log_);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
return grammar_ != nullptr;
|
|
|
|
|
}
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
bool load_grammar(const char *s, size_t n) {
|
|
|
|
|
return load_grammar(s, n, Rules());
|
|
|
|
|
}
|
2018-09-14 02:08:51 +00:00
|
|
|
|
|
2021-01-22 14:16:42 +00:00
|
|
|
|
bool load_grammar(std::string_view sv, const Rules &rules) {
|
|
|
|
|
return load_grammar(sv.data(), sv.size(), rules);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2018-09-14 02:08:51 +00:00
|
|
|
|
|
2021-01-22 14:16:42 +00:00
|
|
|
|
bool load_grammar(std::string_view sv) {
|
|
|
|
|
return load_grammar(sv.data(), sv.size());
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2015-02-14 03:41:17 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
bool parse_n(const char *s, size_t n, const char *path = nullptr) const {
|
|
|
|
|
if (grammar_ != nullptr) {
|
|
|
|
|
const auto &rule = (*grammar_)[start_];
|
2022-09-03 12:12:12 +00:00
|
|
|
|
auto result = rule.parse(s, n, path, log_);
|
2022-09-03 11:41:08 +00:00
|
|
|
|
return post_process(s, n, result);
|
2015-02-08 01:52:26 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2020-10-02 01:26:04 +00:00
|
|
|
|
bool parse_n(const char *s, size_t n, std::any &dt,
|
2020-02-05 19:10:00 +00:00
|
|
|
|
const char *path = nullptr) const {
|
|
|
|
|
if (grammar_ != nullptr) {
|
|
|
|
|
const auto &rule = (*grammar_)[start_];
|
2022-09-03 12:12:12 +00:00
|
|
|
|
auto result = rule.parse(s, n, dt, path, log_);
|
2022-09-03 11:41:08 +00:00
|
|
|
|
return post_process(s, n, result);
|
2015-02-08 01:52:26 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
template <typename T>
|
|
|
|
|
bool parse_n(const char *s, size_t n, T &val,
|
|
|
|
|
const char *path = nullptr) const {
|
|
|
|
|
if (grammar_ != nullptr) {
|
|
|
|
|
const auto &rule = (*grammar_)[start_];
|
2022-09-03 12:12:12 +00:00
|
|
|
|
auto result = rule.parse_and_get_value(s, n, val, path, log_);
|
2022-09-03 11:41:08 +00:00
|
|
|
|
return post_process(s, n, result);
|
2015-02-08 01:52:26 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
template <typename T>
|
2020-10-02 01:26:04 +00:00
|
|
|
|
bool parse_n(const char *s, size_t n, std::any &dt, T &val,
|
2020-02-05 19:10:00 +00:00
|
|
|
|
const char *path = nullptr) const {
|
|
|
|
|
if (grammar_ != nullptr) {
|
|
|
|
|
const auto &rule = (*grammar_)[start_];
|
2021-01-13 15:11:06 +00:00
|
|
|
|
return post_process(s, n,
|
2022-09-03 12:12:12 +00:00
|
|
|
|
rule.parse_and_get_value(s, n, dt, val, path, log_));
|
2015-03-03 02:52:09 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2015-03-03 02:52:09 +00:00
|
|
|
|
|
2022-06-14 03:16:07 +00:00
|
|
|
|
bool parse(std::string_view sv, const char *path = nullptr) const {
|
|
|
|
|
return parse_n(sv.data(), sv.size(), path);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool parse(std::string_view sv, std::any &dt,
|
|
|
|
|
const char *path = nullptr) const {
|
|
|
|
|
return parse_n(sv.data(), sv.size(), dt, path);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
|
bool parse(std::string_view sv, T &val, const char *path = nullptr) const {
|
|
|
|
|
return parse_n(sv.data(), sv.size(), val, path);
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
template <typename T>
|
2022-06-08 12:35:15 +00:00
|
|
|
|
bool parse(std::string_view sv, std::any &dt, T &val,
|
2021-01-13 15:11:06 +00:00
|
|
|
|
const char *path = nullptr) const {
|
2022-06-08 12:35:15 +00:00
|
|
|
|
return parse_n(sv.data(), sv.size(), dt, val, path);
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2015-02-13 00:48:58 +00:00
|
|
|
|
|
2022-06-14 03:16:07 +00:00
|
|
|
|
#if defined(__cpp_lib_char8_t)
|
|
|
|
|
bool parse(std::u8string_view sv, const char *path = nullptr) const {
|
|
|
|
|
return parse_n(reinterpret_cast<const char *>(sv.data()), sv.size(), path);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool parse(std::u8string_view sv, std::any &dt,
|
|
|
|
|
const char *path = nullptr) const {
|
|
|
|
|
return parse_n(reinterpret_cast<const char *>(sv.data()), sv.size(), dt,
|
|
|
|
|
path);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
|
bool parse(std::u8string_view sv, T &val, const char *path = nullptr) const {
|
|
|
|
|
return parse_n(reinterpret_cast<const char *>(sv.data()), sv.size(), val,
|
|
|
|
|
path);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
|
bool parse(std::u8string_view sv, std::any &dt, T &val,
|
|
|
|
|
const char *path = nullptr) const {
|
|
|
|
|
return parse_n(reinterpret_cast<const char *>(sv.data()), sv.size(), dt,
|
|
|
|
|
val, path);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
Definition &operator[](const char *s) { return (*grammar_)[s]; }
|
2015-02-08 01:52:26 +00:00
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
const Definition &operator[](const char *s) const { return (*grammar_)[s]; }
|
2018-10-06 21:11:51 +00:00
|
|
|
|
|
2022-07-05 23:34:08 +00:00
|
|
|
|
const Grammar &get_grammar() const { return *grammar_; }
|
2018-09-03 19:20:05 +00:00
|
|
|
|
|
2022-06-08 15:10:59 +00:00
|
|
|
|
void disable_eoi_check() {
|
|
|
|
|
if (grammar_ != nullptr) {
|
|
|
|
|
auto &rule = (*grammar_)[start_];
|
|
|
|
|
rule.eoi_check = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
void enable_packrat_parsing() {
|
|
|
|
|
if (grammar_ != nullptr) {
|
|
|
|
|
auto &rule = (*grammar_)[start_];
|
2021-03-17 13:33:40 +00:00
|
|
|
|
rule.enablePackratParsing = enablePackratParsing_ && true;
|
2015-03-03 02:52:09 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2015-03-03 02:52:09 +00:00
|
|
|
|
|
2022-06-03 22:42:44 +00:00
|
|
|
|
void enable_trace(TracerEnter tracer_enter, TracerLeave tracer_leave) {
|
|
|
|
|
if (grammar_ != nullptr) {
|
|
|
|
|
auto &rule = (*grammar_)[start_];
|
|
|
|
|
rule.tracer_enter = tracer_enter;
|
|
|
|
|
rule.tracer_leave = tracer_leave;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-28 01:50:27 +00:00
|
|
|
|
void enable_trace(TracerEnter tracer_enter, TracerLeave tracer_leave,
|
2022-06-03 23:25:49 +00:00
|
|
|
|
TracerStartOrEnd tracer_start,
|
|
|
|
|
TracerStartOrEnd tracer_end) {
|
2020-02-05 19:10:00 +00:00
|
|
|
|
if (grammar_ != nullptr) {
|
|
|
|
|
auto &rule = (*grammar_)[start_];
|
|
|
|
|
rule.tracer_enter = tracer_enter;
|
|
|
|
|
rule.tracer_leave = tracer_leave;
|
2022-06-03 22:42:44 +00:00
|
|
|
|
rule.tracer_start = tracer_start;
|
|
|
|
|
rule.tracer_end = tracer_end;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void set_verbose_trace(bool verbose_trace) {
|
|
|
|
|
if (grammar_ != nullptr) {
|
|
|
|
|
auto &rule = (*grammar_)[start_];
|
|
|
|
|
rule.verbose_trace = verbose_trace;
|
2015-11-30 04:07:02 +00:00
|
|
|
|
}
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2015-11-30 04:07:02 +00:00
|
|
|
|
|
2021-01-22 01:56:05 +00:00
|
|
|
|
template <typename T = Ast> parser &enable_ast() {
|
|
|
|
|
for (auto &[_, rule] : *grammar_) {
|
|
|
|
|
if (!rule.action) { add_ast_action<T>(rule); }
|
|
|
|
|
}
|
|
|
|
|
return *this;
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-22 14:16:42 +00:00
|
|
|
|
template <typename T>
|
|
|
|
|
std::shared_ptr<T> optimize_ast(std::shared_ptr<T> ast,
|
|
|
|
|
bool opt_mode = true) const {
|
2021-01-22 01:56:05 +00:00
|
|
|
|
return AstOptimizer(opt_mode, get_no_ast_opt_rules()).optimize(ast);
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-03 12:12:12 +00:00
|
|
|
|
void set_logger(Log log) { log_ = log; }
|
|
|
|
|
|
|
|
|
|
void set_logger(
|
|
|
|
|
std::function<void(size_t line, size_t col, const std::string &msg)>
|
|
|
|
|
log) {
|
2022-09-03 12:46:33 +00:00
|
|
|
|
log_ = [log](size_t line, size_t col, const std::string &msg,
|
|
|
|
|
const std::string & /*rule*/) { log(line, col, msg); };
|
2022-09-03 12:12:12 +00:00
|
|
|
|
}
|
2015-06-02 18:17:08 +00:00
|
|
|
|
|
|
|
|
|
private:
|
2022-09-03 12:12:12 +00:00
|
|
|
|
bool post_process(const char *s, size_t n, Definition::Result &r) const {
|
|
|
|
|
if (log_ && !r.ret) { r.error_info.output_log(log_, s, n); }
|
2022-06-08 14:56:33 +00:00
|
|
|
|
return r.ret && !r.recovered;
|
2020-02-05 19:10:00 +00:00
|
|
|
|
}
|
2015-03-04 03:04:14 +00:00
|
|
|
|
|
2021-01-22 01:56:05 +00:00
|
|
|
|
std::vector<std::string> get_no_ast_opt_rules() const {
|
|
|
|
|
std::vector<std::string> rules;
|
|
|
|
|
for (auto &[name, rule] : *grammar_) {
|
|
|
|
|
if (rule.no_ast_opt) { rules.push_back(name); }
|
|
|
|
|
}
|
|
|
|
|
return rules;
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 19:10:00 +00:00
|
|
|
|
std::shared_ptr<Grammar> grammar_;
|
|
|
|
|
std::string start_;
|
2021-03-17 13:33:40 +00:00
|
|
|
|
bool enablePackratParsing_ = false;
|
2022-09-03 12:12:12 +00:00
|
|
|
|
Log log_;
|
2015-02-08 01:52:26 +00:00
|
|
|
|
};
|
|
|
|
|
|
2022-06-03 22:42:44 +00:00
|
|
|
|
/*-----------------------------------------------------------------------------
|
|
|
|
|
* enable_tracing
|
|
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
|
|
2022-06-03 23:25:49 +00:00
|
|
|
|
inline void enable_tracing(parser &parser, std::ostream &os) {
|
2022-06-03 22:42:44 +00:00
|
|
|
|
parser.enable_trace(
|
2022-09-20 16:28:20 +00:00
|
|
|
|
[&](auto &ope, auto s, auto, auto &, auto &c, auto &, auto &trace_data) {
|
|
|
|
|
auto prev_pos = std::any_cast<size_t>(trace_data);
|
2022-06-03 22:42:44 +00:00
|
|
|
|
auto pos = static_cast<size_t>(s - c.s);
|
|
|
|
|
auto backtrack = (pos < prev_pos ? "*" : "");
|
|
|
|
|
std::string indent;
|
|
|
|
|
auto level = c.trace_ids.size() - 1;
|
|
|
|
|
while (level--) {
|
|
|
|
|
indent += "│";
|
|
|
|
|
}
|
|
|
|
|
std::string name;
|
|
|
|
|
{
|
|
|
|
|
name = peg::TraceOpeName::get(const_cast<peg::Ope &>(ope));
|
|
|
|
|
|
|
|
|
|
auto lit = dynamic_cast<const peg::LiteralString *>(&ope);
|
|
|
|
|
if (lit) { name += " '" + peg::escape_characters(lit->lit_) + "'"; }
|
|
|
|
|
}
|
2022-06-08 12:34:25 +00:00
|
|
|
|
os << "E " << pos + 1 << backtrack << "\t" << indent << "┌" << name
|
|
|
|
|
<< " #" << c.trace_ids.back() << std::endl;
|
2022-09-20 16:28:20 +00:00
|
|
|
|
trace_data = static_cast<size_t>(pos);
|
2022-06-03 22:42:44 +00:00
|
|
|
|
},
|
|
|
|
|
[&](auto &ope, auto s, auto, auto &sv, auto &c, auto &, auto len,
|
|
|
|
|
auto &) {
|
|
|
|
|
auto pos = static_cast<size_t>(s - c.s);
|
|
|
|
|
if (len != static_cast<size_t>(-1)) { pos += len; }
|
|
|
|
|
std::string indent;
|
|
|
|
|
auto level = c.trace_ids.size() - 1;
|
|
|
|
|
while (level--) {
|
|
|
|
|
indent += "│";
|
|
|
|
|
}
|
|
|
|
|
auto ret = len != static_cast<size_t>(-1) ? "└o " : "└x ";
|
|
|
|
|
auto name = peg::TraceOpeName::get(const_cast<peg::Ope &>(ope));
|
|
|
|
|
std::stringstream choice;
|
|
|
|
|
if (sv.choice_count() > 0) {
|
|
|
|
|
choice << " " << sv.choice() << "/" << sv.choice_count();
|
|
|
|
|
}
|
|
|
|
|
std::string token;
|
|
|
|
|
if (!sv.tokens.empty()) {
|
|
|
|
|
token += ", token '";
|
|
|
|
|
token += sv.tokens[0];
|
|
|
|
|
token += "'";
|
|
|
|
|
}
|
|
|
|
|
std::string matched;
|
|
|
|
|
if (peg::success(len) &&
|
|
|
|
|
peg::TokenChecker::is_token(const_cast<peg::Ope &>(ope))) {
|
|
|
|
|
matched = ", match '" + peg::escape_characters(s, len) + "'";
|
|
|
|
|
}
|
2022-06-08 12:34:25 +00:00
|
|
|
|
os << "L " << pos + 1 << "\t" << indent << ret << name << " #"
|
2022-06-03 23:25:49 +00:00
|
|
|
|
<< c.trace_ids.back() << choice.str() << token << matched
|
|
|
|
|
<< std::endl;
|
2022-06-03 22:42:44 +00:00
|
|
|
|
},
|
2022-09-20 16:28:20 +00:00
|
|
|
|
[&](auto &trace_data) { trace_data = static_cast<size_t>(0); },
|
|
|
|
|
[&](auto &) {});
|
2022-06-03 22:42:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*-----------------------------------------------------------------------------
|
|
|
|
|
* enable_profiling
|
|
|
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
|
|
2022-06-03 23:25:49 +00:00
|
|
|
|
inline void enable_profiling(parser &parser, std::ostream &os) {
|
2022-06-03 22:42:44 +00:00
|
|
|
|
struct Stats {
|
|
|
|
|
struct Item {
|
|
|
|
|
std::string name;
|
|
|
|
|
size_t success;
|
|
|
|
|
size_t fail;
|
|
|
|
|
};
|
|
|
|
|
std::vector<Item> items;
|
|
|
|
|
std::map<std::string, size_t> index;
|
|
|
|
|
size_t total = 0;
|
2022-06-11 00:19:48 +00:00
|
|
|
|
std::chrono::steady_clock::time_point start;
|
2022-06-03 22:42:44 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
parser.enable_trace(
|
2022-06-03 23:25:49 +00:00
|
|
|
|
[&](auto &ope, auto, auto, auto &, auto &, auto &, std::any &trace_data) {
|
2022-06-03 22:42:44 +00:00
|
|
|
|
if (auto holder = dynamic_cast<const peg::Holder *>(&ope)) {
|
|
|
|
|
auto &stats = *std::any_cast<Stats *>(trace_data);
|
|
|
|
|
|
|
|
|
|
auto &name = holder->name();
|
|
|
|
|
if (stats.index.find(name) == stats.index.end()) {
|
|
|
|
|
stats.index[name] = stats.index.size();
|
|
|
|
|
stats.items.push_back({name, 0, 0});
|
|
|
|
|
}
|
|
|
|
|
stats.total++;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
[&](auto &ope, auto, auto, auto &, auto &, auto &, auto len,
|
|
|
|
|
std::any &trace_data) {
|
|
|
|
|
if (auto holder = dynamic_cast<const peg::Holder *>(&ope)) {
|
|
|
|
|
auto &stats = *std::any_cast<Stats *>(trace_data);
|
|
|
|
|
|
|
|
|
|
auto &name = holder->name();
|
|
|
|
|
auto index = stats.index[name];
|
|
|
|
|
auto &stat = stats.items[index];
|
|
|
|
|
if (len != static_cast<size_t>(-1)) {
|
|
|
|
|
stat.success++;
|
|
|
|
|
} else {
|
|
|
|
|
stat.fail++;
|
|
|
|
|
}
|
2022-06-04 19:13:13 +00:00
|
|
|
|
|
2022-06-03 22:42:44 +00:00
|
|
|
|
if (index == 0) {
|
2022-06-11 00:19:48 +00:00
|
|
|
|
auto end = std::chrono::steady_clock::now();
|
2022-06-11 00:22:24 +00:00
|
|
|
|
auto nano = std::chrono::duration_cast<std::chrono::microseconds>(
|
2022-06-14 03:16:07 +00:00
|
|
|
|
end - stats.start)
|
|
|
|
|
.count();
|
2022-06-11 00:22:24 +00:00
|
|
|
|
auto sec = nano / 1000000.0;
|
2022-06-14 03:16:07 +00:00
|
|
|
|
os << "duration: " << sec << "s (" << nano << "µs)" << std::endl
|
|
|
|
|
<< std::endl;
|
2022-06-04 19:13:13 +00:00
|
|
|
|
|
2022-06-11 00:19:48 +00:00
|
|
|
|
char buff[BUFSIZ];
|
2022-06-04 19:13:13 +00:00
|
|
|
|
size_t total_success = 0;
|
|
|
|
|
size_t total_fail = 0;
|
|
|
|
|
for (auto &[name, success, fail] : stats.items) {
|
|
|
|
|
total_success += success;
|
|
|
|
|
total_fail += fail;
|
|
|
|
|
}
|
|
|
|
|
|
2022-06-03 23:25:49 +00:00
|
|
|
|
os << " id total % success fail "
|
|
|
|
|
"definition"
|
|
|
|
|
<< std::endl;
|
2022-06-04 19:13:13 +00:00
|
|
|
|
|
|
|
|
|
auto grand_total = total_success + total_fail;
|
2022-11-02 21:39:49 +00:00
|
|
|
|
snprintf(buff, BUFSIZ, "%4s %10zu %5s %10zu %10zu %s", "",
|
|
|
|
|
grand_total, "", total_success, total_fail,
|
|
|
|
|
"Total counters");
|
2022-06-04 19:13:13 +00:00
|
|
|
|
os << buff << std::endl;
|
|
|
|
|
|
2022-11-02 21:39:49 +00:00
|
|
|
|
snprintf(buff, BUFSIZ, "%4s %10s %5s %10.2f %10.2f %s", "",
|
|
|
|
|
"", "", total_success * 100.0 / grand_total,
|
|
|
|
|
total_fail * 100.0 / grand_total, "% success/fail");
|
2022-06-11 00:19:48 +00:00
|
|
|
|
os << buff << std::endl << std::endl;
|
|
|
|
|
;
|
2022-06-04 19:13:13 +00:00
|
|
|
|
|
|
|
|
|
size_t id = 0;
|
2022-06-03 22:42:44 +00:00
|
|
|
|
for (auto &[name, success, fail] : stats.items) {
|
|
|
|
|
auto total = success + fail;
|
|
|
|
|
auto ratio = total * 100.0 / stats.total;
|
2022-11-02 21:39:49 +00:00
|
|
|
|
snprintf(buff, BUFSIZ, "%4zu %10zu %5.2f %10zu %10zu %s",
|
|
|
|
|
id, total, ratio, success, fail, name.c_str());
|
2022-06-03 23:25:49 +00:00
|
|
|
|
os << buff << std::endl;
|
2022-06-03 22:42:44 +00:00
|
|
|
|
id++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
2022-06-11 00:19:48 +00:00
|
|
|
|
[&](auto &trace_data) {
|
|
|
|
|
auto stats = new Stats{};
|
|
|
|
|
stats->start = std::chrono::steady_clock::now();
|
|
|
|
|
trace_data = stats;
|
|
|
|
|
},
|
2022-06-03 22:42:44 +00:00
|
|
|
|
[&](auto &trace_data) {
|
|
|
|
|
auto stats = std::any_cast<Stats *>(trace_data);
|
|
|
|
|
delete stats;
|
|
|
|
|
});
|
|
|
|
|
}
|
2015-08-10 20:37:56 +00:00
|
|
|
|
} // namespace peg
|