2 * QEMU readline utility
4 * Copyright (c) 2003-2004 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26 #define TERM_CMD_BUF_SIZE 4095
27 #define TERM_MAX_CMDS 64
28 #define NB_COMPLETIONS_MAX 256
34 #define printf do_not_use_printf
36 static char term_cmd_buf[TERM_CMD_BUF_SIZE + 1];
37 static int term_cmd_buf_index;
38 static int term_cmd_buf_size;
40 static char term_last_cmd_buf[TERM_CMD_BUF_SIZE + 1];
41 static int term_last_cmd_buf_index;
42 static int term_last_cmd_buf_size;
44 static int term_esc_state;
45 static int term_esc_param;
47 static char *term_history[TERM_MAX_CMDS];
48 static int term_hist_entry = -1;
50 static int nb_completions;
52 static char *completions[NB_COMPLETIONS_MAX];
54 static ReadLineFunc *term_readline_func;
55 static int term_is_password;
56 static char term_prompt[256];
57 static void *term_readline_opaque;
59 static void term_show_prompt2(void)
61 term_printf("%s", term_prompt);
63 term_last_cmd_buf_index = 0;
64 term_last_cmd_buf_size = 0;
65 term_esc_state = IS_NORM;
68 static void term_show_prompt(void)
71 term_cmd_buf_index = 0;
72 term_cmd_buf_size = 0;
75 /* update the displayed command line */
76 static void term_update(void)
80 if (term_cmd_buf_size != term_last_cmd_buf_size ||
81 memcmp(term_cmd_buf, term_last_cmd_buf, term_cmd_buf_size) != 0) {
82 for(i = 0; i < term_last_cmd_buf_index; i++) {
83 term_printf("\033[D");
85 term_cmd_buf[term_cmd_buf_size] = '\0';
86 if (term_is_password) {
87 len = strlen(term_cmd_buf);
88 for(i = 0; i < len; i++)
91 term_printf("%s", term_cmd_buf);
93 term_printf("\033[K");
94 memcpy(term_last_cmd_buf, term_cmd_buf, term_cmd_buf_size);
95 term_last_cmd_buf_size = term_cmd_buf_size;
96 term_last_cmd_buf_index = term_cmd_buf_size;
98 if (term_cmd_buf_index != term_last_cmd_buf_index) {
99 delta = term_cmd_buf_index - term_last_cmd_buf_index;
101 for(i = 0;i < delta; i++) {
102 term_printf("\033[C");
106 for(i = 0;i < delta; i++) {
107 term_printf("\033[D");
110 term_last_cmd_buf_index = term_cmd_buf_index;
115 static void term_insert_char(int ch)
117 if (term_cmd_buf_index < TERM_CMD_BUF_SIZE) {
118 memmove(term_cmd_buf + term_cmd_buf_index + 1,
119 term_cmd_buf + term_cmd_buf_index,
120 term_cmd_buf_size - term_cmd_buf_index);
121 term_cmd_buf[term_cmd_buf_index] = ch;
123 term_cmd_buf_index++;
127 static void term_backward_char(void)
129 if (term_cmd_buf_index > 0) {
130 term_cmd_buf_index--;
134 static void term_forward_char(void)
136 if (term_cmd_buf_index < term_cmd_buf_size) {
137 term_cmd_buf_index++;
141 static void term_delete_char(void)
143 if (term_cmd_buf_index < term_cmd_buf_size) {
144 memmove(term_cmd_buf + term_cmd_buf_index,
145 term_cmd_buf + term_cmd_buf_index + 1,
146 term_cmd_buf_size - term_cmd_buf_index - 1);
151 static void term_backspace(void)
153 if (term_cmd_buf_index > 0) {
154 term_backward_char();
159 static void term_backword(void)
163 if (term_cmd_buf_index == 0 || term_cmd_buf_index > term_cmd_buf_size) {
167 start = term_cmd_buf_index - 1;
169 /* find first word (backwards) */
171 if (!isspace(term_cmd_buf[start])) {
178 /* find first space (backwards) */
180 if (isspace(term_cmd_buf[start])) {
189 if (start < term_cmd_buf_index) {
190 memmove(term_cmd_buf + start,
191 term_cmd_buf + term_cmd_buf_index,
192 term_cmd_buf_size - term_cmd_buf_index);
193 term_cmd_buf_size -= term_cmd_buf_index - start;
194 term_cmd_buf_index = start;
198 static void term_bol(void)
200 term_cmd_buf_index = 0;
203 static void term_eol(void)
205 term_cmd_buf_index = term_cmd_buf_size;
208 static void term_up_char(void)
212 if (term_hist_entry == 0)
214 if (term_hist_entry == -1) {
215 /* Find latest entry */
216 for (idx = 0; idx < TERM_MAX_CMDS; idx++) {
217 if (term_history[idx] == NULL)
220 term_hist_entry = idx;
223 if (term_hist_entry >= 0) {
224 pstrcpy(term_cmd_buf, sizeof(term_cmd_buf),
225 term_history[term_hist_entry]);
226 term_cmd_buf_index = term_cmd_buf_size = strlen(term_cmd_buf);
230 static void term_down_char(void)
232 if (term_hist_entry == TERM_MAX_CMDS - 1 || term_hist_entry == -1)
234 if (term_history[++term_hist_entry] != NULL) {
235 pstrcpy(term_cmd_buf, sizeof(term_cmd_buf),
236 term_history[term_hist_entry]);
238 term_hist_entry = -1;
240 term_cmd_buf_index = term_cmd_buf_size = strlen(term_cmd_buf);
243 static void term_hist_add(const char *cmdline)
245 char *hist_entry, *new_entry;
248 if (cmdline[0] == '\0')
251 if (term_hist_entry != -1) {
252 /* We were editing an existing history entry: replace it */
253 hist_entry = term_history[term_hist_entry];
254 idx = term_hist_entry;
255 if (strcmp(hist_entry, cmdline) == 0) {
259 /* Search cmdline in history buffers */
260 for (idx = 0; idx < TERM_MAX_CMDS; idx++) {
261 hist_entry = term_history[idx];
262 if (hist_entry == NULL)
264 if (strcmp(hist_entry, cmdline) == 0) {
266 new_entry = hist_entry;
267 /* Put this entry at the end of history */
268 memmove(&term_history[idx], &term_history[idx + 1],
269 &term_history[TERM_MAX_CMDS] - &term_history[idx + 1]);
270 term_history[TERM_MAX_CMDS - 1] = NULL;
271 for (; idx < TERM_MAX_CMDS; idx++) {
272 if (term_history[idx] == NULL)
278 if (idx == TERM_MAX_CMDS) {
279 /* Need to get one free slot */
280 free(term_history[0]);
281 memcpy(term_history, &term_history[1],
282 &term_history[TERM_MAX_CMDS] - &term_history[1]);
283 term_history[TERM_MAX_CMDS - 1] = NULL;
284 idx = TERM_MAX_CMDS - 1;
286 if (new_entry == NULL)
287 new_entry = strdup(cmdline);
288 term_history[idx] = new_entry;
289 term_hist_entry = -1;
292 /* completion support */
294 void add_completion(const char *str)
296 if (nb_completions < NB_COMPLETIONS_MAX) {
297 completions[nb_completions++] = qemu_strdup(str);
301 static void term_completion(void)
303 int len, i, j, max_width, nb_cols;
308 cmdline = qemu_malloc(term_cmd_buf_index + 1);
311 memcpy(cmdline, term_cmd_buf, term_cmd_buf_index);
312 cmdline[term_cmd_buf_index] = '\0';
313 readline_find_completion(cmdline);
316 /* no completion found */
317 if (nb_completions <= 0)
319 if (nb_completions == 1) {
320 len = strlen(completions[0]);
321 for(i = completion_index; i < len; i++) {
322 term_insert_char(completions[0][i]);
324 /* extra space for next argument. XXX: make it more generic */
325 if (len > 0 && completions[0][len - 1] != '/')
326 term_insert_char(' ');
330 for(i = 0; i < nb_completions; i++) {
331 len = strlen(completions[i]);
338 else if (max_width > 80)
340 nb_cols = 80 / max_width;
342 for(i = 0; i < nb_completions; i++) {
343 term_printf("%-*s", max_width, completions[i]);
344 if (++j == nb_cols || i == (nb_completions - 1)) {
353 /* return true if command handled */
354 void readline_handle_byte(int ch)
356 switch(term_esc_state) {
373 term_cmd_buf[term_cmd_buf_size] = '\0';
374 if (!term_is_password)
375 term_hist_add(term_cmd_buf);
377 term_cmd_buf_index = 0;
378 term_cmd_buf_size = 0;
379 term_last_cmd_buf_index = 0;
380 term_last_cmd_buf_size = 0;
381 /* NOTE: readline_start can be called here */
382 term_readline_func(term_readline_opaque, term_cmd_buf);
389 term_esc_state = IS_ESC;
396 term_esc_state = IS_CSI;
400 term_insert_char(ch);
407 term_esc_state = IS_CSI;
410 term_esc_state = IS_NORM;
424 term_backward_char();
430 term_esc_param = term_esc_param * 10 + (ch - '0');
433 switch(term_esc_param) {
448 term_esc_state = IS_NORM;
455 void readline_start(const char *prompt, int is_password,
456 ReadLineFunc *readline_func, void *opaque)
458 pstrcpy(term_prompt, sizeof(term_prompt), prompt);
459 term_readline_func = readline_func;
460 term_readline_opaque = opaque;
461 term_is_password = is_password;
465 const char *readline_get_history(unsigned int index)
467 if (index >= TERM_MAX_CMDS)
469 return term_history[index];