log_output.h 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. /*
  2. * Copyright (c) 2018 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_LOGGING_LOG_OUTPUT_H_
  7. #define ZEPHYR_INCLUDE_LOGGING_LOG_OUTPUT_H_
  8. #include <logging/log_msg.h>
  9. #include <sys/util.h>
  10. #include <stdarg.h>
  11. #include <sys/atomic.h>
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. /**
  16. * @brief Log output API
  17. * @defgroup log_output Log output API
  18. * @ingroup logger
  19. * @{
  20. */
  21. /** @brief Flag forcing ANSI escape code colors, red (errors), yellow
  22. * (warnings).
  23. */
  24. #define LOG_OUTPUT_FLAG_COLORS BIT(0)
  25. /** @brief Flag forcing timestamp */
  26. #define LOG_OUTPUT_FLAG_TIMESTAMP BIT(1)
  27. /** @brief Flag forcing timestamp formatting. */
  28. #define LOG_OUTPUT_FLAG_FORMAT_TIMESTAMP BIT(2)
  29. /** @brief Flag forcing severity level prefix. */
  30. #define LOG_OUTPUT_FLAG_LEVEL BIT(3)
  31. /** @brief Flag preventing the logger from adding CR and LF characters. */
  32. #define LOG_OUTPUT_FLAG_CRLF_NONE BIT(4)
  33. /** @brief Flag forcing a single LF character for line breaks. */
  34. #define LOG_OUTPUT_FLAG_CRLF_LFONLY BIT(5)
  35. /** @brief Flag forcing syslog format specified in RFC 5424
  36. */
  37. #define LOG_OUTPUT_FLAG_FORMAT_SYSLOG BIT(6)
  38. /** @brief Flag forcing syslog format specified in mipi sys-t
  39. */
  40. #define LOG_OUTPUT_FLAG_FORMAT_SYST BIT(7)
  41. /**
  42. * @brief Prototype of the function processing output data.
  43. *
  44. * @param buf The buffer data.
  45. * @param size The buffer size.
  46. * @param ctx User context.
  47. *
  48. * @return Number of bytes processed, dropped or discarded.
  49. *
  50. * @note If the log output function cannot process all of the data, it is
  51. * its responsibility to mark them as dropped or discarded by returning
  52. * the corresponding number of bytes dropped or discarded to the caller.
  53. */
  54. typedef int (*log_output_func_t)(uint8_t *buf, size_t size, void *ctx);
  55. /* @brief Control block structure for log_output instance. */
  56. struct log_output_control_block {
  57. atomic_t offset;
  58. void *ctx;
  59. const char *hostname;
  60. };
  61. /** @brief Log_output instance structure. */
  62. struct log_output {
  63. log_output_func_t func;
  64. struct log_output_control_block *control_block;
  65. uint8_t *buf;
  66. size_t size;
  67. };
  68. /** @brief Create log_output instance.
  69. *
  70. * @param _name Instance name.
  71. * @param _func Function for processing output data.
  72. * @param _buf Pointer to the output buffer.
  73. * @param _size Size of the output buffer.
  74. */
  75. #define LOG_OUTPUT_DEFINE(_name, _func, _buf, _size) \
  76. static struct log_output_control_block _name##_control_block; \
  77. static const struct log_output _name = { \
  78. .func = _func, \
  79. .control_block = &_name##_control_block, \
  80. .buf = _buf, \
  81. .size = _size, \
  82. }
  83. /** @brief Process log messages to readable strings.
  84. *
  85. * Function is using provided context with the buffer and output function to
  86. * process formatted string and output the data.
  87. *
  88. * @param output Pointer to the log output instance.
  89. * @param msg Log message.
  90. * @param flags Optional flags.
  91. */
  92. void log_output_msg_process(const struct log_output *output,
  93. struct log_msg *msg,
  94. uint32_t flags);
  95. /** @brief Process log messages v2 to readable strings.
  96. *
  97. * Function is using provided context with the buffer and output function to
  98. * process formatted string and output the data.
  99. *
  100. * @param log_output Pointer to the log output instance.
  101. * @param msg Log message.
  102. * @param flags Optional flags.
  103. */
  104. void log_output_msg2_process(const struct log_output *log_output,
  105. struct log_msg2 *msg, uint32_t flags);
  106. /** @brief Process log string
  107. *
  108. * Function is formatting provided string adding optional prefixes and
  109. * postfixes.
  110. *
  111. * @param output Pointer to log_output instance.
  112. * @param src_level Log source and level structure.
  113. * @param timestamp Timestamp.
  114. * @param fmt String.
  115. * @param ap String arguments.
  116. * @param flags Optional flags.
  117. *
  118. */
  119. void log_output_string(const struct log_output *output,
  120. struct log_msg_ids src_level, uint32_t timestamp,
  121. const char *fmt, va_list ap, uint32_t flags);
  122. /** @brief Process log hexdump
  123. *
  124. * Function is formatting provided hexdump adding optional prefixes and
  125. * postfixes.
  126. *
  127. * @param output Pointer to log_output instance.
  128. * @param src_level Log source and level structure.
  129. * @param timestamp Timestamp.
  130. * @param metadata String.
  131. * @param data Data.
  132. * @param length Data length.
  133. * @param flags Optional flags.
  134. *
  135. */
  136. void log_output_hexdump(const struct log_output *output,
  137. struct log_msg_ids src_level, uint32_t timestamp,
  138. const char *metadata, const uint8_t *data,
  139. uint32_t length, uint32_t flags);
  140. /** @brief Process dropped messages indication.
  141. *
  142. * Function prints error message indicating lost log messages.
  143. *
  144. * @param output Pointer to the log output instance.
  145. * @param cnt Number of dropped messages.
  146. */
  147. void log_output_dropped_process(const struct log_output *output, uint32_t cnt);
  148. /** @brief Flush output buffer.
  149. *
  150. * @param output Pointer to the log output instance.
  151. */
  152. void log_output_flush(const struct log_output *output);
  153. /** @brief Function for setting user context passed to the output function.
  154. *
  155. * @param output Pointer to the log output instance.
  156. * @param ctx User context.
  157. */
  158. static inline void log_output_ctx_set(const struct log_output *output,
  159. void *ctx)
  160. {
  161. output->control_block->ctx = ctx;
  162. }
  163. /** @brief Function for setting hostname of this device
  164. *
  165. * @param output Pointer to the log output instance.
  166. * @param hostname Hostname of this device
  167. */
  168. static inline void log_output_hostname_set(const struct log_output *output,
  169. const char *hostname)
  170. {
  171. output->control_block->hostname = hostname;
  172. }
  173. /** @brief Set timestamp frequency.
  174. *
  175. * @param freq Frequency in Hz.
  176. */
  177. void log_output_timestamp_freq_set(uint32_t freq);
  178. /** @brief Convert timestamp of the message to us.
  179. *
  180. * @param timestamp Message timestamp
  181. *
  182. * @return Timestamp value in us.
  183. */
  184. uint64_t log_output_timestamp_to_us(uint32_t timestamp);
  185. /**
  186. * @}
  187. */
  188. #ifdef __cplusplus
  189. }
  190. #endif
  191. #endif /* ZEPHYR_INCLUDE_LOGGING_LOG_OUTPUT_H_ */