2017-03-24 00:32:10 +01:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Wireless daemon for Linux
|
|
|
|
*
|
2019-10-25 00:43:08 +02:00
|
|
|
* Copyright (C) 2017-2019 Intel Corporation. All rights reserved.
|
2017-03-24 00:32:10 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2018-11-01 22:19:45 +01:00
|
|
|
#define _GNU_SOURCE
|
2018-11-01 22:09:19 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <signal.h>
|
2019-12-13 09:33:19 +01:00
|
|
|
#include <sys/stat.h>
|
2020-04-10 00:51:46 +02:00
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <unistd.h>
|
2022-10-12 16:02:57 +02:00
|
|
|
#include <wchar.h>
|
2018-11-01 22:09:19 +01:00
|
|
|
|
2017-03-24 00:32:10 +01:00
|
|
|
#include <readline/history.h>
|
|
|
|
#include <readline/readline.h>
|
2018-11-01 22:09:19 +01:00
|
|
|
#include <ell/ell.h>
|
2017-03-24 00:32:10 +01:00
|
|
|
|
2019-12-13 09:02:42 +01:00
|
|
|
#include "client/agent.h"
|
|
|
|
#include "client/command.h"
|
|
|
|
#include "client/display.h"
|
2017-03-24 00:32:10 +01:00
|
|
|
|
2020-12-11 07:32:22 +01:00
|
|
|
#define IWD_PROMPT \
|
2022-07-07 19:55:05 +02:00
|
|
|
"\001" COLOR_GREEN("\002" "[iwd]" "\001") "\002" "# "
|
2018-05-03 22:57:52 +02:00
|
|
|
#define LINE_LEN 81
|
2017-03-24 00:32:10 +01:00
|
|
|
|
2020-04-10 00:51:45 +02:00
|
|
|
static struct l_signal *window_change_signal;
|
2017-03-24 00:32:10 +01:00
|
|
|
static struct l_io *io;
|
2018-08-03 21:29:04 +02:00
|
|
|
static char dashed_line[LINE_LEN] = { [0 ... LINE_LEN - 2] = '-' };
|
|
|
|
static char empty_line[LINE_LEN] = { [0 ... LINE_LEN - 2] = ' ' };
|
2017-04-21 01:23:12 +02:00
|
|
|
static struct l_timeout *refresh_timeout;
|
2018-05-03 22:57:52 +02:00
|
|
|
static struct saved_input *agent_saved_input;
|
2017-04-21 01:23:12 +02:00
|
|
|
|
|
|
|
static struct display_refresh {
|
2020-04-10 00:51:46 +02:00
|
|
|
bool enabled;
|
2017-04-21 01:23:12 +02:00
|
|
|
char *family;
|
|
|
|
char *entity;
|
|
|
|
const struct command *cmd;
|
2018-07-27 21:41:30 +02:00
|
|
|
char **argv;
|
|
|
|
int argc;
|
2017-04-21 01:23:12 +02:00
|
|
|
size_t undo_lines;
|
|
|
|
struct l_queue *redo_entries;
|
|
|
|
bool recording;
|
2020-04-10 00:51:46 +02:00
|
|
|
} display_refresh = { .enabled = true };
|
2017-03-24 00:32:10 +01:00
|
|
|
|
2017-03-23 19:05:33 +01:00
|
|
|
struct saved_input {
|
|
|
|
char *line;
|
|
|
|
int point;
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct saved_input *save_input(void)
|
|
|
|
{
|
|
|
|
struct saved_input *input;
|
|
|
|
|
|
|
|
if (RL_ISSTATE(RL_STATE_DONE))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
input = l_new(struct saved_input, 1);
|
|
|
|
|
|
|
|
input->point = rl_point;
|
|
|
|
input->line = rl_copy_text(0, rl_end);
|
|
|
|
rl_save_prompt();
|
|
|
|
rl_replace_line("", 0);
|
|
|
|
rl_redisplay();
|
|
|
|
|
|
|
|
return input;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void restore_input(struct saved_input *input)
|
|
|
|
{
|
|
|
|
if (!input)
|
|
|
|
return;
|
|
|
|
|
|
|
|
rl_restore_prompt();
|
|
|
|
rl_replace_line(input->line, 0);
|
|
|
|
rl_point = input->point;
|
|
|
|
rl_forced_update_display();
|
|
|
|
|
|
|
|
l_free(input->line);
|
|
|
|
l_free(input);
|
|
|
|
}
|
|
|
|
|
2017-04-21 01:23:12 +02:00
|
|
|
static void display_refresh_undo_lines(void)
|
|
|
|
{
|
|
|
|
size_t num_lines = display_refresh.undo_lines;
|
|
|
|
|
|
|
|
printf("\033[%dA", (int) num_lines);
|
|
|
|
|
|
|
|
do {
|
|
|
|
printf("%s\n", empty_line);
|
|
|
|
} while (--display_refresh.undo_lines);
|
|
|
|
|
|
|
|
printf("\033[%dA", (int) num_lines);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void display_refresh_redo_lines(void)
|
2017-04-12 22:04:50 +02:00
|
|
|
{
|
2017-04-21 01:23:12 +02:00
|
|
|
const struct l_queue_entry *entry;
|
|
|
|
struct saved_input *input;
|
|
|
|
|
|
|
|
input = save_input();
|
|
|
|
|
|
|
|
for (entry = l_queue_get_entries(display_refresh.redo_entries); entry;
|
|
|
|
entry = entry->next) {
|
|
|
|
char *line = entry->data;
|
|
|
|
|
|
|
|
printf("%s", line);
|
|
|
|
|
|
|
|
display_refresh.undo_lines++;
|
|
|
|
}
|
2017-04-12 22:04:50 +02:00
|
|
|
|
2017-04-21 01:23:12 +02:00
|
|
|
restore_input(input);
|
|
|
|
display_refresh.recording = true;
|
|
|
|
|
|
|
|
l_timeout_modify(refresh_timeout, 1);
|
2017-04-12 22:04:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void display_refresh_reset(void)
|
|
|
|
{
|
2017-04-21 01:23:12 +02:00
|
|
|
l_free(display_refresh.family);
|
|
|
|
display_refresh.family = NULL;
|
|
|
|
|
|
|
|
l_free(display_refresh.entity);
|
|
|
|
display_refresh.entity = NULL;
|
|
|
|
|
|
|
|
display_refresh.cmd = NULL;
|
2017-04-12 22:04:50 +02:00
|
|
|
|
2018-07-27 21:41:30 +02:00
|
|
|
l_strfreev(display_refresh.argv);
|
|
|
|
display_refresh.argv = NULL;
|
|
|
|
display_refresh.argc = 0;
|
2017-04-21 01:23:12 +02:00
|
|
|
|
|
|
|
display_refresh.undo_lines = 0;
|
|
|
|
display_refresh.recording = false;
|
|
|
|
|
|
|
|
l_queue_clear(display_refresh.redo_entries, l_free);
|
2017-04-12 22:04:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void display_refresh_set_cmd(const char *family, const char *entity,
|
2018-07-27 21:41:30 +02:00
|
|
|
const struct command *cmd,
|
|
|
|
char **argv, int argc)
|
2017-04-21 01:23:12 +02:00
|
|
|
{
|
2018-07-27 21:41:30 +02:00
|
|
|
int i;
|
|
|
|
|
2017-04-21 01:23:12 +02:00
|
|
|
if (cmd->refreshable) {
|
|
|
|
l_free(display_refresh.family);
|
|
|
|
display_refresh.family = l_strdup(family);
|
|
|
|
|
|
|
|
l_free(display_refresh.entity);
|
|
|
|
display_refresh.entity = l_strdup(entity);
|
|
|
|
|
|
|
|
display_refresh.cmd = cmd;
|
|
|
|
|
2018-07-27 21:41:30 +02:00
|
|
|
l_strfreev(display_refresh.argv);
|
|
|
|
display_refresh.argc = argc;
|
|
|
|
|
|
|
|
display_refresh.argv = l_new(char *, argc + 1);
|
2018-11-09 01:25:20 +01:00
|
|
|
|
2018-07-27 21:41:30 +02:00
|
|
|
for (i = 0; i < argc; i++)
|
2018-11-09 01:25:20 +01:00
|
|
|
display_refresh.argv[i] = l_strdup(argv[i]);
|
2017-04-21 01:23:12 +02:00
|
|
|
|
|
|
|
l_queue_clear(display_refresh.redo_entries, l_free);
|
|
|
|
|
|
|
|
display_refresh.recording = false;
|
|
|
|
display_refresh.undo_lines = 0;
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-10-23 22:24:02 +02:00
|
|
|
if (display_refresh.family && family &&
|
|
|
|
!strcmp(display_refresh.family, family)) {
|
2018-07-27 21:41:30 +02:00
|
|
|
struct l_string *buf = l_string_new(128);
|
|
|
|
L_AUTO_FREE_VAR(char *, args);
|
|
|
|
char *prompt;
|
|
|
|
|
2018-11-09 22:43:15 +01:00
|
|
|
for (i = 0; i < argc; i++) {
|
|
|
|
bool needs_quotes = false;
|
|
|
|
char *p = argv[i];
|
|
|
|
|
|
|
|
for (p = argv[i]; *p != '\0'; p++) {
|
|
|
|
if (*p != ' ')
|
|
|
|
continue;
|
|
|
|
|
|
|
|
needs_quotes = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (needs_quotes)
|
|
|
|
l_string_append_printf(buf, "\"%s\" ", argv[i]);
|
|
|
|
else
|
|
|
|
l_string_append_printf(buf, "%s ", argv[i]);
|
|
|
|
}
|
2018-07-27 21:41:30 +02:00
|
|
|
|
|
|
|
args = l_string_unwrap(buf);
|
|
|
|
|
2019-10-23 22:24:02 +02:00
|
|
|
prompt = l_strdup_printf(IWD_PROMPT"%s%s%s %s %s\n", family,
|
|
|
|
entity ? " " : "",
|
|
|
|
entity ? : "",
|
|
|
|
cmd->cmd ? : "", args ? : "");
|
2017-04-21 01:23:12 +02:00
|
|
|
|
|
|
|
l_queue_push_tail(display_refresh.redo_entries, prompt);
|
|
|
|
display_refresh.undo_lines++;
|
|
|
|
|
|
|
|
display_refresh.recording = true;
|
|
|
|
} else {
|
|
|
|
display_refresh_reset();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-10 00:51:46 +02:00
|
|
|
static void display_refresh_check_feasibility(void)
|
|
|
|
{
|
|
|
|
const struct winsize ws;
|
|
|
|
|
|
|
|
ioctl(STDOUT_FILENO, TIOCGWINSZ, &ws);
|
|
|
|
|
|
|
|
if (ws.ws_col < LINE_LEN - 1) {
|
|
|
|
if (display_refresh.enabled) {
|
|
|
|
display_refresh.recording = false;
|
2022-07-07 19:55:05 +02:00
|
|
|
display(COLOR_YELLOW("Auto-refresh is disabled. "
|
2020-04-10 00:51:46 +02:00
|
|
|
"Enlarge window width to at least %u to enable."
|
2022-07-07 19:55:05 +02:00
|
|
|
"\n"), LINE_LEN - 1);
|
2020-04-10 00:51:46 +02:00
|
|
|
display_refresh.recording = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
display_refresh.enabled = false;
|
|
|
|
} else {
|
|
|
|
display_refresh.enabled = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void display_refresh_check_applicability(void)
|
|
|
|
{
|
|
|
|
if (display_refresh.enabled && display_refresh.cmd)
|
|
|
|
display_refresh_redo_lines();
|
|
|
|
else if (display_refresh.cmd)
|
|
|
|
display_refresh_timeout_set();
|
|
|
|
}
|
|
|
|
|
2017-04-21 01:23:12 +02:00
|
|
|
static void timeout_callback(struct l_timeout *timeout, void *user_data)
|
2017-04-12 22:04:50 +02:00
|
|
|
{
|
2017-04-21 01:23:12 +02:00
|
|
|
struct saved_input *input;
|
|
|
|
|
2020-04-10 00:51:46 +02:00
|
|
|
if (!display_refresh.enabled || !display_refresh.cmd) {
|
|
|
|
if (display_refresh.cmd)
|
|
|
|
display_refresh_timeout_set();
|
|
|
|
|
2017-04-21 01:23:12 +02:00
|
|
|
return;
|
2020-04-10 00:51:46 +02:00
|
|
|
}
|
2017-04-21 01:23:12 +02:00
|
|
|
|
|
|
|
input = save_input();
|
|
|
|
display_refresh_undo_lines();
|
|
|
|
restore_input(input);
|
2017-04-12 22:04:50 +02:00
|
|
|
|
2017-04-21 01:23:12 +02:00
|
|
|
display_refresh.recording = false;
|
|
|
|
display_refresh.cmd->function(display_refresh.entity,
|
2018-07-27 21:41:30 +02:00
|
|
|
display_refresh.argv,
|
|
|
|
display_refresh.argc);
|
2017-04-21 01:23:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void display_refresh_timeout_set(void)
|
|
|
|
{
|
|
|
|
if (refresh_timeout)
|
|
|
|
l_timeout_modify(refresh_timeout, 1);
|
|
|
|
else
|
|
|
|
refresh_timeout = l_timeout_create(1, timeout_callback,
|
|
|
|
NULL, NULL);
|
2017-04-12 22:04:50 +02:00
|
|
|
}
|
|
|
|
|
2017-03-23 19:05:33 +01:00
|
|
|
static void display_text(const char *text)
|
|
|
|
{
|
|
|
|
struct saved_input *input = save_input();
|
|
|
|
|
|
|
|
printf("%s", text);
|
|
|
|
|
|
|
|
restore_input(input);
|
2017-04-21 01:23:12 +02:00
|
|
|
|
|
|
|
if (!display_refresh.cmd)
|
|
|
|
return;
|
|
|
|
|
|
|
|
display_refresh.undo_lines++;
|
|
|
|
|
|
|
|
if (display_refresh.recording)
|
|
|
|
l_queue_push_tail(display_refresh.redo_entries, l_strdup(text));
|
2017-03-23 19:05:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void display(const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
char *text;
|
|
|
|
|
|
|
|
va_start(args, fmt);
|
|
|
|
text = l_strdup_vprintf(fmt, args);
|
|
|
|
va_end(args);
|
|
|
|
|
|
|
|
display_text(text);
|
|
|
|
|
|
|
|
l_free(text);
|
|
|
|
}
|
|
|
|
|
|
|
|
void display_error(const char *error)
|
|
|
|
{
|
2022-07-07 19:55:05 +02:00
|
|
|
char *text = l_strdup_printf(COLOR_RED("%s\n"), error);
|
2017-03-23 19:05:33 +01:00
|
|
|
|
|
|
|
display_text(text);
|
|
|
|
|
|
|
|
l_free(text);
|
|
|
|
}
|
|
|
|
|
2017-06-05 23:29:40 +02:00
|
|
|
static char get_flasher(void)
|
|
|
|
{
|
|
|
|
static char c;
|
|
|
|
|
|
|
|
if (c == ' ')
|
|
|
|
c = '*';
|
|
|
|
else
|
|
|
|
c = ' ';
|
|
|
|
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2017-03-23 19:05:33 +01:00
|
|
|
void display_table_header(const char *caption, const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
char *text;
|
|
|
|
char *body;
|
|
|
|
int caption_pos =
|
|
|
|
(int) ((sizeof(dashed_line) - 1) / 2 + strlen(caption) / 2);
|
|
|
|
|
2022-07-07 19:55:05 +02:00
|
|
|
text = l_strdup_printf("%*s" COLOR_BOLDGRAY("%*c") "\n",
|
2017-06-05 23:29:40 +02:00
|
|
|
caption_pos, caption,
|
|
|
|
LINE_LEN - 2 - caption_pos,
|
|
|
|
display_refresh.cmd ? get_flasher() : ' ');
|
2017-03-23 19:05:33 +01:00
|
|
|
display_text(text);
|
|
|
|
l_free(text);
|
|
|
|
|
2022-07-07 19:55:05 +02:00
|
|
|
text = l_strdup_printf(COLOR_GRAY("%s\n"), dashed_line);
|
2017-03-23 19:05:33 +01:00
|
|
|
display_text(text);
|
|
|
|
l_free(text);
|
|
|
|
|
|
|
|
va_start(args, fmt);
|
|
|
|
text = l_strdup_vprintf(fmt, args);
|
|
|
|
va_end(args);
|
|
|
|
|
2022-07-07 19:55:05 +02:00
|
|
|
body = l_strdup_printf(COLOR_BOLDGRAY("%s\n"), text);
|
2017-03-23 19:05:33 +01:00
|
|
|
display_text(body);
|
|
|
|
l_free(body);
|
|
|
|
l_free(text);
|
|
|
|
|
2022-07-07 19:55:05 +02:00
|
|
|
text = l_strdup_printf(COLOR_GRAY("%s\n"), dashed_line);
|
2017-03-23 19:05:33 +01:00
|
|
|
display_text(text);
|
|
|
|
l_free(text);
|
|
|
|
}
|
|
|
|
|
|
|
|
void display_table_footer(void)
|
|
|
|
{
|
|
|
|
display_text("\n");
|
2017-04-21 01:23:12 +02:00
|
|
|
|
2020-04-10 00:51:46 +02:00
|
|
|
display_refresh_check_applicability();
|
2017-03-23 19:05:33 +01:00
|
|
|
}
|
|
|
|
|
2022-07-07 19:54:58 +02:00
|
|
|
static unsigned int color_end(char *s)
|
|
|
|
{
|
|
|
|
char *start = s;
|
|
|
|
|
|
|
|
while (*s != 'm' && *s != '\0')
|
|
|
|
s++;
|
|
|
|
|
|
|
|
return s - start + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2022-10-12 20:35:20 +02:00
|
|
|
* Finds last space in 's' before 'width' characters, terminates at that index,
|
2022-07-07 19:54:58 +02:00
|
|
|
* and returns a new string to be printed on the next line.
|
|
|
|
*
|
2022-10-12 20:35:20 +02:00
|
|
|
* 'new_width' will be updated to include extra bytes for color escapes or
|
|
|
|
* wide characters if found.
|
2022-07-07 19:54:58 +02:00
|
|
|
*
|
|
|
|
* Any colored escapes found are set to 'color_out' so they can be re-enabled
|
|
|
|
* on the next line.
|
|
|
|
*/
|
2022-10-12 20:35:20 +02:00
|
|
|
static char* next_line(char *s, unsigned int width, unsigned int *new_width,
|
|
|
|
char **color_out)
|
2022-07-07 19:54:58 +02:00
|
|
|
{
|
2022-10-12 16:02:57 +02:00
|
|
|
unsigned int i = 0;
|
2022-07-07 19:54:58 +02:00
|
|
|
int last_space = -1;
|
|
|
|
int last_color = -1;
|
2022-10-12 16:02:57 +02:00
|
|
|
unsigned int s_len = strlen(s);
|
2022-10-12 20:35:21 +02:00
|
|
|
unsigned int color_adjust = 0;
|
2022-10-12 20:35:22 +02:00
|
|
|
char *ret;
|
2022-07-07 19:54:58 +02:00
|
|
|
|
2022-10-12 20:35:20 +02:00
|
|
|
*new_width = width;
|
2022-10-12 20:35:21 +02:00
|
|
|
*color_out = NULL;
|
2022-10-12 20:35:20 +02:00
|
|
|
|
2022-07-07 19:54:58 +02:00
|
|
|
/* Find the last space before 'max', as well as any color */
|
2022-10-12 20:35:20 +02:00
|
|
|
while (i <= *new_width && i < s_len) {
|
2022-10-12 16:02:57 +02:00
|
|
|
int sequence_len;
|
|
|
|
int sequence_columns;
|
|
|
|
wchar_t w;
|
|
|
|
|
|
|
|
if (s[i] == 0x1b) {
|
|
|
|
sequence_len = color_end(s + i);
|
2022-07-07 19:54:58 +02:00
|
|
|
/* color escape won't count for column width */
|
2022-10-12 16:02:57 +02:00
|
|
|
sequence_columns = 0;
|
2022-07-07 19:54:58 +02:00
|
|
|
last_color = i;
|
2022-10-12 20:35:21 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Color after a space. If the line gets broken this
|
|
|
|
* will need to be removed off new_width since it will
|
|
|
|
* appear on the next line.
|
|
|
|
*/
|
|
|
|
if (last_space != -1)
|
|
|
|
color_adjust += sequence_len;
|
|
|
|
|
2022-10-12 16:02:57 +02:00
|
|
|
} else {
|
2022-10-12 20:35:21 +02:00
|
|
|
if (s[i] == ' ') {
|
2022-10-12 16:02:57 +02:00
|
|
|
last_space = i;
|
2022-10-12 20:35:21 +02:00
|
|
|
/* Any past colors will appear on this line */
|
|
|
|
color_adjust = 0;
|
|
|
|
}
|
|
|
|
|
2022-10-12 16:02:57 +02:00
|
|
|
sequence_len = l_utf8_get_codepoint(&s[i], s_len - i,
|
|
|
|
&w);
|
2022-10-12 20:35:19 +02:00
|
|
|
sequence_columns = wcwidth(w);
|
2022-10-12 16:02:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Compensate max bytes */
|
2022-10-12 20:35:20 +02:00
|
|
|
*new_width += sequence_len - sequence_columns;
|
2022-10-12 16:02:57 +02:00
|
|
|
i += sequence_len;
|
2022-07-07 19:54:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Reached the end of the string within the column bounds */
|
2022-10-12 20:35:20 +02:00
|
|
|
if (i <= *new_width)
|
2022-07-07 19:54:58 +02:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* Not anywhere nice to split the line */
|
|
|
|
if (last_space == -1)
|
2022-10-12 20:35:22 +02:00
|
|
|
last_space = *new_width;
|
2022-07-07 19:54:58 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Only set the color if it occurred prior to the last space. If after,
|
|
|
|
* it will get picked up on the next line.
|
|
|
|
*/
|
|
|
|
if (last_color != -1 && last_space >= last_color)
|
|
|
|
*color_out = l_strndup(s + last_color,
|
|
|
|
color_end(s + last_color));
|
2022-10-12 20:35:21 +02:00
|
|
|
else if (last_color != -1 && last_space < last_color)
|
|
|
|
*new_width -= color_adjust;
|
2022-07-07 19:54:58 +02:00
|
|
|
|
2022-10-12 20:35:22 +02:00
|
|
|
ret = l_strdup(s + last_space + 1);
|
2022-07-07 19:54:58 +02:00
|
|
|
|
2022-10-12 20:35:22 +02:00
|
|
|
s[last_space + 1] = '\0';
|
|
|
|
|
|
|
|
return ret;
|
2022-07-07 19:54:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
struct table_entry {
|
|
|
|
unsigned int width;
|
|
|
|
char *next;
|
|
|
|
char *color;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Appends the next line from 'e' to 'line_buf'. 'done' is only set false when
|
|
|
|
* there are more lines needed for the current entry.
|
|
|
|
*/
|
|
|
|
static int entry_append(struct table_entry *e, char *line_buf)
|
|
|
|
{
|
|
|
|
char *value = e->next;
|
|
|
|
unsigned int ret = 0;
|
2022-10-12 20:35:20 +02:00
|
|
|
unsigned int new_width;
|
2022-07-07 19:54:58 +02:00
|
|
|
|
|
|
|
/* Empty line */
|
|
|
|
if (!value)
|
|
|
|
return sprintf(line_buf, "%-*s ", e->width, "");
|
|
|
|
|
|
|
|
/* Color from previous line */
|
|
|
|
if (e->color) {
|
|
|
|
ret = sprintf(line_buf, "%s", e->color);
|
|
|
|
l_free(e->color);
|
|
|
|
e->color = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Advance entry to next line, and terminate current */
|
2022-10-12 20:35:20 +02:00
|
|
|
e->next = next_line(value, e->width, &new_width, &e->color);
|
2022-07-07 19:54:58 +02:00
|
|
|
|
|
|
|
/* Append current line */
|
2022-10-12 20:35:20 +02:00
|
|
|
ret += sprintf(line_buf + ret, "%-*s ", new_width, value);
|
2022-07-07 19:54:58 +02:00
|
|
|
|
|
|
|
l_free(value);
|
|
|
|
|
|
|
|
/* Un-color output for next column */
|
|
|
|
if (e->color)
|
|
|
|
ret += sprintf(line_buf + ret, "%s", COLOR_OFF);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool entries_done(unsigned int num, struct table_entry *e)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
for (i = 0; i < num; i++)
|
|
|
|
if (e[i].next)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Expects an initial margin, number of columns in table, then row data:
|
|
|
|
*
|
|
|
|
* <row width>, <row data>, ...
|
|
|
|
*
|
|
|
|
* The data string can be of any length, and will be split into new lines of
|
|
|
|
* length <row width>.
|
|
|
|
*/
|
|
|
|
void display_table_row(const char *margin, unsigned int ncolumns, ...)
|
|
|
|
{
|
|
|
|
char buf[512];
|
|
|
|
char *str = buf;
|
|
|
|
unsigned int i;
|
|
|
|
struct table_entry entries[ncolumns];
|
|
|
|
va_list va;
|
|
|
|
|
|
|
|
memset(&entries[0], 0, sizeof(entries));
|
|
|
|
|
|
|
|
va_start(va, ncolumns);
|
|
|
|
|
|
|
|
str += sprintf(str, "%s", margin);
|
|
|
|
|
|
|
|
for (i = 0; i < ncolumns; i++) {
|
|
|
|
struct table_entry *e = &entries[i];
|
2022-10-12 20:35:19 +02:00
|
|
|
char *v;
|
2022-07-07 19:54:58 +02:00
|
|
|
|
|
|
|
e->width = va_arg(va, unsigned int);
|
2022-10-12 20:35:19 +02:00
|
|
|
v = va_arg(va, char *);
|
|
|
|
|
|
|
|
if (!l_utf8_validate(v, strlen(v), NULL)) {
|
|
|
|
display_error("Invalid utf-8 string!");
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
e->next = l_strdup(v);
|
2022-07-07 19:54:58 +02:00
|
|
|
|
|
|
|
str += entry_append(e, str);
|
|
|
|
}
|
|
|
|
|
|
|
|
va_end(va);
|
|
|
|
|
|
|
|
display("%s\n", buf);
|
|
|
|
str = buf;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The first column should now be indented, which effects the entry
|
|
|
|
* width. Subtract this indentation only from the first column.
|
|
|
|
*/
|
|
|
|
entries[0].width -= strlen(margin) * 2;
|
|
|
|
|
|
|
|
while (!entries_done(ncolumns, &entries[0])) {
|
|
|
|
for (i = 0; i < ncolumns; i++) {
|
|
|
|
struct table_entry *e = &entries[i];
|
|
|
|
|
|
|
|
if (i == 0)
|
|
|
|
str += sprintf(str, "%s%s%s", margin,
|
|
|
|
margin, margin);
|
|
|
|
|
|
|
|
str += entry_append(e, str);
|
|
|
|
}
|
|
|
|
|
|
|
|
display("%s\n", buf);
|
|
|
|
str = buf;
|
|
|
|
}
|
|
|
|
|
2022-10-12 20:35:19 +02:00
|
|
|
done:
|
2022-07-07 19:54:58 +02:00
|
|
|
for (i = 0; i < ncolumns; i++) {
|
|
|
|
if (entries[i].color)
|
|
|
|
l_free(entries[i].color);
|
2022-10-12 20:35:19 +02:00
|
|
|
|
|
|
|
if (entries[i].next)
|
|
|
|
l_free(entries[i].next);
|
2022-07-07 19:54:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void display_command_line(const char *command_family, const struct command *cmd)
|
2017-04-12 22:04:49 +02:00
|
|
|
{
|
2018-11-01 07:03:38 +01:00
|
|
|
char *cmd_line = l_strdup_printf("%s%s%s%s%s%s%s",
|
2017-04-12 22:04:49 +02:00
|
|
|
command_family ? : "",
|
|
|
|
command_family ? " " : "",
|
|
|
|
cmd->entity ? : "",
|
|
|
|
cmd->entity ? " " : "",
|
|
|
|
cmd->cmd,
|
2018-11-01 07:03:38 +01:00
|
|
|
cmd->arg ? " " : "",
|
|
|
|
cmd->arg ? : "");
|
2017-04-12 22:04:49 +02:00
|
|
|
|
2022-07-07 19:54:58 +02:00
|
|
|
display_table_row(MARGIN, 2, 50, cmd_line, 30, cmd->desc);
|
2017-04-12 22:04:49 +02:00
|
|
|
|
|
|
|
l_free(cmd_line);
|
|
|
|
}
|
|
|
|
|
2017-04-27 01:08:38 +02:00
|
|
|
static void display_completion_matches(char **matches, int num_matches,
|
|
|
|
int max_length)
|
|
|
|
{
|
|
|
|
char *prompt;
|
|
|
|
char *entry;
|
|
|
|
char line[LINE_LEN];
|
|
|
|
size_t index;
|
|
|
|
size_t line_used;
|
2017-05-12 23:36:52 +02:00
|
|
|
char *input = rl_copy_text(0, rl_end);
|
|
|
|
|
|
|
|
prompt = l_strdup_printf("%s%s\n", IWD_PROMPT, input);
|
|
|
|
l_free(input);
|
2017-04-27 01:08:38 +02:00
|
|
|
|
|
|
|
display_text(prompt);
|
|
|
|
l_free(prompt);
|
|
|
|
|
|
|
|
for (index = 1, line_used = 0; matches[index]; index++) {
|
|
|
|
if ((line_used + max_length) > LINE_LEN) {
|
|
|
|
strcpy(&line[line_used], "\n");
|
|
|
|
|
|
|
|
display_text(line);
|
|
|
|
|
|
|
|
line_used = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
entry = l_strdup_printf("%-*s ", max_length, matches[index]);
|
2021-02-08 21:19:54 +01:00
|
|
|
l_strlcpy(&line[line_used], entry, sizeof(line) - line_used);
|
2017-04-27 01:08:38 +02:00
|
|
|
l_free(entry);
|
|
|
|
|
|
|
|
line_used += max_length + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
strcpy(&line[line_used], "\n");
|
|
|
|
|
|
|
|
display_text(line);
|
|
|
|
}
|
|
|
|
|
2018-05-03 23:11:55 +02:00
|
|
|
#define MAX_PASSPHRASE_LEN 63
|
|
|
|
|
|
|
|
static struct masked_input {
|
2018-05-05 00:49:06 +02:00
|
|
|
bool use_mask;
|
2019-10-30 00:12:34 +01:00
|
|
|
char passphrase[MAX_PASSPHRASE_LEN + 1];
|
2019-08-27 17:58:16 +02:00
|
|
|
uint8_t point;
|
|
|
|
uint8_t end;
|
2018-05-03 23:11:55 +02:00
|
|
|
} masked_input;
|
|
|
|
|
|
|
|
static void mask_input(void)
|
|
|
|
{
|
2018-05-05 00:49:06 +02:00
|
|
|
if (!masked_input.use_mask)
|
|
|
|
return;
|
|
|
|
|
2019-08-27 17:58:16 +02:00
|
|
|
if (rl_end > MAX_PASSPHRASE_LEN) {
|
2019-10-30 00:12:35 +01:00
|
|
|
rl_end = MAX_PASSPHRASE_LEN;
|
|
|
|
rl_point = masked_input.point;
|
|
|
|
|
2019-08-27 17:58:16 +02:00
|
|
|
goto set_mask;
|
|
|
|
}
|
2018-05-03 23:11:55 +02:00
|
|
|
|
2019-08-27 17:58:16 +02:00
|
|
|
if (masked_input.end == rl_end) {
|
|
|
|
/* Moving cursor. */
|
2018-05-03 23:11:55 +02:00
|
|
|
goto done;
|
2019-08-27 17:58:16 +02:00
|
|
|
} else if (masked_input.end < rl_end) {
|
|
|
|
/* Insertion. */
|
|
|
|
memcpy(masked_input.passphrase + rl_point,
|
|
|
|
masked_input.passphrase + masked_input.point,
|
|
|
|
masked_input.end - masked_input.point);
|
|
|
|
memcpy(masked_input.passphrase + masked_input.point,
|
|
|
|
rl_line_buffer + masked_input.point,
|
|
|
|
rl_point - masked_input.point);
|
2018-05-03 23:11:55 +02:00
|
|
|
} else {
|
2019-08-27 17:58:16 +02:00
|
|
|
/* Deletion. */
|
|
|
|
if (masked_input.point > rl_point)
|
|
|
|
/* Backspace key. */
|
|
|
|
memcpy(masked_input.passphrase + rl_point,
|
|
|
|
masked_input.passphrase + masked_input.point,
|
|
|
|
masked_input.end - masked_input.point);
|
|
|
|
else
|
|
|
|
/* Delete key. */
|
|
|
|
memcpy(masked_input.passphrase + rl_point,
|
|
|
|
masked_input.passphrase + masked_input.point
|
|
|
|
+ 1,
|
|
|
|
rl_end - rl_point);
|
|
|
|
memset(masked_input.passphrase + rl_end, 0,
|
|
|
|
masked_input.end - rl_end);
|
2018-05-03 23:11:55 +02:00
|
|
|
}
|
|
|
|
|
2019-08-27 17:58:16 +02:00
|
|
|
set_mask:
|
|
|
|
memset(rl_line_buffer, '*', rl_end);
|
|
|
|
rl_line_buffer[rl_end] = '\0';
|
|
|
|
|
2018-05-03 23:11:55 +02:00
|
|
|
rl_redisplay();
|
|
|
|
|
2019-08-27 17:58:16 +02:00
|
|
|
masked_input.end = rl_end;
|
2018-05-03 23:11:55 +02:00
|
|
|
done:
|
2019-08-27 17:58:16 +02:00
|
|
|
masked_input.point = rl_point;
|
2018-05-03 23:11:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void reset_masked_input(void)
|
|
|
|
{
|
2019-10-30 00:12:34 +01:00
|
|
|
memset(masked_input.passphrase, 0, MAX_PASSPHRASE_LEN + 1);
|
2019-08-27 17:58:16 +02:00
|
|
|
masked_input.point = 0;
|
|
|
|
masked_input.end = 0;
|
2018-05-03 23:11:55 +02:00
|
|
|
}
|
|
|
|
|
2017-03-24 00:32:10 +01:00
|
|
|
static void readline_callback(char *prompt)
|
|
|
|
{
|
2018-07-27 21:41:30 +02:00
|
|
|
char **argv;
|
|
|
|
int argc;
|
|
|
|
|
2017-04-20 22:42:20 +02:00
|
|
|
HIST_ENTRY *previous_prompt;
|
|
|
|
|
2019-10-28 18:21:59 +01:00
|
|
|
if (agent_prompt(masked_input.use_mask ?
|
|
|
|
masked_input.passphrase : prompt))
|
|
|
|
goto done;
|
|
|
|
|
2017-04-20 22:42:20 +02:00
|
|
|
if (!prompt) {
|
|
|
|
display_quit();
|
|
|
|
|
|
|
|
l_main_quit();
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!strlen(prompt))
|
|
|
|
goto done;
|
|
|
|
|
2018-08-01 03:56:39 +02:00
|
|
|
previous_prompt = history_get(history_base + history_length - 1);
|
|
|
|
if (!previous_prompt || strcmp(previous_prompt->line, prompt)) {
|
2017-04-20 22:42:20 +02:00
|
|
|
add_history(prompt);
|
|
|
|
}
|
|
|
|
|
2018-07-27 21:41:30 +02:00
|
|
|
argv = l_parse_args(prompt, &argc);
|
|
|
|
if (!argv) {
|
|
|
|
display("Invalid command\n");
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
command_process_prompt(argv, argc);
|
2017-04-20 22:42:20 +02:00
|
|
|
|
2018-07-30 19:50:57 +02:00
|
|
|
l_strfreev(argv);
|
2017-04-20 22:42:20 +02:00
|
|
|
done:
|
2017-03-24 00:32:10 +01:00
|
|
|
l_free(prompt);
|
|
|
|
}
|
|
|
|
|
2018-05-03 22:57:53 +02:00
|
|
|
bool display_agent_is_active(void)
|
|
|
|
{
|
|
|
|
if (agent_saved_input)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-03-24 00:32:10 +01:00
|
|
|
static bool read_handler(struct l_io *io, void *user_data)
|
|
|
|
{
|
|
|
|
rl_callback_read_char();
|
|
|
|
|
2019-08-31 01:46:14 +02:00
|
|
|
if (display_agent_is_active() || !command_is_interactive_mode())
|
2018-05-03 23:11:55 +02:00
|
|
|
mask_input();
|
|
|
|
|
2017-03-24 00:32:10 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void disconnect_callback(struct l_io *io, void *user_data)
|
|
|
|
{
|
2017-04-20 22:42:19 +02:00
|
|
|
l_main_quit();
|
2017-03-24 00:32:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void display_enable_cmd_prompt(void)
|
|
|
|
{
|
2017-05-12 21:15:37 +02:00
|
|
|
if (!io)
|
|
|
|
io = l_io_new(fileno(stdin));
|
2017-03-24 00:32:10 +01:00
|
|
|
|
|
|
|
l_io_set_read_handler(io, read_handler, NULL, NULL);
|
|
|
|
l_io_set_disconnect_handler(io, disconnect_callback, NULL, NULL);
|
|
|
|
|
|
|
|
rl_set_prompt(IWD_PROMPT);
|
2017-04-20 22:42:22 +02:00
|
|
|
|
2020-04-09 01:14:07 +02:00
|
|
|
/*
|
|
|
|
* The following sequence of rl_* commands forces readline to properly
|
|
|
|
* update its internal state and re-display the new prompt.
|
|
|
|
*/
|
|
|
|
rl_save_prompt();
|
|
|
|
rl_redisplay();
|
|
|
|
rl_restore_prompt();
|
|
|
|
rl_forced_update_display();
|
2017-03-24 00:32:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void display_disable_cmd_prompt(void)
|
|
|
|
{
|
2017-04-21 01:23:12 +02:00
|
|
|
display_refresh_reset();
|
|
|
|
|
2020-04-09 03:51:01 +02:00
|
|
|
rl_set_prompt("Waiting for IWD to start...");
|
2017-04-20 22:42:21 +02:00
|
|
|
printf("\r");
|
|
|
|
rl_on_new_line();
|
|
|
|
rl_redisplay();
|
2017-03-24 00:32:10 +01:00
|
|
|
}
|
|
|
|
|
2018-05-05 00:49:06 +02:00
|
|
|
void display_agent_prompt(const char *label, bool mask_input)
|
2018-05-03 22:57:52 +02:00
|
|
|
{
|
2018-05-05 00:49:06 +02:00
|
|
|
char *prompt;
|
|
|
|
|
|
|
|
masked_input.use_mask = mask_input;
|
2018-05-03 23:11:55 +02:00
|
|
|
|
2018-05-05 00:49:06 +02:00
|
|
|
if (mask_input)
|
|
|
|
reset_masked_input();
|
2018-05-03 22:57:52 +02:00
|
|
|
|
2022-07-07 19:55:05 +02:00
|
|
|
prompt = l_strdup_printf(COLOR_BLUE("%s "), label);
|
2018-05-03 22:57:52 +02:00
|
|
|
|
2019-08-31 01:46:14 +02:00
|
|
|
if (command_is_interactive_mode()) {
|
|
|
|
if (agent_saved_input) {
|
|
|
|
l_free(prompt);
|
|
|
|
return;
|
|
|
|
}
|
2018-05-03 22:57:52 +02:00
|
|
|
|
2019-08-31 01:46:14 +02:00
|
|
|
agent_saved_input = l_new(struct saved_input, 1);
|
|
|
|
|
|
|
|
agent_saved_input->point = rl_point;
|
|
|
|
agent_saved_input->line = rl_copy_text(0, rl_end);
|
|
|
|
rl_set_prompt("");
|
|
|
|
rl_replace_line("", 0);
|
|
|
|
rl_redisplay();
|
|
|
|
|
|
|
|
rl_erase_empty_line = 0;
|
|
|
|
rl_set_prompt(prompt);
|
|
|
|
} else {
|
|
|
|
rl_callback_handler_install(prompt, readline_callback);
|
|
|
|
|
|
|
|
if (!io)
|
|
|
|
io = l_io_new(fileno(stdin));
|
|
|
|
|
|
|
|
l_io_set_read_handler(io, read_handler, NULL, NULL);
|
|
|
|
}
|
2018-05-05 00:49:06 +02:00
|
|
|
|
|
|
|
l_free(prompt);
|
|
|
|
|
2019-08-31 01:46:14 +02:00
|
|
|
rl_redisplay();
|
2018-05-03 22:57:52 +02:00
|
|
|
}
|
|
|
|
|
2018-05-05 00:49:06 +02:00
|
|
|
void display_agent_prompt_release(const char *label)
|
2018-05-03 22:57:52 +02:00
|
|
|
{
|
2019-08-31 01:46:14 +02:00
|
|
|
if (!command_is_interactive_mode()) {
|
|
|
|
rl_callback_handler_remove();
|
|
|
|
l_io_destroy(io);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-05-03 22:57:52 +02:00
|
|
|
if (!agent_saved_input)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (display_refresh.cmd) {
|
|
|
|
char *text = rl_copy_text(0, rl_end);
|
2022-07-07 19:55:05 +02:00
|
|
|
char *prompt = l_strdup_printf(COLOR_BLUE("%s ")
|
|
|
|
"%s\n", label, text);
|
2018-05-05 00:49:06 +02:00
|
|
|
l_free(text);
|
2018-05-03 22:57:52 +02:00
|
|
|
|
|
|
|
l_queue_push_tail(display_refresh.redo_entries, prompt);
|
|
|
|
display_refresh.undo_lines++;
|
|
|
|
}
|
|
|
|
|
|
|
|
rl_erase_empty_line = 1;
|
|
|
|
|
|
|
|
rl_replace_line(agent_saved_input->line, 0);
|
|
|
|
rl_point = agent_saved_input->point;
|
|
|
|
|
|
|
|
l_free(agent_saved_input->line);
|
|
|
|
l_free(agent_saved_input);
|
|
|
|
agent_saved_input = NULL;
|
|
|
|
|
|
|
|
rl_set_prompt(IWD_PROMPT);
|
|
|
|
}
|
|
|
|
|
2017-04-10 22:16:50 +02:00
|
|
|
void display_quit(void)
|
|
|
|
{
|
|
|
|
rl_crlf();
|
|
|
|
}
|
|
|
|
|
2020-04-10 00:51:45 +02:00
|
|
|
static void window_change_signal_handler(void *user_data)
|
2017-06-05 23:29:41 +02:00
|
|
|
{
|
2020-04-10 00:51:46 +02:00
|
|
|
display_refresh_check_feasibility();
|
2017-06-05 23:29:41 +02:00
|
|
|
}
|
|
|
|
|
2019-08-27 06:35:01 +02:00
|
|
|
static char *history_path;
|
|
|
|
|
2017-03-24 00:32:10 +01:00
|
|
|
void display_init(void)
|
|
|
|
{
|
2019-12-13 09:33:19 +01:00
|
|
|
const char *data_home;
|
|
|
|
char *data_path;
|
2019-08-27 06:35:01 +02:00
|
|
|
|
2017-04-21 01:23:12 +02:00
|
|
|
display_refresh.redo_entries = l_queue_new();
|
|
|
|
|
2019-08-27 06:35:01 +02:00
|
|
|
stifle_history(24);
|
|
|
|
|
2019-12-13 09:33:19 +01:00
|
|
|
data_home = getenv("XDG_DATA_HOME");
|
|
|
|
if (!data_home || *data_home != '/') {
|
|
|
|
const char *home_path;
|
2019-08-27 06:35:01 +02:00
|
|
|
|
2019-12-13 09:33:19 +01:00
|
|
|
home_path = getenv("HOME");
|
|
|
|
if (home_path)
|
|
|
|
data_path = l_strdup_printf("%s/%s/iwctl",
|
|
|
|
home_path, ".local/share");
|
|
|
|
else
|
|
|
|
data_path = NULL;
|
|
|
|
} else {
|
|
|
|
data_path = l_strdup_printf("%s/iwctl", data_home);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (data_path) {
|
2021-02-09 21:37:13 +01:00
|
|
|
/*
|
|
|
|
* If mkdir succeeds that means its a new directory, no need
|
|
|
|
* to read the history since it doesn't exist
|
|
|
|
*/
|
|
|
|
if (mkdir(data_path, 0700) != 0) {
|
|
|
|
history_path = l_strdup_printf("%s/history", data_path);
|
|
|
|
read_history(history_path);
|
2021-02-08 21:19:55 +01:00
|
|
|
}
|
2019-12-13 09:33:19 +01:00
|
|
|
|
|
|
|
l_free(data_path);
|
|
|
|
} else {
|
|
|
|
history_path = NULL;
|
|
|
|
}
|
2019-08-27 06:35:01 +02:00
|
|
|
|
2017-03-24 00:32:10 +01:00
|
|
|
setlinebuf(stdout);
|
|
|
|
|
2020-04-10 00:51:45 +02:00
|
|
|
window_change_signal =
|
|
|
|
l_signal_create(SIGWINCH, window_change_signal_handler, NULL,
|
|
|
|
NULL);
|
2017-06-05 23:29:41 +02:00
|
|
|
|
2017-04-21 01:23:08 +02:00
|
|
|
rl_attempted_completion_function = command_completion;
|
2017-04-27 01:08:38 +02:00
|
|
|
rl_completion_display_matches_hook = display_completion_matches;
|
2017-04-21 01:23:08 +02:00
|
|
|
|
2019-07-24 01:21:35 +02:00
|
|
|
rl_completer_quote_characters = "\"";
|
2017-03-24 00:32:10 +01:00
|
|
|
rl_erase_empty_line = 1;
|
2020-04-09 03:51:01 +02:00
|
|
|
rl_callback_handler_install("Waiting for IWD to start...",
|
2017-03-24 00:32:10 +01:00
|
|
|
readline_callback);
|
2019-08-27 06:35:01 +02:00
|
|
|
|
2017-03-24 00:32:10 +01:00
|
|
|
rl_redisplay();
|
2020-04-10 00:51:46 +02:00
|
|
|
|
|
|
|
display_refresh_check_feasibility();
|
2017-03-24 00:32:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void display_exit(void)
|
|
|
|
{
|
2018-05-03 22:57:52 +02:00
|
|
|
if (agent_saved_input) {
|
|
|
|
l_free(agent_saved_input->line);
|
|
|
|
l_free(agent_saved_input);
|
|
|
|
agent_saved_input = NULL;
|
|
|
|
}
|
|
|
|
|
2017-04-21 01:23:12 +02:00
|
|
|
l_timeout_remove(refresh_timeout);
|
|
|
|
refresh_timeout = NULL;
|
|
|
|
|
|
|
|
l_queue_destroy(display_refresh.redo_entries, l_free);
|
|
|
|
|
2017-03-24 00:32:10 +01:00
|
|
|
rl_callback_handler_remove();
|
|
|
|
|
|
|
|
l_io_destroy(io);
|
2017-06-05 23:29:41 +02:00
|
|
|
|
2020-04-10 00:51:45 +02:00
|
|
|
l_signal_remove(window_change_signal);
|
2017-06-05 23:29:42 +02:00
|
|
|
|
2019-12-13 09:33:19 +01:00
|
|
|
if (history_path)
|
|
|
|
write_history(history_path);
|
|
|
|
|
2019-08-27 06:35:01 +02:00
|
|
|
l_free(history_path);
|
|
|
|
|
2017-06-05 23:29:42 +02:00
|
|
|
display_quit();
|
2017-03-24 00:32:10 +01:00
|
|
|
}
|