28#ifndef HERMES_HERMES_COMMON_PARSERS_H
29#define HERMES_HERMES_COMMON_PARSERS_H
34#include <unordered_map>
35#include <hermes/common/result.h>
67 std::vector<Node> children;
73 void iterate(
const std::function<
bool(
const Node &)> &callback)
const;
81 friend std::ostream &
operator<<(std::ostream &os,
const ParseTree &parse_tree);
86 static std::string typeName(
NodeType type) {
87#define DATA_TYPE_NAME(Type) \
88 if(NodeType::Type == type) \
93 return "INVALID NODE TYPE";
98 explicit ParseTree(Node node) {
99 root_ = std::move(node);
134 const std::string &
s,
146 const std::string &
s,
155 const std::string &
s,
209 [[
nodiscard]]
size_t consumeAllBlanks(
const std::string &
s,
size_t start = 0)
const;
216 [[
nodiscard]]
size_t parseToken(
const std::string &
s, std::string &
token_name,
size_t start = 0)
const;
218 std::string blank_characters_ =
" \t\n";
219 std::unordered_map<std::string, std::string> token_patterns_;
221 std::vector<std::string> blank_block_openings_;
222 std::vector<std::string> blank_block_closings_;
224 std::vector<std::string> block_openings_;
225 std::vector<std::string> block_closings_;
The ParseTree represents a parsing tree (or derivation tree) generated by a parser....
Definition parsers.h:44
NodeType
Parse tree nodes can be of different types:
Definition parsers.h:51
@ BLOCK
a block of of text enclosed by block delimiters which might contain other nodes
@ TOKEN
a single token (a word identified by the parser)
@ INPUT
a piece of text which might contain other nodes
friend std::ostream & operator<<(std::ostream &os, const ParseTree &parse_tree)
Dumps all contant of the tree.
Definition parsers.cpp:47
General token parser for strings.
Definition parsers.h:109
void pushTokenPattern(const std::string &name, const std::string ®ex_pattern)
Appends a token - pattern pair to the parser.
Definition parsers.cpp:110
static StringParser cLanguage()
A simple and rough parser for c-like languages (far from complete).
Definition parsers.cpp:73
static size_t startsWith(const std::vector< std::pair< std::string, std::string > > &block_delimiters, const std::string &s, size_t i=0)
Checks if string starts with a block delimiter (first element in pairs)
Definition parsers.cpp:194
Result< ParseTree > parse(const std::string &text, bool copy_string=true)
Parses a given string into a parsing tree.
Definition parsers.cpp:238
static size_t matchPrefixWithAny(const std::string &characters, const std::string &s, size_t start=0)
Matches the prefix (from start) of the string with any any sequence in the given set of characters.
Definition parsers.cpp:114
Holds 2-dimensional integer index coordinates.
Definition index.h:50
A node represents a element in the parsed string.
Definition parsers.h:61
int block_id
block id of the parser's block list (root is -1)
Definition parsers.h:66