shell_wildcard.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. * Copyright (c) 2018 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef SHELL_SHELL_WILDCARDS_H__
  7. #define SHELL_SHELL_WILDCARDS_H__
  8. #include <shell/shell.h>
  9. enum shell_wildcard_status {
  10. SHELL_WILDCARD_CMD_ADDED,
  11. SHELL_WILDCARD_CMD_MISSING_SPACE,
  12. SHELL_WILDCARD_CMD_NO_MATCH_FOUND, /* no matching command */
  13. SHELL_WILDCARD_NOT_FOUND /* wildcard character not found */
  14. };
  15. /* Function initializing wildcard expansion procedure.
  16. *
  17. * @param[in] shell Pointer to the shell instance.
  18. */
  19. void z_shell_wildcard_prepare(const struct shell *shell);
  20. /* Function returns true if string contains wildcard character: '?' or '*'
  21. *
  22. * @param[in] str Pointer to string.
  23. *
  24. * @retval true wildcard character found
  25. * @retval false wildcard character not found
  26. */
  27. bool z_shell_has_wildcard(const char *str);
  28. /* Function expands wildcards in the shell temporary buffer
  29. *
  30. * @brief Function evaluates one command. If command contains wildcard patter,
  31. * function will expand this command with all commands matching wildcard
  32. * pattern.
  33. *
  34. * Function will print a help string with: the currently entered command, its
  35. * options,and subcommands (if they exist).
  36. *
  37. * @param[in] shell Pointer to the shell instance.
  38. * @param[in] cmd Pointer to command which will be processed.
  39. * @param[in] pattern Pointer to wildcard pattern.
  40. */
  41. enum shell_wildcard_status z_shell_wildcard_process(const struct shell *shell,
  42. const struct shell_static_entry *cmd,
  43. const char *pattern);
  44. /* Function finalizing wildcard expansion procedure.
  45. *
  46. * @param[in] shell Pointer to the shell instance.
  47. */
  48. void z_shell_wildcard_finalize(const struct shell *shell);
  49. #endif /* SHELL_SHELL_WILDCARDS_H__ */