cbprintf_nano.c 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330
  1. /*
  2. * Copyright (c) 2010, 2013-2014 Wind River Systems, Inc.
  3. * Copyright (c) 2020 Nordic Semiconductor ASA
  4. * Copyright (c) 2021 BayLibre, SAS
  5. *
  6. * SPDX-License-Identifier: Apache-2.0
  7. */
  8. #include <stdarg.h>
  9. #include <stdint.h>
  10. #include <string.h>
  11. #include <sys/cbprintf.h>
  12. #include <sys/types.h>
  13. #include <sys/util.h>
  14. #ifdef CONFIG_CBPRINTF_FULL_INTEGRAL
  15. typedef intmax_t int_value_type;
  16. typedef uintmax_t uint_value_type;
  17. #define DIGITS_BUFLEN 21
  18. BUILD_ASSERT(sizeof(uint_value_type) <= 8U,
  19. "DIGITS_BUFLEN may be incorrect");
  20. #else
  21. typedef int32_t int_value_type;
  22. typedef uint32_t uint_value_type;
  23. #define DIGITS_BUFLEN 10
  24. #endif
  25. #define ALPHA(fmt) (((fmt) & 0x60) - '0' - 10 + 1)
  26. /* Convert value to string, storing characters downwards */
  27. static inline int convert_value(uint_value_type num, unsigned int base,
  28. unsigned int alpha, char *buftop)
  29. {
  30. int i = 0;
  31. do {
  32. unsigned int c = num % base;
  33. if (c >= 10) {
  34. c += alpha;
  35. }
  36. buftop[--i] = c + '0';
  37. num /= base;
  38. } while (num);
  39. return -i;
  40. }
  41. #define OUTC(_c) do { \
  42. out((int)(_c), ctx); \
  43. if (IS_ENABLED(CONFIG_CBPRINTF_LIBC_SUBSTS)) { \
  44. ++count; \
  45. } \
  46. } while (false)
  47. #define PAD_ZERO BIT(0)
  48. #define PAD_TAIL BIT(1)
  49. /**
  50. * @brief Printk internals
  51. *
  52. * See printk() for description.
  53. * @param fmt Format string
  54. * @param ap Variable parameters
  55. *
  56. * @return printed byte count if CONFIG_CBPRINTF_LIBC_SUBSTS is set
  57. */
  58. int cbvprintf(cbprintf_cb out, void *ctx, const char *fmt, va_list ap)
  59. {
  60. size_t count = 0;
  61. char buf[DIGITS_BUFLEN];
  62. char *prefix, *data;
  63. int min_width, precision, data_len;
  64. char padding_mode, length_mod, special;
  65. /* we pre-increment in the loop afterwards */
  66. fmt--;
  67. start:
  68. while (*++fmt != '%') {
  69. if (*fmt == '\0') {
  70. return count;
  71. }
  72. OUTC(*fmt);
  73. }
  74. min_width = -1;
  75. precision = -1;
  76. prefix = "";
  77. padding_mode = 0;
  78. length_mod = 0;
  79. special = 0;
  80. for (fmt++ ; ; fmt++) {
  81. switch (*fmt) {
  82. case 0:
  83. return count;
  84. case '%':
  85. OUTC('%');
  86. goto start;
  87. case '-':
  88. padding_mode = PAD_TAIL;
  89. continue;
  90. case '.':
  91. precision = 0;
  92. padding_mode &= (char)~PAD_ZERO;
  93. continue;
  94. case '0':
  95. if (min_width < 0 && precision < 0 && !padding_mode) {
  96. padding_mode = PAD_ZERO;
  97. continue;
  98. }
  99. __fallthrough;
  100. case '1':
  101. case '2':
  102. case '3':
  103. case '4':
  104. case '5':
  105. case '6':
  106. case '7':
  107. case '8':
  108. case '9':
  109. if (precision >= 0) {
  110. precision = 10 * precision + *fmt - '0';
  111. } else {
  112. if (min_width < 0) {
  113. min_width = 0;
  114. }
  115. min_width = 10 * min_width + *fmt - '0';
  116. }
  117. continue;
  118. case '*':
  119. if (precision >= 0) {
  120. precision = va_arg(ap, int);
  121. } else {
  122. min_width = va_arg(ap, int);
  123. if (min_width < 0) {
  124. min_width = -min_width;
  125. padding_mode = PAD_TAIL;
  126. }
  127. }
  128. continue;
  129. case '+':
  130. case ' ':
  131. case '#':
  132. special = *fmt;
  133. continue;
  134. case 'h':
  135. case 'l':
  136. case 'z':
  137. if (*fmt == 'h' && length_mod == 'h') {
  138. length_mod = 'H';
  139. } else if (*fmt == 'l' && length_mod == 'l') {
  140. length_mod = 'L';
  141. } else if (length_mod == '\0') {
  142. length_mod = *fmt;
  143. } else {
  144. OUTC('%');
  145. OUTC(*fmt);
  146. goto start;
  147. }
  148. continue;
  149. case 'd':
  150. case 'i':
  151. case 'u': {
  152. uint_value_type d;
  153. if (length_mod == 'z') {
  154. if (*fmt == 'u') {
  155. d = va_arg(ap, size_t);
  156. } else {
  157. d = va_arg(ap, ssize_t);
  158. }
  159. } else if (length_mod == 'l') {
  160. if (*fmt == 'u') {
  161. d = va_arg(ap, unsigned long);
  162. } else {
  163. d = va_arg(ap, long);
  164. }
  165. } else if (length_mod == 'L') {
  166. if (*fmt == 'u') {
  167. unsigned long long llu =
  168. va_arg(ap, unsigned long long);
  169. if (llu != (uint_value_type) llu) {
  170. data = "ERR";
  171. data_len = 3;
  172. precision = 0;
  173. break;
  174. }
  175. d = (uint_value_type) llu;
  176. } else {
  177. long long lld = va_arg(ap, long long);
  178. if (lld != (int_value_type) lld) {
  179. data = "ERR";
  180. data_len = 3;
  181. precision = 0;
  182. break;
  183. }
  184. d = (int_value_type) lld;
  185. }
  186. } else if (*fmt == 'u') {
  187. d = va_arg(ap, unsigned int);
  188. } else {
  189. d = va_arg(ap, int);
  190. }
  191. if (*fmt != 'u' && (int_value_type)d < 0) {
  192. d = -d;
  193. prefix = "-";
  194. min_width--;
  195. } else if (special == ' ') {
  196. prefix = " ";
  197. min_width--;
  198. } else if (special == '+') {
  199. prefix = "+";
  200. min_width--;
  201. } else {
  202. ;
  203. }
  204. data_len = convert_value(d, 10, 0, buf + sizeof(buf));
  205. data = buf + sizeof(buf) - data_len;
  206. break;
  207. }
  208. case 'p':
  209. case 'x':
  210. case 'X': {
  211. uint_value_type x;
  212. if (*fmt == 'p') {
  213. x = (uintptr_t)va_arg(ap, void *);
  214. if (x == (uint_value_type)0) {
  215. data = "(nil)";
  216. data_len = 5;
  217. precision = 0;
  218. break;
  219. }
  220. special = '#';
  221. } else if (length_mod == 'l') {
  222. x = va_arg(ap, unsigned long);
  223. } else if (length_mod == 'L') {
  224. unsigned long long llx =
  225. va_arg(ap, unsigned long long);
  226. if (llx != (uint_value_type) llx) {
  227. data = "ERR";
  228. data_len = 3;
  229. precision = 0;
  230. break;
  231. }
  232. x = (uint_value_type) llx;
  233. } else {
  234. x = va_arg(ap, unsigned int);
  235. }
  236. if (special == '#') {
  237. prefix = (*fmt & 0x20) ? "0x" : "0X";
  238. min_width -= 2;
  239. }
  240. data_len = convert_value(x, 16, ALPHA(*fmt),
  241. buf + sizeof(buf));
  242. data = buf + sizeof(buf) - data_len;
  243. break;
  244. }
  245. case 's': {
  246. data = va_arg(ap, char *);
  247. data_len = strlen(data);
  248. if (precision >= 0 && data_len > precision) {
  249. data_len = precision;
  250. }
  251. precision = 0;
  252. break;
  253. }
  254. case 'c': {
  255. int c = va_arg(ap, int);
  256. buf[0] = c;
  257. data = buf;
  258. data_len = 1;
  259. precision = 0;
  260. break;
  261. }
  262. default:
  263. OUTC('%');
  264. OUTC(*fmt);
  265. goto start;
  266. }
  267. if (precision < 0 && (padding_mode & PAD_ZERO)) {
  268. precision = min_width;
  269. }
  270. min_width -= data_len;
  271. precision -= data_len;
  272. if (precision > 0) {
  273. min_width -= precision;
  274. }
  275. if (!(padding_mode & PAD_TAIL)) {
  276. while (--min_width >= 0) {
  277. OUTC(' ');
  278. }
  279. }
  280. while (*prefix) {
  281. OUTC(*prefix++);
  282. }
  283. while (--precision >= 0) {
  284. OUTC('0');
  285. }
  286. while (--data_len >= 0) {
  287. OUTC(*data++);
  288. }
  289. while (--min_width >= 0) {
  290. OUTC(' ');
  291. }
  292. goto start;
  293. }
  294. }