printf-args.c 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. /* Decomposed printf argument list.
  2. Copyright (C) 1999, 2002-2003, 2005-2006 Free Software Foundation, Inc.
  3. This program is free software; you can redistribute it and/or modify it
  4. under the terms of the GNU Library General Public License as published
  5. by the Free Software Foundation; either version 2, or (at your option)
  6. any later version.
  7. This program 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. Library General Public License for more details.
  11. You should have received a copy of the GNU Library General Public
  12. License along with this program; if not, write to the Free Software
  13. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
  14. USA. */
  15. #include <config.h>
  16. /* Specification. */
  17. #include "printf-args.h"
  18. #ifdef STATIC
  19. STATIC
  20. #endif
  21. int
  22. printf_fetchargs (va_list args, arguments *a)
  23. {
  24. size_t i;
  25. argument *ap;
  26. for (i = 0, ap = &a->arg[0]; i < a->count; i++, ap++)
  27. switch (ap->type)
  28. {
  29. case TYPE_SCHAR:
  30. ap->a.a_schar = va_arg (args, /*signed char*/ int);
  31. break;
  32. case TYPE_UCHAR:
  33. ap->a.a_uchar = va_arg (args, /*unsigned char*/ int);
  34. break;
  35. case TYPE_SHORT:
  36. ap->a.a_short = va_arg (args, /*short*/ int);
  37. break;
  38. case TYPE_USHORT:
  39. ap->a.a_ushort = va_arg (args, /*unsigned short*/ int);
  40. break;
  41. case TYPE_INT:
  42. ap->a.a_int = va_arg (args, int);
  43. break;
  44. case TYPE_UINT:
  45. ap->a.a_uint = va_arg (args, unsigned int);
  46. break;
  47. case TYPE_LONGINT:
  48. ap->a.a_longint = va_arg (args, long int);
  49. break;
  50. case TYPE_ULONGINT:
  51. ap->a.a_ulongint = va_arg (args, unsigned long int);
  52. break;
  53. #ifdef HAVE_LONG_LONG_INT
  54. case TYPE_LONGLONGINT:
  55. ap->a.a_longlongint = va_arg (args, long long int);
  56. break;
  57. case TYPE_ULONGLONGINT:
  58. ap->a.a_ulonglongint = va_arg (args, unsigned long long int);
  59. break;
  60. #endif
  61. case TYPE_DOUBLE:
  62. ap->a.a_double = va_arg (args, double);
  63. break;
  64. #ifdef HAVE_LONG_DOUBLE
  65. case TYPE_LONGDOUBLE:
  66. ap->a.a_longdouble = va_arg (args, long double);
  67. break;
  68. #endif
  69. case TYPE_CHAR:
  70. ap->a.a_char = va_arg (args, int);
  71. break;
  72. #ifdef HAVE_WINT_T
  73. case TYPE_WIDE_CHAR:
  74. /* Although ISO C 99 7.24.1.(2) says that wint_t is "unchanged by
  75. default argument promotions", this is not the case in mingw32,
  76. where wint_t is 'unsigned short'. */
  77. ap->a.a_wide_char =
  78. (sizeof (wint_t) < sizeof (int)
  79. ? va_arg (args, int)
  80. : va_arg (args, wint_t));
  81. break;
  82. #endif
  83. case TYPE_STRING:
  84. ap->a.a_string = va_arg (args, const char *);
  85. /* A null pointer is an invalid argument for "%s", but in practice
  86. it occurs quite frequently in printf statements that produce
  87. debug output. Use a fallback in this case. */
  88. if (ap->a.a_string == NULL)
  89. ap->a.a_string = "(NULL)";
  90. break;
  91. #ifdef HAVE_WCHAR_T
  92. case TYPE_WIDE_STRING:
  93. ap->a.a_wide_string = va_arg (args, const wchar_t *);
  94. /* A null pointer is an invalid argument for "%ls", but in practice
  95. it occurs quite frequently in printf statements that produce
  96. debug output. Use a fallback in this case. */
  97. if (ap->a.a_wide_string == NULL)
  98. {
  99. static const wchar_t wide_null_string[] =
  100. {
  101. (wchar_t)'(',
  102. (wchar_t)'N', (wchar_t)'U', (wchar_t)'L', (wchar_t)'L',
  103. (wchar_t)')',
  104. (wchar_t)0
  105. };
  106. ap->a.a_wide_string = wide_null_string;
  107. }
  108. break;
  109. #endif
  110. case TYPE_POINTER:
  111. ap->a.a_pointer = va_arg (args, void *);
  112. break;
  113. case TYPE_COUNT_SCHAR_POINTER:
  114. ap->a.a_count_schar_pointer = va_arg (args, signed char *);
  115. break;
  116. case TYPE_COUNT_SHORT_POINTER:
  117. ap->a.a_count_short_pointer = va_arg (args, short *);
  118. break;
  119. case TYPE_COUNT_INT_POINTER:
  120. ap->a.a_count_int_pointer = va_arg (args, int *);
  121. break;
  122. case TYPE_COUNT_LONGINT_POINTER:
  123. ap->a.a_count_longint_pointer = va_arg (args, long int *);
  124. break;
  125. #ifdef HAVE_LONG_LONG_INT
  126. case TYPE_COUNT_LONGLONGINT_POINTER:
  127. ap->a.a_count_longlongint_pointer = va_arg (args, long long int *);
  128. break;
  129. #endif
  130. default:
  131. /* Unknown type. */
  132. return -1;
  133. }
  134. return 0;
  135. }