VoxelEngine/src/logic/CommandsInterpreter.cpp
2024-09-19 13:45:32 +03:00

439 lines
13 KiB
C++

#include "CommandsInterpreter.hpp"
#include <iostream>
#include <utility>
#include "coders/commons.hpp"
#include "util/stringutil.hpp"
using namespace cmd;
inline bool is_cmd_identifier_part(char c, bool allowColon) {
return is_identifier_part(c) || c == '.' || c == '$' ||
(allowColon && c == ':');
}
inline bool is_cmd_identifier_start(char c) {
return (is_identifier_start(c) || c == '.' || c == '$');
}
class CommandParser : BasicParser {
std::string parseIdentifier(bool allowColon) {
char c = peek();
if (!is_identifier_start(c) && c != '$') {
if (c == '"') {
pos++;
return parseString(c);
}
throw error("identifier expected");
}
int start = pos;
while (hasNext() && is_cmd_identifier_part(source[pos], allowColon)) {
pos++;
}
return std::string(source.substr(start, pos - start));
}
std::unordered_map<std::string, ArgType> types {
{"num", ArgType::number},
{"int", ArgType::integer},
{"str", ArgType::string},
{"sel", ArgType::selector},
{"enum", ArgType::enumvalue},
};
public:
CommandParser(std::string_view filename, std::string_view source)
: BasicParser(filename, source) {
}
ArgType parseType() {
if (peek() == '[') {
return ArgType::enumvalue;
}
std::string name = parseIdentifier(false);
auto found = types.find(name);
if (found != types.end()) {
return found->second;
} else {
throw error("unknown type " + util::quote(name));
}
}
dv::value parseValue() {
char c = peek();
if (is_cmd_identifier_start(c) || c == '@') {
auto str = parseIdentifier(true);
if (str == "true") {
return true;
} else if (str == "false") {
return false;
} else if (str == "none" || str == "nil" || str == "null") {
return nullptr;
}
return str;
}
if (c == '"' || c == '\'') {
nextChar();
return parseString(c);
}
if (c == '+' || c == '-') {
nextChar();
return parseNumber(c == '-' ? -1 : 1);
}
if (is_digit(c)) {
return parseNumber(1);
}
throw error("invalid character '" + std::string({c}) + "'");
}
std::string parseEnum() {
if (peek() == '[') {
nextChar();
if (peek() == ']') {
throw error("empty enumeration is not allowed");
}
auto enumvalue = "|" + std::string(readUntil(']')) + "|";
size_t offset = enumvalue.find(' ');
if (offset != std::string::npos) {
goBack(enumvalue.length() - offset);
throw error("use '|' as separator, not a space");
}
nextChar();
return enumvalue;
} else {
expect('$');
goBack();
return parseIdentifier(false);
}
}
Argument parseArgument() {
std::string name = parseIdentifier(false);
expect(':');
ArgType type = parseType();
std::string enumname = "";
if (type == ArgType::enumvalue) {
enumname = parseEnum();
}
bool optional = false;
dv::value def;
dv::value origin;
bool loop = true;
while (hasNext() && loop) {
char c = peek();
switch (c) {
case '=':
nextChar();
optional = true;
def = parseValue();
break;
case '~':
nextChar();
origin = parseValue();
break;
default:
loop = false;
break;
}
}
return Argument {
std::move(name),
type,
optional,
std::move(def),
std::move(origin),
std::move(enumname)};
}
Command parseScheme(executor_func executor, std::string_view description) {
std::string name = parseIdentifier(true);
std::vector<Argument> args;
std::unordered_map<std::string, Argument> kwargs;
while (hasNext()) {
if (peek() == '{') {
nextChar();
while (peek() != '}') {
Argument arg = parseArgument();
kwargs[arg.name] = arg;
}
nextChar();
} else {
args.push_back(parseArgument());
}
}
return Command(
name,
std::move(args),
std::move(kwargs),
std::string(description),
std::move(executor)
);
}
inline parsing_error argumentError(
const std::string& argname, const std::string& message
) {
return error("argument " + util::quote(argname) + ": " + message);
}
inline parsing_error typeError(
const std::string& argname,
const std::string& expected,
const dv::value& value
) {
return argumentError(
argname, expected + " expected, got " + dv::type_name(value)
);
}
inline bool typeCheck(
Argument* arg, dv::value_type type, const dv::value& value, const std::string& tname
) {
if (value.getType() != type) {
if (arg->optional) {
return false;
} else {
throw typeError(arg->name, tname, value);
}
}
return true;
}
inline bool selectorCheck(Argument* arg, const dv::value& value) {
if (value.isString()) {
const auto& string = value.asString();
if (string[0] == '@') {
if (!util::is_integer(string.substr(1))) {
throw argumentError(arg->name, "invalid selector");
}
return true;
}
}
if (arg->optional) {
return false;
} else {
throw typeError(arg->name, "selector", value);
}
}
bool typeCheck(Argument* arg, const dv::value& value) {
switch (arg->type) {
case ArgType::enumvalue: {
if (value.getType() == dv::value_type::string) {
const auto& string = value.asString();
auto& enumname = arg->enumname;
if (enumname.find("|" + string + "|") ==
std::string::npos) {
throw error(
"argument " + util::quote(arg->name) +
": invalid enumeration value"
);
}
} else {
if (arg->optional) {
return false;
}
throw typeError(arg->name, "enumeration value", value);
}
break;
}
case ArgType::number:
if (!dv::is_numeric(value)) {
if (arg->optional) {
return false;
} else {
throw typeError(arg->name, "number", value);
}
}
break;
case ArgType::selector:
return selectorCheck(arg, value);
case ArgType::integer:
return typeCheck(arg, dv::value_type::integer, value, "integer");
case ArgType::string:
if (!value.isString()) {
return !arg->optional;
}
break;
}
return true;
}
dv::value fetchOrigin(
CommandsInterpreter* interpreter, Argument* arg
) {
if (dv::is_numeric(arg->origin)) {
return dv::value(arg->origin);
} else if (arg->origin.getType() == dv::value_type::string) {
return dv::value((*interpreter)[arg->origin.asString()]);
}
return nullptr;
}
dv::value applyRelative(
Argument* arg, dv::value value, const dv::value& origin
) {
if (origin == nullptr) {
return value;
}
try {
if (arg->type == ArgType::number) {
return origin.asNumber() + value.asNumber();
} else {
return origin.asInteger() + value.asInteger();
}
} catch (std::runtime_error& err) {
throw argumentError(arg->name, err.what());
}
}
dv::value parseRelativeValue(
CommandsInterpreter* interpreter, Argument* arg
) {
if (arg->type != ArgType::number && arg->type != ArgType::integer) {
throw error("'~' operator is only allowed for numeric arguments");
}
nextChar();
auto origin = fetchOrigin(interpreter, arg);
if (peekNoJump() == ' ' || !hasNext()) {
return origin;
}
auto value = parseValue();
if (origin == nullptr) {
return value;
}
return applyRelative(arg, std::move(value), origin);
}
inline dv::value performKeywordArg(
CommandsInterpreter* interpreter,
Command* command,
const std::string& key
) {
if (auto arg = command->getArgument(key)) {
nextChar();
auto value = peek() == '~' ? parseRelativeValue(interpreter, arg)
: parseValue();
typeCheck(arg, value);
return value;
} else {
throw error("unknown keyword " + util::quote(key));
}
}
Prompt parsePrompt(CommandsInterpreter* interpreter) {
auto repo = interpreter->getRepository();
std::string name = parseIdentifier(true);
auto command = repo->get(name);
if (command == nullptr) {
throw error("unknown command " + util::quote(name));
}
auto args = dv::list();
auto kwargs = dv::object();
int arg_index = 0;
while (hasNext()) {
bool relative = false;
dv::value value;
if (peek() == '~') {
relative = true;
value = static_cast<integer_t>(0);
nextChar();
}
if (hasNext() && peekNoJump() != ' ') {
value = parseValue();
if (value.isString()) {
const auto& string = value.asString();
if (string[0] == '$') {
value = (*interpreter)[string.substr(1)];
}
}
// keyword argument
if (value.isString() && !relative && hasNext() && peek() == '=') {
const auto& key = value.asString();
kwargs[key] = performKeywordArg(interpreter, command, key);
}
}
// positional argument
Argument* arg = nullptr;
do {
if (arg) {
if (arg->def.isString()) {
const auto& string = arg->def.asString();
if (string[0] == '$') {
args.add((*interpreter)[string.substr(1)]);
} else {
args.add(arg->def);
}
} else {
args.add(arg->def);
}
}
arg = command->getArgument(arg_index++);
if (arg == nullptr) {
throw error("extra positional argument");
}
if (arg->origin != nullptr && relative) {
break;
}
} while (!typeCheck(arg, value));
if (relative) {
value =
applyRelative(arg, std::move(value), fetchOrigin(interpreter, arg));
}
args.add(std::move(value));
}
while (auto arg = command->getArgument(arg_index++)) {
if (!arg->optional) {
throw error("missing argument " + util::quote(arg->name));
} else {
if (arg->def.isString()) {
const auto& string = arg->def.asString();
if (string[0] == '$') {
args.add((*interpreter)[string.substr(1)]);
continue;
}
}
args.add(arg->def);
}
}
return Prompt {command, std::move(args), std::move(kwargs)};
}
};
Command Command::create(
std::string_view scheme,
std::string_view description,
executor_func executor
) {
return CommandParser("<string>", scheme)
.parseScheme(std::move(executor), description);
}
void CommandsRepository::add(
std::string_view scheme,
std::string_view description,
executor_func executor
) {
Command command = Command::create(scheme, description, std::move(executor));
commands[command.getName()] = command;
}
Command* CommandsRepository::get(const std::string& name) {
auto found = commands.find(name);
if (found == commands.end()) {
return nullptr;
}
return &found->second;
}
Prompt CommandsInterpreter::parse(std::string_view text) {
return CommandParser("<string>", text).parsePrompt(this);
}