cbprintf.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485
  1. /*
  2. * Copyright (c) 2020 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_SYS_CBPRINTF_H_
  7. #define ZEPHYR_INCLUDE_SYS_CBPRINTF_H_
  8. #include <stdarg.h>
  9. #include <stddef.h>
  10. #include <stdint.h>
  11. #include <toolchain.h>
  12. #ifdef CONFIG_CBPRINTF_LIBC_SUBSTS
  13. #include <stdio.h>
  14. #endif /* CONFIG_CBPRINTF_LIBC_SUBSTS */
  15. /* Determine if _Generic is supported.
  16. * In general it's a C11 feature but it was added also in:
  17. * - GCC 4.9.0 https://gcc.gnu.org/gcc-4.9/changes.html
  18. * - Clang 3.0 https://releases.llvm.org/3.0/docs/ClangReleaseNotes.html
  19. *
  20. * @note Z_C_GENERIC is also set for C++ where functionality is implemented
  21. * using overloading and templates.
  22. */
  23. #ifndef Z_C_GENERIC
  24. #if defined(__cplusplus) || (((__STDC_VERSION__ >= 201112L) || \
  25. ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 40900) || \
  26. ((__clang_major__ * 10000 + __clang_minor__ * 100 + __clang_patchlevel__) >= 30000)))
  27. #define Z_C_GENERIC 1
  28. #else
  29. #define Z_C_GENERIC 0
  30. #endif
  31. #endif
  32. /* Z_C_GENERIC is used there */
  33. #include <sys/cbprintf_internal.h>
  34. #ifdef __cplusplus
  35. extern "C" {
  36. #endif
  37. /**
  38. * @defgroup cbprintf_apis Formatted Output APIs
  39. * @ingroup support_apis
  40. * @{
  41. */
  42. /** @brief Required alignment of the buffer used for packaging. */
  43. #ifdef __xtensa__
  44. #define CBPRINTF_PACKAGE_ALIGNMENT 16
  45. #elif defined(CONFIG_X86) && !defined(CONFIG_64BIT)
  46. /* sizeof(long double) is 12 on x86-32, which is not power of 2.
  47. * So set it manually.
  48. */
  49. #define CBPRINTF_PACKAGE_ALIGNMENT \
  50. (IS_ENABLED(CONFIG_CBPRINTF_PACKAGE_LONGDOUBLE) ? \
  51. 16 : MAX(sizeof(double), sizeof(long long)))
  52. #else
  53. #define CBPRINTF_PACKAGE_ALIGNMENT \
  54. (IS_ENABLED(CONFIG_CBPRINTF_PACKAGE_LONGDOUBLE) ? \
  55. sizeof(long double) : MAX(sizeof(double), sizeof(long long)))
  56. #endif
  57. /**@defgroup CBPRINTF_PACKAGE_FLAGS Package flags.
  58. * @{
  59. */
  60. /** @brief Append indexes of read-only string arguments in the package.
  61. *
  62. * When used, package contains locations of read-only string arguments. Package
  63. * with that information can be converted to fully self-contain package using
  64. * @ref cbprintf_fsc_package.
  65. */
  66. #define CBPRINTF_PACKAGE_ADD_STRING_IDXS BIT(0)
  67. /**@} */
  68. /** @brief Signature for a cbprintf callback function.
  69. *
  70. * This function expects two parameters:
  71. *
  72. * * @p c a character to output. The output behavior should be as if
  73. * this was cast to an unsigned char.
  74. * * @p ctx a pointer to an object that provides context for the
  75. * output operation.
  76. *
  77. * The declaration does not specify the parameter types. This allows a
  78. * function like @c fputc to be used without requiring all context pointers to
  79. * be to a @c FILE object.
  80. *
  81. * @return the value of @p c cast to an unsigned char then back to
  82. * int, or a negative error code that will be returned from
  83. * cbprintf().
  84. */
  85. typedef int (*cbprintf_cb)(/* int c, void *ctx */);
  86. /** @brief Determine if string must be packaged in run time.
  87. *
  88. * Static packaging can be applied if size of the package can be determined
  89. * at compile time. In general, package size can be determined at compile time
  90. * if there are no string arguments which might be copied into package body if
  91. * they are considered transient.
  92. *
  93. * @param skip number of read only string arguments in the parameter list. It
  94. * shall be non-zero if there are known read only string arguments present
  95. * in the string (e.g. function name prefix in the log message).
  96. *
  97. * @param ... String with arguments.
  98. *
  99. * @retval 1 if string must be packaged in run time.
  100. * @retval 0 string can be statically packaged.
  101. */
  102. #define CBPRINTF_MUST_RUNTIME_PACKAGE(skip, ... /* fmt, ... */) \
  103. Z_CBPRINTF_MUST_RUNTIME_PACKAGE(skip, __VA_ARGS__)
  104. /** @brief Statically package string.
  105. *
  106. * Build string package from formatted string. It assumes that formatted
  107. * string is in the read only memory.
  108. *
  109. * If _Generic is not supported then runtime packaging is performed.
  110. *
  111. * @param packaged pointer to where the packaged data can be stored. Pass a null
  112. * pointer to skip packaging but still calculate the total space required.
  113. * The data stored here is relocatable, that is it can be moved to another
  114. * contiguous block of memory. It must be aligned to the size of the longest
  115. * argument. It is recommended to use CBPRINTF_PACKAGE_ALIGNMENT for alignment.
  116. *
  117. * @param inlen set to the number of bytes available at @p packaged. If
  118. * @p packaged is NULL the value is ignored.
  119. *
  120. * @param outlen variable updated to the number of bytes required to completely
  121. * store the packed information. If input buffer was too small it is set to
  122. * -ENOSPC.
  123. *
  124. * @param align_offset input buffer alignment offset in bytes. Where offset 0
  125. * means that buffer is aligned to CBPRINTF_PACKAGE_ALIGNMENT. Xtensa requires
  126. * that @p packaged is aligned to CBPRINTF_PACKAGE_ALIGNMENT so it must be
  127. * multiply of CBPRINTF_PACKAGE_ALIGNMENT or 0.
  128. *
  129. * @param flags option flags. See @ref CBPRINTF_PACKAGE_FLAGS.
  130. *
  131. * @param ... formatted string with arguments. Format string must be constant.
  132. */
  133. #define CBPRINTF_STATIC_PACKAGE(packaged, inlen, outlen, align_offset, flags, \
  134. ... /* fmt, ... */) \
  135. Z_CBPRINTF_STATIC_PACKAGE(packaged, inlen, outlen, \
  136. align_offset, flags, __VA_ARGS__)
  137. /** @brief Capture state required to output formatted data later.
  138. *
  139. * Like cbprintf() but instead of processing the arguments and emitting the
  140. * formatted results immediately all arguments are captured so this can be
  141. * done in a different context, e.g. when the output function can block.
  142. *
  143. * In addition to the values extracted from arguments this will ensure that
  144. * copies are made of the necessary portions of any string parameters that are
  145. * not confirmed to be stored in read-only memory (hence assumed to be safe to
  146. * refer to directly later).
  147. *
  148. * @param packaged pointer to where the packaged data can be stored. Pass a
  149. * null pointer to store nothing but still calculate the total space required.
  150. * The data stored here is relocatable, that is it can be moved to another
  151. * contiguous block of memory. However, under condition that alignment is
  152. * maintained. It must be aligned to at least the size of a pointer.
  153. *
  154. * @param len this must be set to the number of bytes available at @p packaged
  155. * if it is not null. If @p packaged is null then it indicates hypothetical
  156. * buffer alignment offset in bytes compared to CBPRINTF_PACKAGE_ALIGNMENT
  157. * alignment. Buffer alignment offset impacts returned size of the package.
  158. * Xtensa requires that buffer is always aligned to CBPRINTF_PACKAGE_ALIGNMENT
  159. * so it must be multiply of CBPRINTF_PACKAGE_ALIGNMENT or 0 when @p packaged is
  160. * null.
  161. *
  162. * @param flags option flags. See @ref CBPRINTF_PACKAGE_FLAGS.
  163. *
  164. * @param format a standard ISO C format string with characters and conversion
  165. * specifications.
  166. *
  167. * @param ... arguments corresponding to the conversion specifications found
  168. * within @p format.
  169. *
  170. * @retval nonegative the number of bytes successfully stored at @p packaged.
  171. * This will not exceed @p len.
  172. * @retval -EINVAL if @p format is not acceptable
  173. * @retval -EFAULT if @p packaged alignment is not acceptable
  174. * @retval -ENOSPC if @p packaged was not null and the space required to store
  175. * exceed @p len.
  176. */
  177. __printf_like(4, 5)
  178. int cbprintf_package(void *packaged,
  179. size_t len,
  180. uint32_t flags,
  181. const char *format,
  182. ...);
  183. /** @brief Capture state required to output formatted data later.
  184. *
  185. * Like cbprintf() but instead of processing the arguments and emitting the
  186. * formatted results immediately all arguments are captured so this can be
  187. * done in a different context, e.g. when the output function can block.
  188. *
  189. * In addition to the values extracted from arguments this will ensure that
  190. * copies are made of the necessary portions of any string parameters that are
  191. * not confirmed to be stored in read-only memory (hence assumed to be safe to
  192. * refer to directly later).
  193. *
  194. * @param packaged pointer to where the packaged data can be stored. Pass a
  195. * null pointer to store nothing but still calculate the total space required.
  196. * The data stored here is relocatable, that is it can be moved to another
  197. * contiguous block of memory. The pointer must be aligned to a multiple of
  198. * the largest element in the argument list.
  199. *
  200. * @param len this must be set to the number of bytes available at @p packaged.
  201. * Ignored if @p packaged is NULL.
  202. *
  203. * @param flags option flags. See @ref CBPRINTF_PACKAGE_FLAGS.
  204. *
  205. * @param format a standard ISO C format string with characters and conversion
  206. * specifications.
  207. *
  208. * @param ap captured stack arguments corresponding to the conversion
  209. * specifications found within @p format.
  210. *
  211. * @retval nonegative the number of bytes successfully stored at @p packaged.
  212. * This will not exceed @p len.
  213. * @retval -EINVAL if @p format is not acceptable
  214. * @retval -ENOSPC if @p packaged was not null and the space required to store
  215. * exceed @p len.
  216. */
  217. int cbvprintf_package(void *packaged,
  218. size_t len,
  219. uint32_t flags,
  220. const char *format,
  221. va_list ap);
  222. /** @brief Convert package to fully self-contained (fsc) package.
  223. *
  224. * By default, package does not contain read only strings. However, if needed
  225. * it may be converted to a fully self-contained package which contains all
  226. * strings. In order to allow such conversion, original package must be created
  227. * with @ref CBPRINTF_PACKAGE_ADD_STRING_IDXS flag. Such package will contain
  228. * necessary data to find read only strings in the package and copy them into
  229. * package body.
  230. *
  231. * @param in_packaged pointer to original package created with
  232. * @ref CBPRINTF_PACKAGE_ADD_STRING_IDXS.
  233. *
  234. * @param in_len @p in_packaged length.
  235. *
  236. * @param packaged pointer to location where fully self-contained version of the
  237. * input package will be written. Pass a null pointer to calculate space required.
  238. *
  239. * @param len must be set to the number of bytes available at @p packaged. Not
  240. * used if @p packaged is null.
  241. *
  242. * @retval nonegative the number of bytes successfully stored at @p packaged.
  243. * This will not exceed @p len. If @p packaged is null, calculated length.
  244. * @retval -ENOSPC if @p packaged was not null and the space required to store
  245. * exceed @p len.
  246. * @retval -EINVAL if @p in_packaged is null.
  247. */
  248. int cbprintf_fsc_package(void *in_packaged,
  249. size_t in_len,
  250. void *packaged,
  251. size_t len);
  252. /** @brief Generate the output for a previously captured format
  253. * operation.
  254. *
  255. * @param out the function used to emit each generated character.
  256. *
  257. * @param ctx context provided when invoking out
  258. *
  259. * @param packaged the data required to generate the formatted output, as
  260. * captured by cbprintf_package() or cbvprintf_package(). The alignment
  261. * requirement on this data is the same as when it was initially created.
  262. *
  263. * @note Memory indicated by @p packaged will be modified in a non-destructive
  264. * way, meaning that it could still be reused with this function again.
  265. *
  266. * @return the number of characters printed, or a negative error value
  267. * returned from invoking @p out.
  268. */
  269. int cbpprintf(cbprintf_cb out,
  270. void *ctx,
  271. void *packaged);
  272. /** @brief *printf-like output through a callback.
  273. *
  274. * This is essentially printf() except the output is generated
  275. * character-by-character using the provided @p out function. This allows
  276. * formatting text of unbounded length without incurring the cost of a
  277. * temporary buffer.
  278. *
  279. * All formatting specifiers of C99 are recognized, and most are supported if
  280. * the functionality is enabled.
  281. *
  282. * @note The functionality of this function is significantly reduced
  283. * when @kconfig{CONFIG_CBPRINTF_NANO} is selected.
  284. *
  285. * @param out the function used to emit each generated character.
  286. *
  287. * @param ctx context provided when invoking out
  288. *
  289. * @param format a standard ISO C format string with characters and conversion
  290. * specifications.
  291. *
  292. * @param ... arguments corresponding to the conversion specifications found
  293. * within @p format.
  294. *
  295. * @return the number of characters printed, or a negative error value
  296. * returned from invoking @p out.
  297. */
  298. __printf_like(3, 4)
  299. int cbprintf(cbprintf_cb out, void *ctx, const char *format, ...);
  300. /** @brief varargs-aware *printf-like output through a callback.
  301. *
  302. * This is essentially vsprintf() except the output is generated
  303. * character-by-character using the provided @p out function. This allows
  304. * formatting text of unbounded length without incurring the cost of a
  305. * temporary buffer.
  306. *
  307. * @note This function is available only when
  308. * @kconfig{CONFIG_CBPRINTF_LIBC_SUBSTS} is selected.
  309. *
  310. * @note The functionality of this function is significantly reduced when
  311. * @kconfig{CONFIG_CBPRINTF_NANO} is selected.
  312. *
  313. * @param out the function used to emit each generated character.
  314. *
  315. * @param ctx context provided when invoking out
  316. *
  317. * @param format a standard ISO C format string with characters and conversion
  318. * specifications.
  319. *
  320. * @param ap a reference to the values to be converted.
  321. *
  322. * @return the number of characters generated, or a negative error value
  323. * returned from invoking @p out.
  324. */
  325. int cbvprintf(cbprintf_cb out, void *ctx, const char *format, va_list ap);
  326. #ifdef CONFIG_CBPRINTF_LIBC_SUBSTS
  327. /** @brief fprintf using Zephyrs cbprintf infrastructure.
  328. *
  329. * @note This function is available only when
  330. * @kconfig{CONFIG_CBPRINTF_LIBC_SUBSTS} is selected.
  331. *
  332. * @note The functionality of this function is significantly reduced
  333. * when @kconfig{CONFIG_CBPRINTF_NANO} is selected.
  334. *
  335. * @param stream the stream to which the output should be written.
  336. *
  337. * @param format a standard ISO C format string with characters and
  338. * conversion specifications.
  339. *
  340. * @param ... arguments corresponding to the conversion specifications found
  341. * within @p format.
  342. *
  343. * return The number of characters printed.
  344. */
  345. __printf_like(2, 3)
  346. int fprintfcb(FILE * stream, const char *format, ...);
  347. /** @brief vfprintf using Zephyrs cbprintf infrastructure.
  348. *
  349. * @note This function is available only when
  350. * @kconfig{CONFIG_CBPRINTF_LIBC_SUBSTS} is selected.
  351. *
  352. * @note The functionality of this function is significantly reduced when
  353. * @kconfig{CONFIG_CBPRINTF_NANO} is selected.
  354. *
  355. * @param stream the stream to which the output should be written.
  356. *
  357. * @param format a standard ISO C format string with characters and conversion
  358. * specifications.
  359. *
  360. * @param ap a reference to the values to be converted.
  361. *
  362. * @return The number of characters printed.
  363. */
  364. int vfprintfcb(FILE *stream, const char *format, va_list ap);
  365. /** @brief printf using Zephyrs cbprintf infrastructure.
  366. *
  367. * @note This function is available only when
  368. * @kconfig{CONFIG_CBPRINTF_LIBC_SUBSTS} is selected.
  369. *
  370. * @note The functionality of this function is significantly reduced
  371. * when @kconfig{CONFIG_CBPRINTF_NANO} is selected.
  372. *
  373. * @param format a standard ISO C format string with characters and
  374. * conversion specifications.
  375. *
  376. * @param ... arguments corresponding to the conversion specifications found
  377. * within @p format.
  378. *
  379. * @return The number of characters printed.
  380. */
  381. __printf_like(1, 2)
  382. int printfcb(const char *format, ...);
  383. /** @brief vprintf using Zephyrs cbprintf infrastructure.
  384. *
  385. * @note This function is available only when
  386. * @kconfig{CONFIG_CBPRINTF_LIBC_SUBSTS} is selected.
  387. *
  388. * @note The functionality of this function is significantly reduced when
  389. * @kconfig{CONFIG_CBPRINTF_NANO} is selected.
  390. *
  391. * @param format a standard ISO C format string with characters and conversion
  392. * specifications.
  393. *
  394. * @param ap a reference to the values to be converted.
  395. *
  396. * @return The number of characters printed.
  397. */
  398. int vprintfcb(const char *format, va_list ap);
  399. /** @brief snprintf using Zephyrs cbprintf infrastructure.
  400. *
  401. * @note This function is available only when
  402. * @kconfig{CONFIG_CBPRINTF_LIBC_SUBSTS} is selected.
  403. *
  404. * @note The functionality of this function is significantly reduced
  405. * when @kconfig{CONFIG_CBPRINTF_NANO} is selected.
  406. *
  407. * @param str where the formatted content should be written
  408. *
  409. * @param size maximum number of chaacters for the formatted output,
  410. * including the terminating null byte.
  411. *
  412. * @param format a standard ISO C format string with characters and
  413. * conversion specifications.
  414. *
  415. * @param ... arguments corresponding to the conversion specifications found
  416. * within @p format.
  417. *
  418. * @return The number of characters that would have been written to @p
  419. * str, excluding the terminating null byte. This is greater than the
  420. * number actually written if @p size is too small.
  421. */
  422. __printf_like(3, 4)
  423. int snprintfcb(char *str, size_t size, const char *format, ...);
  424. /** @brief vsnprintf using Zephyrs cbprintf infrastructure.
  425. *
  426. * @note This function is available only when
  427. * @kconfig{CONFIG_CBPRINTF_LIBC_SUBSTS} is selected.
  428. *
  429. * @note The functionality of this function is significantly reduced when
  430. * @kconfig{CONFIG_CBPRINTF_NANO} is selected.
  431. *
  432. * @param str where the formatted content should be written
  433. *
  434. * @param size maximum number of chaacters for the formatted output, including
  435. * the terminating null byte.
  436. *
  437. * @param format a standard ISO C format string with characters and conversion
  438. * specifications.
  439. *
  440. * @param ap a reference to the values to be converted.
  441. *
  442. * @return The number of characters that would have been written to @p
  443. * str, excluding the terminating null byte. This is greater than the
  444. * number actually written if @p size is too small.
  445. */
  446. int vsnprintfcb(char *str, size_t size, const char *format, va_list ap);
  447. #endif /* CONFIG_CBPRINTF_LIBC_SUBSTS */
  448. /**
  449. * @}
  450. */
  451. #ifdef __cplusplus
  452. }
  453. #endif
  454. #endif /* ZEPHYR_INCLUDE_SYS_CBPRINTF_H_ */