cbprintf.c 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /*
  2. * Copyright (c) 2020 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <stdarg.h>
  7. #include <stddef.h>
  8. #include <sys/cbprintf.h>
  9. int cbprintf(cbprintf_cb out, void *ctx, const char *format, ...)
  10. {
  11. va_list ap;
  12. int rc;
  13. va_start(ap, format);
  14. rc = cbvprintf(out, ctx, format, ap);
  15. va_end(ap);
  16. return rc;
  17. }
  18. #if defined(CONFIG_CBPRINTF_LIBC_SUBSTS)
  19. #include <stdio.h>
  20. /* Context for sn* variants is the next space in the buffer, and the buffer
  21. * end.
  22. */
  23. struct str_ctx {
  24. char *dp;
  25. char *const dpe;
  26. };
  27. static int str_out(int c,
  28. void *ctx)
  29. {
  30. struct str_ctx *scp = ctx;
  31. /* s*printf must return the number of characters that would be
  32. * output, even if they don't all fit, so conditionally store
  33. * and unconditionally succeed.
  34. */
  35. if (scp->dp < scp->dpe) {
  36. *(scp->dp++) = c;
  37. }
  38. return c;
  39. }
  40. int fprintfcb(FILE *stream, const char *format, ...)
  41. {
  42. va_list ap;
  43. int rc;
  44. va_start(ap, format);
  45. rc = vfprintfcb(stream, format, ap);
  46. va_end(ap);
  47. return rc;
  48. }
  49. int vfprintfcb(FILE *stream, const char *format, va_list ap)
  50. {
  51. return cbvprintf(fputc, stream, format, ap);
  52. }
  53. int printfcb(const char *format, ...)
  54. {
  55. va_list ap;
  56. int rc;
  57. va_start(ap, format);
  58. rc = vprintfcb(format, ap);
  59. va_end(ap);
  60. return rc;
  61. }
  62. int vprintfcb(const char *format, va_list ap)
  63. {
  64. return cbvprintf(fputc, stdout, format, ap);
  65. }
  66. int snprintfcb(char *str, size_t size, const char *format, ...)
  67. {
  68. va_list ap;
  69. int rc;
  70. va_start(ap, format);
  71. rc = vsnprintfcb(str, size, format, ap);
  72. va_end(ap);
  73. return rc;
  74. }
  75. int vsnprintfcb(char *str, size_t size, const char *format, va_list ap)
  76. {
  77. struct str_ctx ctx = {
  78. .dp = str,
  79. .dpe = str + size,
  80. };
  81. int rv = cbvprintf(str_out, &ctx, format, ap);
  82. if (ctx.dp < ctx.dpe) {
  83. ctx.dp[0] = 0;
  84. } else {
  85. ctx.dp[-1] = 0;
  86. }
  87. return rv;
  88. }
  89. #endif /* CONFIG_CBPRINTF_LIBC_SUBSTS */