shell_history.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /*
  2. * Copyright (c) 2018 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef SHELL_HISTORY_H__
  7. #define SHELL_HISTORY_H__
  8. #include <zephyr.h>
  9. #include <sys/util.h>
  10. #include <sys/dlist.h>
  11. #include <sys/ring_buffer.h>
  12. #include <stdbool.h>
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. struct shell_history {
  17. struct ring_buf *ring_buf;
  18. sys_dlist_t list;
  19. sys_dnode_t *current;
  20. };
  21. /**
  22. * @brief Create shell history instance.
  23. *
  24. * @param _name History instance name.
  25. * @param _size Memory dedicated for shell history.
  26. */
  27. #define Z_SHELL_HISTORY_DEFINE(_name, _size) \
  28. static uint8_t __noinit __aligned(sizeof(void *)) \
  29. _name##_ring_buf_data[_size]; \
  30. static struct ring_buf _name##_ring_buf = \
  31. { \
  32. .size = _size, \
  33. .buf = { .buf8 = _name##_ring_buf_data } \
  34. }; \
  35. static struct shell_history _name = { \
  36. .ring_buf = &_name##_ring_buf \
  37. }
  38. /**
  39. * @brief Initialize shell history module.
  40. *
  41. * @param history Shell history instance.
  42. */
  43. void z_shell_history_init(struct shell_history *history);
  44. /**
  45. * @brief Purge shell history.
  46. *
  47. * Function clears whole shell command history.
  48. *
  49. * @param history Shell history instance.
  50. *
  51. */
  52. void z_shell_history_purge(struct shell_history *history);
  53. /**
  54. * @brief Exit history browsing mode.
  55. *
  56. * @param history Shell history instance.
  57. */
  58. void z_shell_history_mode_exit(struct shell_history *history);
  59. /**
  60. * @brief Get next entry in shell command history.
  61. *
  62. * Function returns next (in given direction) stored line.
  63. *
  64. * @param[in] history Shell history instance.
  65. * @param[in] up Direction.
  66. * @param[out] dst Buffer where line is copied.
  67. * @param[in,out] len Buffer size (input), amount of copied
  68. * data (output).
  69. * @return True if remains in history mode.
  70. */
  71. bool z_shell_history_get(struct shell_history *history, bool up,
  72. uint8_t *dst, uint16_t *len);
  73. /**
  74. * @brief Put line into shell command history.
  75. *
  76. * If history is full, oldest entry (or entries) is removed.
  77. *
  78. * @param history Shell history instance.
  79. * @param line Data.
  80. * @param len Data length.
  81. *
  82. */
  83. void z_shell_history_put(struct shell_history *history, uint8_t *line,
  84. size_t len);
  85. /**
  86. * @brief Get state of shell history.
  87. *
  88. * @param history Shell history instance.
  89. *
  90. * @return True if in browsing mode.
  91. */
  92. static inline bool z_shell_history_active(struct shell_history *history)
  93. {
  94. return (history->current) ? true : false;
  95. }
  96. #ifdef __cplusplus
  97. }
  98. #endif
  99. #endif /* SHELL_HISTORY_H__ */