shell_help.c 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. /*
  2. * Copyright (c) 2018 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <ctype.h>
  7. #include "shell_ops.h"
  8. #include "shell_help.h"
  9. #include "shell_utils.h"
  10. /* Function prints a string on terminal screen with requested margin.
  11. * It takes care to not divide words.
  12. * shell Pointer to shell instance.
  13. * p_str Pointer to string to be printed.
  14. * terminal_offset Requested left margin.
  15. * offset_first_line Add margin to the first printed line.
  16. */
  17. static void formatted_text_print(const struct shell *shell, const char *str,
  18. size_t terminal_offset, bool offset_first_line)
  19. {
  20. size_t offset = 0;
  21. size_t length;
  22. if (str == NULL) {
  23. return;
  24. }
  25. if (offset_first_line) {
  26. z_shell_op_cursor_horiz_move(shell, terminal_offset);
  27. }
  28. /* Skipping whitespace. */
  29. while (isspace((int) *(str + offset))) {
  30. ++offset;
  31. }
  32. while (true) {
  33. size_t idx = 0;
  34. length = z_shell_strlen(str) - offset;
  35. if (length <=
  36. shell->ctx->vt100_ctx.cons.terminal_wid - terminal_offset) {
  37. for (idx = 0; idx < length; idx++) {
  38. if (*(str + offset + idx) == '\n') {
  39. z_transport_buffer_flush(shell);
  40. z_shell_write(shell, str + offset, idx);
  41. offset += idx + 1;
  42. z_cursor_next_line_move(shell);
  43. z_shell_op_cursor_horiz_move(shell,
  44. terminal_offset);
  45. break;
  46. }
  47. }
  48. /* String will fit in one line. */
  49. z_shell_raw_fprintf(shell->fprintf_ctx, str + offset);
  50. break;
  51. }
  52. /* String is longer than terminal line so text needs to
  53. * divide in the way to not divide words.
  54. */
  55. length = shell->ctx->vt100_ctx.cons.terminal_wid
  56. - terminal_offset;
  57. while (true) {
  58. /* Determining line break. */
  59. if (isspace((int) (*(str + offset + idx)))) {
  60. length = idx;
  61. if (*(str + offset + idx) == '\n') {
  62. break;
  63. }
  64. }
  65. if ((idx + terminal_offset) >=
  66. shell->ctx->vt100_ctx.cons.terminal_wid) {
  67. /* End of line reached. */
  68. break;
  69. }
  70. ++idx;
  71. }
  72. /* Writing one line, fprintf IO buffer must be flushed
  73. * before calling shell_write.
  74. */
  75. z_transport_buffer_flush(shell);
  76. z_shell_write(shell, str + offset, length);
  77. offset += length;
  78. /* Calculating text offset to ensure that next line will
  79. * not begin with a space.
  80. */
  81. while (isspace((int) (*(str + offset)))) {
  82. ++offset;
  83. }
  84. z_cursor_next_line_move(shell);
  85. z_shell_op_cursor_horiz_move(shell, terminal_offset);
  86. }
  87. z_cursor_next_line_move(shell);
  88. }
  89. static void help_item_print(const struct shell *shell, const char *item_name,
  90. uint16_t item_name_width, const char *item_help)
  91. {
  92. static const uint8_t tabulator[] = " ";
  93. const uint16_t offset = 2 * strlen(tabulator) + item_name_width + 1;
  94. if ((item_name == NULL) || (item_name[0] == '\0')) {
  95. return;
  96. }
  97. if (!IS_ENABLED(CONFIG_NEWLIB_LIBC) &&
  98. !IS_ENABLED(CONFIG_ARCH_POSIX)) {
  99. /* print option name */
  100. z_shell_fprintf(shell, SHELL_NORMAL, "%s%-*s%s:", tabulator,
  101. item_name_width, item_name, tabulator);
  102. } else {
  103. uint16_t tmp = item_name_width - strlen(item_name);
  104. char space = ' ';
  105. z_shell_fprintf(shell, SHELL_NORMAL, "%s%s", tabulator,
  106. item_name);
  107. for (uint16_t i = 0; i < tmp; i++) {
  108. z_shell_write(shell, &space, 1);
  109. }
  110. z_shell_fprintf(shell, SHELL_NORMAL, "%s:", tabulator);
  111. }
  112. if (item_help == NULL) {
  113. z_cursor_next_line_move(shell);
  114. return;
  115. }
  116. /* print option help */
  117. formatted_text_print(shell, item_help, offset, false);
  118. }
  119. /* Function prints all subcommands of the parent command together with their
  120. * help string
  121. */
  122. void z_shell_help_subcmd_print(const struct shell *shell,
  123. const struct shell_static_entry *parent,
  124. const char *description)
  125. {
  126. const struct shell_static_entry *entry = NULL;
  127. struct shell_static_entry dloc;
  128. uint16_t longest = 0U;
  129. size_t idx = 0;
  130. /* Searching for the longest subcommand to print. */
  131. while ((entry = z_shell_cmd_get(parent, idx++, &dloc)) != NULL) {
  132. longest = Z_MAX(longest, z_shell_strlen(entry->syntax));
  133. }
  134. /* No help to print */
  135. if (longest == 0) {
  136. return;
  137. }
  138. if (description != NULL) {
  139. z_shell_fprintf(shell, SHELL_NORMAL, description);
  140. }
  141. /* Printing subcommands and help string (if exists). */
  142. idx = 0;
  143. while ((entry = z_shell_cmd_get(parent, idx++, &dloc)) != NULL) {
  144. help_item_print(shell, entry->syntax, longest, entry->help);
  145. }
  146. }
  147. void z_shell_help_cmd_print(const struct shell *shell,
  148. const struct shell_static_entry *cmd)
  149. {
  150. static const char cmd_sep[] = " - "; /* commands separator */
  151. uint16_t field_width;
  152. field_width = z_shell_strlen(cmd->syntax) + z_shell_strlen(cmd_sep);
  153. z_shell_fprintf(shell, SHELL_NORMAL, "%s%s", cmd->syntax, cmd_sep);
  154. formatted_text_print(shell, cmd->help, field_width, false);
  155. }
  156. bool z_shell_help_request(const char *str)
  157. {
  158. if (!IS_ENABLED(CONFIG_SHELL_HELP_OPT_PARSE)) {
  159. return false;
  160. }
  161. if (!strcmp(str, "-h") || !strcmp(str, "--help")) {
  162. return true;
  163. }
  164. return false;
  165. }