mirror of
https://github.com/qemu/qemu.git
synced 2025-07-29 14:43:25 +00:00

Make the readline.c functionality reusable. Instead of calling monitor_printf() and monitor_flush() directly, invoke function pointers provided by the user. This way readline.c does not know about Monitor and other users will be able to make use of readline.c. Note that there is already an "opaque" argument to the ReadLineFunc callback. Consistently call it "readline_opaque" from now on to distinguish from the ReadLinePrintfFunc/ReadLineFlushFunc "opaque" argument. I also dropped the printf macro trickery since it's now highly unlikely that anyone modifying readline.c would call printf(3) directly. We no longer need this protection. Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
63 lines
1.9 KiB
C
63 lines
1.9 KiB
C
#ifndef READLINE_H
|
|
#define READLINE_H
|
|
|
|
#define READLINE_CMD_BUF_SIZE 4095
|
|
#define READLINE_MAX_CMDS 64
|
|
#define READLINE_MAX_COMPLETIONS 256
|
|
|
|
typedef void ReadLinePrintfFunc(void *opaque, const char *fmt, ...);
|
|
typedef void ReadLineFlushFunc(void *opaque);
|
|
typedef void ReadLineFunc(void *opaque, const char *str,
|
|
void *readline_opaque);
|
|
typedef void ReadLineCompletionFunc(void *opaque,
|
|
const char *cmdline);
|
|
|
|
typedef struct ReadLineState {
|
|
char cmd_buf[READLINE_CMD_BUF_SIZE + 1];
|
|
int cmd_buf_index;
|
|
int cmd_buf_size;
|
|
|
|
char last_cmd_buf[READLINE_CMD_BUF_SIZE + 1];
|
|
int last_cmd_buf_index;
|
|
int last_cmd_buf_size;
|
|
|
|
int esc_state;
|
|
int esc_param;
|
|
|
|
char *history[READLINE_MAX_CMDS];
|
|
int hist_entry;
|
|
|
|
ReadLineCompletionFunc *completion_finder;
|
|
char *completions[READLINE_MAX_COMPLETIONS];
|
|
int nb_completions;
|
|
int completion_index;
|
|
|
|
ReadLineFunc *readline_func;
|
|
void *readline_opaque;
|
|
int read_password;
|
|
char prompt[256];
|
|
|
|
ReadLinePrintfFunc *printf_func;
|
|
ReadLineFlushFunc *flush_func;
|
|
void *opaque;
|
|
} ReadLineState;
|
|
|
|
void readline_add_completion(ReadLineState *rs, const char *str);
|
|
void readline_set_completion_index(ReadLineState *rs, int completion_index);
|
|
|
|
const char *readline_get_history(ReadLineState *rs, unsigned int index);
|
|
|
|
void readline_handle_byte(ReadLineState *rs, int ch);
|
|
|
|
void readline_start(ReadLineState *rs, const char *prompt, int read_password,
|
|
ReadLineFunc *readline_func, void *readline_opaque);
|
|
void readline_restart(ReadLineState *rs);
|
|
void readline_show_prompt(ReadLineState *rs);
|
|
|
|
ReadLineState *readline_init(ReadLinePrintfFunc *printf_func,
|
|
ReadLineFlushFunc *flush_func,
|
|
void *opaque,
|
|
ReadLineCompletionFunc *completion_finder);
|
|
|
|
#endif /* !READLINE_H */
|