shell_dummy.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. * Shell backend used for testing
  3. *
  4. * Copyright (c) 2018 Nordic Semiconductor ASA
  5. *
  6. * SPDX-License-Identifier: Apache-2.0
  7. */
  8. #ifndef SHELL_DUMMY_H__
  9. #define SHELL_DUMMY_H__
  10. #include <shell/shell.h>
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. extern const struct shell_transport_api shell_dummy_transport_api;
  15. struct shell_dummy {
  16. bool initialized;
  17. /** current number of bytes in buffer (0 if no output) */
  18. size_t len;
  19. /** output buffer to collect shell output */
  20. char buf[CONFIG_SHELL_BACKEND_DUMMY_BUF_SIZE];
  21. };
  22. #define SHELL_DUMMY_DEFINE(_name) \
  23. static struct shell_dummy _name##_shell_dummy; \
  24. struct shell_transport _name = { \
  25. .api = &shell_dummy_transport_api, \
  26. .ctx = (struct shell_dummy *)&_name##_shell_dummy \
  27. }
  28. /**
  29. * @brief This function shall not be used directly. It provides pointer to shell
  30. * dummy backend instance.
  31. *
  32. * Function returns pointer to the shell dummy instance. This instance can be
  33. * next used with shell_execute_cmd function in order to test commands behavior.
  34. *
  35. * @returns Pointer to the shell instance.
  36. */
  37. const struct shell *shell_backend_dummy_get_ptr(void);
  38. /**
  39. * @brief Returns the buffered output in the shell and resets the pointer
  40. *
  41. * The returned data is always followed by a nul character at position *sizep
  42. *
  43. * @param shell Shell pointer
  44. * @param sizep Returns size of data in shell buffer
  45. * @returns pointer to buffer containing shell output
  46. */
  47. const char *shell_backend_dummy_get_output(const struct shell *shell,
  48. size_t *sizep);
  49. /**
  50. * @brief Clears the output buffer in the shell backend.
  51. *
  52. * @param shell Shell pointer
  53. */
  54. void shell_backend_dummy_clear_output(const struct shell *shell);
  55. #ifdef __cplusplus
  56. }
  57. #endif
  58. #endif /* SHELL_DUMMY_H__ */