log_output_dict.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /*
  2. * Copyright (c) 2018 Nordic Semiconductor ASA
  3. * Copyright (c) 2021 Intel Corporation
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. #ifndef ZEPHYR_INCLUDE_LOGGING_LOG_OUTPUT_DICT_H_
  8. #define ZEPHYR_INCLUDE_LOGGING_LOG_OUTPUT_DICT_H_
  9. #include <logging/log_output.h>
  10. #include <logging/log_msg2.h>
  11. #include <stdarg.h>
  12. #include <toolchain.h>
  13. #include <sys/util.h>
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. /**
  18. * Log message type
  19. */
  20. enum log_dict_output_msg_type {
  21. MSG_NORMAL = 0,
  22. MSG_DROPPED_MSG = 1,
  23. };
  24. /**
  25. * Output header for one dictionary based log message.
  26. */
  27. struct log_dict_output_normal_msg_hdr_t {
  28. uint8_t type;
  29. uint32_t domain:3;
  30. uint32_t level:3;
  31. uint32_t package_len:10;
  32. uint32_t data_len:12;
  33. uintptr_t source;
  34. log_timestamp_t timestamp;
  35. } __packed;
  36. /**
  37. * Output for one dictionary based log message about
  38. * dropped messages.
  39. */
  40. struct log_dict_output_dropped_msg_t {
  41. uint8_t type;
  42. uint16_t num_dropped_messages;
  43. } __packed;
  44. /** @brief Process log messages v2 for dictionary-basde logging.
  45. *
  46. * Function is using provided context with the buffer and output function to
  47. * process formatted string and output the data.
  48. *
  49. * @param log_output Pointer to the log output instance.
  50. * @param msg Log message.
  51. * @param flags Optional flags.
  52. */
  53. void log_dict_output_msg2_process(const struct log_output *log_output,
  54. struct log_msg2 *msg, uint32_t flags);
  55. /** @brief Process dropped messages indication for dictionary-based logging.
  56. *
  57. * Function prints error message indicating lost log messages.
  58. *
  59. * @param output Pointer to the log output instance.
  60. * @param cnt Number of dropped messages.
  61. */
  62. void log_dict_output_dropped_process(const struct log_output *output, uint32_t cnt);
  63. #ifdef __cplusplus
  64. }
  65. #endif
  66. #endif /* ZEPHYR_INCLUDE_LOGGING_LOG_OUTPUT_DICT_H_ */