do not catch exception in commands, let them propagate
This commit is contained in:
parent
f11d44246c
commit
603cfd3108
|
@ -289,8 +289,7 @@ void quit(const CommandParameters& params, const Context& context)
|
|||
message += *it;
|
||||
}
|
||||
message += "]";
|
||||
print_status(message);
|
||||
return;
|
||||
throw runtime_error(message);
|
||||
}
|
||||
}
|
||||
quit_requested = true;
|
||||
|
@ -354,8 +353,7 @@ void add_highlighter(const CommandParameters& params, const Context& context)
|
|||
ParametersParser parser(params, { { "group", true } });
|
||||
if (parser.positional_count() < 1)
|
||||
throw wrong_argument_count();
|
||||
try
|
||||
{
|
||||
|
||||
HighlighterRegistry& registry = HighlighterRegistry::instance();
|
||||
|
||||
auto begin = parser.begin();
|
||||
|
@ -369,11 +367,6 @@ void add_highlighter(const CommandParameters& params, const Context& context)
|
|||
|
||||
registry.add_highlighter_to_group(window, group, name,
|
||||
highlighter_params);
|
||||
}
|
||||
catch (runtime_error& err)
|
||||
{
|
||||
print_status("error: " + err.description());
|
||||
}
|
||||
}
|
||||
|
||||
void rm_highlighter(const CommandParameters& params, const Context& context)
|
||||
|
@ -381,19 +374,13 @@ void rm_highlighter(const CommandParameters& params, const Context& context)
|
|||
ParametersParser parser(params, { { "group", true } });
|
||||
if (parser.positional_count() != 1)
|
||||
throw wrong_argument_count();
|
||||
try
|
||||
{
|
||||
|
||||
Window& window = context.window();
|
||||
HighlighterGroup& group = parser.has_option("group") ?
|
||||
window.highlighters().get_group(parser.option_value("group"))
|
||||
: window.highlighters();
|
||||
|
||||
group.remove(*parser.begin());
|
||||
}
|
||||
catch (runtime_error& err)
|
||||
{
|
||||
print_status("error: " + err.description());
|
||||
}
|
||||
}
|
||||
|
||||
void add_filter(const CommandParameters& params, const Context& context)
|
||||
|
@ -401,8 +388,7 @@ void add_filter(const CommandParameters& params, const Context& context)
|
|||
ParametersParser parser(params, { { "group", true } });
|
||||
if (parser.positional_count() < 1)
|
||||
throw wrong_argument_count();
|
||||
try
|
||||
{
|
||||
|
||||
FilterRegistry& registry = FilterRegistry::instance();
|
||||
|
||||
auto begin = parser.begin();
|
||||
|
@ -415,11 +401,6 @@ void add_filter(const CommandParameters& params, const Context& context)
|
|||
: window.filters();
|
||||
|
||||
registry.add_filter_to_group(group, name, filter_params);
|
||||
}
|
||||
catch (runtime_error& err)
|
||||
{
|
||||
print_status("error: " + err.description());
|
||||
}
|
||||
}
|
||||
|
||||
void rm_filter(const CommandParameters& params, const Context& context)
|
||||
|
@ -427,19 +408,13 @@ void rm_filter(const CommandParameters& params, const Context& context)
|
|||
ParametersParser parser(params, { { "group", true } });
|
||||
if (parser.positional_count() != 1)
|
||||
throw wrong_argument_count();
|
||||
try
|
||||
{
|
||||
|
||||
Window& window = context.window();
|
||||
FilterGroup& group = parser.has_option("group") ?
|
||||
window.filters().get_group(parser.option_value("group"))
|
||||
: window.filters();
|
||||
|
||||
group.remove(*parser.begin());
|
||||
}
|
||||
catch (runtime_error& err)
|
||||
{
|
||||
print_status("error: " + err.description());
|
||||
}
|
||||
}
|
||||
|
||||
void add_hook(const CommandParameters& params, const Context& context)
|
||||
|
@ -463,7 +438,7 @@ void add_hook(const CommandParameters& params, const Context& context)
|
|||
else if (params[0] == "window")
|
||||
context.window().hook_manager().add_hook(params[1], hook_func);
|
||||
else
|
||||
print_status("error: no such hook container " + params[0]);
|
||||
throw runtime_error("error: no such hook container " + params[0]);
|
||||
}
|
||||
|
||||
EnvVarMap params_to_env_var_map(const CommandParameters& params)
|
||||
|
@ -583,10 +558,7 @@ void exec_commands_in_file(const CommandParameters& params,
|
|||
++end_pos;
|
||||
|
||||
if (end_pos == length)
|
||||
{
|
||||
print_status(String("unterminated '") + delimiter + "' string");
|
||||
return;
|
||||
}
|
||||
throw(String("unterminated '") + delimiter + "' string");
|
||||
|
||||
++end_pos;
|
||||
}
|
||||
|
@ -609,7 +581,8 @@ void exec_commands_in_file(const CommandParameters& params,
|
|||
if (end_pos == length)
|
||||
{
|
||||
if (cat_with_previous)
|
||||
print_status("while executing commands in \"" + params[0] +
|
||||
throw runtime_error("while executing commands in \"" +
|
||||
params[0] +
|
||||
"\": last command not complete");
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user