mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-12-04 17:23:52 +08:00
9c53019d95
Improve output.
212 lines
7.1 KiB
C++
212 lines
7.1 KiB
C++
// A small utility to print information related to pressing keys. This is similar to using tools
|
|
// like `xxd` and `od -tx1z` but provides more information such as the time delay between each
|
|
// character. It also allows pressing and interpreting keys that are normally special such as
|
|
// [ctrl-C] (interrupt the program) or [ctrl-D] (EOF to signal the program should exit).
|
|
// And unlike those other tools this one disables ICRNL mode so it can distinguish between
|
|
// carriage-return (\cM) and newline (\cJ).
|
|
//
|
|
// Type "exit" or "quit" to terminate the program.
|
|
#include "config.h" // IWYU pragma: keep
|
|
|
|
#include <getopt.h>
|
|
#include <locale.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <wctype.h>
|
|
#include <sys/signal.h>
|
|
#include <iosfwd>
|
|
#include <limits>
|
|
#include <cmath>
|
|
|
|
#include "common.h"
|
|
#include "env.h"
|
|
#include "fallback.h" // IWYU pragma: keep
|
|
#include "input.h"
|
|
#include "input_common.h"
|
|
#include "proc.h"
|
|
#include "reader.h"
|
|
|
|
struct config_paths_t determine_config_directory_paths(const char *argv0);
|
|
|
|
double prev_tstamp = std::numeric_limits<double>::quiet_NaN();
|
|
|
|
static const char *ctrl_equivalents[] = {"\\000", "\\001", "\\002", "\\003", "\\004", "\\005", "\\006", "\\a",
|
|
"\\b", "\\t", "\\n", "\\v", "\\f", "\\r", "\\014", "\\015",
|
|
"\\016", "\\017", "\\018", "\\019", "\\020", "\\021", "\\022", "\\023",
|
|
"\\024", "\\025", "", "\\e", "\\028", "\\029", "\\030", "\\031"};
|
|
|
|
/// Return true if the recent sequence of characters indicates the user wants to exit the program.
|
|
bool should_exit(unsigned char c) {
|
|
static unsigned char recent_chars[4] = {0};
|
|
|
|
recent_chars[0] = recent_chars[1];
|
|
recent_chars[1] = recent_chars[2];
|
|
recent_chars[2] = recent_chars[3];
|
|
recent_chars[3] = c;
|
|
return memcmp(recent_chars, "exit", 4) == 0 || memcmp(recent_chars, "quit", 4) == 0;
|
|
}
|
|
|
|
/// Return the key name if the recent sequence of characters matches a known terminfo sequence.
|
|
char *const key_name(unsigned char c) {
|
|
static char recent_chars[8] = {0};
|
|
|
|
recent_chars[0] = recent_chars[1];
|
|
recent_chars[1] = recent_chars[2];
|
|
recent_chars[2] = recent_chars[3];
|
|
recent_chars[3] = recent_chars[4];
|
|
recent_chars[4] = recent_chars[5];
|
|
recent_chars[5] = recent_chars[6];
|
|
recent_chars[6] = recent_chars[7];
|
|
recent_chars[7] = c;
|
|
|
|
for (int idx = 7; idx >= 0; idx--) {
|
|
wcstring out_name;
|
|
wcstring seq = str2wcstring(recent_chars + idx, 8 - idx);
|
|
bool found = input_terminfo_get_name(seq, &out_name);
|
|
if (found) {
|
|
return strdup(wcs2string(out_name).c_str());
|
|
}
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
/// Process the characters we receive as the user presses keys.
|
|
void process_input(bool continuous_mode) {
|
|
bool first_char_seen = false;
|
|
while (true) {
|
|
wchar_t wc = input_common_readch(first_char_seen && !continuous_mode);
|
|
if (wc == WEOF) {
|
|
return;
|
|
} else if (wc > 255) {
|
|
printf("\nUnexpected wide character from input_common_readch(): %lld / 0x%llx\n",
|
|
(long long)wc, (long long)wc);
|
|
return;
|
|
}
|
|
|
|
double delta_tstamp = (timef() - prev_tstamp);
|
|
// double timef() is time in seconds since unix epoch with ~microsecondish precision
|
|
prev_tstamp = timef();
|
|
|
|
if (delta_tstamp > 20) {
|
|
printf("Type 'exit' or 'quit' to terminate this program.\n");
|
|
printf("\n");
|
|
}
|
|
|
|
unsigned char c = wc;
|
|
if (c < 32) {
|
|
// Control characters.
|
|
if (ctrl_equivalents[c]) {
|
|
printf("dec: %3u hex: %2x char: %s (aka \\c%c)", c, c,
|
|
ctrl_equivalents[c], c + 64);
|
|
} else {
|
|
printf("dec: %3u hex: %2x char: \\c%c\t", c, c, c + 64);
|
|
}
|
|
} else if (c == 32) {
|
|
// The space character.
|
|
printf("dec: %3u hex: %2x char: <space>", c, c);
|
|
} else if (c == 127) {
|
|
// The "del" character.
|
|
printf("dec: %3u hex: %2x char: \\x7f (aka del)", c, c);
|
|
} else if (c >= 128) {
|
|
// Non-ASCII characters (i.e., those with bit 7 set).
|
|
printf("dec: %3u hex: %2x char: non-ASCII", c, c);
|
|
} else {
|
|
// ASCII characters that are not control characters.
|
|
printf("dec: %3u hex: %2x char: %c\t", c, c, c);
|
|
}
|
|
|
|
if (!std::isnan(delta_tstamp)) {
|
|
printf("\t(%6.lf ms)\n", delta_tstamp * 1000);
|
|
} else {
|
|
printf("\n");
|
|
}
|
|
|
|
char *const name = key_name(c);
|
|
if (name) {
|
|
printf("Sequence matches bind key name \"%s\"\n", name);
|
|
free(name);
|
|
}
|
|
|
|
if (should_exit(c)) {
|
|
printf("\nExiting at your request.\n");
|
|
break;
|
|
}
|
|
|
|
first_char_seen = true;
|
|
}
|
|
}
|
|
|
|
/// Make sure we cleanup before exiting if we're signaled.
|
|
void signal_handler(int signo) {
|
|
printf("\nExiting on receipt of signal #%d\n", signo);
|
|
restore_term_mode();
|
|
exit(1);
|
|
}
|
|
|
|
/// Setup our environment (e.g., tty modes), process key strokes, then reset the environment.
|
|
void setup_and_process_keys(bool continuous_mode) {
|
|
is_interactive_session = 1; // by definition this is interactive
|
|
setlocale(LC_ALL, "POSIX");
|
|
set_main_thread();
|
|
setup_fork_guards();
|
|
|
|
env_init();
|
|
reader_init();
|
|
input_init();
|
|
|
|
// Installing our handler for every signal (e.g., SIGSEGV) is dubious because it means that
|
|
// signals that might generate a core dump will not do so. On the other hand this allows us
|
|
// to restore the tty modes so the terminal is still usable when we die.
|
|
for (int signo = 1; signo < 32; signo++) {
|
|
signal(signo, signal_handler);
|
|
}
|
|
|
|
if (continuous_mode) {
|
|
printf("<ctrl-C> ('\\Cc') or type 'exit' or 'quit' followed by enter to terminate this program.\n");
|
|
} else {
|
|
set_wait_on_escape_ms(500);
|
|
}
|
|
|
|
// TODO: We really should enable keypad mode but see issue #838.
|
|
process_input(continuous_mode);
|
|
restore_term_mode();
|
|
restore_term_foreground_process_group();
|
|
input_destroy();
|
|
reader_destroy();
|
|
}
|
|
|
|
int main(int argc, char **argv) {
|
|
program_name = L"fish_key_reader";
|
|
bool continuous_mode = false;
|
|
const char *short_opts = "+c";
|
|
const struct option long_opts[] = {{"continuous", no_argument, NULL, 'd'}, {NULL, 0, NULL, 0}};
|
|
int opt;
|
|
while ((opt = getopt_long(argc, argv, short_opts, long_opts, NULL)) != -1) {
|
|
switch (opt) {
|
|
case 0: {
|
|
fprintf(stderr, "getopt_long() unexpectedly returned zero\n");
|
|
exit(1);
|
|
}
|
|
case 'c': {
|
|
continuous_mode = true;
|
|
break;
|
|
}
|
|
default: {
|
|
// We assume getopt_long() has already emitted a diagnostic msg.
|
|
exit(1);
|
|
}
|
|
}
|
|
}
|
|
|
|
argc -= optind;
|
|
if (argc != 0) {
|
|
fprintf(stderr, "Expected no arguments, got %d\n", argc);
|
|
return 1;
|
|
}
|
|
|
|
setup_and_process_keys(continuous_mode);
|
|
return 0;
|
|
}
|