2016-04-20 10:49:15 +08:00
|
|
|
// Functions used for implementing the commandline builtin.
|
2016-05-19 06:30:21 +08:00
|
|
|
#include "config.h" // IWYU pragma: keep
|
|
|
|
|
2019-11-19 09:11:16 +08:00
|
|
|
#include <cerrno>
|
|
|
|
#include <cstddef>
|
|
|
|
#include <cstdlib>
|
2019-03-13 05:06:01 +08:00
|
|
|
#include <cwchar>
|
2005-09-20 21:26:39 +08:00
|
|
|
|
|
|
|
#include "builtin.h"
|
|
|
|
#include "common.h"
|
2016-04-20 10:49:15 +08:00
|
|
|
#include "fallback.h" // IWYU pragma: keep
|
2005-09-20 21:26:39 +08:00
|
|
|
#include "input.h"
|
2016-04-21 14:00:54 +08:00
|
|
|
#include "io.h"
|
2016-04-20 10:49:15 +08:00
|
|
|
#include "parse_util.h"
|
2019-06-10 05:11:25 +08:00
|
|
|
#include "parser.h"
|
2016-04-20 10:49:15 +08:00
|
|
|
#include "proc.h"
|
|
|
|
#include "reader.h"
|
|
|
|
#include "tokenizer.h"
|
|
|
|
#include "wgetopt.h"
|
2016-04-21 14:00:54 +08:00
|
|
|
#include "wutil.h" // IWYU pragma: keep
|
|
|
|
|
|
|
|
class parser_t;
|
2005-09-20 21:26:39 +08:00
|
|
|
|
2016-04-20 10:49:15 +08:00
|
|
|
/// Which part of the comandbuffer are we operating on.
|
|
|
|
enum {
|
|
|
|
STRING_MODE = 1, // operate on entire buffer
|
|
|
|
JOB_MODE, // operate on job under cursor
|
|
|
|
PROCESS_MODE, // operate on process under cursor
|
|
|
|
TOKEN_MODE // operate on token under cursor
|
|
|
|
};
|
|
|
|
|
|
|
|
/// For text insertion, how should it be done.
|
|
|
|
enum {
|
|
|
|
REPLACE_MODE = 1, // replace current text
|
|
|
|
INSERT_MODE, // insert at cursor position
|
|
|
|
APPEND_MODE // insert at end of current token/command/buffer
|
|
|
|
};
|
|
|
|
|
2021-01-06 05:40:09 +08:00
|
|
|
/// Handle a single readline_cmd_t command out-of-band.
|
|
|
|
void reader_handle_command(readline_cmd_t cmd);
|
|
|
|
|
2016-04-20 10:49:15 +08:00
|
|
|
/// Replace/append/insert the selection with/at/after the specified string.
|
|
|
|
///
|
|
|
|
/// \param begin beginning of selection
|
|
|
|
/// \param end end of selection
|
|
|
|
/// \param insert the string to insert
|
|
|
|
/// \param append_mode can be one of REPLACE_MODE, INSERT_MODE or APPEND_MODE, affects the way the
|
|
|
|
/// test update is performed
|
2018-10-02 00:34:58 +08:00
|
|
|
/// \param buff the original command line buffer
|
|
|
|
/// \param cursor_pos the position of the cursor in the command line
|
2016-04-20 10:49:15 +08:00
|
|
|
static void replace_part(const wchar_t *begin, const wchar_t *end, const wchar_t *insert,
|
2018-10-02 00:34:58 +08:00
|
|
|
int append_mode, const wchar_t *buff, size_t cursor_pos) {
|
|
|
|
size_t out_pos = cursor_pos;
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2012-02-23 03:07:34 +08:00
|
|
|
wcstring out;
|
2005-09-20 21:26:39 +08:00
|
|
|
|
2012-02-23 03:07:34 +08:00
|
|
|
out.append(buff, begin - buff);
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2016-04-20 10:49:15 +08:00
|
|
|
switch (append_mode) {
|
|
|
|
case REPLACE_MODE: {
|
2012-11-19 16:31:03 +08:00
|
|
|
out.append(insert);
|
2019-03-13 05:06:01 +08:00
|
|
|
out_pos = std::wcslen(insert) + (begin - buff);
|
2012-11-19 16:31:03 +08:00
|
|
|
break;
|
|
|
|
}
|
2016-04-20 10:49:15 +08:00
|
|
|
case APPEND_MODE: {
|
|
|
|
out.append(begin, end - begin);
|
2012-11-19 16:31:03 +08:00
|
|
|
out.append(insert);
|
|
|
|
break;
|
|
|
|
}
|
2016-04-20 10:49:15 +08:00
|
|
|
case INSERT_MODE: {
|
2018-10-02 00:34:58 +08:00
|
|
|
long cursor = cursor_pos - (begin - buff);
|
2012-11-19 16:31:03 +08:00
|
|
|
out.append(begin, cursor);
|
|
|
|
out.append(insert);
|
2016-04-20 10:49:15 +08:00
|
|
|
out.append(begin + cursor, end - begin - cursor);
|
2019-03-13 05:06:01 +08:00
|
|
|
out_pos += std::wcslen(insert);
|
2012-11-19 16:31:03 +08:00
|
|
|
break;
|
|
|
|
}
|
2016-10-30 08:25:48 +08:00
|
|
|
default: {
|
|
|
|
DIE("unexpected append_mode");
|
|
|
|
}
|
2012-11-18 18:23:22 +08:00
|
|
|
}
|
2012-11-19 08:30:30 +08:00
|
|
|
out.append(end);
|
|
|
|
reader_set_buffer(out, out_pos);
|
2005-09-20 21:26:39 +08:00
|
|
|
}
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2016-04-20 10:49:15 +08:00
|
|
|
/// Output the specified selection.
|
|
|
|
///
|
|
|
|
/// \param begin start of selection
|
|
|
|
/// \param end end of selection
|
|
|
|
/// \param cut_at_cursor whether printing should stop at the surrent cursor position
|
|
|
|
/// \param tokenize whether the string should be tokenized, printing one string token on every line
|
|
|
|
/// and skipping non-string tokens
|
2018-10-02 00:34:58 +08:00
|
|
|
/// \param buffer the original command line buffer
|
|
|
|
/// \param cursor_pos the position of the cursor in the command line
|
2016-04-20 10:49:15 +08:00
|
|
|
static void write_part(const wchar_t *begin, const wchar_t *end, int cut_at_cursor, int tokenize,
|
2018-10-02 00:34:58 +08:00
|
|
|
const wchar_t *buffer, size_t cursor_pos, io_streams_t &streams) {
|
|
|
|
size_t pos = cursor_pos - (begin - buffer);
|
2016-04-20 10:49:15 +08:00
|
|
|
|
|
|
|
if (tokenize) {
|
2019-03-13 05:06:01 +08:00
|
|
|
// std::fwprintf( stderr, L"Subshell: %ls, end char %lc\n", buff, *end );
|
2014-01-13 05:33:35 +08:00
|
|
|
wcstring out;
|
2018-02-20 07:10:10 +08:00
|
|
|
wcstring buff(begin, end - begin);
|
|
|
|
tokenizer_t tok(buff.c_str(), TOK_ACCEPT_UNFINISHED);
|
2019-10-14 07:06:16 +08:00
|
|
|
while (auto token = tok.next()) {
|
|
|
|
if ((cut_at_cursor) && (token->offset + token->length >= pos)) break;
|
2012-11-19 08:30:30 +08:00
|
|
|
|
2019-10-14 07:06:16 +08:00
|
|
|
if (token->type == token_type_t::string) {
|
|
|
|
wcstring tmp = tok.text_of(*token);
|
2016-10-23 11:32:25 +08:00
|
|
|
unescape_string_in_place(&tmp, UNESCAPE_INCOMPLETE);
|
|
|
|
out.append(tmp);
|
|
|
|
out.push_back(L'\n');
|
2012-11-19 08:30:30 +08:00
|
|
|
}
|
2012-11-18 18:23:22 +08:00
|
|
|
}
|
|
|
|
|
2015-09-22 02:24:49 +08:00
|
|
|
streams.out.append(out);
|
2016-04-20 10:49:15 +08:00
|
|
|
} else {
|
|
|
|
if (cut_at_cursor) {
|
2016-10-21 09:53:31 +08:00
|
|
|
streams.out.append(begin, pos);
|
|
|
|
} else {
|
|
|
|
streams.out.append(begin, end - begin);
|
2012-11-19 08:30:30 +08:00
|
|
|
}
|
2016-10-21 09:53:31 +08:00
|
|
|
streams.out.push_back(L'\n');
|
2012-11-19 08:30:30 +08:00
|
|
|
}
|
2005-09-20 21:26:39 +08:00
|
|
|
}
|
|
|
|
|
2016-04-20 10:49:15 +08:00
|
|
|
/// The commandline builtin. It is used for specifying a new value for the commandline.
|
2021-02-14 10:41:09 +08:00
|
|
|
maybe_t<int> builtin_commandline(parser_t &parser, io_streams_t &streams, const wchar_t **argv) {
|
2018-10-02 00:34:58 +08:00
|
|
|
// Pointer to what the commandline builtin considers to be the current contents of the command
|
|
|
|
// line buffer.
|
2019-11-19 10:34:50 +08:00
|
|
|
const wchar_t *current_buffer = nullptr;
|
2018-10-02 00:34:58 +08:00
|
|
|
|
|
|
|
// What the commandline builtin considers to be the current cursor position.
|
2019-11-19 09:11:16 +08:00
|
|
|
auto current_cursor_pos = static_cast<size_t>(-1);
|
2018-10-02 00:34:58 +08:00
|
|
|
|
2021-02-14 10:41:09 +08:00
|
|
|
const wchar_t *cmd = argv[0];
|
2016-04-20 10:49:15 +08:00
|
|
|
int buffer_part = 0;
|
2020-09-24 23:21:49 +08:00
|
|
|
bool cut_at_cursor = false;
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2012-11-19 08:30:30 +08:00
|
|
|
int argc = builtin_count_args(argv);
|
2016-04-20 10:49:15 +08:00
|
|
|
int append_mode = 0;
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2020-09-24 23:21:49 +08:00
|
|
|
bool function_mode = false;
|
|
|
|
bool selection_mode = false;
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2020-09-24 23:21:49 +08:00
|
|
|
bool tokenize = false;
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2020-09-24 23:21:49 +08:00
|
|
|
bool cursor_mode = false;
|
|
|
|
bool line_mode = false;
|
|
|
|
bool search_mode = false;
|
|
|
|
bool paging_mode = false;
|
2019-11-19 10:34:50 +08:00
|
|
|
const wchar_t *begin = nullptr, *end = nullptr;
|
2016-04-20 10:49:15 +08:00
|
|
|
|
2019-06-10 05:11:25 +08:00
|
|
|
const auto &ld = parser.libdata();
|
2014-08-16 09:14:36 +08:00
|
|
|
wcstring transient_commandline;
|
2019-06-10 05:11:25 +08:00
|
|
|
if (!ld.transient_commandlines.empty()) {
|
|
|
|
transient_commandline = ld.transient_commandlines.back();
|
2014-08-16 09:14:36 +08:00
|
|
|
current_buffer = transient_commandline.c_str();
|
|
|
|
current_cursor_pos = transient_commandline.size();
|
2016-04-20 10:49:15 +08:00
|
|
|
} else {
|
2012-11-19 08:30:30 +08:00
|
|
|
current_buffer = reader_get_buffer();
|
|
|
|
current_cursor_pos = reader_get_cursor_pos();
|
|
|
|
}
|
|
|
|
|
2018-10-02 00:34:58 +08:00
|
|
|
if (!current_buffer) {
|
2020-12-07 05:40:45 +08:00
|
|
|
if (is_interactive_session()) {
|
2016-04-20 10:49:15 +08:00
|
|
|
// Prompt change requested while we don't have a prompt, most probably while reading the
|
|
|
|
// init files. Just ignore it.
|
2017-05-05 12:35:41 +08:00
|
|
|
return STATUS_CMD_ERROR;
|
2012-11-19 08:30:30 +08:00
|
|
|
}
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2015-09-22 02:24:49 +08:00
|
|
|
streams.err.append(argv[0]);
|
|
|
|
streams.err.append(L": Can not set commandline in non-interactive mode\n");
|
2019-03-27 02:13:01 +08:00
|
|
|
builtin_print_error_trailer(parser, streams.err, cmd);
|
2017-05-05 12:35:41 +08:00
|
|
|
return STATUS_CMD_ERROR;
|
2012-11-19 08:30:30 +08:00
|
|
|
}
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2019-02-19 17:04:37 +08:00
|
|
|
static const wchar_t *const short_options = L":abijpctforhI:CLSsP";
|
2019-11-19 10:34:50 +08:00
|
|
|
static const struct woption long_options[] = {{L"append", no_argument, nullptr, 'a'},
|
|
|
|
{L"insert", no_argument, nullptr, 'i'},
|
|
|
|
{L"replace", no_argument, nullptr, 'r'},
|
|
|
|
{L"current-buffer", no_argument, nullptr, 'b'},
|
|
|
|
{L"current-job", no_argument, nullptr, 'j'},
|
|
|
|
{L"current-process", no_argument, nullptr, 'p'},
|
|
|
|
{L"current-selection", no_argument, nullptr, 's'},
|
|
|
|
{L"current-token", no_argument, nullptr, 't'},
|
|
|
|
{L"cut-at-cursor", no_argument, nullptr, 'c'},
|
|
|
|
{L"function", no_argument, nullptr, 'f'},
|
|
|
|
{L"tokenize", no_argument, nullptr, 'o'},
|
|
|
|
{L"help", no_argument, nullptr, 'h'},
|
|
|
|
{L"input", required_argument, nullptr, 'I'},
|
|
|
|
{L"cursor", no_argument, nullptr, 'C'},
|
|
|
|
{L"line", no_argument, nullptr, 'L'},
|
|
|
|
{L"search-mode", no_argument, nullptr, 'S'},
|
|
|
|
{L"paging-mode", no_argument, nullptr, 'P'},
|
|
|
|
{nullptr, 0, nullptr, 0}};
|
2017-06-11 03:30:09 +08:00
|
|
|
|
|
|
|
int opt;
|
|
|
|
wgetopter_t w;
|
2019-11-19 10:34:50 +08:00
|
|
|
while ((opt = w.wgetopt_long(argc, argv, short_options, long_options, nullptr)) != -1) {
|
2016-04-20 10:49:15 +08:00
|
|
|
switch (opt) {
|
|
|
|
case L'a': {
|
2012-11-19 16:31:03 +08:00
|
|
|
append_mode = APPEND_MODE;
|
|
|
|
break;
|
2016-04-20 10:49:15 +08:00
|
|
|
}
|
|
|
|
case L'b': {
|
2012-11-19 16:31:03 +08:00
|
|
|
buffer_part = STRING_MODE;
|
|
|
|
break;
|
2016-04-20 10:49:15 +08:00
|
|
|
}
|
|
|
|
case L'i': {
|
2012-11-19 16:31:03 +08:00
|
|
|
append_mode = INSERT_MODE;
|
|
|
|
break;
|
2016-04-20 10:49:15 +08:00
|
|
|
}
|
|
|
|
case L'r': {
|
2012-11-19 16:31:03 +08:00
|
|
|
append_mode = REPLACE_MODE;
|
|
|
|
break;
|
2016-04-20 10:49:15 +08:00
|
|
|
}
|
|
|
|
case 'c': {
|
2020-09-24 23:21:49 +08:00
|
|
|
cut_at_cursor = true;
|
2012-11-19 16:31:03 +08:00
|
|
|
break;
|
2016-04-20 10:49:15 +08:00
|
|
|
}
|
|
|
|
case 't': {
|
2012-11-19 16:31:03 +08:00
|
|
|
buffer_part = TOKEN_MODE;
|
|
|
|
break;
|
2016-04-20 10:49:15 +08:00
|
|
|
}
|
|
|
|
case 'j': {
|
2012-11-19 16:31:03 +08:00
|
|
|
buffer_part = JOB_MODE;
|
|
|
|
break;
|
2016-04-20 10:49:15 +08:00
|
|
|
}
|
|
|
|
case 'p': {
|
2012-11-19 16:31:03 +08:00
|
|
|
buffer_part = PROCESS_MODE;
|
|
|
|
break;
|
2016-04-20 10:49:15 +08:00
|
|
|
}
|
|
|
|
case 'f': {
|
2020-09-24 23:21:49 +08:00
|
|
|
function_mode = true;
|
2012-11-19 16:31:03 +08:00
|
|
|
break;
|
2016-04-20 10:49:15 +08:00
|
|
|
}
|
|
|
|
case 'o': {
|
2020-09-24 23:21:49 +08:00
|
|
|
tokenize = true;
|
2012-11-19 16:31:03 +08:00
|
|
|
break;
|
2016-04-20 10:49:15 +08:00
|
|
|
}
|
|
|
|
case 'I': {
|
2015-07-26 09:16:00 +08:00
|
|
|
current_buffer = w.woptarg;
|
2019-03-13 05:06:01 +08:00
|
|
|
current_cursor_pos = std::wcslen(w.woptarg);
|
2012-11-19 16:31:03 +08:00
|
|
|
break;
|
2016-04-20 10:49:15 +08:00
|
|
|
}
|
|
|
|
case 'C': {
|
2020-09-24 23:21:49 +08:00
|
|
|
cursor_mode = true;
|
2012-11-19 16:31:03 +08:00
|
|
|
break;
|
2016-04-20 10:49:15 +08:00
|
|
|
}
|
|
|
|
case 'L': {
|
2020-09-24 23:21:49 +08:00
|
|
|
line_mode = true;
|
2012-11-19 16:31:03 +08:00
|
|
|
break;
|
2016-04-20 10:49:15 +08:00
|
|
|
}
|
|
|
|
case 'S': {
|
2020-09-24 23:21:49 +08:00
|
|
|
search_mode = true;
|
2012-11-19 16:31:03 +08:00
|
|
|
break;
|
2016-04-20 10:49:15 +08:00
|
|
|
}
|
|
|
|
case 's': {
|
2020-09-24 23:21:49 +08:00
|
|
|
selection_mode = true;
|
2014-01-15 22:07:22 +08:00
|
|
|
break;
|
2016-04-20 10:49:15 +08:00
|
|
|
}
|
|
|
|
case 'P': {
|
2020-09-24 23:21:49 +08:00
|
|
|
paging_mode = true;
|
2014-01-18 04:53:01 +08:00
|
|
|
break;
|
2016-04-20 10:49:15 +08:00
|
|
|
}
|
|
|
|
case 'h': {
|
2019-10-20 17:38:17 +08:00
|
|
|
builtin_print_help(parser, streams, cmd);
|
2017-05-05 12:35:41 +08:00
|
|
|
return STATUS_CMD_OK;
|
2016-04-20 10:49:15 +08:00
|
|
|
}
|
2017-06-30 12:49:57 +08:00
|
|
|
case ':': {
|
2017-07-02 05:03:47 +08:00
|
|
|
builtin_missing_argument(parser, streams, cmd, argv[w.woptind - 1]);
|
2017-06-30 12:49:57 +08:00
|
|
|
return STATUS_INVALID_ARGS;
|
|
|
|
}
|
2016-04-20 10:49:15 +08:00
|
|
|
case L'?': {
|
2017-06-15 03:26:05 +08:00
|
|
|
builtin_unknown_option(parser, streams, cmd, argv[w.woptind - 1]);
|
2017-05-05 12:35:41 +08:00
|
|
|
return STATUS_INVALID_ARGS;
|
2016-04-20 10:49:15 +08:00
|
|
|
}
|
2016-10-30 08:25:48 +08:00
|
|
|
default: {
|
2017-06-11 03:30:09 +08:00
|
|
|
DIE("unexpected retval from wgetopt_long");
|
2016-10-30 08:25:48 +08:00
|
|
|
}
|
2012-11-18 18:23:22 +08:00
|
|
|
}
|
2012-11-19 08:30:30 +08:00
|
|
|
}
|
|
|
|
|
2016-04-20 10:49:15 +08:00
|
|
|
if (function_mode) {
|
2012-11-19 08:30:30 +08:00
|
|
|
int i;
|
|
|
|
|
2016-04-20 10:49:15 +08:00
|
|
|
// Check for invalid switch combinations.
|
|
|
|
if (buffer_part || cut_at_cursor || append_mode || tokenize || cursor_mode || line_mode ||
|
|
|
|
search_mode || paging_mode) {
|
|
|
|
streams.err.append_format(BUILTIN_ERR_COMBO, argv[0]);
|
2019-03-27 02:13:01 +08:00
|
|
|
builtin_print_error_trailer(parser, streams.err, cmd);
|
2017-05-05 12:35:41 +08:00
|
|
|
return STATUS_INVALID_ARGS;
|
2012-11-18 18:23:22 +08:00
|
|
|
}
|
2012-11-19 08:30:30 +08:00
|
|
|
|
2016-04-20 10:49:15 +08:00
|
|
|
if (argc == w.woptind) {
|
2017-07-02 05:03:47 +08:00
|
|
|
builtin_missing_argument(parser, streams, cmd, argv[0]);
|
2017-05-05 12:35:41 +08:00
|
|
|
return STATUS_INVALID_ARGS;
|
2012-11-18 18:23:22 +08:00
|
|
|
}
|
2016-04-20 10:49:15 +08:00
|
|
|
|
2020-09-12 01:23:26 +08:00
|
|
|
using rl = readline_cmd_t;
|
2016-04-20 10:49:15 +08:00
|
|
|
for (i = w.woptind; i < argc; i++) {
|
2019-03-17 08:05:33 +08:00
|
|
|
if (auto mc = input_function_get_code(argv[i])) {
|
2020-09-12 01:23:26 +08:00
|
|
|
// Don't enqueue a repaint if we're currently in the middle of one,
|
|
|
|
// because that's an infinite loop.
|
|
|
|
if (mc == rl::repaint_mode || mc == rl::force_repaint || mc == rl::repaint) {
|
|
|
|
if (ld.is_repaint) continue;
|
|
|
|
}
|
2021-01-06 05:40:09 +08:00
|
|
|
|
|
|
|
// HACK: Execute these right here and now so they can affect any insertions/changes
|
|
|
|
// made via bindings. The correct solution is to change all `commandline`
|
|
|
|
// insert/replace operations into readline functions with associated data, so that
|
|
|
|
// all queued `commandline` operations - including buffer modifications - are
|
|
|
|
// executed in order
|
|
|
|
if (mc == rl::begin_undo_group || mc == rl::end_undo_group) {
|
|
|
|
reader_handle_command(*mc);
|
|
|
|
} else {
|
|
|
|
// Inserts the readline function at the back of the queue.
|
|
|
|
reader_queue_ch(*mc);
|
|
|
|
}
|
2016-04-20 10:49:15 +08:00
|
|
|
} else {
|
2017-06-15 03:26:05 +08:00
|
|
|
streams.err.append_format(_(L"%ls: Unknown input function '%ls'"), cmd, argv[i]);
|
2019-03-27 02:13:01 +08:00
|
|
|
builtin_print_error_trailer(parser, streams.err, cmd);
|
2017-05-05 12:35:41 +08:00
|
|
|
return STATUS_INVALID_ARGS;
|
2012-11-19 08:30:30 +08:00
|
|
|
}
|
2012-11-18 18:23:22 +08:00
|
|
|
}
|
|
|
|
|
2017-05-05 12:35:41 +08:00
|
|
|
return STATUS_CMD_OK;
|
2012-11-19 08:30:30 +08:00
|
|
|
}
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2016-04-20 10:49:15 +08:00
|
|
|
if (selection_mode) {
|
2014-01-18 17:18:29 +08:00
|
|
|
size_t start, len;
|
2014-01-15 22:07:22 +08:00
|
|
|
const wchar_t *buffer = reader_get_buffer();
|
2016-04-20 10:49:15 +08:00
|
|
|
if (reader_get_selection(&start, &len)) {
|
2015-09-22 02:24:49 +08:00
|
|
|
streams.out.append(buffer + start, len);
|
2014-01-15 22:07:22 +08:00
|
|
|
}
|
2017-05-05 12:35:41 +08:00
|
|
|
return STATUS_CMD_OK;
|
2014-01-15 22:07:22 +08:00
|
|
|
}
|
|
|
|
|
2016-04-20 10:49:15 +08:00
|
|
|
// Check for invalid switch combinations.
|
|
|
|
if ((search_mode || line_mode || cursor_mode || paging_mode) && (argc - w.woptind > 1)) {
|
2019-09-18 13:00:08 +08:00
|
|
|
streams.err.append_format(BUILTIN_ERR_TOO_MANY_ARGUMENTS, argv[0]);
|
2019-03-27 02:13:01 +08:00
|
|
|
builtin_print_error_trailer(parser, streams.err, cmd);
|
2017-05-05 12:35:41 +08:00
|
|
|
return STATUS_INVALID_ARGS;
|
2012-11-19 08:30:30 +08:00
|
|
|
}
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2016-04-20 10:49:15 +08:00
|
|
|
if ((buffer_part || tokenize || cut_at_cursor) &&
|
|
|
|
(cursor_mode || line_mode || search_mode || paging_mode)) {
|
|
|
|
streams.err.append_format(BUILTIN_ERR_COMBO, argv[0]);
|
2019-03-27 02:13:01 +08:00
|
|
|
builtin_print_error_trailer(parser, streams.err, cmd);
|
2017-05-05 12:35:41 +08:00
|
|
|
return STATUS_INVALID_ARGS;
|
2012-11-19 08:30:30 +08:00
|
|
|
}
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2016-04-20 10:49:15 +08:00
|
|
|
if ((tokenize || cut_at_cursor) && (argc - w.woptind)) {
|
|
|
|
streams.err.append_format(
|
2017-06-15 03:26:05 +08:00
|
|
|
BUILTIN_ERR_COMBO2, cmd,
|
2016-04-20 10:49:15 +08:00
|
|
|
L"--cut-at-cursor and --tokenize can not be used when setting the commandline");
|
2019-03-27 02:13:01 +08:00
|
|
|
builtin_print_error_trailer(parser, streams.err, cmd);
|
2017-05-05 12:35:41 +08:00
|
|
|
return STATUS_INVALID_ARGS;
|
2012-11-19 08:30:30 +08:00
|
|
|
}
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2016-04-20 10:49:15 +08:00
|
|
|
if (append_mode && !(argc - w.woptind)) {
|
2020-04-23 23:17:19 +08:00
|
|
|
// No tokens in insert mode just means we do nothing.
|
|
|
|
return STATUS_CMD_ERROR;
|
2012-11-18 18:23:22 +08:00
|
|
|
}
|
|
|
|
|
2016-04-20 10:49:15 +08:00
|
|
|
// Set default modes.
|
|
|
|
if (!append_mode) {
|
2012-11-19 08:30:30 +08:00
|
|
|
append_mode = REPLACE_MODE;
|
2012-11-18 18:23:22 +08:00
|
|
|
}
|
|
|
|
|
2016-04-20 10:49:15 +08:00
|
|
|
if (!buffer_part) {
|
2012-11-19 08:30:30 +08:00
|
|
|
buffer_part = STRING_MODE;
|
2012-11-18 18:23:22 +08:00
|
|
|
}
|
|
|
|
|
2016-04-20 10:49:15 +08:00
|
|
|
if (cursor_mode) {
|
|
|
|
if (argc - w.woptind) {
|
2016-11-23 12:24:03 +08:00
|
|
|
long new_pos = fish_wcstol(argv[w.woptind]);
|
|
|
|
if (errno) {
|
2017-06-15 03:26:05 +08:00
|
|
|
streams.err.append_format(BUILTIN_ERR_NOT_NUMBER, cmd, argv[w.woptind]);
|
2019-03-27 02:13:01 +08:00
|
|
|
builtin_print_error_trailer(parser, streams.err, cmd);
|
2012-11-19 08:30:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
current_buffer = reader_get_buffer();
|
2019-11-19 09:08:16 +08:00
|
|
|
new_pos =
|
|
|
|
std::max(0L, std::min(new_pos, static_cast<long>(std::wcslen(current_buffer))));
|
|
|
|
reader_set_buffer(current_buffer, static_cast<size_t>(new_pos));
|
2016-04-20 10:49:15 +08:00
|
|
|
} else {
|
2019-11-19 09:08:16 +08:00
|
|
|
streams.out.append_format(L"%lu\n",
|
|
|
|
static_cast<unsigned long>(reader_get_cursor_pos()));
|
2012-11-19 08:30:30 +08:00
|
|
|
}
|
2017-05-05 12:35:41 +08:00
|
|
|
return STATUS_CMD_OK;
|
2012-11-18 18:23:22 +08:00
|
|
|
}
|
|
|
|
|
2016-04-20 10:49:15 +08:00
|
|
|
if (line_mode) {
|
2012-11-19 08:30:30 +08:00
|
|
|
size_t pos = reader_get_cursor_pos();
|
|
|
|
const wchar_t *buff = reader_get_buffer();
|
2019-11-19 09:08:16 +08:00
|
|
|
streams.out.append_format(L"%lu\n",
|
|
|
|
static_cast<unsigned long>(parse_util_lineno(buff, pos)));
|
2017-05-05 12:35:41 +08:00
|
|
|
return STATUS_CMD_OK;
|
2012-11-19 08:30:30 +08:00
|
|
|
}
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2016-04-20 10:49:15 +08:00
|
|
|
if (search_mode) {
|
2018-08-12 05:30:10 +08:00
|
|
|
return reader_is_in_search_mode() ? 0 : 1;
|
2012-11-19 08:30:30 +08:00
|
|
|
}
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2016-04-20 10:49:15 +08:00
|
|
|
if (paging_mode) {
|
2018-08-12 05:30:10 +08:00
|
|
|
return reader_has_pager_contents() ? 0 : 1;
|
2012-11-19 08:30:30 +08:00
|
|
|
}
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2016-04-20 10:49:15 +08:00
|
|
|
switch (buffer_part) {
|
|
|
|
case STRING_MODE: {
|
2018-10-02 00:34:58 +08:00
|
|
|
begin = current_buffer;
|
2019-03-13 05:06:01 +08:00
|
|
|
end = begin + std::wcslen(begin);
|
2012-11-19 16:31:03 +08:00
|
|
|
break;
|
|
|
|
}
|
2016-04-20 10:49:15 +08:00
|
|
|
case PROCESS_MODE: {
|
2019-10-29 20:32:26 +08:00
|
|
|
parse_util_process_extent(current_buffer, current_cursor_pos, &begin, &end, nullptr);
|
2012-11-19 16:31:03 +08:00
|
|
|
break;
|
|
|
|
}
|
2016-04-20 10:49:15 +08:00
|
|
|
case JOB_MODE: {
|
2018-10-02 00:34:58 +08:00
|
|
|
parse_util_job_extent(current_buffer, current_cursor_pos, &begin, &end);
|
2012-11-19 16:31:03 +08:00
|
|
|
break;
|
|
|
|
}
|
2016-04-20 10:49:15 +08:00
|
|
|
case TOKEN_MODE: {
|
2019-11-19 10:34:50 +08:00
|
|
|
parse_util_token_extent(current_buffer, current_cursor_pos, &begin, &end, nullptr,
|
|
|
|
nullptr);
|
2012-11-19 16:31:03 +08:00
|
|
|
break;
|
|
|
|
}
|
2016-10-30 08:25:48 +08:00
|
|
|
default: {
|
|
|
|
DIE("unexpected buffer_part");
|
|
|
|
}
|
2012-11-19 08:30:30 +08:00
|
|
|
}
|
2012-11-18 18:23:22 +08:00
|
|
|
|
2016-10-23 11:32:25 +08:00
|
|
|
int arg_count = argc - w.woptind;
|
|
|
|
if (arg_count == 0) {
|
2018-10-02 00:34:58 +08:00
|
|
|
write_part(begin, end, cut_at_cursor, tokenize, current_buffer, current_cursor_pos,
|
|
|
|
streams);
|
2016-10-23 11:32:25 +08:00
|
|
|
} else if (arg_count == 1) {
|
2018-10-02 00:34:58 +08:00
|
|
|
replace_part(begin, end, argv[w.woptind], append_mode, current_buffer, current_cursor_pos);
|
2016-10-23 11:32:25 +08:00
|
|
|
} else {
|
|
|
|
wcstring sb = argv[w.woptind];
|
|
|
|
for (int i = w.woptind + 1; i < argc; i++) {
|
|
|
|
sb.push_back(L'\n');
|
|
|
|
sb.append(argv[i]);
|
2012-11-19 16:31:03 +08:00
|
|
|
}
|
2018-10-02 00:34:58 +08:00
|
|
|
replace_part(begin, end, sb.c_str(), append_mode, current_buffer, current_cursor_pos);
|
2012-11-18 18:23:22 +08:00
|
|
|
}
|
|
|
|
|
2017-05-05 12:35:41 +08:00
|
|
|
return STATUS_CMD_OK;
|
2005-09-20 21:26:39 +08:00
|
|
|
}
|