我有类似于以下的代码,使用 readline:
#include <errno.h>
#include <error.h>
#include <getopt.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <signal.h>
#include <readline/readline.h>
#include <readline/history.h>
void handle_signals(int signo) {
if (signo == SIGINT) {
printf("You pressed Ctrl+C\n");
}
}
int main (int argc, char **argv)
{
//printf("path is: %s\n", path_string);
char * input;
char * shell_prompt = "i-shell> ";
if (signal(SIGINT, handle_signals) == SIG_ERR) {
printf("failed to register interrupts with kernel\n");
}
//set up custom completer and associated data strucutres
setup_readline();
while (1)
{
input = readline(shell_prompt);
if (!input)
break;
add_history(input);
//do something with the code
execute_command(input);
}
return 0;
}
我已经将它设置为拦截SIGINT
(即用户按下Ctrl+C
),因此我可以判断信号处理程序handle_signals()
正在工作。但是,当控制返回到 时readline()
,它使用的是输入之前使用的同一行文本。我想要做的是让 readline “取消”当前的文本行并给我一个新行,就像 BASH shell 一样。像这样:
i-shell> bad_command^C
i-shell> _
有没有机会让这个工作?我读到的邮件列表中提到了 using longjmp(2)
,但这似乎不是一个好主意。