2009-09-14 01:07:32 +00:00
|
|
|
/**
|
2013-05-03 06:02:03 +00:00
|
|
|
* Copyright (c) 2007-2012, Timothy Stack
|
|
|
|
*
|
|
|
|
* All rights reserved.
|
2013-05-28 04:35:00 +00:00
|
|
|
*
|
2013-05-03 06:02:03 +00:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
2013-05-28 04:35:00 +00:00
|
|
|
*
|
2013-05-03 06:02:03 +00:00
|
|
|
* * Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
* * Neither the name of Timothy Stack nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
2013-05-28 04:35:00 +00:00
|
|
|
*
|
2013-05-03 06:02:03 +00:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND ANY
|
|
|
|
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY
|
|
|
|
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
|
|
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
2009-09-14 01:07:32 +00:00
|
|
|
* @file readline_curses.cc
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
|
|
|
|
#ifdef HAVE_PTY_H
|
|
|
|
#include <pty.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_UTIL_H
|
|
|
|
#include <util.h>
|
|
|
|
#endif
|
|
|
|
|
2009-12-24 18:36:01 +00:00
|
|
|
#ifdef HAVE_LIBUTIL_H
|
|
|
|
#include <libutil.h>
|
|
|
|
#endif
|
|
|
|
|
2009-09-14 01:07:32 +00:00
|
|
|
#include <string>
|
|
|
|
|
2014-03-04 15:38:33 +00:00
|
|
|
#include "pcrepp.hh"
|
2009-09-14 01:07:32 +00:00
|
|
|
#include "auto_mem.hh"
|
2014-03-02 00:35:30 +00:00
|
|
|
#include "lnav_log.hh"
|
2015-04-09 03:36:45 +00:00
|
|
|
#include "lnav_util.hh"
|
2013-06-14 13:49:00 +00:00
|
|
|
#include "ansi_scrubber.hh"
|
2009-09-14 01:07:32 +00:00
|
|
|
#include "readline_curses.hh"
|
2017-03-26 13:02:53 +00:00
|
|
|
#include "spookyhash/SpookyV2.h"
|
2018-09-13 21:27:49 +00:00
|
|
|
#include "fts_fuzzy_match.hh"
|
2009-09-14 01:07:32 +00:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
2013-06-16 01:07:50 +00:00
|
|
|
static int got_line = 0;
|
2013-05-28 04:35:00 +00:00
|
|
|
static sig_atomic_t got_timeout = 0;
|
|
|
|
static sig_atomic_t got_winch = 0;
|
2009-09-14 01:07:32 +00:00
|
|
|
static readline_curses *child_this;
|
2013-05-28 04:35:00 +00:00
|
|
|
static sig_atomic_t looping = 1;
|
|
|
|
static const int HISTORY_SIZE = 256;
|
2018-09-13 21:27:49 +00:00
|
|
|
static int completion_start;
|
2018-09-29 07:20:45 +00:00
|
|
|
static const int FUZZY_PEER_THRESHOLD = 30;
|
2009-09-14 01:07:32 +00:00
|
|
|
|
2014-02-10 02:41:32 +00:00
|
|
|
static const char *RL_INIT[] = {
|
|
|
|
/*
|
|
|
|
* XXX Need to keep the input on a single line since the display screws
|
|
|
|
* up if it wraps around.
|
|
|
|
*/
|
|
|
|
"set horizontal-scroll-mode on",
|
2017-10-19 05:34:55 +00:00
|
|
|
"set bell-style none",
|
2018-09-13 21:27:49 +00:00
|
|
|
"set show-all-if-ambiguous on",
|
|
|
|
"set show-all-if-unmodified on",
|
|
|
|
"set menu-complete-display-prefix on",
|
|
|
|
"TAB: menu-complete",
|
|
|
|
"\"\\x0b\": menu-complete-backward",
|
2014-02-10 02:41:32 +00:00
|
|
|
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2009-09-14 01:07:32 +00:00
|
|
|
readline_context *readline_context::loaded_context;
|
2013-05-28 04:35:00 +00:00
|
|
|
set<string> * readline_context::arg_possibilities;
|
2014-03-09 09:29:28 +00:00
|
|
|
static string last_match_str;
|
|
|
|
static bool last_match_str_valid;
|
2009-09-14 01:07:32 +00:00
|
|
|
|
|
|
|
static void sigalrm(int sig)
|
|
|
|
{
|
|
|
|
got_timeout = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void sigwinch(int sig)
|
|
|
|
{
|
|
|
|
got_winch = 1;
|
|
|
|
}
|
|
|
|
|
2010-02-24 04:35:52 +00:00
|
|
|
static void sigterm(int sig)
|
|
|
|
{
|
|
|
|
looping = 0;
|
|
|
|
}
|
|
|
|
|
2009-09-14 01:07:32 +00:00
|
|
|
static void line_ready_tramp(char *line)
|
|
|
|
{
|
|
|
|
child_this->line_ready(line);
|
|
|
|
got_line = 1;
|
|
|
|
rl_callback_handler_remove();
|
|
|
|
}
|
|
|
|
|
2014-03-09 09:29:28 +00:00
|
|
|
static int sendall(int sock, const char *buf, size_t len)
|
2011-05-14 19:06:32 +00:00
|
|
|
{
|
2014-03-09 09:29:28 +00:00
|
|
|
off_t offset = 0;
|
2013-05-28 04:35:00 +00:00
|
|
|
|
2014-03-09 09:29:28 +00:00
|
|
|
while (len > 0) {
|
|
|
|
int rc = send(sock, &buf[offset], len, 0);
|
2013-05-28 04:35:00 +00:00
|
|
|
|
2014-03-09 09:29:28 +00:00
|
|
|
if (rc == -1) {
|
|
|
|
switch (errno) {
|
|
|
|
case EAGAIN:
|
|
|
|
case EINTR:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -1;
|
|
|
|
}
|
2013-05-28 04:35:00 +00:00
|
|
|
}
|
2014-03-09 09:29:28 +00:00
|
|
|
else {
|
|
|
|
len -= rc;
|
|
|
|
offset += rc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int sendstring(int sock, const char *buf, size_t len)
|
|
|
|
{
|
|
|
|
if (sendall(sock, (char *)&len, sizeof(len)) == -1) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
else if (sendall(sock, buf, len) == -1) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-08-03 13:49:07 +00:00
|
|
|
static int sendcmd(int sock, char cmd, const char *buf, size_t len)
|
|
|
|
{
|
|
|
|
size_t total_len = len + 2;
|
|
|
|
char prefix[2] = { cmd, ':' };
|
|
|
|
|
|
|
|
if (sendall(sock, (char *)&total_len, sizeof(total_len)) == -1) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
else if (sendall(sock, prefix, sizeof(prefix)) == -1 ||
|
|
|
|
sendall(sock, buf, len) == -1) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-03-09 09:29:28 +00:00
|
|
|
static int recvall(int sock, char *buf, size_t len)
|
|
|
|
{
|
|
|
|
off_t offset = 0;
|
|
|
|
|
|
|
|
while (len > 0) {
|
|
|
|
int rc = recv(sock, &buf[offset], len, 0);
|
|
|
|
|
|
|
|
if (rc == -1) {
|
|
|
|
switch (errno) {
|
|
|
|
case EAGAIN:
|
|
|
|
case EINTR:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -1;
|
|
|
|
}
|
2013-05-28 04:35:00 +00:00
|
|
|
}
|
2014-03-10 06:38:30 +00:00
|
|
|
else if (rc == 0) {
|
|
|
|
errno = EIO;
|
|
|
|
return -1;
|
|
|
|
}
|
2013-05-28 04:35:00 +00:00
|
|
|
else {
|
2014-03-09 09:29:28 +00:00
|
|
|
len -= rc;
|
|
|
|
offset += rc;
|
2013-05-28 04:35:00 +00:00
|
|
|
}
|
2011-05-14 19:06:32 +00:00
|
|
|
}
|
|
|
|
|
2014-03-09 09:29:28 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t recvstring(int sock, char *buf, size_t len)
|
|
|
|
{
|
|
|
|
ssize_t retval;
|
|
|
|
|
|
|
|
if (recvall(sock, (char *)&retval, sizeof(retval)) == -1) {
|
|
|
|
return -1;
|
|
|
|
}
|
2015-04-02 04:38:28 +00:00
|
|
|
else if (retval > (ssize_t)len) {
|
2014-03-09 09:29:28 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
else if (recvall(sock, buf, retval) == -1) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2011-05-14 19:06:32 +00:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2009-09-14 01:07:32 +00:00
|
|
|
char *readline_context::completion_generator(const char *text, int state)
|
|
|
|
{
|
|
|
|
static vector<string> matches;
|
|
|
|
|
|
|
|
char *retval = NULL;
|
|
|
|
|
|
|
|
if (state == 0) {
|
2013-05-28 04:35:00 +00:00
|
|
|
int len = strlen(text);
|
|
|
|
|
|
|
|
matches.clear();
|
|
|
|
if (arg_possibilities != NULL) {
|
|
|
|
set<string>::iterator iter;
|
|
|
|
|
|
|
|
for (iter = arg_possibilities->begin();
|
|
|
|
iter != arg_possibilities->end();
|
|
|
|
++iter) {
|
|
|
|
int (*cmpfunc)(const char *, const char *, size_t);
|
2015-04-25 19:15:51 +00:00
|
|
|
const char *poss_str = iter->c_str();
|
2013-05-28 04:35:00 +00:00
|
|
|
|
|
|
|
cmpfunc = (loaded_context->is_case_sensitive() ?
|
|
|
|
strncmp : strncasecmp);
|
2015-04-25 19:15:51 +00:00
|
|
|
// Check for an exact match and for the quoted version.
|
|
|
|
if (cmpfunc(text, poss_str, len) == 0 ||
|
2017-04-05 14:05:19 +00:00
|
|
|
((strchr(loaded_context->rc_quote_chars, poss_str[0]) != NULL) &&
|
|
|
|
cmpfunc(text, &poss_str[1], len) == 0)) {
|
2013-05-28 04:35:00 +00:00
|
|
|
matches.push_back(*iter);
|
|
|
|
}
|
|
|
|
}
|
2018-09-13 21:27:49 +00:00
|
|
|
|
|
|
|
if (matches.empty()) {
|
|
|
|
vector<pair<int, string>> fuzzy_matches;
|
|
|
|
|
|
|
|
for (iter = arg_possibilities->begin();
|
|
|
|
iter != arg_possibilities->end();
|
|
|
|
++iter) {
|
|
|
|
const char *poss_str = iter->c_str();
|
|
|
|
int score;
|
|
|
|
|
|
|
|
if (fts::fuzzy_match(text, poss_str, score) && score > 0) {
|
|
|
|
log_debug("match score %d %s %s", score, text, poss_str);
|
2018-09-29 07:20:45 +00:00
|
|
|
if (score <= 0) {
|
|
|
|
continue;
|
|
|
|
}
|
2018-09-13 21:27:49 +00:00
|
|
|
fuzzy_matches.emplace_back(score, *iter);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!fuzzy_matches.empty()) {
|
|
|
|
stable_sort(begin(fuzzy_matches), end(fuzzy_matches),
|
|
|
|
[](auto l, auto r) { return r.first < l.first; });
|
|
|
|
|
|
|
|
int highest = fuzzy_matches[0].first;
|
|
|
|
|
|
|
|
for (auto pair : fuzzy_matches) {
|
2018-09-29 07:20:45 +00:00
|
|
|
if (highest - pair.first < FUZZY_PEER_THRESHOLD) {
|
2018-09-13 21:27:49 +00:00
|
|
|
matches.push_back(pair.second);
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-05-28 04:35:00 +00:00
|
|
|
}
|
2009-09-14 01:07:32 +00:00
|
|
|
|
2014-03-09 15:54:55 +00:00
|
|
|
if (matches.size() == 1) {
|
|
|
|
if (strcmp(text, matches[0].c_str()) == 0) {
|
|
|
|
matches.pop_back();
|
|
|
|
}
|
2014-03-09 09:29:28 +00:00
|
|
|
|
2014-03-09 15:54:55 +00:00
|
|
|
last_match_str_valid = false;
|
|
|
|
if (sendstring(child_this->rc_command_pipe[readline_curses::RCF_SLAVE],
|
2018-09-13 21:27:49 +00:00
|
|
|
"m:0:0:0",
|
|
|
|
7) == -1) {
|
2014-03-09 15:54:55 +00:00
|
|
|
_exit(1);
|
|
|
|
}
|
2014-03-09 09:29:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-14 01:07:32 +00:00
|
|
|
if (!matches.empty()) {
|
2013-05-28 04:35:00 +00:00
|
|
|
retval = strdup(matches.back().c_str());
|
|
|
|
matches.pop_back();
|
2009-09-14 01:07:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
char **readline_context::attempted_completion(const char *text,
|
2013-05-28 04:35:00 +00:00
|
|
|
int start,
|
|
|
|
int end)
|
2009-09-14 01:07:32 +00:00
|
|
|
{
|
|
|
|
char **retval = NULL;
|
|
|
|
|
2018-09-13 21:27:49 +00:00
|
|
|
completion_start = start;
|
2015-12-29 04:30:04 +00:00
|
|
|
if (start == 0 && loaded_context->rc_possibilities.find("__command") !=
|
|
|
|
loaded_context->rc_possibilities.end()) {
|
|
|
|
arg_possibilities = &loaded_context->rc_possibilities["__command"];
|
2014-02-10 02:41:32 +00:00
|
|
|
rl_completion_append_character = loaded_context->rc_append_character;
|
2009-09-19 22:36:27 +00:00
|
|
|
}
|
2009-09-14 01:07:32 +00:00
|
|
|
else {
|
2013-05-28 04:35:00 +00:00
|
|
|
char * space;
|
|
|
|
string cmd;
|
|
|
|
|
|
|
|
rl_completion_append_character = 0;
|
|
|
|
space = strchr(rl_line_buffer, ' ');
|
2017-04-06 06:20:55 +00:00
|
|
|
if (space == nullptr) {
|
|
|
|
space = rl_line_buffer + strlen(rl_line_buffer);
|
|
|
|
}
|
2014-03-13 06:30:11 +00:00
|
|
|
cmd = string(rl_line_buffer, space - rl_line_buffer);
|
2013-05-28 04:35:00 +00:00
|
|
|
|
2017-04-06 06:20:55 +00:00
|
|
|
auto iter = loaded_context->rc_prototypes.find(cmd);
|
2013-05-28 04:35:00 +00:00
|
|
|
|
2017-04-06 06:20:55 +00:00
|
|
|
if (iter == loaded_context->rc_prototypes.end()) {
|
|
|
|
if (loaded_context->rc_possibilities.find("*") !=
|
|
|
|
loaded_context->rc_possibilities.end()) {
|
|
|
|
arg_possibilities = &loaded_context->rc_possibilities["*"];
|
|
|
|
rl_completion_append_character = loaded_context->rc_append_character;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
vector<string> &proto = loaded_context->rc_prototypes[cmd];
|
|
|
|
|
|
|
|
if (proto.empty()) {
|
|
|
|
arg_possibilities = NULL;
|
|
|
|
} else if (proto[0] == "filename") {
|
|
|
|
return NULL; /* XXX */
|
|
|
|
} else {
|
|
|
|
arg_possibilities = &(loaded_context->rc_possibilities[proto[0]]);
|
|
|
|
}
|
2013-05-28 04:35:00 +00:00
|
|
|
}
|
2009-09-14 01:07:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
retval = rl_completion_matches(text, completion_generator);
|
|
|
|
if (retval == NULL) {
|
2013-05-28 04:35:00 +00:00
|
|
|
rl_attempted_completion_over = 1;
|
2009-09-14 01:07:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2017-11-06 05:19:46 +00:00
|
|
|
static int rubout_char_or_abort(int count, int key)
|
|
|
|
{
|
|
|
|
if (rl_line_buffer[0] == '\0') {
|
|
|
|
rl_done = true;
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
return rl_rubout(count, '\b');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-13 21:27:49 +00:00
|
|
|
int readline_context::command_complete(int count, int key)
|
|
|
|
{
|
|
|
|
if (loaded_context->rc_possibilities.find("__command") !=
|
|
|
|
loaded_context->rc_possibilities.end()) {
|
|
|
|
char *space = strchr(rl_line_buffer, ' ');
|
|
|
|
|
|
|
|
if (space == nullptr) {
|
|
|
|
return rl_menu_complete(count, key);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return rl_insert(count, key);
|
|
|
|
}
|
|
|
|
|
2009-09-14 01:07:32 +00:00
|
|
|
readline_curses::readline_curses()
|
|
|
|
: rc_active_context(-1),
|
2013-06-19 04:56:06 +00:00
|
|
|
rc_child(-1),
|
2014-03-09 09:29:28 +00:00
|
|
|
rc_value_expiration(0),
|
2014-03-09 19:55:02 +00:00
|
|
|
rc_matches_remaining(0),
|
|
|
|
rc_max_match_length(0)
|
2009-09-14 01:07:32 +00:00
|
|
|
{
|
|
|
|
struct winsize ws;
|
|
|
|
int sp[2];
|
|
|
|
|
2014-03-09 09:29:28 +00:00
|
|
|
if (socketpair(PF_UNIX, SOCK_STREAM, 0, sp) < 0) {
|
2013-05-28 04:35:00 +00:00
|
|
|
throw error(errno);
|
2009-09-14 01:07:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
this->rc_command_pipe[RCF_MASTER] = sp[RCF_MASTER];
|
|
|
|
this->rc_command_pipe[RCF_SLAVE] = sp[RCF_SLAVE];
|
|
|
|
|
|
|
|
if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &ws) == -1) {
|
2013-05-28 04:35:00 +00:00
|
|
|
throw error(errno);
|
2009-09-14 01:07:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (openpty(this->rc_pty[RCF_MASTER].out(),
|
2013-05-28 04:35:00 +00:00
|
|
|
this->rc_pty[RCF_SLAVE].out(),
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
&ws) < 0) {
|
2015-04-08 10:57:34 +00:00
|
|
|
perror("error: failed to open terminal(openpty)");
|
2013-05-28 04:35:00 +00:00
|
|
|
throw error(errno);
|
2009-09-14 01:07:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ((this->rc_child = fork()) == -1) {
|
2013-05-28 04:35:00 +00:00
|
|
|
throw error(errno);
|
2009-09-14 01:07:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (this->rc_child == 0) {
|
2013-05-28 04:35:00 +00:00
|
|
|
char buffer[1024];
|
|
|
|
|
|
|
|
this->rc_command_pipe[RCF_MASTER].reset();
|
|
|
|
this->rc_pty[RCF_MASTER].reset();
|
|
|
|
|
|
|
|
signal(SIGALRM, sigalrm);
|
|
|
|
signal(SIGWINCH, sigwinch);
|
|
|
|
signal(SIGINT, sigterm);
|
|
|
|
signal(SIGTERM, sigterm);
|
|
|
|
|
|
|
|
dup2(this->rc_pty[RCF_SLAVE], STDIN_FILENO);
|
|
|
|
dup2(this->rc_pty[RCF_SLAVE], STDOUT_FILENO);
|
|
|
|
|
|
|
|
setenv("TERM", "vt52", 1);
|
|
|
|
|
|
|
|
rl_initialize();
|
|
|
|
using_history();
|
|
|
|
stifle_history(HISTORY_SIZE);
|
|
|
|
|
2017-11-06 05:19:46 +00:00
|
|
|
rl_add_defun("rubout-char-or-abort", rubout_char_or_abort, '\b');
|
2018-09-13 21:27:49 +00:00
|
|
|
// rl_add_defun("command-complete", readline_context::command_complete, ' ');
|
2017-11-06 05:19:46 +00:00
|
|
|
|
2014-02-10 02:41:32 +00:00
|
|
|
for (int lpc = 0; RL_INIT[lpc]; lpc++) {
|
2014-09-29 05:36:07 +00:00
|
|
|
snprintf(buffer, sizeof(buffer), "%s", RL_INIT[lpc]);
|
2014-02-10 02:41:32 +00:00
|
|
|
rl_parse_and_bind(buffer); /* NOTE: buffer is modified */
|
|
|
|
}
|
2013-05-28 04:35:00 +00:00
|
|
|
|
|
|
|
child_this = this;
|
2009-09-14 01:07:32 +00:00
|
|
|
}
|
|
|
|
else {
|
2013-05-28 04:35:00 +00:00
|
|
|
this->rc_command_pipe[RCF_SLAVE].reset();
|
|
|
|
this->rc_pty[RCF_SLAVE].reset();
|
2009-09-14 01:07:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
readline_curses::~readline_curses()
|
|
|
|
{
|
|
|
|
if (this->rc_child == 0) {
|
2014-03-02 00:35:30 +00:00
|
|
|
_exit(0);
|
2009-09-14 01:07:32 +00:00
|
|
|
}
|
|
|
|
else if (this->rc_child > 0) {
|
2013-05-28 04:35:00 +00:00
|
|
|
int status;
|
2009-09-14 01:07:32 +00:00
|
|
|
|
2013-05-28 04:35:00 +00:00
|
|
|
kill(this->rc_child, SIGTERM);
|
|
|
|
this->rc_child = -1;
|
2009-09-14 01:07:32 +00:00
|
|
|
|
2013-05-28 04:35:00 +00:00
|
|
|
while (wait(&status) < 0 && (errno == EINTR)) {
|
|
|
|
;
|
|
|
|
}
|
2009-09-14 01:07:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-09 09:29:28 +00:00
|
|
|
void readline_curses::store_matches(
|
|
|
|
char **matches, int num_matches, int max_len)
|
|
|
|
{
|
|
|
|
char msg[64];
|
|
|
|
int rc;
|
|
|
|
|
2014-03-12 15:32:56 +00:00
|
|
|
max_len = 0;
|
2014-03-13 03:02:59 +00:00
|
|
|
for (int lpc = 0; lpc <= num_matches; lpc++) {
|
2014-03-12 15:32:56 +00:00
|
|
|
max_len = max(max_len, (int)strlen(matches[lpc]));
|
|
|
|
}
|
|
|
|
|
2014-03-09 09:29:28 +00:00
|
|
|
if (last_match_str_valid && strcmp(last_match_str.c_str(), matches[0]) == 0) {
|
|
|
|
if (sendstring(child_this->rc_command_pipe[RCF_SLAVE], "n", 1) == -1) {
|
|
|
|
_exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2018-09-13 21:27:49 +00:00
|
|
|
rc = snprintf(msg, sizeof(msg),
|
|
|
|
"m:%d:%d:%d",
|
|
|
|
completion_start, num_matches, max_len);
|
2014-03-09 09:29:28 +00:00
|
|
|
if (sendstring(child_this->rc_command_pipe[RCF_SLAVE], msg, rc) == -1) {
|
|
|
|
_exit(1);
|
|
|
|
}
|
|
|
|
for (int lpc = 1; lpc <= num_matches; lpc++) {
|
|
|
|
if (sendstring(child_this->rc_command_pipe[RCF_SLAVE],
|
|
|
|
matches[lpc],
|
|
|
|
strlen(matches[lpc])) == -1) {
|
|
|
|
_exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
last_match_str = matches[0];
|
|
|
|
last_match_str_valid = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-14 01:07:32 +00:00
|
|
|
void readline_curses::start(void)
|
|
|
|
{
|
|
|
|
if (this->rc_child != 0) {
|
2013-05-28 04:35:00 +00:00
|
|
|
return;
|
2009-09-14 01:07:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
map<int, readline_context *>::iterator current_context;
|
|
|
|
fd_set rfds;
|
|
|
|
int maxfd;
|
|
|
|
|
2014-03-06 14:58:49 +00:00
|
|
|
require(!this->rc_contexts.empty());
|
2009-09-14 01:07:32 +00:00
|
|
|
|
2014-03-09 09:29:28 +00:00
|
|
|
rl_completion_display_matches_hook = store_matches;
|
2009-09-14 01:07:32 +00:00
|
|
|
|
|
|
|
current_context = this->rc_contexts.end();
|
|
|
|
|
|
|
|
FD_ZERO(&rfds);
|
|
|
|
FD_SET(STDIN_FILENO, &rfds);
|
|
|
|
FD_SET(this->rc_command_pipe[RCF_SLAVE], &rfds);
|
|
|
|
|
|
|
|
maxfd = max(STDIN_FILENO, this->rc_command_pipe[RCF_SLAVE].get());
|
|
|
|
|
2010-02-24 04:35:52 +00:00
|
|
|
while (looping) {
|
2013-05-28 04:35:00 +00:00
|
|
|
fd_set ready_rfds = rfds;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
rc = select(maxfd + 1, &ready_rfds, NULL, NULL, NULL);
|
|
|
|
if (rc < 0) {
|
|
|
|
switch (errno) {
|
|
|
|
case EINTR:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (FD_ISSET(STDIN_FILENO, &ready_rfds)) {
|
2017-03-26 13:02:53 +00:00
|
|
|
static uint64_t last_h1, last_h2;
|
|
|
|
|
2013-05-28 04:35:00 +00:00
|
|
|
struct itimerval itv;
|
|
|
|
|
2014-03-02 00:35:30 +00:00
|
|
|
if (current_context == this->rc_contexts.end()) {
|
|
|
|
looping = false;
|
|
|
|
break;
|
|
|
|
}
|
2013-05-28 04:35:00 +00:00
|
|
|
|
|
|
|
itv.it_value.tv_sec = 0;
|
|
|
|
itv.it_value.tv_usec = KEY_TIMEOUT;
|
|
|
|
itv.it_interval.tv_sec = 0;
|
|
|
|
itv.it_interval.tv_usec = 0;
|
|
|
|
setitimer(ITIMER_REAL, &itv, NULL);
|
|
|
|
|
|
|
|
rl_callback_read_char();
|
|
|
|
if (RL_ISSTATE(RL_STATE_DONE) && !got_line) {
|
|
|
|
got_line = 1;
|
|
|
|
this->line_ready("");
|
|
|
|
rl_callback_handler_remove();
|
|
|
|
}
|
2015-08-03 13:49:07 +00:00
|
|
|
else {
|
2017-03-26 13:02:53 +00:00
|
|
|
uint64_t h1 = 1, h2 = 2;
|
|
|
|
|
|
|
|
SpookyHash::Hash128(rl_line_buffer, rl_end, &h1, &h2);
|
|
|
|
|
2018-09-13 21:27:49 +00:00
|
|
|
if (rl_last_func == readline_context::command_complete) {
|
|
|
|
rl_last_func = rl_menu_complete;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool complete_done = (
|
|
|
|
rl_last_func != rl_menu_complete &&
|
|
|
|
rl_last_func != rl_backward_menu_complete);
|
|
|
|
|
2017-03-26 13:02:53 +00:00
|
|
|
if (h1 == last_h1 && h2 == last_h2) {
|
|
|
|
// do nothing
|
|
|
|
} else if (sendcmd(this->rc_command_pipe[RCF_SLAVE],
|
2018-09-13 21:27:49 +00:00
|
|
|
complete_done ? 'l': 'c',
|
2017-03-26 13:02:53 +00:00
|
|
|
rl_line_buffer,
|
|
|
|
rl_end) != 0) {
|
2015-08-03 13:49:07 +00:00
|
|
|
perror("line: write failed");
|
|
|
|
_exit(1);
|
|
|
|
}
|
2017-03-26 13:02:53 +00:00
|
|
|
last_h1 = h1;
|
|
|
|
last_h2 = h2;
|
2015-08-03 13:49:07 +00:00
|
|
|
}
|
2013-05-28 04:35:00 +00:00
|
|
|
}
|
|
|
|
if (FD_ISSET(this->rc_command_pipe[RCF_SLAVE], &ready_rfds)) {
|
|
|
|
char msg[1024 + 1];
|
|
|
|
|
2014-03-09 09:29:28 +00:00
|
|
|
if ((rc = recvstring(this->rc_command_pipe[RCF_SLAVE],
|
|
|
|
msg,
|
|
|
|
sizeof(msg) - 1)) < 0) {
|
2013-05-28 04:35:00 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
int context, prompt_start = 0;
|
|
|
|
char type[32];
|
|
|
|
|
|
|
|
msg[rc] = '\0';
|
|
|
|
if (sscanf(msg, "f:%d:%n", &context, &prompt_start) == 1 &&
|
|
|
|
prompt_start != 0 &&
|
|
|
|
(current_context = this->rc_contexts.find(context)) !=
|
|
|
|
this->rc_contexts.end()) {
|
|
|
|
current_context->second->load();
|
|
|
|
rl_callback_handler_install(&msg[prompt_start],
|
|
|
|
line_ready_tramp);
|
2014-03-09 09:29:28 +00:00
|
|
|
last_match_str_valid = false;
|
2015-08-03 13:49:07 +00:00
|
|
|
if (sendcmd(this->rc_command_pipe[RCF_SLAVE],
|
|
|
|
'l',
|
|
|
|
rl_line_buffer,
|
|
|
|
rl_end) != 0) {
|
|
|
|
perror("line: write failed");
|
|
|
|
_exit(1);
|
|
|
|
}
|
2013-05-28 04:35:00 +00:00
|
|
|
}
|
2013-07-24 14:42:16 +00:00
|
|
|
else if (strcmp(msg, "a") == 0) {
|
|
|
|
char reply[4];
|
|
|
|
|
|
|
|
rl_done = 1;
|
|
|
|
got_timeout = 0;
|
|
|
|
got_line = 1;
|
|
|
|
rl_callback_handler_remove();
|
|
|
|
|
|
|
|
snprintf(reply, sizeof(reply), "a");
|
|
|
|
|
2014-03-09 09:29:28 +00:00
|
|
|
if (sendstring(this->rc_command_pipe[RCF_SLAVE],
|
|
|
|
reply,
|
|
|
|
strlen(reply)) == -1) {
|
2013-07-24 14:42:16 +00:00
|
|
|
perror("abort: write failed");
|
2014-03-09 09:29:28 +00:00
|
|
|
_exit(1);
|
2013-07-24 14:42:16 +00:00
|
|
|
}
|
|
|
|
}
|
2013-05-28 04:35:00 +00:00
|
|
|
else if (sscanf(msg,
|
|
|
|
"ap:%d:%31[^:]:%n",
|
|
|
|
&context,
|
|
|
|
type,
|
|
|
|
&prompt_start) == 2) {
|
2014-03-06 14:58:49 +00:00
|
|
|
require(this->rc_contexts[context] != NULL);
|
2013-05-28 04:35:00 +00:00
|
|
|
|
|
|
|
this->rc_contexts[context]->
|
|
|
|
add_possibility(string(type),
|
|
|
|
string(&msg[prompt_start]));
|
|
|
|
}
|
|
|
|
else if (sscanf(msg,
|
|
|
|
"rp:%d:%31[^:]:%n",
|
|
|
|
&context,
|
|
|
|
type,
|
|
|
|
&prompt_start) == 2) {
|
2014-03-06 14:58:49 +00:00
|
|
|
require(this->rc_contexts[context] != NULL);
|
2013-05-28 04:35:00 +00:00
|
|
|
|
|
|
|
this->rc_contexts[context]->
|
|
|
|
rem_possibility(string(type),
|
|
|
|
string(&msg[prompt_start]));
|
|
|
|
}
|
|
|
|
else if (sscanf(msg, "cp:%d:%s", &context, type)) {
|
|
|
|
this->rc_contexts[context]->clear_possibilities(type);
|
|
|
|
}
|
|
|
|
else {
|
2014-03-02 00:35:30 +00:00
|
|
|
log_error("unhandled message: %s", msg);
|
2013-05-28 04:35:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (got_timeout) {
|
|
|
|
got_timeout = 0;
|
2015-08-03 13:49:07 +00:00
|
|
|
if (sendcmd(this->rc_command_pipe[RCF_SLAVE],
|
|
|
|
't',
|
|
|
|
rl_line_buffer,
|
|
|
|
rl_end) == -1) {
|
2014-03-09 09:29:28 +00:00
|
|
|
_exit(1);
|
2013-05-28 04:35:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (got_line) {
|
|
|
|
struct itimerval itv;
|
|
|
|
|
2013-06-16 01:07:50 +00:00
|
|
|
got_line = 0;
|
2013-05-28 04:35:00 +00:00
|
|
|
itv.it_value.tv_sec = 0;
|
|
|
|
itv.it_value.tv_usec = 0;
|
|
|
|
itv.it_interval.tv_sec = 0;
|
|
|
|
itv.it_interval.tv_usec = 0;
|
|
|
|
if (setitimer(ITIMER_REAL, &itv, NULL) < 0) {
|
2014-03-02 00:35:30 +00:00
|
|
|
log_error("setitimer: %s", strerror(errno));
|
2013-05-28 04:35:00 +00:00
|
|
|
}
|
|
|
|
current_context->second->save();
|
|
|
|
current_context = this->rc_contexts.end();
|
|
|
|
}
|
|
|
|
if (got_winch) {
|
|
|
|
struct winsize ws;
|
|
|
|
|
|
|
|
if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &ws) == -1) {
|
|
|
|
throw error(errno);
|
|
|
|
}
|
|
|
|
got_winch = 0;
|
|
|
|
rl_set_screen_size(ws.ws_row, ws.ws_col);
|
|
|
|
}
|
2009-09-14 01:07:32 +00:00
|
|
|
}
|
2010-02-24 04:35:52 +00:00
|
|
|
|
|
|
|
std::map<int, readline_context *>::iterator citer;
|
|
|
|
for (citer = this->rc_contexts.begin();
|
2013-05-28 04:35:00 +00:00
|
|
|
citer != this->rc_contexts.end();
|
|
|
|
++citer) {
|
|
|
|
char *home;
|
|
|
|
|
|
|
|
citer->second->load();
|
|
|
|
home = getenv("HOME");
|
|
|
|
if (home) {
|
|
|
|
char hpath[2048];
|
|
|
|
|
|
|
|
snprintf(hpath, sizeof(hpath),
|
|
|
|
"%s/.lnav/%s.history",
|
|
|
|
home, citer->second->get_name().c_str());
|
|
|
|
write_history(hpath);
|
|
|
|
}
|
|
|
|
citer->second->save();
|
2010-02-24 04:35:52 +00:00
|
|
|
}
|
|
|
|
|
2014-03-09 09:29:28 +00:00
|
|
|
_exit(0);
|
2009-09-14 01:07:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void readline_curses::line_ready(const char *line)
|
|
|
|
{
|
|
|
|
auto_mem<char> expanded;
|
2015-03-21 23:57:53 +00:00
|
|
|
char msg[1024] = {0};
|
2013-05-28 04:35:00 +00:00
|
|
|
int rc;
|
2009-09-14 01:07:32 +00:00
|
|
|
|
2014-06-18 04:29:42 +00:00
|
|
|
if (rl_line_buffer[0] == '^') {
|
|
|
|
rc = -1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rc = history_expand(rl_line_buffer, expanded.out());
|
|
|
|
}
|
2013-07-25 13:22:54 +00:00
|
|
|
switch (rc) {
|
2009-09-14 01:07:32 +00:00
|
|
|
#if 0
|
2013-07-24 14:42:16 +00:00
|
|
|
/* TODO: fix clash between history and pcre metacharacters */
|
|
|
|
case -1:
|
|
|
|
/* XXX */
|
|
|
|
snprintf(msg, sizeof(msg),
|
|
|
|
"e:unable to expand history -- %s",
|
|
|
|
expanded.in());
|
|
|
|
break;
|
2009-09-14 01:07:32 +00:00
|
|
|
#endif
|
|
|
|
|
2013-07-25 13:22:54 +00:00
|
|
|
case -1:
|
|
|
|
snprintf(msg, sizeof(msg), "d:%s", line);
|
|
|
|
break;
|
2013-05-28 04:35:00 +00:00
|
|
|
|
2013-07-25 13:22:54 +00:00
|
|
|
case 0:
|
|
|
|
case 1:
|
|
|
|
case 2: /* XXX */
|
|
|
|
snprintf(msg, sizeof(msg), "d:%s", expanded.in());
|
|
|
|
break;
|
2009-09-14 01:07:32 +00:00
|
|
|
}
|
2013-07-24 14:42:16 +00:00
|
|
|
|
2014-03-09 09:29:28 +00:00
|
|
|
if (sendstring(this->rc_command_pipe[RCF_SLAVE],
|
|
|
|
msg,
|
|
|
|
strlen(msg)) == -1) {
|
2013-05-28 04:35:00 +00:00
|
|
|
perror("line_ready: write failed");
|
2014-03-09 09:29:28 +00:00
|
|
|
_exit(1);
|
2009-10-14 19:42:58 +00:00
|
|
|
}
|
2013-07-06 21:37:07 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
HIST_ENTRY *entry;
|
|
|
|
|
|
|
|
if (line[0] != '\0' && (
|
|
|
|
history_length == 0 ||
|
|
|
|
(entry = history_get(history_base + history_length - 1)) == NULL ||
|
|
|
|
strcmp(entry->line, line) != 0)) {
|
|
|
|
add_history(line);
|
|
|
|
}
|
|
|
|
}
|
2009-09-14 01:07:32 +00:00
|
|
|
}
|
|
|
|
|
2015-04-09 03:36:45 +00:00
|
|
|
void readline_curses::check_poll_set(const vector<struct pollfd> &pollfds)
|
2009-09-14 01:07:32 +00:00
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
|
2015-04-09 03:36:45 +00:00
|
|
|
if (pollfd_ready(pollfds, this->rc_pty[RCF_MASTER])) {
|
2013-05-28 04:35:00 +00:00
|
|
|
char buffer[128];
|
|
|
|
|
|
|
|
rc = read(this->rc_pty[RCF_MASTER], buffer, sizeof(buffer));
|
|
|
|
if (rc > 0) {
|
2017-03-31 14:01:11 +00:00
|
|
|
int old_x = this->vc_x;
|
|
|
|
|
2013-05-28 04:35:00 +00:00
|
|
|
this->map_output(buffer, rc);
|
2017-03-31 14:01:11 +00:00
|
|
|
if (this->vc_x != old_x) {
|
|
|
|
this->rc_change.invoke(this);
|
|
|
|
}
|
2013-05-28 04:35:00 +00:00
|
|
|
}
|
2009-09-14 01:07:32 +00:00
|
|
|
}
|
2015-04-09 03:36:45 +00:00
|
|
|
if (pollfd_ready(pollfds, this->rc_command_pipe[RCF_MASTER])) {
|
2013-05-28 04:35:00 +00:00
|
|
|
char msg[1024 + 1];
|
|
|
|
|
2014-03-09 09:29:28 +00:00
|
|
|
rc = recvstring(this->rc_command_pipe[RCF_MASTER], msg, sizeof(msg) - 1);
|
|
|
|
if (rc >= 0) {
|
2013-05-28 04:35:00 +00:00
|
|
|
string old_value = this->rc_value;
|
|
|
|
|
|
|
|
msg[rc] = '\0';
|
2014-03-09 09:29:28 +00:00
|
|
|
if (this->rc_matches_remaining > 0) {
|
|
|
|
this->rc_matches.push_back(msg);
|
|
|
|
this->rc_matches_remaining -= 1;
|
|
|
|
if (this->rc_matches_remaining == 0) {
|
|
|
|
this->rc_display_match.invoke(this);
|
2013-05-28 04:35:00 +00:00
|
|
|
}
|
2014-03-09 09:29:28 +00:00
|
|
|
}
|
|
|
|
else if (msg[0] == 'm') {
|
2018-09-13 21:27:49 +00:00
|
|
|
if (sscanf(msg, "m:%d:%d:%d",
|
|
|
|
&this->rc_match_start,
|
|
|
|
&this->rc_matches_remaining,
|
|
|
|
&this->rc_max_match_length) != 3) {
|
2014-03-09 19:55:02 +00:00
|
|
|
require(0);
|
|
|
|
}
|
2014-03-09 09:29:28 +00:00
|
|
|
this->rc_matches.clear();
|
|
|
|
if (this->rc_matches_remaining == 0) {
|
|
|
|
this->rc_display_match.invoke(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2014-03-13 06:30:11 +00:00
|
|
|
switch (msg[0]) {
|
|
|
|
case 't':
|
|
|
|
case 'd':
|
|
|
|
this->rc_value = string(&msg[2]);
|
|
|
|
break;
|
|
|
|
}
|
2014-03-09 09:29:28 +00:00
|
|
|
switch (msg[0]) {
|
|
|
|
case 'a':
|
|
|
|
this->rc_active_context = -1;
|
|
|
|
this->vc_past_lines.clear();
|
|
|
|
this->rc_matches.clear();
|
|
|
|
this->rc_abort.invoke(this);
|
|
|
|
this->rc_display_match.invoke(this);
|
2015-07-08 13:35:36 +00:00
|
|
|
this->rc_blur.invoke(this);
|
2014-03-09 09:29:28 +00:00
|
|
|
curs_set(0);
|
|
|
|
break;
|
2013-05-28 04:35:00 +00:00
|
|
|
|
2014-03-09 09:29:28 +00:00
|
|
|
case 't':
|
2017-03-31 14:01:11 +00:00
|
|
|
this->rc_timeout.invoke(this);
|
2014-03-09 09:29:28 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'd':
|
|
|
|
this->rc_active_context = -1;
|
|
|
|
this->vc_past_lines.clear();
|
|
|
|
this->rc_matches.clear();
|
|
|
|
this->rc_perform.invoke(this);
|
|
|
|
this->rc_display_match.invoke(this);
|
2015-07-08 13:35:36 +00:00
|
|
|
this->rc_blur.invoke(this);
|
2014-03-09 09:29:28 +00:00
|
|
|
curs_set(0);
|
|
|
|
break;
|
|
|
|
|
2015-08-03 13:49:07 +00:00
|
|
|
case 'l':
|
|
|
|
this->rc_line_buffer = &msg[2];
|
|
|
|
this->rc_change.invoke(this);
|
2017-03-26 13:02:53 +00:00
|
|
|
this->rc_matches.clear();
|
|
|
|
this->rc_display_match.invoke(this);
|
2015-08-03 13:49:07 +00:00
|
|
|
break;
|
|
|
|
|
2018-09-13 21:27:49 +00:00
|
|
|
case 'c':
|
|
|
|
this->rc_line_buffer = &msg[2];
|
|
|
|
this->rc_change.invoke(this);
|
|
|
|
this->rc_display_match.invoke(this);
|
|
|
|
break;
|
|
|
|
|
2014-03-09 09:29:28 +00:00
|
|
|
case 'n':
|
|
|
|
this->rc_display_next.invoke(this);
|
|
|
|
break;
|
|
|
|
}
|
2013-05-28 04:35:00 +00:00
|
|
|
}
|
|
|
|
}
|
2009-09-14 01:07:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void readline_curses::handle_key(int ch)
|
|
|
|
{
|
|
|
|
const char *bch;
|
2013-05-28 04:35:00 +00:00
|
|
|
int len;
|
2009-09-14 01:07:32 +00:00
|
|
|
|
|
|
|
bch = this->map_input(ch, len);
|
2009-10-14 19:42:58 +00:00
|
|
|
if (write(this->rc_pty[RCF_MASTER], bch, len) == -1) {
|
2013-05-28 04:35:00 +00:00
|
|
|
perror("handle_key: write failed");
|
2009-10-14 19:42:58 +00:00
|
|
|
}
|
2009-09-14 01:07:32 +00:00
|
|
|
if (ch == '\t' || ch == '\r') {
|
2013-05-28 04:35:00 +00:00
|
|
|
this->vc_past_lines.clear();
|
2009-09-14 01:07:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void readline_curses::focus(int context, const char *prompt)
|
|
|
|
{
|
|
|
|
char buffer[1024];
|
|
|
|
|
2011-06-26 01:54:46 +00:00
|
|
|
curs_set(1);
|
|
|
|
|
2009-09-14 01:07:32 +00:00
|
|
|
this->rc_active_context = context;
|
|
|
|
|
|
|
|
snprintf(buffer, sizeof(buffer), "f:%d:%s", context, prompt);
|
2014-03-09 09:29:28 +00:00
|
|
|
if (sendstring(this->rc_command_pipe[RCF_MASTER],
|
|
|
|
buffer,
|
|
|
|
strlen(buffer) + 1) == -1) {
|
2013-05-28 04:35:00 +00:00
|
|
|
perror("focus: write failed");
|
2009-10-14 19:42:58 +00:00
|
|
|
}
|
2009-09-14 01:07:32 +00:00
|
|
|
wmove(this->vc_window, this->get_actual_y(), 0);
|
|
|
|
wclrtoeol(this->vc_window);
|
|
|
|
}
|
|
|
|
|
2013-07-24 14:42:16 +00:00
|
|
|
void readline_curses::abort()
|
|
|
|
{
|
|
|
|
char buffer[1024];
|
|
|
|
|
|
|
|
snprintf(buffer, sizeof(buffer), "a");
|
2014-03-09 09:29:28 +00:00
|
|
|
if (sendstring(this->rc_command_pipe[RCF_MASTER],
|
|
|
|
buffer,
|
|
|
|
strlen(buffer)) == -1) {
|
2013-07-24 14:42:16 +00:00
|
|
|
perror("abort: write failed");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-06 14:01:32 +00:00
|
|
|
void readline_curses::add_possibility(int context,
|
|
|
|
const string &type,
|
|
|
|
const string &value)
|
2009-09-14 01:07:32 +00:00
|
|
|
{
|
|
|
|
char buffer[1024];
|
|
|
|
|
2014-03-09 09:29:28 +00:00
|
|
|
if (value.empty()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-09-14 01:07:32 +00:00
|
|
|
snprintf(buffer, sizeof(buffer),
|
2013-05-28 04:35:00 +00:00
|
|
|
"ap:%d:%s:%s",
|
|
|
|
context, type.c_str(), value.c_str());
|
2014-03-09 09:29:28 +00:00
|
|
|
if (sendstring(this->rc_command_pipe[RCF_MASTER],
|
|
|
|
buffer,
|
|
|
|
strlen(buffer) + 1) == -1) {
|
2013-05-28 04:35:00 +00:00
|
|
|
perror("add_possibility: write failed");
|
2009-10-14 19:42:58 +00:00
|
|
|
}
|
2009-09-14 01:07:32 +00:00
|
|
|
}
|
|
|
|
|
2013-06-06 14:01:32 +00:00
|
|
|
void readline_curses::rem_possibility(int context,
|
|
|
|
const string &type,
|
|
|
|
const string &value)
|
2009-09-14 01:07:32 +00:00
|
|
|
{
|
|
|
|
char buffer[1024];
|
|
|
|
|
|
|
|
snprintf(buffer, sizeof(buffer),
|
2013-05-28 04:35:00 +00:00
|
|
|
"rp:%d:%s:%s",
|
|
|
|
context, type.c_str(), value.c_str());
|
2014-03-09 09:29:28 +00:00
|
|
|
if (sendstring(this->rc_command_pipe[RCF_MASTER],
|
|
|
|
buffer,
|
|
|
|
strlen(buffer) + 1) == -1) {
|
2013-05-28 04:35:00 +00:00
|
|
|
perror("rem_possiblity: write failed");
|
2009-10-14 19:42:58 +00:00
|
|
|
}
|
2009-09-14 01:07:32 +00:00
|
|
|
}
|
|
|
|
|
2013-05-24 14:55:56 +00:00
|
|
|
void readline_curses::clear_possibilities(int context, string type)
|
|
|
|
{
|
|
|
|
char buffer[1024];
|
|
|
|
|
|
|
|
snprintf(buffer, sizeof(buffer),
|
2013-05-28 04:35:00 +00:00
|
|
|
"cp:%d:%s",
|
|
|
|
context, type.c_str());
|
2014-03-09 09:29:28 +00:00
|
|
|
if (sendstring(this->rc_command_pipe[RCF_MASTER],
|
|
|
|
buffer,
|
|
|
|
strlen(buffer) + 1) == -1) {
|
2013-05-28 04:35:00 +00:00
|
|
|
perror("clear_possiblity: write failed");
|
2013-05-24 14:55:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-14 01:07:32 +00:00
|
|
|
void readline_curses::do_update(void)
|
|
|
|
{
|
|
|
|
if (this->rc_active_context == -1) {
|
2013-06-16 01:07:50 +00:00
|
|
|
int alt_start = -1;
|
2013-10-11 13:27:36 +00:00
|
|
|
struct line_range lr(0, 0);
|
2013-06-16 01:07:50 +00:00
|
|
|
attr_line_t al, alt_al;
|
2013-06-01 03:45:40 +00:00
|
|
|
|
|
|
|
wmove(this->vc_window, this->get_actual_y(), 0);
|
|
|
|
wclrtoeol(this->vc_window);
|
2013-06-14 13:49:00 +00:00
|
|
|
|
2013-06-15 14:11:45 +00:00
|
|
|
if (time(NULL) > this->rc_value_expiration) {
|
|
|
|
this->rc_value.clear();
|
|
|
|
}
|
|
|
|
|
2013-06-14 13:49:00 +00:00
|
|
|
al.get_string() = this->rc_value;
|
|
|
|
scrub_ansi_string(al.get_string(), al.get_attrs());
|
|
|
|
|
|
|
|
if (!this->rc_alt_value.empty()) {
|
|
|
|
alt_al.get_string() = this->rc_alt_value;
|
|
|
|
scrub_ansi_string(alt_al.get_string(), alt_al.get_attrs());
|
|
|
|
|
|
|
|
alt_start = getmaxx(this->vc_window) - alt_al.get_string().size();
|
2013-06-04 13:53:25 +00:00
|
|
|
}
|
2013-06-14 13:49:00 +00:00
|
|
|
|
|
|
|
if (alt_start >= (int)(al.get_string().length() + 5)) {
|
|
|
|
lr.lr_end = alt_al.get_string().length();
|
|
|
|
view_curses::mvwattrline(this->vc_window,
|
|
|
|
this->get_actual_y(),
|
|
|
|
alt_start,
|
|
|
|
alt_al,
|
|
|
|
lr);
|
|
|
|
}
|
|
|
|
|
|
|
|
lr.lr_end = al.get_string().length();
|
|
|
|
view_curses::mvwattrline(this->vc_window,
|
|
|
|
this->get_actual_y(),
|
|
|
|
0,
|
|
|
|
al,
|
|
|
|
lr);
|
2013-05-28 04:35:00 +00:00
|
|
|
this->set_x(0);
|
2009-09-14 01:07:32 +00:00
|
|
|
}
|
|
|
|
vt52_curses::do_update();
|
2014-03-04 15:38:33 +00:00
|
|
|
|
|
|
|
if (this->rc_active_context != -1) {
|
|
|
|
readline_context *rc = this->rc_contexts[this->rc_active_context];
|
|
|
|
readline_highlighter_t hl = rc->get_highlighter();
|
|
|
|
|
|
|
|
if (hl != NULL) {
|
|
|
|
char line[1024];
|
|
|
|
attr_line_t al;
|
|
|
|
string &str = al.get_string();
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
rc = mvwinnstr(this->vc_window,
|
|
|
|
this->get_actual_y(), 0,
|
|
|
|
line, sizeof(line));
|
|
|
|
|
|
|
|
str = string(line, rc);
|
|
|
|
|
|
|
|
hl(al, this->vc_x);
|
|
|
|
view_curses::mvwattrline(this->vc_window,
|
|
|
|
this->get_actual_y(), 0, al, line_range(0, rc));
|
|
|
|
|
|
|
|
wmove(this->vc_window, this->get_actual_y(), this->vc_x);
|
|
|
|
}
|
|
|
|
}
|
2009-09-14 01:07:32 +00:00
|
|
|
}
|