printf.h 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. /* Copyright (C) 1991-1993,1995-1999,2000,2001 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. The GNU C Library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Lesser General Public
  5. License as published by the Free Software Foundation; either
  6. version 2.1 of the License, or (at your option) any later version.
  7. The GNU C Library is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public
  12. License along with the GNU C Library; if not, write to the Free
  13. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  14. 02111-1307 USA. */
  15. /* March 11, 2001 Manuel Novoa III
  16. *
  17. * Modified as appropriate for my new stdio lib.
  18. */
  19. #ifndef _PRINTF_H
  20. #define _PRINTF_H 1
  21. #include <features.h>
  22. __BEGIN_DECLS
  23. #define __need_FILE
  24. #include <stdio.h>
  25. #define __need_size_t
  26. #define __need_wchar_t
  27. #include <stddef.h>
  28. /* WARNING -- This is definitely nonportable... but it seems to work
  29. * with gcc, which is currently the only "supported" compiler.
  30. * The library code uses bitmasks for space-efficiency (you can't
  31. * set/test multiple bitfields in one operation). Unfortunatly, we
  32. * need to support bitfields since that's what glibc made visible to users.
  33. * So, we take
  34. * advantage of how gcc lays out bitfields to create an appropriate
  35. * mapping. Inside uclibc (i.e. if _LIBC is defined) we access the
  36. * bitfields using bitmasks in a single flag variable.
  37. *
  38. * WARNING -- This may very well fail if built with -fpack-struct!!!
  39. *
  40. * TODO -- Add a validation test.
  41. * TODO -- Add an option to build in a shim translation function if
  42. * the bitfield<->bitmask mapping fails.
  43. */
  44. #include <endian.h>
  45. struct printf_info {
  46. int prec; /* Precision. */
  47. int width; /* Width. */
  48. #ifdef __UCLIBC_HAS_WCHAR__
  49. wchar_t spec; /* Format letter. */
  50. #else
  51. int spec;
  52. #endif
  53. #ifndef _LIBC
  54. #if __BYTE_ORDER == __LITTLE_ENDIAN
  55. unsigned int space:1; /* Space flag. */
  56. unsigned int showsign:1; /* + flag. */
  57. unsigned int extra:1; /* For special use. */
  58. unsigned int left:1; /* - flag. */
  59. unsigned int alt:1; /* # flag. */
  60. unsigned int group:1; /* ' flag. */
  61. unsigned int i18n:1; /* I flag. */
  62. unsigned int wide:1; /* Nonzero for wide character streams. */
  63. unsigned int is_char:1; /* hh flag. */
  64. unsigned int is_short:1; /* h flag. */
  65. unsigned int is_long:1; /* l flag. */
  66. unsigned int is_long_double:1;/* L flag. */
  67. unsigned int __padding:20; /* non-gnu: match _flags width of 32 bits */
  68. #elif __BYTE_ORDER == __BIG_ENDIAN
  69. unsigned int __padding:20; /* non-gnu: match _flags width of 32 bits */
  70. unsigned int is_long_double:1;/* L flag. */
  71. unsigned int is_long:1; /* l flag. */
  72. unsigned int is_short:1; /* h flag. */
  73. unsigned int is_char:1; /* hh flag. */
  74. unsigned int wide:1; /* Nonzero for wide character streams. */
  75. unsigned int i18n:1; /* I flag. */
  76. unsigned int group:1; /* ' flag. */
  77. unsigned int alt:1; /* # flag. */
  78. unsigned int left:1; /* - flag. */
  79. unsigned int extra:1; /* For special use. */
  80. unsigned int showsign:1; /* + flag. */
  81. unsigned int space:1; /* Space flag. */
  82. #else
  83. #error unsupported byte order!
  84. #endif
  85. #else /* _LIBC */
  86. uint32_t _flags; /* non-gnu */
  87. #define __PRINT_INFO_FLAG_space (1<<0)
  88. #define __PRINT_INFO_FLAG_showsign (1<<1)
  89. #define __PRINT_INFO_FLAG_extra (1<<2)
  90. #define __PRINT_INFO_FLAG_left (1<<3)
  91. #define __PRINT_INFO_FLAG_alt (1<<4)
  92. #define __PRINT_INFO_FLAG_group (1<<5)
  93. #define __PRINT_INFO_FLAG_i18n (1<<6)
  94. #define __PRINT_INFO_FLAG_wide (1<<7)
  95. #define __PRINT_INFO_FLAG_is_char (1<<8)
  96. #define __PRINT_INFO_FLAG_is_short (1<<9)
  97. #define __PRINT_INFO_FLAG_is_long (1<<10)
  98. #define __PRINT_INFO_FLAG_is_long_double (1<<11)
  99. #define PRINT_INFO_FLAG_VAL(INFO_PTR,BITFIELD) \
  100. ((INFO_PTR)->_flags & __PRINT_INFO_FLAG_##BITFIELD)
  101. #define PRINT_INFO_SET_FLAG(INFO_PTR,BITFIELD) \
  102. ((INFO_PTR)->_flags |= __PRINT_INFO_FLAG_##BITFIELD)
  103. #define PRINT_INFO_CLR_FLAG(INFO_PTR,BITFIELD) \
  104. ((INFO_PTR)->_flags &= ~__PRINT_INFO_FLAG_##BITFIELD)
  105. #define PRINT_INFO_SET_extra(INFO_PTR,VAL) \
  106. ((INFO_PTR)->_flags |= (((INFO_PTR)->_flags & ~1) | ((VAL) & 1)))
  107. #endif /* _LIBC */
  108. #ifdef __UCLIBC_HAS_WCHAR__
  109. wchar_t pad; /* Padding character. */
  110. #else
  111. int pad;
  112. #endif
  113. };
  114. /* Type of a printf specifier-handler function.
  115. STREAM is the FILE on which to write output.
  116. INFO gives information about the format specification.
  117. ARGS is a vector of pointers to the argument data;
  118. the number of pointers will be the number returned
  119. by the associated arginfo function for the same INFO.
  120. The function should return the number of characters written,
  121. or -1 for errors. */
  122. #ifdef __UCLIBC_HAS_GLIBC_CUSTOM_PRINTF__
  123. typedef int (*printf_function) (FILE *__stream,
  124. __const struct printf_info *__info,
  125. __const void *__const *__args);
  126. /* Type of a printf specifier-arginfo function.
  127. INFO gives information about the format specification.
  128. N, ARGTYPES, and return value are as for parse_printf_format. */
  129. typedef int printf_arginfo_function (__const struct printf_info *__info,
  130. size_t __n, int *__argtypes);
  131. /* Register FUNC to be called to format SPEC specifiers; ARGINFO must be
  132. specified to determine how many arguments a SPEC conversion requires and
  133. what their types are. */
  134. extern int register_printf_function (int __spec, printf_function __func,
  135. printf_arginfo_function __arginfo);
  136. #endif
  137. /* Parse FMT, and fill in N elements of ARGTYPES with the
  138. types needed for the conversions FMT specifies. Returns
  139. the number of arguments required by FMT.
  140. The ARGINFO function registered with a user-defined format is passed a
  141. `struct printf_info' describing the format spec being parsed. A width
  142. or precision of INT_MIN means a `*' was used to indicate that the
  143. width/precision will come from an arg. The function should fill in the
  144. array it is passed with the types of the arguments it wants, and return
  145. the number of arguments it wants. */
  146. extern size_t parse_printf_format (__const char *__restrict __fmt, size_t __n,
  147. int *__restrict __argtypes) __THROW;
  148. /* Codes returned by `parse_printf_format' for basic types.
  149. These values cover all the standard format specifications.
  150. Users can add new values after PA_LAST for their own types. */
  151. /* WARNING -- The above is not entirely true, even for glibc.
  152. * As far as the library code is concerned, such args are treated
  153. * as 'your type' pointers if qualified by PA_FLAG_PTR. If they
  154. * aren't qualified as pointers, I _think_ glibc just ignores them
  155. * and carries on. I think it should be treated as an error. */
  156. enum { /* C type: */
  157. PA_INT, /* int */
  158. PA_CHAR, /* int, cast to char */
  159. PA_WCHAR, /* wide char */
  160. PA_STRING, /* const char *, a '\0'-terminated string */
  161. PA_WSTRING, /* const wchar_t *, wide character string */
  162. PA_POINTER, /* void * */
  163. PA_FLOAT, /* float */
  164. PA_DOUBLE, /* double */
  165. __PA_NOARG, /* non-glibc -- signals non-arg width or prec */
  166. PA_LAST
  167. };
  168. /* Flag bits that can be set in a type returned by `parse_printf_format'. */
  169. /* WARNING -- These differ in value from what glibc uses. */
  170. #define PA_FLAG_MASK (0xff00)
  171. #define __PA_FLAG_CHAR (0x0100) /* non-gnu -- to deal with hh */
  172. #define PA_FLAG_SHORT (0x0200)
  173. #define PA_FLAG_LONG (0x0400)
  174. #define PA_FLAG_LONG_LONG (0x0800)
  175. #define PA_FLAG_LONG_DOUBLE PA_FLAG_LONG_LONG
  176. #define PA_FLAG_PTR (0x1000) /* TODO -- make dynamic??? */
  177. #define __PA_INTMASK (0x0f00) /* non-gnu -- all int flags */
  178. #if 0
  179. /* Function which can be registered as `printf'-handlers. */
  180. /* Print floating point value using using abbreviations for the orders
  181. of magnitude used for numbers ('k' for kilo, 'm' for mega etc). If
  182. the format specifier is a uppercase character powers of 1000 are
  183. used. Otherwise powers of 1024. */
  184. extern int printf_size (FILE *__restrict __fp,
  185. __const struct printf_info *__info,
  186. __const void *__const *__restrict __args) __THROW;
  187. /* This is the appropriate argument information function for `printf_size'. */
  188. extern int printf_size_info (__const struct printf_info *__restrict
  189. __info, size_t __n, int *__restrict __argtypes)
  190. __THROW;
  191. #endif
  192. __END_DECLS
  193. #endif /* printf.h */