2 // Copyright (c) 2010-2017 Intel Corporation
4 // Licensed under the Apache License, Version 2.0 (the "License");
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
8 // http://www.apache.org/licenses/LICENSE-2.0
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
27 #include "cmd_parser.h"
28 #include "input_curses.h"
34 static struct input input_curses;
37 static void show_history(struct input *input)
41 history(hist, &event, H_LAST);
44 plog_info("%s", event.str); /* event.str contains newline */
45 } while (history(hist, &event, H_PREV) != -1);
48 static int complete(__attribute__((unused)) int ch)
53 char complete_cmd[128] = {0};
54 int complete_cmd_partial = 0;
57 for (size_t i = 0; i < cmd_parser_n_cmd(); ++i) {
58 len = li->lastchar - li->buffer;
59 if (strncmp(cmd_parser_cmd(i), li->buffer, len) == 0) {
61 size_t cur_len = strlen(complete_cmd);
62 for (size_t j = 0; j < cur_len; ++j) {
63 if (complete_cmd[j] != cmd_parser_cmd(i)[j]) {
65 complete_cmd_partial = 1;
71 strcpy(complete_cmd, cmd_parser_cmd(i));
78 /* Complete only if there are more characters known than
80 if (n_match && len < strlen(complete_cmd)) {
81 el_deletestr(el, li->cursor - li->buffer);
82 el_insertstr(el, complete_cmd);
83 if (!complete_cmd_partial)
84 el_insertstr(el, " ");
90 for (size_t i = 0; i < cmd_parser_n_cmd(); ++i) {
91 len = li->lastchar - li->buffer;
92 if (strncmp(cmd_parser_cmd(i), li->buffer, len) == 0) {
93 plog_info("%-23s", cmd_parser_cmd(i));
111 /* Returns non-zero if stdin is readable */
112 static int peek_stdin(void)
122 FD_SET(fileno(stdin), &in_fd);
123 tmp = select(fileno(stdin) + 1, &in_fd, NULL, NULL, &tv);
124 return FD_ISSET(fileno(stdin), &in_fd);
127 static int get_char(EditLine *e, char *c)
129 *c = display_getch();
131 /* If no characters have been entered, number keys switch the
132 screen and '0' resets stats. This is provided as a
133 fall-back in case F-keys do not function. The keys are
134 intercepted before returning control to libedit. */
135 if (*c >= '0' && *c <= '9') {
139 if (li->lastchar == li->buffer) {
141 display_screen(*c - '0' - 1);
145 cmd_parser_parse("reset stats", &input_curses);
151 toggle_display_screen();
155 /* Escape by itself is the first character used for more
156 complex escape sequences like F-keys. libedit can't be used
157 to detect both ESC as a unitary key and more complex
158 sequences starting ESC at the same time. */
159 if (*c == 27 && !peek_stdin()) {
170 static void proc_keyboard(struct input *input)
174 HistEvent hist_event;
177 line = el_gets(el, &len);
180 if (len == 0 || line == NULL) {
181 display_cmd("", 0, 0);
183 } else if (len > 0) {
184 if (len == 1 && line[0] == '\n') {
185 display_print_page();
186 el_set(el, EL_UNBUFFERED, 0);
187 el_set(el, EL_UNBUFFERED, 1);
190 if (line[len-1] == '\n') {
192 history(hist, &hist_event, H_ENTER, line);
195 char *line2 = strndup(line, len);
196 line2[len - 1] = 0; /* replace \n */
197 cmd_parser_parse(line2, input);
200 el_set(el, EL_UNBUFFERED, 0);
201 el_set(el, EL_UNBUFFERED, 1);
202 display_cmd("", 0, 0);
205 if (line[len-1] == 4) {
206 return; /* should quit*/
213 display_cmd("", 0, 0);
216 display_cmd(line, len, li->cursor - li->buffer);
219 static int key_f1(__attribute__((unused)) int ch) {display_screen(0); return CC_REDISPLAY;}
220 static int key_f2(__attribute__((unused)) int ch) {display_screen(1); return CC_REDISPLAY;}
221 static int key_f3(__attribute__((unused)) int ch) {display_screen(2); return CC_REDISPLAY;}
222 static int key_f4(__attribute__((unused)) int ch) {display_screen(3); return CC_REDISPLAY;}
223 static int key_f5(__attribute__((unused)) int ch) {display_screen(4); return CC_REDISPLAY;}
224 static int key_f6(__attribute__((unused)) int ch) {display_screen(5); return CC_REDISPLAY;}
225 static int key_f7(__attribute__((unused)) int ch) {display_screen(6); return CC_REDISPLAY;}
226 static int key_f8(__attribute__((unused)) int ch) {display_screen(7); return CC_REDISPLAY;}
227 static int key_f9(__attribute__((unused)) int ch) {display_screen(8); return CC_REDISPLAY;}
228 static int key_f10(__attribute__((unused)) int ch) {display_screen(9); return CC_REDISPLAY;}
229 static int key_f11(__attribute__((unused)) int ch) {display_screen(10); return CC_REDISPLAY;}
230 static int key_f12(__attribute__((unused)) int ch) {display_screen(11); return CC_REDISPLAY;}
232 static int key_page_up(__attribute__((unused)) int ch) {display_page_up(); return CC_REDISPLAY;}
233 static int key_page_down(__attribute__((unused)) int ch) {display_page_down(); return CC_REDISPLAY;}
235 static void setup_el(void)
239 HistEvent hist_event;
241 /* Open a pseudo-terminal for use in libedit. This is required
242 since the library checks if it is using a tty. If the file
243 descriptor does not represent a tty, the library disables
246 pty = posix_openpt(O_RDWR);
247 /* TODO: On error (posix_openpt() < 0), fall-back to
248 non-libedit implementation. */
251 dev_pty = fdopen(pty, "wr");
253 el = el_init("", dev_pty, dev_pty, dev_pty);
255 el_set(el, EL_EDITOR, "emacs");
257 el_set(el, EL_ADDFN, "complete", "Command completion", complete);
259 el_set(el, EL_ADDFN, "key_f1", "Switch to screen 1", key_f1);
260 el_set(el, EL_ADDFN, "key_f2", "Switch to screen 2", key_f2);
261 el_set(el, EL_ADDFN, "key_f3", "Switch to screen 3", key_f3);
262 el_set(el, EL_ADDFN, "key_f4", "Switch to screen 4", key_f4);
263 el_set(el, EL_ADDFN, "key_f5", "Switch to screen 5", key_f5);
264 el_set(el, EL_ADDFN, "key_f6", "Switch to screen 6", key_f6);
265 el_set(el, EL_ADDFN, "key_f7", "Switch to screen 7", key_f7);
266 el_set(el, EL_ADDFN, "key_f8", "Switch to screen 8", key_f8);
267 el_set(el, EL_ADDFN, "key_f9", "Switch to screen 9", key_f5);
268 el_set(el, EL_ADDFN, "key_f10", "Switch to screen 10", key_f6);
269 el_set(el, EL_ADDFN, "key_f11", "Switch to screen 11", key_f7);
270 el_set(el, EL_ADDFN, "key_f12", "Switch to screen 12", key_f8);
272 el_set(el, EL_ADDFN, "key_page_up", "Page up", key_page_up);
273 el_set(el, EL_ADDFN, "key_page_down", "Page down", key_page_down);
275 el_set(el, EL_BIND, "^I", "complete", NULL);
276 el_set(el, EL_BIND, "^r", "em-inc-search-prev", NULL);
278 el_set(el, EL_BIND, "^[[11~", "key_f1", NULL);
279 el_set(el, EL_BIND, "^[[12~", "key_f2", NULL);
280 el_set(el, EL_BIND, "^[[13~", "key_f3", NULL);
281 el_set(el, EL_BIND, "^[[14~", "key_f4", NULL);
282 el_set(el, EL_BIND, "^[[15~", "key_f5", NULL);
283 el_set(el, EL_BIND, "^[[17~", "key_f6", NULL);
284 el_set(el, EL_BIND, "^[[18~", "key_f7", NULL);
285 el_set(el, EL_BIND, "^[[19~", "key_f8", NULL);
286 el_set(el, EL_BIND, "^[[20~", "key_f9", NULL);
287 el_set(el, EL_BIND, "^[[21~", "key_f10", NULL);
288 el_set(el, EL_BIND, "^[[23~", "key_f11", NULL);
289 el_set(el, EL_BIND, "^[[24~", "key_f12", NULL);
291 el_set(el, EL_BIND, "^[OP", "key_f1", NULL);
292 el_set(el, EL_BIND, "^[OQ", "key_f2", NULL);
293 el_set(el, EL_BIND, "^[OR", "key_f3", NULL);
294 el_set(el, EL_BIND, "^[OS", "key_f4", NULL);
296 el_set(el, EL_BIND, "^[[5~", "key_page_up", NULL);
297 el_set(el, EL_BIND, "^[[6~", "key_page_down", NULL);
299 hist = history_init();
301 history(hist, &hist_event, H_SETSIZE, 1000);
302 el_set(el, EL_HIST, history, hist);
304 el_set(el, EL_UNBUFFERED, 1);
305 el_set(el, EL_GETCFN, get_char);
308 void reg_input_curses(void)
312 input_curses.fd = fileno(stdin);
313 input_curses.proc_input = proc_keyboard;
314 input_curses.history = show_history;
316 reg_input(&input_curses);
319 void unreg_input_curses(void)
324 unreg_input(&input_curses);