mirror of
https://github.com/yhirose/cpp-peglib.git
synced 2024-12-22 11:55:30 +00:00
Refactoring
This commit is contained in:
parent
633fcd72cb
commit
ad74d9e8c0
@ -608,8 +608,8 @@ usage: grammar_file_path [source_file_path]
|
|||||||
--opt, --opt-all: optimize all AST nodes except nodes selected with `no_ast_opt` instruction
|
--opt, --opt-all: optimize all AST nodes except nodes selected with `no_ast_opt` instruction
|
||||||
--opt-only: optimize only AST nodes selected with `no_ast_opt` instruction
|
--opt-only: optimize only AST nodes selected with `no_ast_opt` instruction
|
||||||
--trace: show concise trace messages
|
--trace: show concise trace messages
|
||||||
--trace-verbose: show verbose trace messages
|
|
||||||
--profile: show profile report
|
--profile: show profile report
|
||||||
|
--verbose: verbose output for trace and profile
|
||||||
```
|
```
|
||||||
|
|
||||||
### Grammar check
|
### Grammar check
|
||||||
|
@ -13,8 +13,8 @@ usage: grammar_file_path [source_file_path]
|
|||||||
--opt-only: optimaze only AST nodes selected with `no_ast_opt` instruction
|
--opt-only: optimaze only AST nodes selected with `no_ast_opt` instruction
|
||||||
--source: source text
|
--source: source text
|
||||||
--trace: show concise trace messages
|
--trace: show concise trace messages
|
||||||
--trace-verbose: show verbose trace messages
|
|
||||||
--profile: show profile report
|
--profile: show profile report
|
||||||
|
--verbose: verbose output for trace and profile
|
||||||
```
|
```
|
||||||
|
|
||||||
### Build peglint
|
### Build peglint
|
||||||
|
128
lint/peglint.cc
128
lint/peglint.cc
@ -41,7 +41,7 @@ int main(int argc, const char **argv) {
|
|||||||
auto opt_source = false;
|
auto opt_source = false;
|
||||||
vector<char> source;
|
vector<char> source;
|
||||||
auto opt_trace = false;
|
auto opt_trace = false;
|
||||||
auto opt_trace_verbose = false;
|
auto opt_verbose = false;
|
||||||
auto opt_profile = false;
|
auto opt_profile = false;
|
||||||
vector<const char *> path_list;
|
vector<const char *> path_list;
|
||||||
|
|
||||||
@ -68,10 +68,10 @@ int main(int argc, const char **argv) {
|
|||||||
}
|
}
|
||||||
} else if (string("--trace") == arg) {
|
} else if (string("--trace") == arg) {
|
||||||
opt_trace = true;
|
opt_trace = true;
|
||||||
} else if (string("--trace-verbose") == arg) {
|
|
||||||
opt_trace_verbose = true;
|
|
||||||
} else if (string("--profile") == arg) {
|
} else if (string("--profile") == arg) {
|
||||||
opt_profile = true;
|
opt_profile = true;
|
||||||
|
} else if (string("--verbose") == arg) {
|
||||||
|
opt_verbose = true;
|
||||||
} else {
|
} else {
|
||||||
path_list.push_back(arg);
|
path_list.push_back(arg);
|
||||||
}
|
}
|
||||||
@ -87,8 +87,8 @@ int main(int argc, const char **argv) {
|
|||||||
--opt, --opt-all: optimize all AST nodes except nodes selected with `no_ast_opt` instruction
|
--opt, --opt-all: optimize all AST nodes except nodes selected with `no_ast_opt` instruction
|
||||||
--opt-only: optimize only AST nodes selected with `no_ast_opt` instruction
|
--opt-only: optimize only AST nodes selected with `no_ast_opt` instruction
|
||||||
--trace: show concise trace messages
|
--trace: show concise trace messages
|
||||||
--trace-verbose: show verbose trace messages
|
|
||||||
--profile: show profile report
|
--profile: show profile report
|
||||||
|
--verbose: verbose output for trace and profile
|
||||||
)";
|
)";
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
@ -129,126 +129,16 @@ int main(int argc, const char **argv) {
|
|||||||
|
|
||||||
if (opt_packrat) { parser.enable_packrat_parsing(); }
|
if (opt_packrat) { parser.enable_packrat_parsing(); }
|
||||||
|
|
||||||
if (opt_trace || opt_trace_verbose) {
|
if (opt_trace) {
|
||||||
size_t prev_pos = 0;
|
enable_tracing(parser);
|
||||||
parser.enable_trace(
|
|
||||||
[&](auto &ope, auto s, auto, auto &, auto &c, auto &) {
|
|
||||||
auto pos = static_cast<size_t>(s - c.s);
|
|
||||||
auto backtrack = (pos < prev_pos ? "*" : "");
|
|
||||||
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_) + "'"; }
|
|
||||||
}
|
|
||||||
std::cout << "E " << pos << backtrack << "\t" << indent << "┌" << name
|
|
||||||
<< " #" << c.trace_ids.back() << std::endl;
|
|
||||||
prev_pos = static_cast<size_t>(pos);
|
|
||||||
},
|
|
||||||
[&](auto &ope, auto s, auto, auto &sv, auto &c, auto &, auto len) {
|
|
||||||
auto pos = static_cast<size_t>(s - c.s);
|
|
||||||
if (len != static_cast<size_t>(-1)) { pos += len; }
|
|
||||||
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) + "'";
|
|
||||||
}
|
|
||||||
std::cout << "L " << pos << "\t" << indent << ret << name << " #"
|
|
||||||
<< c.trace_ids.back() << choice.str() << token << matched
|
|
||||||
<< std::endl;
|
|
||||||
},
|
|
||||||
opt_trace_verbose);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
struct StatsItem {
|
|
||||||
std::string name;
|
|
||||||
size_t success;
|
|
||||||
size_t fail;
|
|
||||||
};
|
|
||||||
std::vector<StatsItem> stats;
|
|
||||||
std::map<std::string, size_t> stats_index;
|
|
||||||
size_t stats_item_total = 0;
|
|
||||||
|
|
||||||
if (opt_profile) {
|
if (opt_profile) {
|
||||||
parser.enable_trace(
|
enable_profiling(parser);
|
||||||
[&](auto &ope, auto, auto, auto &, auto &, auto &) {
|
|
||||||
auto holder = dynamic_cast<const peg::Holder *>(&ope);
|
|
||||||
if (holder) {
|
|
||||||
auto &name = holder->name();
|
|
||||||
if (stats_index.find(name) == stats_index.end()) {
|
|
||||||
stats_index[name] = stats_index.size();
|
|
||||||
stats.push_back({name, 0, 0});
|
|
||||||
}
|
|
||||||
stats_item_total++;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
[&](auto &ope, auto, auto, auto &, auto &, auto &, auto len) {
|
|
||||||
auto holder = dynamic_cast<const peg::Holder *>(&ope);
|
|
||||||
if (holder) {
|
|
||||||
auto &name = holder->name();
|
|
||||||
auto index = stats_index[name];
|
|
||||||
auto &stat = stats[index];
|
|
||||||
if (len != static_cast<size_t>(-1)) {
|
|
||||||
stat.success++;
|
|
||||||
} else {
|
|
||||||
stat.fail++;
|
|
||||||
}
|
|
||||||
if (index == 0) {
|
|
||||||
size_t id = 0;
|
|
||||||
std::cout << " id total % success fail "
|
|
||||||
"definition"
|
|
||||||
<< std::endl;
|
|
||||||
size_t total_total, total_success = 0, total_fail = 0;
|
|
||||||
char buff[BUFSIZ];
|
|
||||||
for (auto &[name, success, fail] : stats) {
|
|
||||||
auto total = success + fail;
|
|
||||||
total_success += success;
|
|
||||||
total_fail += fail;
|
|
||||||
auto ratio = total * 100.0 / stats_item_total;
|
|
||||||
sprintf(buff, "%4zu %10lu %5.2f %10lu %10lu %s", id, total,
|
|
||||||
ratio, success, fail, name.c_str());
|
|
||||||
std::cout << buff << std::endl;
|
|
||||||
id++;
|
|
||||||
}
|
|
||||||
std::cout << std::endl;
|
|
||||||
total_total = total_success + total_fail;
|
|
||||||
sprintf(buff, "%4s %10lu %5s %10lu %10lu %s", "",
|
|
||||||
total_total, "", total_success, total_fail,
|
|
||||||
"Total counters");
|
|
||||||
std::cout << buff << std::endl;
|
|
||||||
sprintf(buff, "%4s %10s %5s %10.2f %10.2f %s", "", "", "",
|
|
||||||
total_success * 100.0 / total_total,
|
|
||||||
total_fail * 100.0 / total_total, "% success/fail");
|
|
||||||
std::cout << buff << std::endl;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
true);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
parser.set_verbose_trace(opt_verbose);
|
||||||
|
|
||||||
if (opt_ast) {
|
if (opt_ast) {
|
||||||
parser.enable_ast();
|
parser.enable_ast();
|
||||||
|
|
||||||
|
230
peglib.h
230
peglib.h
@ -792,13 +792,15 @@ private:
|
|||||||
class Ope;
|
class Ope;
|
||||||
class Definition;
|
class Definition;
|
||||||
|
|
||||||
using TracerEnter = std::function<void(const Ope &name, const char *s, size_t n,
|
using TracerEnter = std::function<void(
|
||||||
const SemanticValues &vs,
|
const Ope &name, const char *s, size_t n, const SemanticValues &vs,
|
||||||
const Context &c, const std::any &dt)>;
|
const Context &c, const std::any &dt, std::any &trace_data)>;
|
||||||
|
|
||||||
using TracerLeave = std::function<void(
|
using TracerLeave = std::function<void(
|
||||||
const Ope &ope, const char *s, size_t n, const SemanticValues &vs,
|
const Ope &ope, const char *s, size_t n, const SemanticValues &vs,
|
||||||
const Context &c, const std::any &dt, size_t)>;
|
const Context &c, const std::any &dt, size_t, std::any &trace_data)>;
|
||||||
|
|
||||||
|
using TracerStartOrEnd = std::function<void(std::any &trace_data)>;
|
||||||
|
|
||||||
class Context {
|
class Context {
|
||||||
public:
|
public:
|
||||||
@ -838,20 +840,22 @@ public:
|
|||||||
|
|
||||||
TracerEnter tracer_enter;
|
TracerEnter tracer_enter;
|
||||||
TracerLeave tracer_leave;
|
TracerLeave tracer_leave;
|
||||||
const bool tracer_verbose;
|
std::any trace_data;
|
||||||
|
const bool verbose_trace;
|
||||||
|
|
||||||
Log log;
|
Log log;
|
||||||
|
|
||||||
Context(const char *path, const char *s, size_t l, size_t def_count,
|
Context(const char *path, const char *s, size_t l, size_t def_count,
|
||||||
std::shared_ptr<Ope> whitespaceOpe, std::shared_ptr<Ope> wordOpe,
|
std::shared_ptr<Ope> whitespaceOpe, std::shared_ptr<Ope> wordOpe,
|
||||||
bool enablePackratParsing, TracerEnter tracer_enter,
|
bool enablePackratParsing, TracerEnter tracer_enter,
|
||||||
TracerLeave tracer_leave, bool tracer_verbose, Log log)
|
TracerLeave tracer_leave, std::any trace_data, bool verbose_trace,
|
||||||
|
Log log)
|
||||||
: path(path), s(s), l(l), whitespaceOpe(whitespaceOpe), wordOpe(wordOpe),
|
: path(path), s(s), l(l), whitespaceOpe(whitespaceOpe), wordOpe(wordOpe),
|
||||||
def_count(def_count), enablePackratParsing(enablePackratParsing),
|
def_count(def_count), enablePackratParsing(enablePackratParsing),
|
||||||
cache_registered(enablePackratParsing ? def_count * (l + 1) : 0),
|
cache_registered(enablePackratParsing ? def_count * (l + 1) : 0),
|
||||||
cache_success(enablePackratParsing ? def_count * (l + 1) : 0),
|
cache_success(enablePackratParsing ? def_count * (l + 1) : 0),
|
||||||
tracer_enter(tracer_enter), tracer_leave(tracer_leave),
|
tracer_enter(tracer_enter), tracer_leave(tracer_leave),
|
||||||
tracer_verbose(tracer_verbose), log(log) {
|
trace_data(trace_data), verbose_trace(verbose_trace), log(log) {
|
||||||
|
|
||||||
args_stack.resize(1);
|
args_stack.resize(1);
|
||||||
|
|
||||||
@ -957,9 +961,9 @@ public:
|
|||||||
void set_error_pos(const char *a_s, const char *literal = nullptr);
|
void set_error_pos(const char *a_s, const char *literal = nullptr);
|
||||||
|
|
||||||
void trace_enter(const Ope &ope, const char *a_s, size_t n,
|
void trace_enter(const Ope &ope, const char *a_s, size_t n,
|
||||||
SemanticValues &vs, std::any &dt) const;
|
const SemanticValues &vs, std::any &dt);
|
||||||
void trace_leave(const Ope &ope, const char *a_s, size_t n,
|
void trace_leave(const Ope &ope, const char *a_s, size_t n,
|
||||||
SemanticValues &vs, std::any &dt, size_t len) const;
|
const SemanticValues &vs, std::any &dt, size_t len);
|
||||||
bool is_traceable(const Ope &ope) const;
|
bool is_traceable(const Ope &ope) const;
|
||||||
|
|
||||||
mutable size_t next_trace_id = 0;
|
mutable size_t next_trace_id = 0;
|
||||||
@ -2354,10 +2358,13 @@ public:
|
|||||||
bool enablePackratParsing = false;
|
bool enablePackratParsing = false;
|
||||||
bool is_macro = false;
|
bool is_macro = false;
|
||||||
std::vector<std::string> params;
|
std::vector<std::string> params;
|
||||||
|
bool disable_action = false;
|
||||||
|
|
||||||
TracerEnter tracer_enter;
|
TracerEnter tracer_enter;
|
||||||
TracerLeave tracer_leave;
|
TracerLeave tracer_leave;
|
||||||
bool tracer_verbose = false;
|
bool verbose_trace = false;
|
||||||
bool disable_action = false;
|
TracerStartOrEnd tracer_start;
|
||||||
|
TracerStartOrEnd tracer_end;
|
||||||
|
|
||||||
std::string error_message;
|
std::string error_message;
|
||||||
bool no_ast_opt = false;
|
bool no_ast_opt = false;
|
||||||
@ -2385,15 +2392,21 @@ private:
|
|||||||
|
|
||||||
std::shared_ptr<Ope> ope = holder_;
|
std::shared_ptr<Ope> ope = holder_;
|
||||||
|
|
||||||
|
std::any trace_data;
|
||||||
|
if (tracer_start) { tracer_start(trace_data); }
|
||||||
|
auto se = scope_exit([&]() {
|
||||||
|
if (tracer_end) { tracer_end(trace_data); }
|
||||||
|
});
|
||||||
|
|
||||||
Context c(path, s, n, definition_ids_.size(), whitespaceOpe, wordOpe,
|
Context c(path, s, n, definition_ids_.size(), whitespaceOpe, wordOpe,
|
||||||
enablePackratParsing, tracer_enter, tracer_leave, tracer_verbose,
|
enablePackratParsing, tracer_enter, tracer_leave, trace_data,
|
||||||
log);
|
verbose_trace, log);
|
||||||
|
|
||||||
size_t i = 0;
|
size_t i = 0;
|
||||||
|
|
||||||
if (whitespaceOpe) {
|
if (whitespaceOpe) {
|
||||||
auto save_ignore_trace_state = c.ignore_trace_state;
|
auto save_ignore_trace_state = c.ignore_trace_state;
|
||||||
c.ignore_trace_state = !c.tracer_verbose;
|
c.ignore_trace_state = !c.verbose_trace;
|
||||||
auto se =
|
auto se =
|
||||||
scope_exit([&]() { c.ignore_trace_state = save_ignore_trace_state; });
|
scope_exit([&]() { c.ignore_trace_state = save_ignore_trace_state; });
|
||||||
|
|
||||||
@ -2437,14 +2450,14 @@ inline size_t parse_literal(const char *s, size_t n, SemanticValues &vs,
|
|||||||
// Word check
|
// Word check
|
||||||
if (c.wordOpe) {
|
if (c.wordOpe) {
|
||||||
auto save_ignore_trace_state = c.ignore_trace_state;
|
auto save_ignore_trace_state = c.ignore_trace_state;
|
||||||
c.ignore_trace_state = !c.tracer_verbose;
|
c.ignore_trace_state = !c.verbose_trace;
|
||||||
auto se =
|
auto se =
|
||||||
scope_exit([&]() { c.ignore_trace_state = save_ignore_trace_state; });
|
scope_exit([&]() { c.ignore_trace_state = save_ignore_trace_state; });
|
||||||
|
|
||||||
std::call_once(init_is_word, [&]() {
|
std::call_once(init_is_word, [&]() {
|
||||||
SemanticValues dummy_vs;
|
SemanticValues dummy_vs;
|
||||||
Context dummy_c(nullptr, c.s, c.l, 0, nullptr, nullptr, false, nullptr,
|
Context dummy_c(nullptr, c.s, c.l, 0, nullptr, nullptr, false, nullptr,
|
||||||
nullptr, false, nullptr);
|
nullptr, nullptr, false, nullptr);
|
||||||
std::any dummy_dt;
|
std::any dummy_dt;
|
||||||
|
|
||||||
auto len =
|
auto len =
|
||||||
@ -2455,7 +2468,7 @@ inline size_t parse_literal(const char *s, size_t n, SemanticValues &vs,
|
|||||||
if (is_word) {
|
if (is_word) {
|
||||||
SemanticValues dummy_vs;
|
SemanticValues dummy_vs;
|
||||||
Context dummy_c(nullptr, c.s, c.l, 0, nullptr, nullptr, false, nullptr,
|
Context dummy_c(nullptr, c.s, c.l, 0, nullptr, nullptr, false, nullptr,
|
||||||
nullptr, false, nullptr);
|
nullptr, nullptr, false, nullptr);
|
||||||
std::any dummy_dt;
|
std::any dummy_dt;
|
||||||
|
|
||||||
NotPredicate ope(c.wordOpe);
|
NotPredicate ope(c.wordOpe);
|
||||||
@ -2472,7 +2485,7 @@ inline size_t parse_literal(const char *s, size_t n, SemanticValues &vs,
|
|||||||
if (!c.in_token_boundary_count) {
|
if (!c.in_token_boundary_count) {
|
||||||
if (c.whitespaceOpe) {
|
if (c.whitespaceOpe) {
|
||||||
auto save_ignore_trace_state = c.ignore_trace_state;
|
auto save_ignore_trace_state = c.ignore_trace_state;
|
||||||
c.ignore_trace_state = !c.tracer_verbose;
|
c.ignore_trace_state = !c.verbose_trace;
|
||||||
auto se =
|
auto se =
|
||||||
scope_exit([&]() { c.ignore_trace_state = save_ignore_trace_state; });
|
scope_exit([&]() { c.ignore_trace_state = save_ignore_trace_state; });
|
||||||
|
|
||||||
@ -2520,22 +2533,22 @@ inline void Context::set_error_pos(const char *a_s, const char *literal) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
inline void Context::trace_enter(const Ope &ope, const char *a_s, size_t n,
|
inline void Context::trace_enter(const Ope &ope, const char *a_s, size_t n,
|
||||||
SemanticValues &vs, std::any &dt) const {
|
const SemanticValues &vs, std::any &dt) {
|
||||||
trace_ids.push_back(next_trace_id++);
|
trace_ids.push_back(next_trace_id++);
|
||||||
tracer_enter(ope, a_s, n, vs, *this, dt);
|
tracer_enter(ope, a_s, n, vs, *this, dt, trace_data);
|
||||||
}
|
}
|
||||||
|
|
||||||
inline void Context::trace_leave(const Ope &ope, const char *a_s, size_t n,
|
inline void Context::trace_leave(const Ope &ope, const char *a_s, size_t n,
|
||||||
SemanticValues &vs, std::any &dt,
|
const SemanticValues &vs, std::any &dt,
|
||||||
size_t len) const {
|
size_t len) {
|
||||||
tracer_leave(ope, a_s, n, vs, *this, dt, len);
|
tracer_leave(ope, a_s, n, vs, *this, dt, len, trace_data);
|
||||||
trace_ids.pop_back();
|
trace_ids.pop_back();
|
||||||
}
|
}
|
||||||
|
|
||||||
inline bool Context::is_traceable(const Ope &ope) const {
|
inline bool Context::is_traceable(const Ope &ope) const {
|
||||||
if (tracer_enter && tracer_leave) {
|
if (tracer_enter && tracer_leave) {
|
||||||
if (ignore_trace_state) { return false; }
|
if (ignore_trace_state) { return false; }
|
||||||
return !dynamic_cast<const peg::Reference*>(&ope);
|
return !dynamic_cast<const peg::Reference *>(&ope);
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -2571,7 +2584,7 @@ inline size_t TokenBoundary::parse_core(const char *s, size_t n,
|
|||||||
SemanticValues &vs, Context &c,
|
SemanticValues &vs, Context &c,
|
||||||
std::any &dt) const {
|
std::any &dt) const {
|
||||||
auto save_ignore_trace_state = c.ignore_trace_state;
|
auto save_ignore_trace_state = c.ignore_trace_state;
|
||||||
c.ignore_trace_state = !c.tracer_verbose;
|
c.ignore_trace_state = !c.verbose_trace;
|
||||||
auto se =
|
auto se =
|
||||||
scope_exit([&]() { c.ignore_trace_state = save_ignore_trace_state; });
|
scope_exit([&]() { c.ignore_trace_state = save_ignore_trace_state; });
|
||||||
|
|
||||||
@ -2632,7 +2645,7 @@ inline size_t Holder::parse_core(const char *s, size_t n, SemanticValues &vs,
|
|||||||
chldsv.sv_ = std::string_view(s, len);
|
chldsv.sv_ = std::string_view(s, len);
|
||||||
chldsv.name_ = outer_->name;
|
chldsv.name_ = outer_->name;
|
||||||
|
|
||||||
if (!dynamic_cast<const peg::PrioritizedChoice*>(ope_.get())) {
|
if (!dynamic_cast<const peg::PrioritizedChoice *>(ope_.get())) {
|
||||||
chldsv.choice_count_ = 0;
|
chldsv.choice_count_ = 0;
|
||||||
chldsv.choice_ = 0;
|
chldsv.choice_ = 0;
|
||||||
}
|
}
|
||||||
@ -2673,9 +2686,7 @@ inline std::any Holder::reduce(SemanticValues &vs, std::any &dt) const {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
inline const std::string &Holder::name() const {
|
inline const std::string &Holder::name() const { return outer_->name; }
|
||||||
return outer_->name;
|
|
||||||
}
|
|
||||||
|
|
||||||
inline const std::string &Holder::trace_name() const {
|
inline const std::string &Holder::trace_name() const {
|
||||||
if (trace_name_.empty()) { trace_name_ = "[" + outer_->name + "]"; }
|
if (trace_name_.empty()) { trace_name_ = "[" + outer_->name + "]"; }
|
||||||
@ -2686,7 +2697,7 @@ inline size_t Reference::parse_core(const char *s, size_t n, SemanticValues &vs,
|
|||||||
Context &c, std::any &dt) const {
|
Context &c, std::any &dt) const {
|
||||||
auto save_ignore_trace_state = c.ignore_trace_state;
|
auto save_ignore_trace_state = c.ignore_trace_state;
|
||||||
if (rule_ && rule_->ignoreSemanticValue) {
|
if (rule_ && rule_->ignoreSemanticValue) {
|
||||||
c.ignore_trace_state = !c.tracer_verbose;
|
c.ignore_trace_state = !c.verbose_trace;
|
||||||
}
|
}
|
||||||
auto se =
|
auto se =
|
||||||
scope_exit([&]() { c.ignore_trace_state = save_ignore_trace_state; });
|
scope_exit([&]() { c.ignore_trace_state = save_ignore_trace_state; });
|
||||||
@ -4373,13 +4384,29 @@ public:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void enable_trace(TracerEnter tracer_enter, TracerLeave tracer_leave,
|
void enable_trace(TracerEnter tracer_enter, TracerLeave tracer_leave) {
|
||||||
bool tracer_verbose = false) {
|
|
||||||
if (grammar_ != nullptr) {
|
if (grammar_ != nullptr) {
|
||||||
auto &rule = (*grammar_)[start_];
|
auto &rule = (*grammar_)[start_];
|
||||||
rule.tracer_enter = tracer_enter;
|
rule.tracer_enter = tracer_enter;
|
||||||
rule.tracer_leave = tracer_leave;
|
rule.tracer_leave = tracer_leave;
|
||||||
rule.tracer_verbose = tracer_verbose;
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void enable_trace(TracerEnter tracer_enter, TracerLeave tracer_leave,
|
||||||
|
TracerStartOrEnd tracer_start, TracerStartOrEnd tracer_end) {
|
||||||
|
if (grammar_ != nullptr) {
|
||||||
|
auto &rule = (*grammar_)[start_];
|
||||||
|
rule.tracer_enter = tracer_enter;
|
||||||
|
rule.tracer_leave = tracer_leave;
|
||||||
|
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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -4419,4 +4446,141 @@ private:
|
|||||||
bool enablePackratParsing_ = false;
|
bool enablePackratParsing_ = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/*-----------------------------------------------------------------------------
|
||||||
|
* enable_tracing
|
||||||
|
*---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
inline void enable_tracing(parser &parser) {
|
||||||
|
size_t prev_pos = 0;
|
||||||
|
parser.enable_trace(
|
||||||
|
[&](auto &ope, auto s, auto, auto &, auto &c, auto &, auto &) {
|
||||||
|
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_) + "'"; }
|
||||||
|
}
|
||||||
|
std::cout << "E " << pos << backtrack << "\t" << indent << "┌" << name
|
||||||
|
<< " #" << c.trace_ids.back() << std::endl;
|
||||||
|
prev_pos = static_cast<size_t>(pos);
|
||||||
|
},
|
||||||
|
[&](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) + "'";
|
||||||
|
}
|
||||||
|
std::cout << "L " << pos << "\t" << indent << ret << name << " #"
|
||||||
|
<< c.trace_ids.back() << choice.str() << token << matched
|
||||||
|
<< std::endl;
|
||||||
|
},
|
||||||
|
[&](auto &) {}, [&](auto &) {});
|
||||||
|
}
|
||||||
|
|
||||||
|
/*-----------------------------------------------------------------------------
|
||||||
|
* enable_profiling
|
||||||
|
*---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
inline void enable_profiling(parser &parser) {
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
|
||||||
|
parser.enable_trace(
|
||||||
|
[&](auto &ope, auto, auto, auto &, auto &, auto &,
|
||||||
|
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();
|
||||||
|
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++;
|
||||||
|
}
|
||||||
|
if (index == 0) {
|
||||||
|
size_t id = 0;
|
||||||
|
std::cout << " id total % success fail "
|
||||||
|
"definition"
|
||||||
|
<< std::endl;
|
||||||
|
size_t total_total, total_success = 0, total_fail = 0;
|
||||||
|
char buff[BUFSIZ];
|
||||||
|
for (auto &[name, success, fail] : stats.items) {
|
||||||
|
auto total = success + fail;
|
||||||
|
total_success += success;
|
||||||
|
total_fail += fail;
|
||||||
|
auto ratio = total * 100.0 / stats.total;
|
||||||
|
sprintf(buff, "%4zu %10lu %5.2f %10lu %10lu %s", id, total,
|
||||||
|
ratio, success, fail, name.c_str());
|
||||||
|
std::cout << buff << std::endl;
|
||||||
|
id++;
|
||||||
|
}
|
||||||
|
std::cout << std::endl;
|
||||||
|
total_total = total_success + total_fail;
|
||||||
|
sprintf(buff, "%4s %10lu %5s %10lu %10lu %s", "", total_total,
|
||||||
|
"", total_success, total_fail, "Total counters");
|
||||||
|
std::cout << buff << std::endl;
|
||||||
|
sprintf(buff, "%4s %10s %5s %10.2f %10.2f %s", "", "", "",
|
||||||
|
total_success * 100.0 / total_total,
|
||||||
|
total_fail * 100.0 / total_total, "% success/fail");
|
||||||
|
std::cout << buff << std::endl;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
[&](auto &trace_data) { trace_data = new Stats{}; },
|
||||||
|
[&](auto &trace_data) {
|
||||||
|
auto stats = std::any_cast<Stats *>(trace_data);
|
||||||
|
delete stats;
|
||||||
|
});
|
||||||
|
}
|
||||||
} // namespace peg
|
} // namespace peg
|
||||||
|
Loading…
Reference in New Issue
Block a user