fish-shell/src/builtins/emit.cpp

41 lines
1.2 KiB
C++
Raw Normal View History

2017-06-13 09:40:58 +08:00
// Implementation of the emit builtin.
#include "config.h" // IWYU pragma: keep
#include "emit.h"
#include <utility>
#include "../builtin.h"
#include "../common.h"
#include "../event.h"
#include "../fallback.h" // IWYU pragma: keep
#include "../io.h"
#include "../maybe.h"
#include "../wutil.h" // IWYU pragma: keep
2017-06-13 09:40:58 +08:00
/// Implementation of the builtin emit command, used to create events.
maybe_t<int> builtin_emit(parser_t &parser, io_streams_t &streams, const wchar_t **argv) {
2017-06-13 09:40:58 +08:00
const wchar_t *cmd = argv[0];
int argc = builtin_count_args(argv);
2017-06-17 11:42:33 +08:00
help_only_cmd_opts_t opts;
2017-06-13 09:40:58 +08:00
int optind;
2017-06-17 11:42:33 +08:00
int retval = parse_help_only_cmd_opts(opts, &optind, argc, argv, parser, streams);
2017-06-13 09:40:58 +08:00
if (retval != STATUS_CMD_OK) return retval;
if (opts.print_help) {
builtin_print_help(parser, streams, cmd);
2017-06-15 03:26:05 +08:00
return STATUS_CMD_OK;
2017-06-13 09:40:58 +08:00
}
if (!argv[optind]) {
2017-06-17 11:42:33 +08:00
streams.err.append_format(L"%ls: expected event name\n", cmd);
return STATUS_INVALID_ARGS;
2017-06-13 09:40:58 +08:00
}
const wchar_t *eventname = argv[optind];
wcstring_list_t args(argv + optind + 1, argv + argc);
event_fire_generic(parser, eventname, std::move(args));
2017-06-13 09:40:58 +08:00
return STATUS_CMD_OK;
}