log_ctrl.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. /*
  2. * Copyright (c) 2018 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_LOGGING_LOG_CTRL_H_
  7. #define ZEPHYR_INCLUDE_LOGGING_LOG_CTRL_H_
  8. #include <kernel.h>
  9. #include <logging/log_backend.h>
  10. #include <logging/log_msg.h>
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. /**
  15. * @brief Logger
  16. * @defgroup logger Logger system
  17. * @ingroup logging
  18. * @{
  19. * @}
  20. */
  21. /**
  22. * @brief Logger control API
  23. * @defgroup log_ctrl Logger control API
  24. * @ingroup logger
  25. * @{
  26. */
  27. typedef log_timestamp_t (*log_timestamp_get_t)(void);
  28. /** @brief Function system initialization of the logger.
  29. *
  30. * Function is called during start up to allow logging before user can
  31. * explicitly initialize the logger.
  32. */
  33. void log_core_init(void);
  34. /**
  35. * @brief Function for user initialization of the logger.
  36. *
  37. */
  38. void log_init(void);
  39. /**
  40. * @brief Function for providing thread which is processing logs.
  41. *
  42. * See CONFIG_LOG_PROCESS_TRIGGER_THRESHOLD.
  43. *
  44. * @note Function has asserts and has no effect when CONFIG_LOG_PROCESS_THREAD is set.
  45. *
  46. * @param process_tid Process thread id. Used to wake up the thread.
  47. */
  48. void log_thread_set(k_tid_t process_tid);
  49. /**
  50. * @brief Function for providing timestamp function.
  51. *
  52. * @param timestamp_getter Timestamp function.
  53. * @param freq Timestamping frequency.
  54. *
  55. * @return 0 on success or error.
  56. */
  57. int log_set_timestamp_func(log_timestamp_get_t timestamp_getter,
  58. uint32_t freq);
  59. /**
  60. * @brief Switch the logger subsystem to the panic mode.
  61. *
  62. * Returns immediately if the logger is already in the panic mode.
  63. *
  64. * @details On panic the logger subsystem informs all backends about panic mode.
  65. * Backends must switch to blocking mode or halt. All pending logs
  66. * are flushed after switching to panic mode. In panic mode, all log
  67. * messages must be processed in the context of the call.
  68. */
  69. __syscall void log_panic(void);
  70. /**
  71. * @brief Process one pending log message.
  72. *
  73. * @param bypass If true message is released without being processed.
  74. *
  75. * @retval true There is more messages pending to be processed.
  76. * @retval false No messages pending.
  77. */
  78. __syscall bool log_process(bool bypass);
  79. /**
  80. * @brief Return number of buffered log messages.
  81. *
  82. * @return Number of currently buffered log messages.
  83. */
  84. __syscall uint32_t log_buffered_cnt(void);
  85. /** @brief Get number of independent logger sources (modules and instances)
  86. *
  87. * @param domain_id Domain ID.
  88. *
  89. * @return Number of sources.
  90. */
  91. uint32_t log_src_cnt_get(uint32_t domain_id);
  92. /** @brief Get name of the source (module or instance).
  93. *
  94. * @param domain_id Domain ID.
  95. * @param source_id Source ID.
  96. *
  97. * @return Source name or NULL if invalid arguments.
  98. */
  99. const char *log_source_name_get(uint32_t domain_id, uint32_t source_id);
  100. /** @brief Get name of the domain.
  101. *
  102. * @param domain_id Domain ID.
  103. *
  104. * @return Domain name.
  105. */
  106. const char *log_domain_name_get(uint32_t domain_id);
  107. /**
  108. * @brief Get source filter for the provided backend.
  109. *
  110. * @param backend Backend instance.
  111. * @param domain_id ID of the domain.
  112. * @param source_id Source (module or instance) ID.
  113. * @param runtime True for runtime filter or false for compiled in.
  114. *
  115. * @return Severity level.
  116. */
  117. uint32_t log_filter_get(struct log_backend const *const backend,
  118. uint32_t domain_id, int16_t source_id, bool runtime);
  119. /**
  120. * @brief Set filter on given source for the provided backend.
  121. *
  122. * @param backend Backend instance. NULL for all backends.
  123. * @param domain_id ID of the domain.
  124. * @param source_id Source (module or instance) ID.
  125. * @param level Severity level.
  126. *
  127. * @return Actual level set which may be limited by compiled level. If filter
  128. * was set for all backends then maximal level that was set is returned.
  129. */
  130. __syscall uint32_t log_filter_set(struct log_backend const *const backend,
  131. uint32_t domain_id, int16_t source_id,
  132. uint32_t level);
  133. /**
  134. *
  135. * @brief Enable backend with initial maximum filtering level.
  136. *
  137. * @param backend Backend instance.
  138. * @param ctx User context.
  139. * @param level Severity level.
  140. */
  141. void log_backend_enable(struct log_backend const *const backend,
  142. void *ctx,
  143. uint32_t level);
  144. /**
  145. *
  146. * @brief Disable backend.
  147. *
  148. * @param backend Backend instance.
  149. */
  150. void log_backend_disable(struct log_backend const *const backend);
  151. #if defined(CONFIG_LOG) && !defined(CONFIG_LOG_MINIMAL)
  152. #define LOG_CORE_INIT() log_core_init()
  153. #define LOG_INIT() log_init()
  154. #define LOG_PANIC() log_panic()
  155. #define LOG_PROCESS() log_process(false)
  156. #else
  157. #define LOG_CORE_INIT() do { } while (false)
  158. #define LOG_INIT() 0
  159. #define LOG_PANIC() /* Empty */
  160. #define LOG_PROCESS() false
  161. #endif
  162. #include <syscalls/log_ctrl.h>
  163. /**
  164. * @}
  165. */
  166. #ifdef __cplusplus
  167. }
  168. #endif
  169. #endif /* ZEPHYR_INCLUDE_LOGGING_LOG_CTRL_H_ */