]> git.proxmox.com Git - qemu.git/blame - readline.c
Version 1.0.1
[qemu.git] / readline.c
CommitLineData
7e2515e8
FB
1/*
2 * QEMU readline utility
5fafdf24 3 *
7e2515e8 4 * Copyright (c) 2003-2004 Fabrice Bellard
5fafdf24 5 *
7e2515e8
FB
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:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
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
22 * THE SOFTWARE.
23 */
376253ec
AL
24#include "readline.h"
25#include "monitor.h"
7e2515e8 26
7e2515e8
FB
27#define IS_NORM 0
28#define IS_ESC 1
29#define IS_CSI 2
30
30bf5f46 31#undef printf
7e2515e8
FB
32#define printf do_not_use_printf
33
4c36ba32 34void readline_show_prompt(ReadLineState *rs)
7e2515e8 35{
4c36ba32
AL
36 monitor_printf(rs->mon, "%s", rs->prompt);
37 monitor_flush(rs->mon);
38 rs->last_cmd_buf_index = 0;
39 rs->last_cmd_buf_size = 0;
40 rs->esc_state = IS_NORM;
7e2515e8
FB
41}
42
7e2515e8 43/* update the displayed command line */
4c36ba32 44static void readline_update(ReadLineState *rs)
7e2515e8
FB
45{
46 int i, delta, len;
47
4c36ba32
AL
48 if (rs->cmd_buf_size != rs->last_cmd_buf_size ||
49 memcmp(rs->cmd_buf, rs->last_cmd_buf, rs->cmd_buf_size) != 0) {
50 for(i = 0; i < rs->last_cmd_buf_index; i++) {
51 monitor_printf(rs->mon, "\033[D");
7e2515e8 52 }
4c36ba32
AL
53 rs->cmd_buf[rs->cmd_buf_size] = '\0';
54 if (rs->read_password) {
55 len = strlen(rs->cmd_buf);
7e2515e8 56 for(i = 0; i < len; i++)
4c36ba32 57 monitor_printf(rs->mon, "*");
7e2515e8 58 } else {
4c36ba32 59 monitor_printf(rs->mon, "%s", rs->cmd_buf);
7e2515e8 60 }
4c36ba32
AL
61 monitor_printf(rs->mon, "\033[K");
62 memcpy(rs->last_cmd_buf, rs->cmd_buf, rs->cmd_buf_size);
63 rs->last_cmd_buf_size = rs->cmd_buf_size;
64 rs->last_cmd_buf_index = rs->cmd_buf_size;
7e2515e8 65 }
4c36ba32
AL
66 if (rs->cmd_buf_index != rs->last_cmd_buf_index) {
67 delta = rs->cmd_buf_index - rs->last_cmd_buf_index;
7e2515e8
FB
68 if (delta > 0) {
69 for(i = 0;i < delta; i++) {
4c36ba32 70 monitor_printf(rs->mon, "\033[C");
7e2515e8
FB
71 }
72 } else {
73 delta = -delta;
74 for(i = 0;i < delta; i++) {
4c36ba32 75 monitor_printf(rs->mon, "\033[D");
7e2515e8
FB
76 }
77 }
4c36ba32 78 rs->last_cmd_buf_index = rs->cmd_buf_index;
7e2515e8 79 }
4c36ba32 80 monitor_flush(rs->mon);
7e2515e8
FB
81}
82
4c36ba32 83static void readline_insert_char(ReadLineState *rs, int ch)
7e2515e8 84{
4c36ba32
AL
85 if (rs->cmd_buf_index < READLINE_CMD_BUF_SIZE) {
86 memmove(rs->cmd_buf + rs->cmd_buf_index + 1,
87 rs->cmd_buf + rs->cmd_buf_index,
88 rs->cmd_buf_size - rs->cmd_buf_index);
89 rs->cmd_buf[rs->cmd_buf_index] = ch;
90 rs->cmd_buf_size++;
91 rs->cmd_buf_index++;
7e2515e8
FB
92 }
93}
94
4c36ba32 95static void readline_backward_char(ReadLineState *rs)
7e2515e8 96{
4c36ba32
AL
97 if (rs->cmd_buf_index > 0) {
98 rs->cmd_buf_index--;
7e2515e8
FB
99 }
100}
101
4c36ba32 102static void readline_forward_char(ReadLineState *rs)
7e2515e8 103{
4c36ba32
AL
104 if (rs->cmd_buf_index < rs->cmd_buf_size) {
105 rs->cmd_buf_index++;
7e2515e8
FB
106 }
107}
108
4c36ba32 109static void readline_delete_char(ReadLineState *rs)
7e2515e8 110{
4c36ba32
AL
111 if (rs->cmd_buf_index < rs->cmd_buf_size) {
112 memmove(rs->cmd_buf + rs->cmd_buf_index,
113 rs->cmd_buf + rs->cmd_buf_index + 1,
114 rs->cmd_buf_size - rs->cmd_buf_index - 1);
115 rs->cmd_buf_size--;
7e2515e8
FB
116 }
117}
118
4c36ba32 119static void readline_backspace(ReadLineState *rs)
7e2515e8 120{
4c36ba32
AL
121 if (rs->cmd_buf_index > 0) {
122 readline_backward_char(rs);
123 readline_delete_char(rs);
7e2515e8
FB
124 }
125}
126
4c36ba32 127static void readline_backword(ReadLineState *rs)
33fa11d4
TS
128{
129 int start;
130
4c36ba32 131 if (rs->cmd_buf_index == 0 || rs->cmd_buf_index > rs->cmd_buf_size) {
33fa11d4
TS
132 return;
133 }
134
4c36ba32 135 start = rs->cmd_buf_index - 1;
33fa11d4
TS
136
137 /* find first word (backwards) */
138 while (start > 0) {
4c36ba32 139 if (!qemu_isspace(rs->cmd_buf[start])) {
33fa11d4
TS
140 break;
141 }
142
143 --start;
144 }
145
146 /* find first space (backwards) */
147 while (start > 0) {
4c36ba32 148 if (qemu_isspace(rs->cmd_buf[start])) {
33fa11d4
TS
149 ++start;
150 break;
151 }
152
153 --start;
154 }
155
156 /* remove word */
4c36ba32
AL
157 if (start < rs->cmd_buf_index) {
158 memmove(rs->cmd_buf + start,
159 rs->cmd_buf + rs->cmd_buf_index,
160 rs->cmd_buf_size - rs->cmd_buf_index);
161 rs->cmd_buf_size -= rs->cmd_buf_index - start;
162 rs->cmd_buf_index = start;
33fa11d4
TS
163 }
164}
165
4c36ba32 166static void readline_bol(ReadLineState *rs)
7e2515e8 167{
4c36ba32 168 rs->cmd_buf_index = 0;
7e2515e8
FB
169}
170
4c36ba32 171static void readline_eol(ReadLineState *rs)
7e2515e8 172{
4c36ba32 173 rs->cmd_buf_index = rs->cmd_buf_size;
7e2515e8
FB
174}
175
4c36ba32 176static void readline_up_char(ReadLineState *rs)
7e2515e8
FB
177{
178 int idx;
179
4c36ba32 180 if (rs->hist_entry == 0)
7e2515e8 181 return;
4c36ba32 182 if (rs->hist_entry == -1) {
7e2515e8 183 /* Find latest entry */
4c36ba32
AL
184 for (idx = 0; idx < READLINE_MAX_CMDS; idx++) {
185 if (rs->history[idx] == NULL)
7e2515e8
FB
186 break;
187 }
4c36ba32 188 rs->hist_entry = idx;
7e2515e8 189 }
4c36ba32
AL
190 rs->hist_entry--;
191 if (rs->hist_entry >= 0) {
192 pstrcpy(rs->cmd_buf, sizeof(rs->cmd_buf),
193 rs->history[rs->hist_entry]);
194 rs->cmd_buf_index = rs->cmd_buf_size = strlen(rs->cmd_buf);
7e2515e8
FB
195 }
196}
197
4c36ba32 198static void readline_down_char(ReadLineState *rs)
7e2515e8 199{
5b0d2727
AL
200 if (rs->hist_entry == -1)
201 return;
202 if (rs->hist_entry < READLINE_MAX_CMDS - 1 &&
203 rs->history[++rs->hist_entry] != NULL) {
4c36ba32
AL
204 pstrcpy(rs->cmd_buf, sizeof(rs->cmd_buf),
205 rs->history[rs->hist_entry]);
7e2515e8 206 } else {
5b0d2727 207 rs->cmd_buf[0] = 0;
4c36ba32 208 rs->hist_entry = -1;
7e2515e8 209 }
4c36ba32 210 rs->cmd_buf_index = rs->cmd_buf_size = strlen(rs->cmd_buf);
7e2515e8
FB
211}
212
4c36ba32 213static void readline_hist_add(ReadLineState *rs, const char *cmdline)
7e2515e8
FB
214{
215 char *hist_entry, *new_entry;
216 int idx;
217
218 if (cmdline[0] == '\0')
219 return;
220 new_entry = NULL;
4c36ba32 221 if (rs->hist_entry != -1) {
7e2515e8 222 /* We were editing an existing history entry: replace it */
4c36ba32
AL
223 hist_entry = rs->history[rs->hist_entry];
224 idx = rs->hist_entry;
7e2515e8
FB
225 if (strcmp(hist_entry, cmdline) == 0) {
226 goto same_entry;
227 }
228 }
229 /* Search cmdline in history buffers */
4c36ba32
AL
230 for (idx = 0; idx < READLINE_MAX_CMDS; idx++) {
231 hist_entry = rs->history[idx];
7e2515e8
FB
232 if (hist_entry == NULL)
233 break;
234 if (strcmp(hist_entry, cmdline) == 0) {
235 same_entry:
236 new_entry = hist_entry;
237 /* Put this entry at the end of history */
4c36ba32 238 memmove(&rs->history[idx], &rs->history[idx + 1],
8af42882 239 (READLINE_MAX_CMDS - (idx + 1)) * sizeof(char *));
4c36ba32
AL
240 rs->history[READLINE_MAX_CMDS - 1] = NULL;
241 for (; idx < READLINE_MAX_CMDS; idx++) {
242 if (rs->history[idx] == NULL)
7e2515e8
FB
243 break;
244 }
245 break;
246 }
247 }
4c36ba32 248 if (idx == READLINE_MAX_CMDS) {
7e2515e8 249 /* Need to get one free slot */
4c36ba32
AL
250 free(rs->history[0]);
251 memcpy(rs->history, &rs->history[1],
252 (READLINE_MAX_CMDS - 1) * sizeof(char *));
253 rs->history[READLINE_MAX_CMDS - 1] = NULL;
254 idx = READLINE_MAX_CMDS - 1;
7e2515e8
FB
255 }
256 if (new_entry == NULL)
257 new_entry = strdup(cmdline);
4c36ba32
AL
258 rs->history[idx] = new_entry;
259 rs->hist_entry = -1;
7e2515e8
FB
260}
261
262/* completion support */
263
4c36ba32 264void readline_add_completion(ReadLineState *rs, const char *str)
7e2515e8 265{
4c36ba32 266 if (rs->nb_completions < READLINE_MAX_COMPLETIONS) {
7267c094 267 rs->completions[rs->nb_completions++] = g_strdup(str);
7e2515e8
FB
268 }
269}
270
4c36ba32 271void readline_set_completion_index(ReadLineState *rs, int index)
376253ec 272{
4c36ba32 273 rs->completion_index = index;
376253ec
AL
274}
275
4c36ba32 276static void readline_completion(ReadLineState *rs)
7e2515e8 277{
376253ec 278 Monitor *mon = cur_mon;
b427c726 279 int len, i, j, max_width, nb_cols, max_prefix;
7e2515e8
FB
280 char *cmdline;
281
4c36ba32 282 rs->nb_completions = 0;
3b46e624 283
7267c094 284 cmdline = g_malloc(rs->cmd_buf_index + 1);
4c36ba32
AL
285 memcpy(cmdline, rs->cmd_buf, rs->cmd_buf_index);
286 cmdline[rs->cmd_buf_index] = '\0';
287 rs->completion_finder(cmdline);
7267c094 288 g_free(cmdline);
7e2515e8
FB
289
290 /* no completion found */
4c36ba32 291 if (rs->nb_completions <= 0)
7e2515e8 292 return;
4c36ba32
AL
293 if (rs->nb_completions == 1) {
294 len = strlen(rs->completions[0]);
295 for(i = rs->completion_index; i < len; i++) {
296 readline_insert_char(rs, rs->completions[0][i]);
7e2515e8
FB
297 }
298 /* extra space for next argument. XXX: make it more generic */
4c36ba32
AL
299 if (len > 0 && rs->completions[0][len - 1] != '/')
300 readline_insert_char(rs, ' ');
7e2515e8 301 } else {
376253ec 302 monitor_printf(mon, "\n");
7e2515e8 303 max_width = 0;
b427c726 304 max_prefix = 0;
4c36ba32
AL
305 for(i = 0; i < rs->nb_completions; i++) {
306 len = strlen(rs->completions[i]);
b427c726
TS
307 if (i==0) {
308 max_prefix = len;
309 } else {
310 if (len < max_prefix)
311 max_prefix = len;
312 for(j=0; j<max_prefix; j++) {
4c36ba32 313 if (rs->completions[i][j] != rs->completions[0][j])
b427c726
TS
314 max_prefix = j;
315 }
316 }
7e2515e8
FB
317 if (len > max_width)
318 max_width = len;
319 }
b427c726 320 if (max_prefix > 0)
4c36ba32
AL
321 for(i = rs->completion_index; i < max_prefix; i++) {
322 readline_insert_char(rs, rs->completions[0][i]);
b427c726 323 }
7e2515e8
FB
324 max_width += 2;
325 if (max_width < 10)
326 max_width = 10;
327 else if (max_width > 80)
328 max_width = 80;
329 nb_cols = 80 / max_width;
330 j = 0;
4c36ba32
AL
331 for(i = 0; i < rs->nb_completions; i++) {
332 monitor_printf(rs->mon, "%-*s", max_width, rs->completions[i]);
333 if (++j == nb_cols || i == (rs->nb_completions - 1)) {
334 monitor_printf(rs->mon, "\n");
7e2515e8
FB
335 j = 0;
336 }
337 }
4c36ba32 338 readline_show_prompt(rs);
7e2515e8
FB
339 }
340}
341
342/* return true if command handled */
4c36ba32 343void readline_handle_byte(ReadLineState *rs, int ch)
7e2515e8 344{
4c36ba32 345 switch(rs->esc_state) {
7e2515e8
FB
346 case IS_NORM:
347 switch(ch) {
348 case 1:
4c36ba32 349 readline_bol(rs);
7e2515e8
FB
350 break;
351 case 4:
4c36ba32 352 readline_delete_char(rs);
7e2515e8
FB
353 break;
354 case 5:
4c36ba32 355 readline_eol(rs);
7e2515e8
FB
356 break;
357 case 9:
4c36ba32 358 readline_completion(rs);
7e2515e8
FB
359 break;
360 case 10:
361 case 13:
4c36ba32
AL
362 rs->cmd_buf[rs->cmd_buf_size] = '\0';
363 if (!rs->read_password)
364 readline_hist_add(rs, rs->cmd_buf);
365 monitor_printf(rs->mon, "\n");
366 rs->cmd_buf_index = 0;
367 rs->cmd_buf_size = 0;
368 rs->last_cmd_buf_index = 0;
369 rs->last_cmd_buf_size = 0;
370 rs->readline_func(rs->mon, rs->cmd_buf, rs->readline_opaque);
7e2515e8 371 break;
33fa11d4
TS
372 case 23:
373 /* ^W */
4c36ba32 374 readline_backword(rs);
33fa11d4 375 break;
7e2515e8 376 case 27:
4c36ba32 377 rs->esc_state = IS_ESC;
7e2515e8
FB
378 break;
379 case 127:
380 case 8:
4c36ba32 381 readline_backspace(rs);
7e2515e8
FB
382 break;
383 case 155:
4c36ba32 384 rs->esc_state = IS_CSI;
7e2515e8
FB
385 break;
386 default:
387 if (ch >= 32) {
4c36ba32 388 readline_insert_char(rs, ch);
7e2515e8
FB
389 }
390 break;
391 }
392 break;
393 case IS_ESC:
394 if (ch == '[') {
4c36ba32
AL
395 rs->esc_state = IS_CSI;
396 rs->esc_param = 0;
7e2515e8 397 } else {
4c36ba32 398 rs->esc_state = IS_NORM;
7e2515e8
FB
399 }
400 break;
401 case IS_CSI:
402 switch(ch) {
403 case 'A':
404 case 'F':
4c36ba32 405 readline_up_char(rs);
7e2515e8
FB
406 break;
407 case 'B':
408 case 'E':
4c36ba32 409 readline_down_char(rs);
7e2515e8
FB
410 break;
411 case 'D':
4c36ba32 412 readline_backward_char(rs);
7e2515e8
FB
413 break;
414 case 'C':
4c36ba32 415 readline_forward_char(rs);
7e2515e8
FB
416 break;
417 case '0' ... '9':
4c36ba32 418 rs->esc_param = rs->esc_param * 10 + (ch - '0');
7e2515e8
FB
419 goto the_end;
420 case '~':
4c36ba32 421 switch(rs->esc_param) {
7e2515e8 422 case 1:
4c36ba32 423 readline_bol(rs);
7e2515e8
FB
424 break;
425 case 3:
4c36ba32 426 readline_delete_char(rs);
7e2515e8
FB
427 break;
428 case 4:
4c36ba32 429 readline_eol(rs);
7e2515e8
FB
430 break;
431 }
432 break;
433 default:
434 break;
435 }
4c36ba32 436 rs->esc_state = IS_NORM;
7e2515e8
FB
437 the_end:
438 break;
439 }
4c36ba32 440 readline_update(rs);
7e2515e8
FB
441}
442
4c36ba32 443void readline_start(ReadLineState *rs, const char *prompt, int read_password,
7e2515e8
FB
444 ReadLineFunc *readline_func, void *opaque)
445{
4c36ba32
AL
446 pstrcpy(rs->prompt, sizeof(rs->prompt), prompt);
447 rs->readline_func = readline_func;
448 rs->readline_opaque = opaque;
449 rs->read_password = read_password;
2724b180
AL
450 readline_restart(rs);
451}
452
453void readline_restart(ReadLineState *rs)
454{
4c36ba32
AL
455 rs->cmd_buf_index = 0;
456 rs->cmd_buf_size = 0;
7e2515e8
FB
457}
458
4c36ba32 459const char *readline_get_history(ReadLineState *rs, unsigned int index)
7e2515e8 460{
4c36ba32 461 if (index >= READLINE_MAX_CMDS)
7e2515e8 462 return NULL;
4c36ba32
AL
463 return rs->history[index];
464}
465
466ReadLineState *readline_init(Monitor *mon,
467 ReadLineCompletionFunc *completion_finder)
468{
7267c094 469 ReadLineState *rs = g_malloc0(sizeof(*rs));
4c36ba32 470
4c36ba32
AL
471 rs->hist_entry = -1;
472 rs->mon = mon;
473 rs->completion_finder = completion_finder;
474
475 return rs;
7e2515e8 476}