shell_command.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. /*
  2. * shell_word_generator.c
  3. */
  4. #include <string.h>
  5. #include "private.h"
  6. #include "lub/string.h"
  7. #include "lub/argv.h"
  8. /*-------------------------------------------------------- */
  9. void
  10. clish_shell_iterator_init(clish_shell_iterator_t * iter,
  11. clish_nspace_visibility_t field)
  12. {
  13. iter->last_cmd = NULL;
  14. iter->field = field;
  15. }
  16. /*--------------------------------------------------------- */
  17. const clish_command_t *clish_shell_resolve_command(const clish_shell_t * this,
  18. const char *line)
  19. {
  20. clish_command_t *cmd, *result;
  21. /* Search the current view */
  22. result = clish_view_resolve_command(clish_shell__get_view(this), line, BOOL_TRUE);
  23. /* Search the global view */
  24. cmd = clish_view_resolve_command(this->global, line, BOOL_TRUE);
  25. result = clish_command_choose_longest(result, cmd);
  26. return result;
  27. }
  28. /*--------------------------------------------------------- */
  29. const clish_command_t *clish_shell_resolve_prefix(const clish_shell_t * this,
  30. const char *line)
  31. {
  32. clish_command_t *cmd, *result;
  33. /* Search the current view */
  34. result = clish_view_resolve_prefix(clish_shell__get_view(this), line, BOOL_TRUE);
  35. /* Search the global view */
  36. cmd = clish_view_resolve_prefix(this->global, line, BOOL_TRUE);
  37. result = clish_command_choose_longest(result, cmd);
  38. return result;
  39. }
  40. /*-------------------------------------------------------- */
  41. const clish_command_t *clish_shell_find_next_completion(const clish_shell_t *
  42. this, const char *line, clish_shell_iterator_t * iter)
  43. {
  44. const clish_command_t *result, *cmd;
  45. /* ask the local view for next command */
  46. result = clish_view_find_next_completion(clish_shell__get_view(this),
  47. iter->last_cmd, line, iter->field, BOOL_TRUE);
  48. /* ask the global view for next command */
  49. cmd = clish_view_find_next_completion(this->global,
  50. iter->last_cmd, line, iter->field, BOOL_TRUE);
  51. if (clish_command_diff(result, cmd) > 0)
  52. result = cmd;
  53. if (!result)
  54. iter->last_cmd = NULL;
  55. else
  56. iter->last_cmd = clish_command__get_name(result);
  57. return result;
  58. }
  59. /*--------------------------------------------------------- */
  60. void clish_shell_param_generator(clish_shell_t *this, lub_argv_t *matches,
  61. const clish_command_t *cmd, const char *line, unsigned offset)
  62. {
  63. const char *name = clish_command__get_name(cmd);
  64. char *text = lub_string_dup(&line[offset]);
  65. clish_ptype_t *ptype;
  66. unsigned idx = lub_argv_wordcount(name);
  67. /* get the index of the current parameter */
  68. unsigned index = lub_argv_wordcount(line) - idx;
  69. clish_context_t context;
  70. if ((0 != index) || (offset && line[offset - 1] == ' ')) {
  71. lub_argv_t *argv = lub_argv_new(line, 0);
  72. clish_pargv_t *pargv = clish_pargv_new();
  73. clish_pargv_t *completion = clish_pargv_new();
  74. unsigned completion_index = 0;
  75. const clish_param_t *param = NULL;
  76. /* if there is some text for the parameter then adjust the index */
  77. if ((0 != index) && (text[0] != '\0'))
  78. index--;
  79. /* Parse command line to get completion pargv's */
  80. context.shell = this;
  81. context.cmd = cmd;
  82. context.pargv = pargv;
  83. clish_shell_parse_pargv(pargv, cmd, &context,
  84. clish_command__get_paramv(cmd),
  85. argv, &idx, completion, index + idx);
  86. lub_argv_delete(argv);
  87. while ((param = clish_pargv__get_param(completion,
  88. completion_index++))) {
  89. char *result;
  90. /* The param is args so it has no completion */
  91. if (param == clish_command__get_args(cmd))
  92. continue;
  93. /* The switch has no completion string */
  94. if (CLISH_PARAM_SWITCH == clish_param__get_mode(param))
  95. continue;
  96. /* The subcommand is identified by it's value */
  97. if (CLISH_PARAM_SUBCOMMAND ==
  98. clish_param__get_mode(param)) {
  99. result = clish_param__get_value(param);
  100. if (result)
  101. lub_argv_add(matches, result);
  102. }
  103. /* The 'completion' field of PARAM */
  104. if (clish_param__get_completion(param)) {
  105. char *str, *q;
  106. char *saveptr;
  107. str = clish_shell_expand(
  108. clish_param__get_completion(param), SHELL_VAR_ACTION, &context);
  109. if (str) {
  110. for (q = strtok_r(str, " \n", &saveptr);
  111. q; q = strtok_r(NULL, " \n", &saveptr)) {
  112. if (q == strstr(q, text))
  113. lub_argv_add(matches, q);
  114. }
  115. lub_string_free(str);
  116. }
  117. }
  118. /* The common PARAM. Let ptype do the work */
  119. if ((ptype = clish_param__get_ptype(param)))
  120. clish_ptype_word_generator(ptype, matches, text);
  121. }
  122. clish_pargv_delete(completion);
  123. clish_pargv_delete(pargv);
  124. }
  125. lub_string_free(text);
  126. }
  127. /*--------------------------------------------------------- */