shell_log_backend.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /*
  2. * Copyright (c) 2018 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef SHELL_LOG_BACKEND_H__
  7. #define SHELL_LOG_BACKEND_H__
  8. #include <zephyr.h>
  9. #include <logging/log_backend.h>
  10. #include <logging/log_output.h>
  11. #include <sys/mpsc_pbuf.h>
  12. #include <sys/atomic.h>
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. extern const struct log_backend_api log_backend_shell_api;
  17. /** @brief Shell log backend states. */
  18. enum shell_log_backend_state {
  19. SHELL_LOG_BACKEND_UNINIT,
  20. SHELL_LOG_BACKEND_ENABLED,
  21. SHELL_LOG_BACKEND_DISABLED,
  22. SHELL_LOG_BACKEND_PANIC,
  23. };
  24. /** @brief Shell log backend control block (RW data). */
  25. struct shell_log_backend_control_block {
  26. atomic_t dropped_cnt;
  27. enum shell_log_backend_state state;
  28. };
  29. /** @brief Shell log backend instance structure (RO data). */
  30. struct shell_log_backend {
  31. const struct log_backend *backend;
  32. struct k_msgq *msgq;
  33. const struct log_output *log_output;
  34. struct shell_log_backend_control_block *control_block;
  35. uint32_t timeout;
  36. const struct mpsc_pbuf_buffer_config *mpsc_buffer_config;
  37. struct mpsc_pbuf_buffer *mpsc_buffer;
  38. };
  39. /** @brief Shell log backend message structure. */
  40. struct shell_log_backend_msg {
  41. struct log_msg *msg;
  42. uint32_t timestamp;
  43. };
  44. /** @brief Prototype of function outputing processed data. */
  45. int z_shell_log_backend_output_func(uint8_t *data, size_t length, void *ctx);
  46. /** @def Z_SHELL_LOG_BACKEND_DEFINE
  47. * @brief Macro for creating instance of shell log backend.
  48. *
  49. * @param _name Shell name.
  50. * @param _buf Output buffer.
  51. * @param _size Output buffer size.
  52. * @param _queue_size Log message queue size.
  53. * @param _timeout Timeout in milliseconds for pending on queue full.
  54. * Message is dropped on timeout.
  55. */
  56. /** @def Z_SHELL_LOG_BACKEND_PTR
  57. * @brief Macro for retrieving pointer to the instance of shell log backend.
  58. *
  59. * @param _name Shell name.
  60. */
  61. #ifdef CONFIG_SHELL_LOG_BACKEND
  62. #define Z_SHELL_LOG_BACKEND_DEFINE(_name, _buf, _size, _queue_size, _timeout) \
  63. LOG_BACKEND_DEFINE(_name##_backend, log_backend_shell_api, false); \
  64. K_MSGQ_DEFINE(_name##_msgq, sizeof(struct shell_log_backend_msg), \
  65. _queue_size, sizeof(void *)); \
  66. LOG_OUTPUT_DEFINE(_name##_log_output, z_shell_log_backend_output_func,\
  67. _buf, _size); \
  68. static struct shell_log_backend_control_block _name##_control_block; \
  69. static uint32_t __aligned(Z_LOG_MSG2_ALIGNMENT) _name##_buf[128]; \
  70. const struct mpsc_pbuf_buffer_config _name##_mpsc_buffer_config = { \
  71. .buf = _name##_buf, \
  72. .size = ARRAY_SIZE(_name##_buf), \
  73. .notify_drop = NULL, \
  74. .get_wlen = log_msg2_generic_get_wlen, \
  75. .flags = MPSC_PBUF_MODE_OVERWRITE, \
  76. }; \
  77. struct mpsc_pbuf_buffer _name##_mpsc_buffer; \
  78. static const struct shell_log_backend _name##_log_backend = { \
  79. .backend = &_name##_backend, \
  80. .msgq = IS_ENABLED(CONFIG_LOG_MODE_DEFERRED) ? \
  81. &_name##_msgq : NULL, \
  82. .log_output = &_name##_log_output, \
  83. .control_block = &_name##_control_block, \
  84. .timeout = _timeout, \
  85. .mpsc_buffer_config = IS_ENABLED(CONFIG_LOG2_MODE_DEFERRED) ? \
  86. &_name##_mpsc_buffer_config : NULL, \
  87. .mpsc_buffer = IS_ENABLED(CONFIG_LOG2_MODE_DEFERRED) ? \
  88. &_name##_mpsc_buffer : NULL, \
  89. }
  90. #define Z_SHELL_LOG_BACKEND_PTR(_name) (&_name##_log_backend)
  91. #else /* CONFIG_LOG */
  92. #define Z_SHELL_LOG_BACKEND_DEFINE(_name, _buf, _size, _queue_size, _timeout)
  93. #define Z_SHELL_LOG_BACKEND_PTR(_name) NULL
  94. #endif /* CONFIG_LOG */
  95. /** @brief Enable shell log backend.
  96. *
  97. * @param backend Shell log backend instance.
  98. * @param ctx Pointer to shell instance.
  99. * @param init_log_level Initial log level set to all logging sources.
  100. */
  101. void z_shell_log_backend_enable(const struct shell_log_backend *backend,
  102. void *ctx, uint32_t init_log_level);
  103. /** @brief Disable shell log backend.
  104. *
  105. * @param backend Shell log backend instance.
  106. */
  107. void z_shell_log_backend_disable(const struct shell_log_backend *backend);
  108. /** @brief Trigger processing of one log entry.
  109. *
  110. * @param backend Shell log backend instance.
  111. *
  112. * @return True if message was processed, false if FIFO was empty
  113. */
  114. bool z_shell_log_backend_process(const struct shell_log_backend *backend);
  115. #ifdef __cplusplus
  116. }
  117. #endif
  118. #endif /* SHELL_LOG_BACKEND_H__ */