tracing_format.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /*
  2. * Copyright (c) 2019 Intel corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_TRACING_TRACING_FORMAT_H
  7. #define ZEPHYR_INCLUDE_TRACING_TRACING_FORMAT_H
  8. #include <toolchain/common.h>
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. /**
  13. * @brief A structure to represent tracing data format.
  14. */
  15. typedef struct tracing_data {
  16. uint8_t *data;
  17. uint32_t length;
  18. } __packed tracing_data_t;
  19. /**
  20. * @brief Macro to trace a message in string format.
  21. */
  22. #define TRACING_STRING(fmt, ...) \
  23. do { \
  24. tracing_format_string(fmt, ##__VA_ARGS__); \
  25. } while (false)
  26. /**
  27. * @brief Macro to format data to tracing data format.
  28. */
  29. #define TRACING_FORMAT_DATA(x) \
  30. ((struct tracing_data){.data = (uint8_t *)&(x), .length = sizeof((x))})
  31. /**
  32. * @brief Macro to trace a message in tracing data format.
  33. *
  34. * All the parameters should be struct tracing_data.
  35. */
  36. #define TRACING_DATA(...) \
  37. do { \
  38. struct tracing_data arg[] = {__VA_ARGS__}; \
  39. \
  40. tracing_format_data(arg, sizeof(arg) / \
  41. sizeof(struct tracing_data)); \
  42. } while (false)
  43. /**
  44. * @brief Tracing a message in string format.
  45. *
  46. * @param str String to format.
  47. * @param ... Variable length arguments.
  48. */
  49. void tracing_format_string(const char *str, ...);
  50. /**
  51. * @brief Tracing a message in raw data format.
  52. *
  53. * @param data Raw data to be traced.
  54. * @param length Raw data length.
  55. */
  56. void tracing_format_raw_data(uint8_t *data, uint32_t length);
  57. /**
  58. * @brief Tracing a message in tracing data format.
  59. *
  60. * @param tracing_data_array Tracing_data format data array to be traced.
  61. * @param count Tracing_data array data count.
  62. */
  63. void tracing_format_data(tracing_data_t *tracing_data_array, uint32_t count);
  64. #ifdef __cplusplus
  65. }
  66. #endif
  67. #endif