-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrepl.hpp
More file actions
230 lines (201 loc) · 5.54 KB
/
Copy pathrepl.hpp
File metadata and controls
230 lines (201 loc) · 5.54 KB
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
#pragma once
#include <algorithm>
#include <exception>
#include <functional>
#include <ostream>
#include <istream>
#include <set>
#include <sstream>
#include <stdexcept>
#include <string>
#include <string_view>
#include <tuple>
#include <vector>
#include "command.hpp"
namespace repl
{
namespace builtin
{
template<class Repl>
class Help : public BaseCommand<Help<Repl>, std::string>
{
public:
const std::string_view longName = "help";
const std::string_view shortName = "h";
Help() = default;
std::string operator()() const
{
typename Repl::CommandsTuple commands{};
std::set<std::string> lines{};
auto func = [&lines](auto&... cmd)
{ ((lines.insert(command_to_line(cmd))), ...); };
std::apply(std::move(func), commands);
std::string output{"Available commands:\n"};
for (auto it = lines.cbegin(); it != lines.cend(); ++it)
{
if (it != lines.cbegin())
{
output.push_back('\n');
}
output.push_back('\t');
output += *it;
}
return output;
}
template<class Command>
static std::string command_to_line(const Command& command)
{
return std::string{command.longName} + ", " +
std::string{command.shortName};
}
};
class Exit : public BaseCommand<Exit, void>
{
public:
const std::string_view longName = "exit";
const std::string_view shortName = "e";
Exit() = default;
template<class T>
void SetAction(T&& action)
{
action_ = action;
}
void operator()() const
{
if (action_)
{
action_();
}
}
private:
std::function<void()> action_;
};
} // namespace builtin
template<typename C>
concept Command = requires(const C c) {
{ c.longName } -> std::convertible_to<std::string_view>;
{ c.shortName } -> std::convertible_to<std::string_view>;
} && requires(const C c, const std::vector<std::string_view>& tokens) {
{ c.Execute(tokens) } -> std::same_as<decltype(c.Execute(tokens))>;
};
template<class... Commands>
requires(Command<Commands> && ...)
class Repl
{
struct Expression
{
std::string_view command;
std::vector<std::string_view> args;
};
public:
using CommandsTuple = std::tuple<builtin::Exit,
builtin::Help<Repl<Commands...>>, Commands...>;
Repl(std::istream& input, std::ostream& output, std::string_view name = "")
: input_(input), output_(output), prompt_(std::string{name} + "> ")
{
FindNamesConflicts();
std::get<0>(commands_).SetAction([this]() { continue_ = false; });
}
void Run() noexcept
{
while (continue_)
{
try
{
std::string line{};
PrintPrompt();
std::getline(input_, line);
const auto expression = parse(line);
Evaluate(expression);
}
catch (const std::exception& err)
{
output_ << "Error: " << err.what() << '\n';
}
catch (...)
{
output_ << "Error: unknown\n";
}
}
}
private:
void Evaluate(const Expression& expr)
{
bool evaluated{false};
auto func = [&](auto&... cmd)
{
(((!evaluated && (cmd.longName == expr.command ||
cmd.shortName == expr.command))
? (evaluated = true, ExecuteAndPrint(cmd, expr.args))
: void()),
...);
};
std::apply(std::move(func), commands_);
if (!evaluated)
{
std::ostringstream msg{};
msg << "command '" << expr.command << "' not found";
throw std::runtime_error(msg.str());
}
}
void PrintPrompt() noexcept
{
output_ << prompt_;
}
static Expression parse(std::string_view str)
{
Expression expression{};
std::size_t start = 0;
size_t pos = str.find(' ', start);
if (pos == std::string_view::npos)
{
expression.command = str;
return expression;
}
expression.command = str.substr(start, pos - start);
start = pos + 1;
while (true)
{
pos = str.find(' ', start);
if (pos == std::string_view::npos)
{
expression.args.emplace_back(str.substr(start));
break;
}
expression.args.emplace_back(str.substr(start, pos - start));
start = pos + 1;
}
return expression;
}
void FindNamesConflicts()
{
constexpr std::size_t commandsCount = sizeof...(Commands);
std::set<std::string_view> names{};
auto func = [&names](auto&... cmd)
{ ((names.insert(cmd.longName), names.insert(cmd.shortName)), ...); };
std::apply(std::move(func), commands_);
if (names.size() < commandsCount * 2)
{
throw std::runtime_error("commands names conflict");
}
}
template<Command C>
void ExecuteAndPrint(C& cmd, const std::vector<std::string_view>& args)
{
if constexpr (!std::is_same_v<typename C::Return, void>)
{
output_ << cmd.Execute(args) << '\n';
}
else
{
cmd.Execute(args);
}
}
private:
std::istream& input_;
std::ostream& output_;
std::string prompt_;
CommandsTuple commands_;
bool continue_ = true;
};
} // namespace repl