Skip to content
Snippets Groups Projects
Commit d46acb06 authored by Ondřej Štorc's avatar Ondřej Štorc
Browse files

cli: Fix REPL handling of exceptions

parent c8081b8a
No related branches found
No related tags found
1 merge request!256Parser replacement with ANTLR
......@@ -15,7 +15,6 @@ cli::CommandResult REPL::run(cli::Environment& env)
// numbers
{"[\\-|+]{0,1}[0-9]+", cl::BLUE}, // integers
{"[\\-|+]{0,1}[0-9]*\\.[0-9]+", cl::BLUE}, // decimals
{"[\\-|+]{0,1}[0-9]+e[\\-|+]{0,1}[0-9]+", cl::BLUE}, // scientific notation
 
// strings
{"\"(.|\n)*?\"", cl::YELLOW}, // double quotes
......@@ -76,8 +75,24 @@ cli::CommandResult REPL::run(cli::Environment& env)
 
const auto& suggestions = complete.getSuggestions(context, prefix);
 
for (const auto& suggestion : suggestions) {
completions.emplace_back(suggestion.second);
for (const auto& [kind, suggestion] : suggestions) {
replxx::Replxx::Color color;
switch (kind) {
case cli::Autocomplete::SuggestionKind::Keyword:
color = Replxx::Color::BRIGHTBLUE;
break;
case cli::Autocomplete::SuggestionKind::Variable:
color = Replxx::Color::BRIGHTGREEN;
break;
case cli::Autocomplete::SuggestionKind::Identifier:
color = Replxx::Color::GREEN;
break;
default:
color = Replxx::Color::BRIGHTCYAN;
break;
}
completions.emplace_back(suggestion, color);
}
 
return completions;
......@@ -88,7 +103,7 @@ cli::CommandResult REPL::run(cli::Environment& env)
cli::CommandResult state = cli::CommandResult::OK;
// display the prompt and retrieve input from the user
char const* cInput;
while (state != cli::CommandResult::QUIT) {
while (state == cli::CommandResult::OK || state == cli::CommandResult::ERROR) {
do {
cInput = rx.input(prompt);
} while ((cInput == nullptr) && (errno == EAGAIN));
......@@ -103,12 +118,13 @@ cli::CommandResult REPL::run(cli::Environment& env)
if (input.empty()) {
continue;
}
const std::unique_ptr<cli::Command> ast = cli::Parser2::parseString(input);
state = env.execute(ast);
if (state == cli::CommandResult::OK)
rx.history_add(input);
try {
state = env.execute(input);
if (state == cli::CommandResult::OK)
rx.history_add(input);
} catch (const std::exception& e) {
std::cerr << e.what() << '\n';
}
}
 
if (REPL::historyFile.has_value())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment