log.h 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472
  1. /*
  2. * Copyright (c) 2018 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_LOGGING_LOG_H_
  7. #define ZEPHYR_INCLUDE_LOGGING_LOG_H_
  8. #include <logging/log_instance.h>
  9. #include <logging/log_core.h>
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13. /**
  14. * @brief Logging
  15. * @defgroup logging Logging
  16. * @{
  17. * @}
  18. */
  19. /**
  20. * @brief Logger API
  21. * @defgroup log_api Logging API
  22. * @ingroup logger
  23. * @{
  24. */
  25. /**
  26. * @brief Writes an ERROR level message to the log.
  27. *
  28. * @details It's meant to report severe errors, such as those from which it's
  29. * not possible to recover.
  30. *
  31. * @param ... A string optionally containing printk valid conversion specifier,
  32. * followed by as many values as specifiers.
  33. */
  34. #define LOG_ERR(...) Z_LOG(LOG_LEVEL_ERR, __VA_ARGS__)
  35. /**
  36. * @brief Writes a WARNING level message to the log.
  37. *
  38. * @details It's meant to register messages related to unusual situations that
  39. * are not necessarily errors.
  40. *
  41. * @param ... A string optionally containing printk valid conversion specifier,
  42. * followed by as many values as specifiers.
  43. */
  44. #define LOG_WRN(...) Z_LOG(LOG_LEVEL_WRN, __VA_ARGS__)
  45. /**
  46. * @brief Writes an INFO level message to the log.
  47. *
  48. * @details It's meant to write generic user oriented messages.
  49. *
  50. * @param ... A string optionally containing printk valid conversion specifier,
  51. * followed by as many values as specifiers.
  52. */
  53. #define LOG_INF(...) Z_LOG(LOG_LEVEL_INF, __VA_ARGS__)
  54. /**
  55. * @brief Writes a DEBUG level message to the log.
  56. *
  57. * @details It's meant to write developer oriented information.
  58. *
  59. * @param ... A string optionally containing printk valid conversion specifier,
  60. * followed by as many values as specifiers.
  61. */
  62. #define LOG_DBG(...) Z_LOG(LOG_LEVEL_DBG, __VA_ARGS__)
  63. /**
  64. * @brief Unconditionally print raw log message.
  65. *
  66. * The result is same as if printk was used but it goes through logging
  67. * infrastructure thus utilizes logging mode, e.g. deferred mode.
  68. *
  69. * @param ... A string optionally containing printk valid conversion specifier,
  70. * followed by as many values as specifiers.
  71. */
  72. #define LOG_PRINTK(...) Z_LOG_PRINTK(__VA_ARGS__)
  73. /**
  74. * @brief Writes an ERROR level message associated with the instance to the log.
  75. *
  76. * Message is associated with specific instance of the module which has
  77. * independent filtering settings (if runtime filtering is enabled) and
  78. * message prefix (\<module_name\>.\<instance_name\>). It's meant to report
  79. * severe errors, such as those from which it's not possible to recover.
  80. *
  81. * @param _log_inst Pointer to the log structure associated with the instance.
  82. * @param ... A string optionally containing printk valid conversion specifier,
  83. * followed by as many values as specifiers.
  84. */
  85. #define LOG_INST_ERR(_log_inst, ...) \
  86. Z_LOG_INSTANCE(LOG_LEVEL_ERR, _log_inst, __VA_ARGS__)
  87. /**
  88. * @brief Writes a WARNING level message associated with the instance to the
  89. * log.
  90. *
  91. * Message is associated with specific instance of the module which has
  92. * independent filtering settings (if runtime filtering is enabled) and
  93. * message prefix (\<module_name\>.\<instance_name\>). It's meant to register
  94. * messages related to unusual situations that are not necessarily errors.
  95. *
  96. * @param _log_inst Pointer to the log structure associated with the instance.
  97. * @param ... A string optionally containing printk valid conversion
  98. * specifier, followed by as many values as specifiers.
  99. */
  100. #define LOG_INST_WRN(_log_inst, ...) \
  101. Z_LOG_INSTANCE(LOG_LEVEL_WRN, _log_inst, __VA_ARGS__)
  102. /**
  103. * @brief Writes an INFO level message associated with the instance to the log.
  104. *
  105. * Message is associated with specific instance of the module which has
  106. * independent filtering settings (if runtime filtering is enabled) and
  107. * message prefix (\<module_name\>.\<instance_name\>). It's meant to write
  108. * generic user oriented messages.
  109. *
  110. * @param _log_inst Pointer to the log structure associated with the instance.
  111. * @param ... A string optionally containing printk valid conversion specifier,
  112. * followed by as many values as specifiers.
  113. */
  114. #define LOG_INST_INF(_log_inst, ...) \
  115. Z_LOG_INSTANCE(LOG_LEVEL_INF, _log_inst, __VA_ARGS__)
  116. /**
  117. * @brief Writes a DEBUG level message associated with the instance to the log.
  118. *
  119. * Message is associated with specific instance of the module which has
  120. * independent filtering settings (if runtime filtering is enabled) and
  121. * message prefix (\<module_name\>.\<instance_name\>). It's meant to write
  122. * developer oriented information.
  123. *
  124. * @param _log_inst Pointer to the log structure associated with the instance.
  125. * @param ... A string optionally containing printk valid conversion specifier,
  126. * followed by as many values as specifiers.
  127. */
  128. #define LOG_INST_DBG(_log_inst, ...) \
  129. Z_LOG_INSTANCE(LOG_LEVEL_DBG, _log_inst, __VA_ARGS__)
  130. /**
  131. * @brief Writes an ERROR level hexdump message to the log.
  132. *
  133. * @details It's meant to report severe errors, such as those from which it's
  134. * not possible to recover.
  135. *
  136. * @param _data Pointer to the data to be logged.
  137. * @param _length Length of data (in bytes).
  138. * @param _str Persistent, raw string.
  139. */
  140. #define LOG_HEXDUMP_ERR(_data, _length, _str) \
  141. Z_LOG_HEXDUMP(LOG_LEVEL_ERR, _data, _length, _str)
  142. /**
  143. * @brief Writes a WARNING level message to the log.
  144. *
  145. * @details It's meant to register messages related to unusual situations that
  146. * are not necessarily errors.
  147. *
  148. * @param _data Pointer to the data to be logged.
  149. * @param _length Length of data (in bytes).
  150. * @param _str Persistent, raw string.
  151. */
  152. #define LOG_HEXDUMP_WRN(_data, _length, _str) \
  153. Z_LOG_HEXDUMP(LOG_LEVEL_WRN, _data, _length, _str)
  154. /**
  155. * @brief Writes an INFO level message to the log.
  156. *
  157. * @details It's meant to write generic user oriented messages.
  158. *
  159. * @param _data Pointer to the data to be logged.
  160. * @param _length Length of data (in bytes).
  161. * @param _str Persistent, raw string.
  162. */
  163. #define LOG_HEXDUMP_INF(_data, _length, _str) \
  164. Z_LOG_HEXDUMP(LOG_LEVEL_INF, _data, _length, _str)
  165. /**
  166. * @brief Writes a DEBUG level message to the log.
  167. *
  168. * @details It's meant to write developer oriented information.
  169. *
  170. * @param _data Pointer to the data to be logged.
  171. * @param _length Length of data (in bytes).
  172. * @param _str Persistent, raw string.
  173. */
  174. #define LOG_HEXDUMP_DBG(_data, _length, _str) \
  175. Z_LOG_HEXDUMP(LOG_LEVEL_DBG, _data, _length, _str)
  176. /**
  177. * @brief Writes an ERROR hexdump message associated with the instance to the
  178. * log.
  179. *
  180. * Message is associated with specific instance of the module which has
  181. * independent filtering settings (if runtime filtering is enabled) and
  182. * message prefix (\<module_name\>.\<instance_name\>). It's meant to report
  183. * severe errors, such as those from which it's not possible to recover.
  184. *
  185. * @param _log_inst Pointer to the log structure associated with the instance.
  186. * @param _data Pointer to the data to be logged.
  187. * @param _length Length of data (in bytes).
  188. * @param _str Persistent, raw string.
  189. */
  190. #define LOG_INST_HEXDUMP_ERR(_log_inst, _data, _length, _str) \
  191. Z_LOG_HEXDUMP_INSTANCE(LOG_LEVEL_ERR, _log_inst, _data, _length, _str)
  192. /**
  193. * @brief Writes a WARNING level hexdump message associated with the instance to
  194. * the log.
  195. *
  196. * @details It's meant to register messages related to unusual situations that
  197. * are not necessarily errors.
  198. *
  199. * @param _log_inst Pointer to the log structure associated with the instance.
  200. * @param _data Pointer to the data to be logged.
  201. * @param _length Length of data (in bytes).
  202. * @param _str Persistent, raw string.
  203. */
  204. #define LOG_INST_HEXDUMP_WRN(_log_inst, _data, _length, _str) \
  205. Z_LOG_HEXDUMP_INSTANCE(LOG_LEVEL_WRN, _log_inst, _data, _length, _str)
  206. /**
  207. * @brief Writes an INFO level hexdump message associated with the instance to
  208. * the log.
  209. *
  210. * @details It's meant to write generic user oriented messages.
  211. *
  212. * @param _log_inst Pointer to the log structure associated with the instance.
  213. * @param _data Pointer to the data to be logged.
  214. * @param _length Length of data (in bytes).
  215. * @param _str Persistent, raw string.
  216. */
  217. #define LOG_INST_HEXDUMP_INF(_log_inst, _data, _length, _str) \
  218. Z_LOG_HEXDUMP_INSTANCE(LOG_LEVEL_INF, _log_inst, _data, _length, _str)
  219. /**
  220. * @brief Writes a DEBUG level hexdump message associated with the instance to
  221. * the log.
  222. *
  223. * @details It's meant to write developer oriented information.
  224. *
  225. * @param _log_inst Pointer to the log structure associated with the instance.
  226. * @param _data Pointer to the data to be logged.
  227. * @param _length Length of data (in bytes).
  228. * @param _str Persistent, raw string.
  229. */
  230. #define LOG_INST_HEXDUMP_DBG(_log_inst, _data, _length, _str) \
  231. Z_LOG_HEXDUMP_INSTANCE(LOG_LEVEL_DBG, _log_inst, _data, _length, _str)
  232. /**
  233. * @brief Writes an formatted string to the log.
  234. *
  235. * @details Conditionally compiled (see CONFIG_LOG_PRINTK). Function provides
  236. * printk functionality. It is inefficient compared to standard logging
  237. * because string formatting is performed in the call context and not deferred
  238. * to the log processing context (@ref log_process).
  239. *
  240. * @param fmt Formatted string to output.
  241. * @param ap Variable parameters.
  242. */
  243. void z_log_printk(const char *fmt, va_list ap);
  244. static inline void log_printk(const char *fmt, va_list ap)
  245. {
  246. z_log_printk(fmt, ap);
  247. }
  248. /** @brief Copy transient string to a buffer from internal, logger pool.
  249. *
  250. * Function should be used when transient string is intended to be logged.
  251. * Logger allocates a buffer and copies input string returning a pointer to the
  252. * copy. Logger ensures that buffer is freed when logger message is freed.
  253. *
  254. * Depending on configuration, this function may do nothing and just pass
  255. * along the supplied string pointer. Do not rely on this function to always
  256. * make a copy!
  257. *
  258. * @param str Transient string.
  259. *
  260. * @return Copy of the string or default string if buffer could not be
  261. * allocated. String may be truncated if input string does not fit in
  262. * a buffer from the pool (see CONFIG_LOG_STRDUP_MAX_STRING). In
  263. * some configurations, the original string pointer is returned.
  264. */
  265. char *z_log_strdup(const char *str);
  266. static inline char *log_strdup(const char *str)
  267. {
  268. if (IS_ENABLED(CONFIG_LOG_MINIMAL) || IS_ENABLED(CONFIG_LOG2)) {
  269. return (char *)str;
  270. }
  271. return z_log_strdup(str);
  272. }
  273. #ifdef __cplusplus
  274. }
  275. #define LOG_IN_CPLUSPLUS 1
  276. #endif
  277. /* Macro expects that optionally on second argument local log level is provided.
  278. * If provided it is returned, otherwise default log level is returned or
  279. * LOG_LEVEL, if it was locally defined.
  280. */
  281. #if !defined(CONFIG_LOG)
  282. #define _LOG_LEVEL_RESOLVE(...) LOG_LEVEL_NONE
  283. #else
  284. #define _LOG_LEVEL_RESOLVE(...) \
  285. Z_LOG_EVAL(LOG_LEVEL, \
  286. (GET_ARG_N(2, __VA_ARGS__, LOG_LEVEL)), \
  287. (GET_ARG_N(2, __VA_ARGS__, CONFIG_LOG_DEFAULT_LEVEL)))
  288. #endif
  289. /* Return first argument */
  290. #define _LOG_ARG1(arg1, ...) arg1
  291. #define _LOG_MODULE_CONST_DATA_CREATE(_name, _level) \
  292. IF_ENABLED(LOG_IN_CPLUSPLUS, (extern)) \
  293. const struct log_source_const_data LOG_ITEM_CONST_DATA(_name) \
  294. __attribute__ ((section("." STRINGIFY(LOG_ITEM_CONST_DATA(_name))))) \
  295. __attribute__((used)) = { \
  296. .name = STRINGIFY(_name), \
  297. .level = _level \
  298. }
  299. #define _LOG_MODULE_DYNAMIC_DATA_CREATE(_name) \
  300. struct log_source_dynamic_data LOG_ITEM_DYNAMIC_DATA(_name) \
  301. __attribute__ ((section("." STRINGIFY( \
  302. LOG_ITEM_DYNAMIC_DATA(_name)))) \
  303. ) \
  304. __attribute__((used))
  305. #define _LOG_MODULE_DYNAMIC_DATA_COND_CREATE(_name) \
  306. IF_ENABLED(CONFIG_LOG_RUNTIME_FILTERING, \
  307. (_LOG_MODULE_DYNAMIC_DATA_CREATE(_name);))
  308. #define _LOG_MODULE_DATA_CREATE(_name, _level) \
  309. _LOG_MODULE_CONST_DATA_CREATE(_name, _level); \
  310. _LOG_MODULE_DYNAMIC_DATA_COND_CREATE(_name)
  311. /**
  312. * @brief Create module-specific state and register the module with Logger.
  313. *
  314. * This macro normally must be used after including <logging/log.h> to
  315. * complete the initialization of the module.
  316. *
  317. * Module registration can be skipped in two cases:
  318. *
  319. * - The module consists of more than one file, and another file
  320. * invokes this macro. (LOG_MODULE_DECLARE() should be used instead
  321. * in all of the module's other files.)
  322. * - Instance logging is used and there is no need to create module entry. In
  323. * that case LOG_LEVEL_SET() should be used to set log level used within the
  324. * file.
  325. *
  326. * Macro accepts one or two parameters:
  327. * - module name
  328. * - optional log level. If not provided then default log level is used in
  329. * the file.
  330. *
  331. * Example usage:
  332. * - LOG_MODULE_REGISTER(foo, CONFIG_FOO_LOG_LEVEL)
  333. * - LOG_MODULE_REGISTER(foo)
  334. *
  335. *
  336. * @note The module's state is defined, and the module is registered,
  337. * only if LOG_LEVEL for the current source file is non-zero or
  338. * it is not defined and CONFIG_LOG_DEFAULT_LEVEL is non-zero.
  339. * In other cases, this macro has no effect.
  340. * @see LOG_MODULE_DECLARE
  341. */
  342. #define LOG_MODULE_REGISTER(...) \
  343. Z_LOG_EVAL( \
  344. _LOG_LEVEL_RESOLVE(__VA_ARGS__), \
  345. (_LOG_MODULE_DATA_CREATE(GET_ARG_N(1, __VA_ARGS__), \
  346. _LOG_LEVEL_RESOLVE(__VA_ARGS__))),\
  347. ()/*Empty*/ \
  348. ) \
  349. LOG_MODULE_DECLARE(__VA_ARGS__)
  350. /**
  351. * @brief Macro for declaring a log module (not registering it).
  352. *
  353. * Modules which are split up over multiple files must have exactly
  354. * one file use LOG_MODULE_REGISTER() to create module-specific state
  355. * and register the module with the logger core.
  356. *
  357. * The other files in the module should use this macro instead to
  358. * declare that same state. (Otherwise, LOG_INF() etc. will not be
  359. * able to refer to module-specific state variables.)
  360. *
  361. * Macro accepts one or two parameters:
  362. * - module name
  363. * - optional log level. If not provided then default log level is used in
  364. * the file.
  365. *
  366. * Example usage:
  367. * - LOG_MODULE_DECLARE(foo, CONFIG_FOO_LOG_LEVEL)
  368. * - LOG_MODULE_DECLARE(foo)
  369. *
  370. * @note The module's state is declared only if LOG_LEVEL for the
  371. * current source file is non-zero or it is not defined and
  372. * CONFIG_LOG_DEFAULT_LEVEL is non-zero. In other cases,
  373. * this macro has no effect.
  374. * @see LOG_MODULE_REGISTER
  375. */
  376. #define LOG_MODULE_DECLARE(...) \
  377. extern const struct log_source_const_data \
  378. LOG_ITEM_CONST_DATA(GET_ARG_N(1, __VA_ARGS__)); \
  379. extern struct log_source_dynamic_data \
  380. LOG_ITEM_DYNAMIC_DATA(GET_ARG_N(1, __VA_ARGS__)); \
  381. \
  382. static const struct log_source_const_data * \
  383. __log_current_const_data __unused = \
  384. _LOG_LEVEL_RESOLVE(__VA_ARGS__) ? \
  385. &LOG_ITEM_CONST_DATA(GET_ARG_N(1, __VA_ARGS__)) : \
  386. NULL; \
  387. \
  388. static struct log_source_dynamic_data * \
  389. __log_current_dynamic_data __unused = \
  390. (_LOG_LEVEL_RESOLVE(__VA_ARGS__) && \
  391. IS_ENABLED(CONFIG_LOG_RUNTIME_FILTERING)) ? \
  392. &LOG_ITEM_DYNAMIC_DATA(GET_ARG_N(1, __VA_ARGS__)) : \
  393. NULL; \
  394. \
  395. static const uint32_t __log_level __unused = \
  396. _LOG_LEVEL_RESOLVE(__VA_ARGS__)
  397. /**
  398. * @brief Macro for setting log level in the file or function where instance
  399. * logging API is used.
  400. *
  401. * @param level Level used in file or in function.
  402. *
  403. */
  404. #define LOG_LEVEL_SET(level) static const uint32_t __log_level __unused = \
  405. Z_LOG_RESOLVED_LEVEL(level, 0)
  406. /*
  407. * Eclipse CDT parser is sometimes confused by logging API code and freezes the
  408. * whole IDE. Following lines hides LOG_x macros from CDT.
  409. */
  410. #if defined(__CDT_PARSER__)
  411. #undef LOG_ERR
  412. #undef LOG_WRN
  413. #undef LOG_INF
  414. #undef LOG_DBG
  415. #undef LOG_HEXDUMP_ERR
  416. #undef LOG_HEXDUMP_WRN
  417. #undef LOG_HEXDUMP_INF
  418. #undef LOG_HEXDUMP_DBG
  419. #define LOG_ERR(...) (void) 0
  420. #define LOG_WRN(...) (void) 0
  421. #define LOG_DBG(...) (void) 0
  422. #define LOG_INF(...) (void) 0
  423. #define LOG_HEXDUMP_ERR(...) (void) 0
  424. #define LOG_HEXDUMP_WRN(...) (void) 0
  425. #define LOG_HEXDUMP_DBG(...) (void) 0
  426. #define LOG_HEXDUMP_INF(...) (void) 0
  427. #endif
  428. /**
  429. * @}
  430. */
  431. #endif /* ZEPHYR_INCLUDE_LOGGING_LOG_H_ */