shell_utils.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /*
  2. * Copyright (c) 2018 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef SHELL_UTILS_H__
  7. #define SHELL_UTILS_H__
  8. #include <zephyr.h>
  9. #include <shell/shell.h>
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13. #define SHELL_MSG_SPECIFY_SUBCOMMAND "Please specify a subcommand.\n"
  14. int32_t z_row_span_with_buffer_offsets_get(struct shell_multiline_cons *cons,
  15. uint16_t offset1,
  16. uint16_t offset2);
  17. int32_t z_column_span_with_buffer_offsets_get(struct shell_multiline_cons *cons,
  18. uint16_t offset1,
  19. uint16_t offset2);
  20. void z_shell_multiline_data_calc(struct shell_multiline_cons *cons,
  21. uint16_t buff_pos, uint16_t buff_len);
  22. static inline uint16_t z_shell_strlen(const char *str)
  23. {
  24. return str == NULL ? 0U : (uint16_t)strlen(str);
  25. }
  26. char z_shell_make_argv(size_t *argc, const char **argv,
  27. char *cmd, uint8_t max_argc);
  28. /** @brief Removes pattern and following space
  29. *
  30. */
  31. void z_shell_pattern_remove(char *buff, uint16_t *buff_len,
  32. const char *pattern);
  33. /** @brief Get subcommand with given index from the root.
  34. *
  35. * @param parent Parent entry. Null to get root command from index.
  36. * @param idx Command index.
  37. * @param dloc Location used to write dynamic entry.
  38. *
  39. * @return Fetched command or null if command with that index does not exist.
  40. */
  41. const struct shell_static_entry *z_shell_cmd_get(
  42. const struct shell_static_entry *parent,
  43. size_t idx,
  44. struct shell_static_entry *dloc);
  45. const struct shell_static_entry *z_shell_find_cmd(
  46. const struct shell_static_entry *parent,
  47. const char *cmd_str,
  48. struct shell_static_entry *dloc);
  49. /* @internal @brief Function returns pointer to a shell's subcommands array
  50. * for a level given by argc and matching command patter provided in argv.
  51. *
  52. * @param shell Entry. NULL for root entry.
  53. * @param argc Number of arguments.
  54. * @param argv Pointer to an array with arguments.
  55. * @param match_arg Subcommand level of last matching argument.
  56. * @param d_entry Shell static command descriptor.
  57. * @param only_static If true search only for static commands.
  58. *
  59. * @return Pointer to found command.
  60. */
  61. const struct shell_static_entry *z_shell_get_last_command(
  62. const struct shell_static_entry *entry,
  63. size_t argc,
  64. const char *argv[],
  65. size_t *match_arg,
  66. struct shell_static_entry *dloc,
  67. bool only_static);
  68. void z_shell_spaces_trim(char *str);
  69. void z_shell_cmd_trim(const struct shell *shell);
  70. const struct shell_static_entry *root_cmd_find(const char *syntax);
  71. static inline void z_transport_buffer_flush(const struct shell *shell)
  72. {
  73. z_shell_fprintf_buffer_flush(shell->fprintf_ctx);
  74. }
  75. static inline bool z_shell_in_select_mode(const struct shell *shell)
  76. {
  77. return shell->ctx->selected_cmd == NULL ? false : true;
  78. }
  79. #ifdef __cplusplus
  80. }
  81. #endif
  82. #endif /* SHELL_UTILS_H__ */