-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.cpp
157 lines (132 loc) · 5.12 KB
/
test.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2023 Valentin-Ioan Vintilă
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the “Software”), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
////////////////////////////////////////////////////////////////////////////////
#include <iostream>
#include <vector>
#include <cmath>
#include <regex>
#include "utilities.hpp"
#include "parser.hpp"
// -----
// This example parses a LISP-like mathematical expression and converts it into
// its numerical value.
void example_lisp() {
using namespace wi;
parser_state_t init_parser_state("[% (* 2 (- [+ 8 2] (pow 2 2))) 5]");
lazy_parser_t *p_lazy_function = new lazy_parser_t();
parser_t *p_value = new choice_of_parser_t({
new digits_parser_t(),
p_lazy_function
});
parser_t *p_function = new between_parser_t(
new sequence_of_parser_t({
new char_parser_t(std::regex(R"([\(\[])")),
new maybe_whitespaces_parser_t()
}),
new sequence_of_parser_t({
new maybe_whitespaces_parser_t(),
new char_parser_t(std::regex(R"([\)\]])"))
}),
new sequence_of_parser_t({
new choice_of_string_parser_t({"+", "-", "*", "/", "%", "pow"}),
new between_parser_t(
new whitespaces_parser_t(),
new whitespaces_parser_t(),
p_value
),
p_value
})
);
p_lazy_function->set_parser(p_function);
parser_state_t ps = p_function->run(init_parser_state);
std::function<int(std::any)> f = [&](std::any a) {
if (a.type() == typeid(std::vector<std::any>)) {
std::vector<std::any> v = std::any_cast< std::vector<std::any> >(a);
std::string op = smart_string_any_cast(v[0]);
int left = f(v[1]), right = f(v[2]);
if (op == "+") return left + right;
if (op == "-") return left - right;
if (op == "*") return left * right;
if (op == "/") return left / right;
if (op == "%") return left % right;
if (op == "pow") return (int)std::pow(left, right);
return 0;
} else {
return std::stoi(smart_string_any_cast(a));
}
};
ps = ps.map_result(f);
std::cout << ps.to_string() << std::endl;
}
// This example parses a LISP-like mathematical expression and, if the
// expression starts with %, the result will simply be replaced.
void example_chain() {
using namespace wi;
parser_state_t init_parser_state("[% (* 2 (- [+ 8 2] (pow 2 2))) 5]");
lazy_parser_t *p_lazy_function = new lazy_parser_t();
parser_t *p_value = new choice_of_parser_t({
new digits_parser_t(),
p_lazy_function
});
parser_t *p_function = new between_parser_t(
new sequence_of_parser_t({
new char_parser_t(std::regex(R"([\(\[])")),
new maybe_whitespaces_parser_t()
}),
new sequence_of_parser_t({
new maybe_whitespaces_parser_t(),
new char_parser_t(std::regex(R"([\)\]])"))
}),
new sequence_of_parser_t({
new choice_of_string_parser_t({"+", "-", "*", "/", "%", "pow"}),
new between_parser_t(
new whitespaces_parser_t(),
new whitespaces_parser_t(),
p_value
),
p_value
})
);
p_lazy_function->set_parser(p_function);
parser_state_t ps = p_function->chain([](std::any a) {
std::vector<std::any> v = std::any_cast< std::vector<std::any> >(a);
if (smart_string_any_cast(v[0]) == "%") {
return (parser_t*)new map_parser_t(
new do_nothing_parser_t(),
[]([[maybe_unused]]std::any a) {
return std::any("yoohoo!");
}
);
}
return (parser_t*)new do_nothing_parser_t();
})->run(init_parser_state);
std::cout << ps.to_string() << std::endl;
}
// -----
int main() {
try {
example_lisp();
example_chain();
} catch (std::string s) {
std::cout << s << std::endl;
}
return 0;
}