edit_simple.c 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /*
  2. * Minimal command line editing
  3. * Copyright (c) 2010, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "includes.h"
  9. #include "common.h"
  10. #include "eloop.h"
  11. #include "edit.h"
  12. #define CMD_BUF_LEN 4096
  13. static char cmdbuf[CMD_BUF_LEN];
  14. static int cmdbuf_pos = 0;
  15. static const char *ps2 = NULL;
  16. static void *edit_cb_ctx;
  17. static void (*edit_cmd_cb)(void *ctx, char *cmd);
  18. static void (*edit_eof_cb)(void *ctx);
  19. static void edit_read_char(int sock, void *eloop_ctx, void *sock_ctx)
  20. {
  21. int c;
  22. unsigned char buf[1];
  23. int res;
  24. res = read(sock, buf, 1);
  25. if (res < 0)
  26. perror("read");
  27. if (res <= 0) {
  28. edit_eof_cb(edit_cb_ctx);
  29. return;
  30. }
  31. c = buf[0];
  32. if (c == '\r' || c == '\n') {
  33. cmdbuf[cmdbuf_pos] = '\0';
  34. cmdbuf_pos = 0;
  35. edit_cmd_cb(edit_cb_ctx, cmdbuf);
  36. printf("%s> ", ps2 ? ps2 : "");
  37. fflush(stdout);
  38. return;
  39. }
  40. if (c >= 32 && c <= 255) {
  41. if (cmdbuf_pos < (int) sizeof(cmdbuf) - 1) {
  42. cmdbuf[cmdbuf_pos++] = c;
  43. }
  44. }
  45. }
  46. int edit_init(void (*cmd_cb)(void *ctx, char *cmd),
  47. void (*eof_cb)(void *ctx),
  48. char ** (*completion_cb)(void *ctx, const char *cmd, int pos),
  49. void *ctx, const char *history_file, const char *ps)
  50. {
  51. edit_cb_ctx = ctx;
  52. edit_cmd_cb = cmd_cb;
  53. edit_eof_cb = eof_cb;
  54. eloop_register_read_sock(STDIN_FILENO, edit_read_char, NULL, NULL);
  55. ps2 = ps;
  56. printf("%s> ", ps2 ? ps2 : "");
  57. fflush(stdout);
  58. return 0;
  59. }
  60. void edit_deinit(const char *history_file,
  61. int (*filter_cb)(void *ctx, const char *cmd))
  62. {
  63. eloop_unregister_read_sock(STDIN_FILENO);
  64. }
  65. void edit_clear_line(void)
  66. {
  67. }
  68. void edit_redraw(void)
  69. {
  70. cmdbuf[cmdbuf_pos] = '\0';
  71. printf("\r> %s", cmdbuf);
  72. }