log_backend_std.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. /*
  2. * Copyright (c) 2019 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_LOG_BACKEND_STD_H_
  7. #define ZEPHYR_LOG_BACKEND_STD_H_
  8. #include <logging/log_msg.h>
  9. #include <logging/log_output.h>
  10. #include <kernel.h>
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. /**
  15. * @brief Logger backend interface for forwarding to standard backend
  16. * @defgroup log_backend_std Logger backend standard interface
  17. * @ingroup logger
  18. * @{
  19. */
  20. static inline uint32_t log_backend_std_get_flags(void)
  21. {
  22. uint32_t flags = (LOG_OUTPUT_FLAG_LEVEL | LOG_OUTPUT_FLAG_TIMESTAMP);
  23. if (IS_ENABLED(CONFIG_LOG_BACKEND_SHOW_COLOR)) {
  24. flags |= LOG_OUTPUT_FLAG_COLORS;
  25. }
  26. if (IS_ENABLED(CONFIG_LOG_BACKEND_FORMAT_TIMESTAMP)) {
  27. flags |= LOG_OUTPUT_FLAG_FORMAT_TIMESTAMP;
  28. }
  29. return flags;
  30. }
  31. /** @brief Put log message to a standard logger backend.
  32. *
  33. * @param output Log output instance.
  34. * @param flags Formatting flags.
  35. * @param msg Log message.
  36. */
  37. static inline void
  38. log_backend_std_put(const struct log_output *const output, uint32_t flags,
  39. struct log_msg *msg)
  40. {
  41. log_msg_get(msg);
  42. flags |= log_backend_std_get_flags();
  43. log_output_msg_process(output, msg, flags);
  44. log_msg_put(msg);
  45. }
  46. /** @brief Put a standard logger backend into panic mode.
  47. *
  48. * @param output Log output instance.
  49. */
  50. static inline void
  51. log_backend_std_panic(const struct log_output *const output)
  52. {
  53. log_output_flush(output);
  54. }
  55. /** @brief Report dropped messages to a standard logger backend.
  56. *
  57. * @param output Log output instance.
  58. * @param cnt Number of dropped messages.
  59. */
  60. static inline void
  61. log_backend_std_dropped(const struct log_output *const output, uint32_t cnt)
  62. {
  63. log_output_dropped_process(output, cnt);
  64. }
  65. /** @brief Synchronously process log message by a standard logger backend.
  66. *
  67. * @param output Log output instance.
  68. * @param flags Formatting flags.
  69. * @param src_level Log message source and level.
  70. * @param timestamp Timestamp.
  71. * @param fmt Log string.
  72. * @param ap Log string arguments.
  73. */
  74. static inline void
  75. log_backend_std_sync_string(const struct log_output *const output,
  76. uint32_t flags, struct log_msg_ids src_level,
  77. uint32_t timestamp, const char *fmt, va_list ap)
  78. {
  79. int key;
  80. flags |= LOG_OUTPUT_FLAG_LEVEL | LOG_OUTPUT_FLAG_TIMESTAMP;
  81. if (IS_ENABLED(CONFIG_LOG_BACKEND_SHOW_COLOR)) {
  82. flags |= LOG_OUTPUT_FLAG_COLORS;
  83. }
  84. if (IS_ENABLED(CONFIG_LOG_BACKEND_FORMAT_TIMESTAMP)) {
  85. flags |= LOG_OUTPUT_FLAG_FORMAT_TIMESTAMP;
  86. }
  87. if (IS_ENABLED(CONFIG_LOG_IMMEDIATE) &&
  88. IS_ENABLED(CONFIG_LOG_IMMEDIATE_CLEAN_OUTPUT)) {
  89. /* In order to ensure that one log processing is not interrupted
  90. * by another one, lock context for whole log processing.
  91. */
  92. key = irq_lock();
  93. }
  94. log_output_string(output, src_level, timestamp, fmt, ap, flags);
  95. if (IS_ENABLED(CONFIG_LOG_IMMEDIATE) &&
  96. IS_ENABLED(CONFIG_LOG_IMMEDIATE_CLEAN_OUTPUT)) {
  97. irq_unlock(key);
  98. }
  99. }
  100. /** @brief Synchronously process hexdump message by a standard logger backend.
  101. *
  102. * @param output Log output instance.
  103. * @param flags Formatting flags.
  104. * @param src_level Log message source and level.
  105. * @param timestamp Timestamp.
  106. * @param metadata String associated with a hexdump.
  107. * @param data Buffer to dump.
  108. * @param length Length of the buffer.
  109. */
  110. static inline void
  111. log_backend_std_sync_hexdump(const struct log_output *const output,
  112. uint32_t flags, struct log_msg_ids src_level,
  113. uint32_t timestamp, const char *metadata,
  114. const uint8_t *data, uint32_t length)
  115. {
  116. int key;
  117. flags |= LOG_OUTPUT_FLAG_LEVEL | LOG_OUTPUT_FLAG_TIMESTAMP;
  118. if (IS_ENABLED(CONFIG_LOG_BACKEND_SHOW_COLOR)) {
  119. flags |= LOG_OUTPUT_FLAG_COLORS;
  120. }
  121. if (IS_ENABLED(CONFIG_LOG_BACKEND_FORMAT_TIMESTAMP)) {
  122. flags |= LOG_OUTPUT_FLAG_FORMAT_TIMESTAMP;
  123. }
  124. if (IS_ENABLED(CONFIG_LOG_IMMEDIATE) &&
  125. IS_ENABLED(CONFIG_LOG_IMMEDIATE_CLEAN_OUTPUT)) {
  126. /* In order to ensure that one log processing is not interrupted
  127. * by another one, lock context for whole log processing.
  128. */
  129. key = irq_lock();
  130. }
  131. log_output_hexdump(output, src_level, timestamp,
  132. metadata, data, length, flags);
  133. if (IS_ENABLED(CONFIG_LOG_IMMEDIATE) &&
  134. IS_ENABLED(CONFIG_LOG_IMMEDIATE_CLEAN_OUTPUT)) {
  135. irq_unlock(key);
  136. }
  137. }
  138. /**
  139. * @}
  140. */
  141. #ifdef __cplusplus
  142. }
  143. #endif
  144. #endif /* ZEPHYR_LOG_BACKEND_STD_H_ */