2001-12-17 14:31:42 +00:00
|
|
|
|
/** Implementation of GNUSTEP printf-style formatting
|
2001-02-02 06:14:42 +00:00
|
|
|
|
Copyright (C) 1994-2000, 2001 Free Software Foundation, Inc.
|
2001-02-07 12:31:58 +00:00
|
|
|
|
|
2001-02-02 06:14:42 +00:00
|
|
|
|
Hacked together by Kai Henningsen <kai@cats.ms>
|
|
|
|
|
from the glibc 2.2.1 sources
|
|
|
|
|
_i18n_number.h
|
|
|
|
|
_itowa.h
|
|
|
|
|
itowa-digits.c
|
|
|
|
|
outdigits.h
|
|
|
|
|
outdigitswc.h
|
|
|
|
|
printf-parse.h
|
|
|
|
|
printf.h
|
|
|
|
|
vfprintf.c
|
|
|
|
|
which were contributed by Ulrich Drepper <drepper@gnu.org>, 2000,
|
|
|
|
|
Date: January 2001
|
|
|
|
|
FIXME: I wasn't brave enough to include floating point formatting -
|
|
|
|
|
glibc has CPU dependent routines and also uses gmp. So floating point
|
|
|
|
|
formats (AaFfGgAa) simply use sprintf.
|
|
|
|
|
FIXME: This needs to use length, not '\0', when dealing with format
|
|
|
|
|
and %@
|
|
|
|
|
No register_printf_functions in this thing.
|
|
|
|
|
|
|
|
|
|
This file is part of the GNUstep Base Library.
|
|
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
|
modify it under the terms of the GNU Library General Public
|
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
|
version 2 of the License, or (at your option) any later version.
|
2001-02-07 12:31:58 +00:00
|
|
|
|
|
2001-02-02 06:14:42 +00:00
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
Library General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Library General Public
|
|
|
|
|
License along with this library; if not, write to the Free
|
2005-05-22 03:32:16 +00:00
|
|
|
|
Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111 USA.
|
2001-02-07 12:31:58 +00:00
|
|
|
|
*/
|
2001-02-02 06:14:42 +00:00
|
|
|
|
|
2003-06-07 01:24:41 +00:00
|
|
|
|
#include "config.h"
|
2004-11-01 08:25:04 +00:00
|
|
|
|
|
|
|
|
|
/* We need to define _GNU_SOURCE on systems (SuSE) to get LONG_LONG_MAX. */
|
|
|
|
|
#ifndef _GNU_SOURCE
|
|
|
|
|
#define _GNU_SOURCE
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_STDINT_H
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
#endif
|
|
|
|
|
#include <limits.h>
|
|
|
|
|
|
2001-02-02 06:14:42 +00:00
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <string.h>
|
2003-07-31 23:49:32 +00:00
|
|
|
|
#include "GNUstepBase/preface.h"
|
2003-06-07 01:24:41 +00:00
|
|
|
|
#include "Foundation/NSString.h"
|
|
|
|
|
#include "Foundation/NSArray.h"
|
|
|
|
|
#include "Foundation/NSCharacterSet.h"
|
|
|
|
|
#include "Foundation/NSException.h"
|
|
|
|
|
#include "Foundation/NSValue.h"
|
|
|
|
|
#include "Foundation/NSDictionary.h"
|
|
|
|
|
#include "Foundation/NSUserDefaults.h"
|
|
|
|
|
#include "Foundation/NSFileManager.h"
|
|
|
|
|
#include "Foundation/NSPortCoder.h"
|
|
|
|
|
#include "Foundation/NSPathUtilities.h"
|
|
|
|
|
#include "Foundation/NSRange.h"
|
|
|
|
|
#include "Foundation/NSException.h"
|
|
|
|
|
#include "Foundation/NSData.h"
|
|
|
|
|
#include "Foundation/NSBundle.h"
|
|
|
|
|
#include "Foundation/NSURL.h"
|
|
|
|
|
#include "Foundation/NSMapTable.h"
|
|
|
|
|
#include "Foundation/NSLock.h"
|
|
|
|
|
#include "Foundation/NSZone.h"
|
|
|
|
|
#include "Foundation/NSDebug.h"
|
2003-07-31 23:49:32 +00:00
|
|
|
|
#include "GNUstepBase/GSLocale.h"
|
|
|
|
|
#include "GSFormat.h"
|
2004-02-29 02:57:22 +00:00
|
|
|
|
|
2001-02-02 06:14:42 +00:00
|
|
|
|
#include <string.h> // for strstr()
|
|
|
|
|
#include <sys/stat.h>
|
2002-05-02 21:22:06 +00:00
|
|
|
|
#ifdef HAVE_UNISTD_H
|
2001-02-02 06:14:42 +00:00
|
|
|
|
#include <unistd.h>
|
2002-02-20 06:42:05 +00:00
|
|
|
|
#endif
|
2001-02-02 06:14:42 +00:00
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
#include <stdio.h>
|
2001-02-09 06:58:38 +00:00
|
|
|
|
#ifdef HAVE_WCHAR_H
|
|
|
|
|
#include <wchar.h>
|
|
|
|
|
#else
|
2006-01-26 02:49:59 +00:00
|
|
|
|
typedef uint32_t wint_t;
|
2001-02-09 06:58:38 +00:00
|
|
|
|
#endif
|
2001-10-26 17:57:58 +00:00
|
|
|
|
#ifdef HAVE_SYS_INTTYPES_H
|
|
|
|
|
#include <sys/inttypes.h>
|
|
|
|
|
#endif
|
2005-02-21 14:33:43 +00:00
|
|
|
|
#ifdef HAVE_MALLOC_H
|
|
|
|
|
#include <malloc.h>
|
|
|
|
|
#endif
|
2001-10-26 17:57:58 +00:00
|
|
|
|
#ifndef HAVE_UINTMAX_T
|
2001-02-02 06:14:42 +00:00
|
|
|
|
typedef unsigned long long uintmax_t;
|
|
|
|
|
#endif
|
|
|
|
|
|
2001-10-26 02:16:26 +00:00
|
|
|
|
/* BSD and Solaris have this */
|
2001-10-26 17:57:58 +00:00
|
|
|
|
#if defined(HANDLE_LLONG_MAX) && !defined(HANDLE_LONG_LONG_MAX)
|
2001-10-26 02:16:26 +00:00
|
|
|
|
#define LONG_LONG_MAX LLONG_MAX
|
|
|
|
|
#define LONG_LONG_MIN LLONG_MIN
|
|
|
|
|
#define ULONG_LONG_MAX ULLONG_MAX
|
|
|
|
|
#else
|
2001-10-26 17:57:58 +00:00
|
|
|
|
/* Darwin 1.0 CPP can't handle this */
|
|
|
|
|
#ifndef HANDLE_LONG_LONG_MAX
|
|
|
|
|
#undef LONG_LONG_MAX
|
|
|
|
|
#endif
|
2001-05-23 14:32:56 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2004-11-01 08:25:04 +00:00
|
|
|
|
#if defined(HANDLE_LONG_LONG_MAX) && !defined(LONG_LONG_MAX)
|
|
|
|
|
#error handle_long_long_max defined without long_long_max being defined
|
|
|
|
|
#else
|
|
|
|
|
#if defined(HANDLE_LLONG_MAX) && !defined(LONG_LONG_MAX)
|
|
|
|
|
#error handle_llong_max defined without llong_max being defined
|
|
|
|
|
#endif
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
2003-07-31 23:49:32 +00:00
|
|
|
|
#include "GNUstepBase/Unicode.h"
|
2001-02-02 06:14:42 +00:00
|
|
|
|
|
|
|
|
|
struct printf_info
|
|
|
|
|
{
|
|
|
|
|
int prec; /* Precision. */
|
|
|
|
|
int width; /* Width. */
|
|
|
|
|
unichar spec; /* Format letter. */
|
|
|
|
|
unsigned int is_long_double:1;/* L flag. */
|
|
|
|
|
unsigned int is_short:1; /* h flag. */
|
|
|
|
|
unsigned int is_long:1; /* l flag. */
|
|
|
|
|
unsigned int alt:1; /* # flag. */
|
|
|
|
|
unsigned int space:1; /* Space flag. */
|
|
|
|
|
unsigned int left:1; /* - flag. */
|
|
|
|
|
unsigned int showsign:1; /* + flag. */
|
|
|
|
|
unsigned int group:1; /* ' flag. */
|
|
|
|
|
unsigned int extra:1; /* For special use. */
|
|
|
|
|
unsigned int is_char:1; /* hh flag. */
|
|
|
|
|
unsigned int wide:1; /* Nonzero for wide character streams. */
|
|
|
|
|
unsigned int i18n:1; /* I flag. */
|
|
|
|
|
unichar pad; /* Padding character. */
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* Type of a printf specifier-handler function.
|
2004-05-14 10:52:30 +00:00
|
|
|
|
STREAM is the GSStr on which to write output.
|
2001-02-02 06:14:42 +00:00
|
|
|
|
INFO gives information about the format specification.
|
|
|
|
|
ARGS is a vector of pointers to the argument data;
|
|
|
|
|
the number of pointers will be the number returned
|
|
|
|
|
by the associated arginfo function for the same INFO.
|
|
|
|
|
|
|
|
|
|
The function should return the number of characters written,
|
|
|
|
|
or -1 for errors. */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Type of a printf specifier-arginfo function.
|
|
|
|
|
INFO gives information about the format specification.
|
|
|
|
|
N, ARGTYPES, and return value are as for printf_parse_format. */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Register FUNC to be called to format SPEC specifiers; ARGINFO must be
|
|
|
|
|
specified to determine how many arguments a SPEC conversion requires and
|
|
|
|
|
what their types are. */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Parse FMT, and fill in N elements of ARGTYPES with the
|
|
|
|
|
types needed for the conversions FMT specifies. Returns
|
|
|
|
|
the number of arguments required by FMT.
|
|
|
|
|
|
|
|
|
|
The ARGINFO function registered with a user-defined format is passed a
|
|
|
|
|
`struct printf_info' describing the format spec being parsed. A width
|
|
|
|
|
or precision of INT_MIN means a `*' was used to indicate that the
|
|
|
|
|
width/precision will come from an arg. The function should fill in the
|
|
|
|
|
array it is passed with the types of the arguments it wants, and return
|
|
|
|
|
the number of arguments it wants. */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Codes returned by `parse_printf_format' for basic types.
|
|
|
|
|
|
|
|
|
|
These values cover all the standard format specifications.
|
|
|
|
|
Users can add new values after PA_LAST for their own types. */
|
|
|
|
|
|
|
|
|
|
enum
|
|
|
|
|
{ /* C type: */
|
|
|
|
|
PA_INT, /* int */
|
|
|
|
|
PA_CHAR, /* int, cast to char */
|
|
|
|
|
PA_WCHAR, /* wide char */
|
|
|
|
|
PA_STRING, /* const char *, a '\0'-terminated string */
|
|
|
|
|
PA_WSTRING, /* const wchar_t *, wide character string */
|
|
|
|
|
PA_POINTER, /* void * */
|
|
|
|
|
PA_FLOAT, /* float */
|
|
|
|
|
PA_DOUBLE, /* double */
|
|
|
|
|
PA_OBJECT, /* id */
|
|
|
|
|
PA_LAST
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* Flag bits that can be set in a type returned by `parse_printf_format'. */
|
|
|
|
|
#define PA_FLAG_MASK 0xff00
|
|
|
|
|
#define PA_FLAG_LONG_LONG (1 << 8)
|
|
|
|
|
#define PA_FLAG_LONG_DOUBLE PA_FLAG_LONG_LONG
|
|
|
|
|
#define PA_FLAG_LONG (1 << 9)
|
|
|
|
|
#define PA_FLAG_SHORT (1 << 10)
|
|
|
|
|
#define PA_FLAG_PTR (1 << 11)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Function which can be registered as `printf'-handlers. */
|
|
|
|
|
|
|
|
|
|
/* Print floating point value using using abbreviations for the orders
|
|
|
|
|
of magnitude used for numbers ('k' for kilo, 'm' for mega etc). If
|
|
|
|
|
the format specifier is a uppercase character powers of 1000 are
|
|
|
|
|
used. Otherwise powers of 1024. */
|
|
|
|
|
|
|
|
|
|
/* This is the appropriate argument information function for `printf_size'. */
|
|
|
|
|
|
|
|
|
|
/* Digits. */
|
|
|
|
|
|
|
|
|
|
/* Lower-case digits. */
|
|
|
|
|
const char _itowa_lower_digits[36]
|
|
|
|
|
= "0123456789abcdefghijklmnopqrstuvwxyz";
|
|
|
|
|
/* Upper-case digits. */
|
|
|
|
|
const char _itowa_upper_digits[36]
|
|
|
|
|
= "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* This code is shared between the standard stdio implementation found
|
|
|
|
|
in GNU C library and the libio implementation originally found in
|
|
|
|
|
GNU libg++.
|
|
|
|
|
|
|
|
|
|
Beside this it is also shared between the normal and wide character
|
|
|
|
|
implementation as defined in ISO/IEC 9899:1990/Amendment 1:1995. */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# define ISDIGIT(Ch) ((unsigned int) ((Ch) - '0') < 10)
|
|
|
|
|
|
|
|
|
|
/* Internal function for converting integers to ASCII. */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Convert VALUE into ASCII in base BASE (2..36).
|
|
|
|
|
Write backwards starting the character just before BUFLIM.
|
|
|
|
|
Return the address of the first (left-to-right) character in the number.
|
|
|
|
|
Use upper case letters iff UPPER_CASE is nonzero. */
|
|
|
|
|
|
|
|
|
|
static unichar *_itowa (unsigned long long int value, unichar *buflim,
|
|
|
|
|
unsigned int base, int upper_case)
|
|
|
|
|
{
|
|
|
|
|
const char *digits = (upper_case
|
|
|
|
|
? _itowa_upper_digits : _itowa_lower_digits);
|
|
|
|
|
unichar *bp = buflim;
|
|
|
|
|
|
|
|
|
|
switch (base)
|
|
|
|
|
{
|
|
|
|
|
#define SPECIAL(Base) \
|
|
|
|
|
case Base: \
|
|
|
|
|
do \
|
|
|
|
|
*--bp = digits[value % Base]; \
|
|
|
|
|
while ((value /= Base) != 0); \
|
|
|
|
|
break
|
|
|
|
|
|
|
|
|
|
SPECIAL (10);
|
|
|
|
|
SPECIAL (16);
|
|
|
|
|
SPECIAL (8);
|
|
|
|
|
default:
|
2001-02-07 12:31:58 +00:00
|
|
|
|
do
|
|
|
|
|
*--bp = digits[value % base];
|
|
|
|
|
while ((value /= base) != 0);
|
2001-02-02 06:14:42 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
return bp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline unichar *
|
|
|
|
|
_itowa_word (unsigned long value, unichar *buflim,
|
|
|
|
|
unsigned int base, int upper_case)
|
|
|
|
|
{
|
|
|
|
|
const char *digits = (upper_case
|
|
|
|
|
? _itowa_upper_digits : _itowa_lower_digits);
|
|
|
|
|
unichar *bp = buflim;
|
|
|
|
|
|
|
|
|
|
switch (base)
|
|
|
|
|
{
|
|
|
|
|
#define SPECIAL(Base) \
|
|
|
|
|
case Base: \
|
|
|
|
|
do \
|
|
|
|
|
*--bp = digits[value % Base]; \
|
|
|
|
|
while ((value /= Base) != 0); \
|
|
|
|
|
break
|
|
|
|
|
|
|
|
|
|
SPECIAL (10);
|
|
|
|
|
SPECIAL (16);
|
|
|
|
|
SPECIAL (8);
|
|
|
|
|
default:
|
2001-02-07 12:31:58 +00:00
|
|
|
|
do
|
|
|
|
|
*--bp = digits[value % base];
|
|
|
|
|
while ((value /= base) != 0);
|
2001-02-02 06:14:42 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
return bp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-02-07 12:31:58 +00:00
|
|
|
|
#define PAD(Padchar) \
|
|
|
|
|
{ \
|
|
|
|
|
int w = width; \
|
|
|
|
|
while (w-- > 0) outchar(Padchar); \
|
|
|
|
|
}
|
2001-02-02 06:14:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Look up the value of the next multibyte character and return its numerical
|
|
|
|
|
value if it is one of the digits known in the locale. If *DECIDED is
|
|
|
|
|
-1 this means it is not yet decided which form it is and we have to
|
|
|
|
|
search through all available digits. Otherwise we know which script
|
|
|
|
|
the digits are from. */
|
|
|
|
|
|
|
|
|
|
static unichar *
|
|
|
|
|
_i18n_number_rewrite (unichar *w, unichar *rear_ptr, NSString *locale_digits)
|
|
|
|
|
{
|
2005-02-21 20:27:42 +00:00
|
|
|
|
unichar *src;
|
|
|
|
|
unichar *s;
|
|
|
|
|
unichar buf[10];
|
|
|
|
|
unichar *ld = 0;
|
2001-02-02 06:14:42 +00:00
|
|
|
|
|
|
|
|
|
/* Copy existing string so that nothing gets overwritten. */
|
|
|
|
|
src = (unichar *) alloca ((rear_ptr - w) * sizeof (unichar));
|
2005-02-21 20:27:42 +00:00
|
|
|
|
s = (unichar *) memcpy (src, w, (rear_ptr - w) * sizeof (unichar));
|
2001-02-02 06:14:42 +00:00
|
|
|
|
w = rear_ptr;
|
|
|
|
|
|
|
|
|
|
/* Process all characters in the string. */
|
|
|
|
|
while (--s >= src)
|
|
|
|
|
{
|
|
|
|
|
if (*s >= '0' && *s <= '9')
|
|
|
|
|
{
|
2005-02-21 20:27:42 +00:00
|
|
|
|
if (ld == 0)
|
|
|
|
|
{
|
|
|
|
|
if (!locale_digits || [locale_digits length] != 10)
|
|
|
|
|
{
|
|
|
|
|
locale_digits = @"0123456789";
|
|
|
|
|
}
|
|
|
|
|
[locale_digits getCharacters: buf];
|
|
|
|
|
ld = buf;
|
|
|
|
|
}
|
|
|
|
|
*--w = ld[*s - '0'];
|
2001-02-02 06:14:42 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
2005-02-21 20:27:42 +00:00
|
|
|
|
{
|
|
|
|
|
*--w = *s;
|
|
|
|
|
}
|
2001-02-02 06:14:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return w;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Include the shared code for parsing the format string. */
|
|
|
|
|
/* Internal header for parsing printf format strings. */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
struct printf_spec
|
|
|
|
|
{
|
|
|
|
|
/* Information parsed from the format spec. */
|
|
|
|
|
struct printf_info info;
|
|
|
|
|
|
|
|
|
|
/* Pointers into the format string for the end of this format
|
|
|
|
|
spec and the next (or to the end of the string if no more). */
|
|
|
|
|
const unichar *end_of_fmt, *next_fmt;
|
|
|
|
|
|
|
|
|
|
/* Position of arguments for precision and width, or -1 if `info' has
|
|
|
|
|
the constant value. */
|
|
|
|
|
int prec_arg, width_arg;
|
|
|
|
|
|
|
|
|
|
int data_arg; /* Position of data argument. */
|
|
|
|
|
int data_arg_type; /* Type of first argument. */
|
|
|
|
|
/* Number of arguments consumed by this format specifier. */
|
|
|
|
|
size_t ndata_args;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* The various kinds off arguments that can be passed to printf. */
|
|
|
|
|
union printf_arg
|
|
|
|
|
{
|
|
|
|
|
unsigned char pa_char;
|
|
|
|
|
wchar_t pa_wchar;
|
|
|
|
|
short int pa_short_int;
|
|
|
|
|
int pa_int;
|
|
|
|
|
long int pa_long_int;
|
|
|
|
|
long long int pa_long_long_int;
|
|
|
|
|
unsigned short int pa_u_short_int;
|
|
|
|
|
unsigned int pa_u_int;
|
|
|
|
|
unsigned long int pa_u_long_int;
|
|
|
|
|
unsigned long long int pa_u_long_long_int;
|
|
|
|
|
float pa_float;
|
|
|
|
|
double pa_double;
|
|
|
|
|
long double pa_long_double;
|
|
|
|
|
const char *pa_string;
|
|
|
|
|
const wchar_t *pa_wstring;
|
|
|
|
|
id pa_object;
|
|
|
|
|
void *pa_pointer;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Read a simple integer from a string and update the string pointer.
|
|
|
|
|
It is assumed that the first character is a digit. */
|
|
|
|
|
static inline unsigned int
|
|
|
|
|
read_int (const unichar * *pstr)
|
|
|
|
|
{
|
|
|
|
|
unsigned int retval = **pstr - '0';
|
|
|
|
|
|
|
|
|
|
while (ISDIGIT (*++(*pstr)))
|
|
|
|
|
{
|
|
|
|
|
retval *= 10;
|
|
|
|
|
retval += **pstr - '0';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Find the next spec in FORMAT, or the end of the string. Returns
|
|
|
|
|
a pointer into FORMAT, to a '%' or a '\0'. */
|
|
|
|
|
static inline const unichar *
|
|
|
|
|
find_spec (const unichar *format)
|
|
|
|
|
{
|
|
|
|
|
while (*format && *format != '%') format++;
|
|
|
|
|
return format;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* These are defined in reg-printf.c. */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* FORMAT must point to a '%' at the beginning of a spec. Fills in *SPEC
|
|
|
|
|
with the parsed details. POSN is the number of arguments already
|
|
|
|
|
consumed. At most MAXTYPES - POSN types are filled in TYPES. Return
|
|
|
|
|
the number of args consumed by this spec; *MAX_REF_ARG is updated so it
|
|
|
|
|
remains the highest argument index used. */
|
|
|
|
|
static inline size_t
|
|
|
|
|
parse_one_spec (const unichar *format, size_t posn, struct printf_spec *spec,
|
|
|
|
|
size_t *max_ref_arg)
|
|
|
|
|
{
|
|
|
|
|
unsigned int n;
|
|
|
|
|
size_t nargs = 0;
|
|
|
|
|
|
|
|
|
|
/* Skip the '%'. */
|
|
|
|
|
++format;
|
|
|
|
|
|
|
|
|
|
/* Clear information structure. */
|
|
|
|
|
spec->data_arg = -1;
|
|
|
|
|
spec->info.alt = 0;
|
|
|
|
|
spec->info.space = 0;
|
|
|
|
|
spec->info.left = 0;
|
|
|
|
|
spec->info.showsign = 0;
|
|
|
|
|
spec->info.group = 0;
|
|
|
|
|
spec->info.i18n = 0;
|
|
|
|
|
spec->info.pad = ' ';
|
|
|
|
|
spec->info.wide = sizeof (unichar) > 1;
|
|
|
|
|
|
|
|
|
|
/* Test for positional argument. */
|
|
|
|
|
if (ISDIGIT (*format))
|
|
|
|
|
{
|
|
|
|
|
const unichar *begin = format;
|
|
|
|
|
|
|
|
|
|
n = read_int (&format);
|
|
|
|
|
|
|
|
|
|
if (n > 0 && *format == '$')
|
|
|
|
|
/* Is positional parameter. */
|
|
|
|
|
{
|
|
|
|
|
++format; /* Skip the '$'. */
|
|
|
|
|
spec->data_arg = n - 1;
|
|
|
|
|
*max_ref_arg = MAX (*max_ref_arg, n);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
/* Oops; that was actually the width and/or 0 padding flag.
|
|
|
|
|
Step back and read it again. */
|
|
|
|
|
format = begin;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Check for spec modifiers. */
|
|
|
|
|
do
|
|
|
|
|
{
|
|
|
|
|
switch (*format)
|
|
|
|
|
{
|
|
|
|
|
case ' ':
|
|
|
|
|
/* Output a space in place of a sign, when there is no sign. */
|
|
|
|
|
spec->info.space = 1;
|
|
|
|
|
continue;
|
|
|
|
|
case '+':
|
|
|
|
|
/* Always output + or - for numbers. */
|
|
|
|
|
spec->info.showsign = 1;
|
|
|
|
|
continue;
|
|
|
|
|
case '-':
|
|
|
|
|
/* Left-justify things. */
|
|
|
|
|
spec->info.left = 1;
|
|
|
|
|
continue;
|
|
|
|
|
case '#':
|
|
|
|
|
/* Use the "alternate form":
|
|
|
|
|
Hex has 0x or 0X, FP always has a decimal point. */
|
|
|
|
|
spec->info.alt = 1;
|
|
|
|
|
continue;
|
|
|
|
|
case '0':
|
|
|
|
|
/* Pad with 0s. */
|
|
|
|
|
spec->info.pad = '0';
|
|
|
|
|
continue;
|
|
|
|
|
case '\'':
|
|
|
|
|
/* Show grouping in numbers if the locale information
|
|
|
|
|
indicates any. */
|
|
|
|
|
spec->info.group = 1;
|
|
|
|
|
continue;
|
|
|
|
|
case 'I':
|
|
|
|
|
/* Use the internationalized form of the output. Currently
|
|
|
|
|
means to use the `outdigits' of the current locale. */
|
|
|
|
|
spec->info.i18n = 1;
|
|
|
|
|
continue;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
while (*++format);
|
|
|
|
|
|
|
|
|
|
if (spec->info.left)
|
|
|
|
|
spec->info.pad = ' ';
|
|
|
|
|
|
|
|
|
|
/* Get the field width. */
|
|
|
|
|
spec->width_arg = -1;
|
|
|
|
|
spec->info.width = 0;
|
|
|
|
|
if (*format == '*')
|
|
|
|
|
{
|
|
|
|
|
/* The field width is given in an argument.
|
|
|
|
|
A negative field width indicates left justification. */
|
|
|
|
|
const unichar *begin = ++format;
|
|
|
|
|
|
|
|
|
|
if (ISDIGIT (*format))
|
|
|
|
|
{
|
|
|
|
|
/* The width argument might be found in a positional parameter. */
|
|
|
|
|
n = read_int (&format);
|
|
|
|
|
|
|
|
|
|
if (n > 0 && *format == '$')
|
|
|
|
|
{
|
|
|
|
|
spec->width_arg = n - 1;
|
|
|
|
|
*max_ref_arg = MAX (*max_ref_arg, n);
|
|
|
|
|
++format; /* Skip '$'. */
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (spec->width_arg < 0)
|
|
|
|
|
{
|
|
|
|
|
/* Not in a positional parameter. Consume one argument. */
|
|
|
|
|
spec->width_arg = posn++;
|
|
|
|
|
++nargs;
|
|
|
|
|
format = begin; /* Step back and reread. */
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (ISDIGIT (*format))
|
|
|
|
|
/* Constant width specification. */
|
|
|
|
|
spec->info.width = read_int (&format);
|
|
|
|
|
|
|
|
|
|
/* Get the precision. */
|
|
|
|
|
spec->prec_arg = -1;
|
|
|
|
|
/* -1 means none given; 0 means explicit 0. */
|
|
|
|
|
spec->info.prec = -1;
|
|
|
|
|
if (*format == '.')
|
|
|
|
|
{
|
|
|
|
|
++format;
|
|
|
|
|
if (*format == '*')
|
|
|
|
|
{
|
|
|
|
|
/* The precision is given in an argument. */
|
|
|
|
|
const unichar *begin = ++format;
|
|
|
|
|
|
|
|
|
|
if (ISDIGIT (*format))
|
|
|
|
|
{
|
|
|
|
|
n = read_int (&format);
|
|
|
|
|
|
|
|
|
|
if (n > 0 && *format == '$')
|
|
|
|
|
{
|
|
|
|
|
spec->prec_arg = n - 1;
|
|
|
|
|
*max_ref_arg = MAX (*max_ref_arg, n);
|
|
|
|
|
++format;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (spec->prec_arg < 0)
|
|
|
|
|
{
|
|
|
|
|
/* Not in a positional parameter. */
|
|
|
|
|
spec->prec_arg = posn++;
|
|
|
|
|
++nargs;
|
|
|
|
|
format = begin;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (ISDIGIT (*format))
|
|
|
|
|
spec->info.prec = read_int (&format);
|
|
|
|
|
else
|
|
|
|
|
/* "%.?" is treated like "%.0?". */
|
|
|
|
|
spec->info.prec = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Check for type modifiers. */
|
|
|
|
|
spec->info.is_long_double = 0;
|
|
|
|
|
spec->info.is_short = 0;
|
|
|
|
|
spec->info.is_long = 0;
|
|
|
|
|
spec->info.is_char = 0;
|
|
|
|
|
|
|
|
|
|
switch (*format++)
|
|
|
|
|
{
|
|
|
|
|
case 'h':
|
|
|
|
|
/* ints are short ints or chars. */
|
|
|
|
|
if (*format != 'h')
|
|
|
|
|
spec->info.is_short = 1;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
++format;
|
|
|
|
|
spec->info.is_char = 1;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 'l':
|
|
|
|
|
/* ints are long ints. */
|
|
|
|
|
spec->info.is_long = 1;
|
|
|
|
|
if (*format != 'l')
|
|
|
|
|
break;
|
|
|
|
|
++format;
|
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
|
case 'L':
|
|
|
|
|
/* doubles are long doubles, and ints are long long ints. */
|
|
|
|
|
case 'q':
|
|
|
|
|
/* 4.4 uses this for long long. */
|
|
|
|
|
spec->info.is_long_double = 1;
|
|
|
|
|
break;
|
|
|
|
|
case 'z':
|
|
|
|
|
case 'Z':
|
|
|
|
|
/* ints are size_ts. */
|
2001-05-25 15:59:06 +00:00
|
|
|
|
NSCParameterAssert (sizeof (size_t) <= sizeof (unsigned long long int));
|
2001-05-17 14:54:47 +00:00
|
|
|
|
#if defined(LONG_LONG_MAX)
|
2001-02-02 06:14:42 +00:00
|
|
|
|
#if LONG_MAX != LONG_LONG_MAX
|
|
|
|
|
spec->info.is_long_double = sizeof (size_t) > sizeof (unsigned long int);
|
2001-05-17 14:54:47 +00:00
|
|
|
|
#endif
|
2001-02-02 06:14:42 +00:00
|
|
|
|
#endif
|
|
|
|
|
spec->info.is_long = sizeof (size_t) > sizeof (unsigned int);
|
|
|
|
|
break;
|
|
|
|
|
case 't':
|
2001-05-25 15:59:06 +00:00
|
|
|
|
NSCParameterAssert (sizeof (ptrdiff_t) <= sizeof (long long int));
|
2001-05-17 14:54:47 +00:00
|
|
|
|
#if defined(LONG_LONG_MAX)
|
2001-02-02 06:14:42 +00:00
|
|
|
|
#if LONG_MAX != LONG_LONG_MAX
|
|
|
|
|
spec->info.is_long_double = (sizeof (ptrdiff_t) > sizeof (long int));
|
2001-05-17 14:54:47 +00:00
|
|
|
|
#endif
|
2001-02-02 06:14:42 +00:00
|
|
|
|
#endif
|
|
|
|
|
spec->info.is_long = sizeof (ptrdiff_t) > sizeof (int);
|
|
|
|
|
break;
|
|
|
|
|
case 'j':
|
2001-05-25 15:59:06 +00:00
|
|
|
|
NSCParameterAssert (sizeof (uintmax_t) <= sizeof (unsigned long long int));
|
2001-05-17 14:54:47 +00:00
|
|
|
|
#if defined(LONG_LONG_MAX)
|
2001-02-02 06:14:42 +00:00
|
|
|
|
#if LONG_MAX != LONG_LONG_MAX
|
|
|
|
|
spec->info.is_long_double = (sizeof (uintmax_t)
|
|
|
|
|
> sizeof (unsigned long int));
|
2001-05-17 14:54:47 +00:00
|
|
|
|
#endif
|
2001-02-02 06:14:42 +00:00
|
|
|
|
#endif
|
|
|
|
|
spec->info.is_long = sizeof (uintmax_t) > sizeof (unsigned int);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
/* Not a recognized modifier. Backup. */
|
|
|
|
|
--format;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Get the format specification. */
|
|
|
|
|
spec->info.spec = (unichar) *format++;
|
|
|
|
|
{
|
|
|
|
|
/* Find the data argument types of a built-in spec. */
|
|
|
|
|
spec->ndata_args = 1;
|
|
|
|
|
|
|
|
|
|
switch (spec->info.spec)
|
|
|
|
|
{
|
|
|
|
|
case 'i':
|
|
|
|
|
case 'd':
|
|
|
|
|
case 'u':
|
|
|
|
|
case 'o':
|
|
|
|
|
case 'X':
|
|
|
|
|
case 'x':
|
2001-05-17 14:54:47 +00:00
|
|
|
|
#if defined(LONG_LONG_MAX)
|
2001-02-02 06:14:42 +00:00
|
|
|
|
#if LONG_MAX != LONG_LONG_MAX
|
|
|
|
|
if (spec->info.is_long_double)
|
|
|
|
|
spec->data_arg_type = PA_INT|PA_FLAG_LONG_LONG;
|
|
|
|
|
else
|
2001-05-17 14:54:47 +00:00
|
|
|
|
#endif
|
2001-02-02 06:14:42 +00:00
|
|
|
|
#endif
|
|
|
|
|
if (spec->info.is_long)
|
|
|
|
|
spec->data_arg_type = PA_INT|PA_FLAG_LONG;
|
|
|
|
|
else if (spec->info.is_short)
|
|
|
|
|
spec->data_arg_type = PA_INT|PA_FLAG_SHORT;
|
|
|
|
|
else if (spec->info.is_char)
|
|
|
|
|
spec->data_arg_type = PA_CHAR;
|
|
|
|
|
else
|
|
|
|
|
spec->data_arg_type = PA_INT;
|
|
|
|
|
break;
|
|
|
|
|
case 'e':
|
|
|
|
|
case 'E':
|
|
|
|
|
case 'f':
|
|
|
|
|
case 'F':
|
|
|
|
|
case 'g':
|
|
|
|
|
case 'G':
|
|
|
|
|
case 'a':
|
|
|
|
|
case 'A':
|
|
|
|
|
if (spec->info.is_long_double)
|
|
|
|
|
spec->data_arg_type = PA_DOUBLE|PA_FLAG_LONG_DOUBLE;
|
|
|
|
|
else
|
|
|
|
|
spec->data_arg_type = PA_DOUBLE;
|
|
|
|
|
break;
|
|
|
|
|
case 'c':
|
|
|
|
|
spec->data_arg_type = PA_CHAR;
|
|
|
|
|
break;
|
|
|
|
|
case 'C':
|
|
|
|
|
spec->data_arg_type = PA_WCHAR;
|
|
|
|
|
break;
|
|
|
|
|
case 's':
|
|
|
|
|
spec->data_arg_type = PA_STRING;
|
|
|
|
|
break;
|
|
|
|
|
case 'S':
|
|
|
|
|
spec->data_arg_type = PA_WSTRING;
|
|
|
|
|
break;
|
|
|
|
|
case '@':
|
|
|
|
|
spec->data_arg_type = PA_OBJECT;
|
|
|
|
|
break;
|
|
|
|
|
case 'p':
|
|
|
|
|
spec->data_arg_type = PA_POINTER;
|
|
|
|
|
break;
|
|
|
|
|
case 'n':
|
|
|
|
|
spec->data_arg_type = PA_INT|PA_FLAG_PTR;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'm':
|
|
|
|
|
default:
|
|
|
|
|
/* An unknown spec will consume no args. */
|
|
|
|
|
spec->ndata_args = 0;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (spec->data_arg == -1 && spec->ndata_args > 0)
|
|
|
|
|
{
|
|
|
|
|
/* There are args consumed, but no positional spec. Use the
|
|
|
|
|
next sequential arg position. */
|
|
|
|
|
spec->data_arg = posn;
|
|
|
|
|
nargs += spec->ndata_args;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (spec->info.spec == '\0')
|
|
|
|
|
/* Format ended before this spec was complete. */
|
|
|
|
|
spec->end_of_fmt = spec->next_fmt = format - 1;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* Find the next format spec. */
|
|
|
|
|
spec->end_of_fmt = format;
|
|
|
|
|
spec->next_fmt = find_spec (format);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return nargs;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-05-14 10:52:30 +00:00
|
|
|
|
#define outchar(Ch) GSStrAppendUnichar(s, Ch)
|
|
|
|
|
#define outstring(String, Len) GSStrAppendUnichars(s, String, Len)
|
2001-02-02 06:14:42 +00:00
|
|
|
|
|
|
|
|
|
/* For handling long_double and longlong we use the same flag. If
|
|
|
|
|
`long' and `long long' are effectively the same type define it to
|
|
|
|
|
zero. */
|
2001-05-17 14:54:47 +00:00
|
|
|
|
#if defined(LONG_LONG_MAX)
|
2001-02-02 06:14:42 +00:00
|
|
|
|
#if LONG_MAX == LONG_LONG_MAX
|
|
|
|
|
# define is_longlong 0
|
|
|
|
|
#else
|
|
|
|
|
# define is_longlong is_long_double
|
|
|
|
|
#endif
|
2001-05-17 14:54:47 +00:00
|
|
|
|
#else
|
|
|
|
|
# define is_longlong 0
|
|
|
|
|
#endif
|
2001-02-02 06:14:42 +00:00
|
|
|
|
|
|
|
|
|
/* If `long' and `int' is effectively the same type we don't have to
|
|
|
|
|
handle `long separately. */
|
|
|
|
|
#if INT_MAX == LONG_MAX
|
|
|
|
|
# define is_long_num 0
|
|
|
|
|
#else
|
|
|
|
|
# define is_long_num is_long
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Global variables. */
|
|
|
|
|
static const unichar null[] = {'(','n','u','l','l',')','\0'};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Handle unknown format specifier. */
|
2004-05-14 10:52:30 +00:00
|
|
|
|
static int printf_unknown (GSStr, const struct printf_info *,
|
2001-02-02 06:14:42 +00:00
|
|
|
|
const void *const *);
|
|
|
|
|
|
|
|
|
|
/* Group digits of number string. */
|
|
|
|
|
static unichar *group_number (unichar *, unichar *, const char *, NSString *);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* The function itself. */
|
|
|
|
|
void
|
2004-05-14 10:52:30 +00:00
|
|
|
|
GSFormat (GSStr s, const unichar *format, va_list ap,
|
2001-02-02 06:14:42 +00:00
|
|
|
|
NSDictionary *locale)
|
|
|
|
|
{
|
|
|
|
|
/* The character used as thousands separator. */
|
|
|
|
|
NSString *thousands_sep = @"";
|
|
|
|
|
|
|
|
|
|
/* The string describing the size of groups of digits. */
|
|
|
|
|
const char *grouping;
|
|
|
|
|
|
|
|
|
|
/* Place to accumulate the result. */
|
|
|
|
|
int done;
|
|
|
|
|
|
|
|
|
|
/* Current character in format string. */
|
|
|
|
|
const unichar *f;
|
|
|
|
|
|
|
|
|
|
/* End of leading constant string. */
|
|
|
|
|
const unichar *lead_str_end;
|
|
|
|
|
|
|
|
|
|
/* Points to next format specifier. */
|
|
|
|
|
|
|
|
|
|
/* Buffer intermediate results. */
|
|
|
|
|
unichar work_buffer[1000];
|
|
|
|
|
unichar *workend;
|
|
|
|
|
|
|
|
|
|
/* State for restartable multibyte character handling functions. */
|
|
|
|
|
|
|
|
|
|
/* We have to save the original argument pointer. */
|
|
|
|
|
va_list ap_save;
|
|
|
|
|
|
|
|
|
|
/* Count number of specifiers we already processed. */
|
|
|
|
|
int nspecs_done;
|
|
|
|
|
|
|
|
|
|
/* For the %m format we may need the current `errno' value. */
|
|
|
|
|
int save_errno = errno;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* This table maps a character into a number representing a
|
|
|
|
|
class. In each step there is a destination label for each
|
|
|
|
|
class. */
|
|
|
|
|
static const int jump_table[] =
|
|
|
|
|
{
|
|
|
|
|
/* ' ' */ 1, 0, 0, /* '#' */ 4,
|
|
|
|
|
0, /* '%' */ 14, 0, /* '\''*/ 6,
|
|
|
|
|
0, 0, /* '*' */ 7, /* '+' */ 2,
|
|
|
|
|
0, /* '-' */ 3, /* '.' */ 9, 0,
|
|
|
|
|
/* '0' */ 5, /* '1' */ 8, /* '2' */ 8, /* '3' */ 8,
|
|
|
|
|
/* '4' */ 8, /* '5' */ 8, /* '6' */ 8, /* '7' */ 8,
|
|
|
|
|
/* '8' */ 8, /* '9' */ 8, 0, 0,
|
|
|
|
|
0, 0, 0, 0,
|
|
|
|
|
/* '@' */ 30, /* 'A' */ 26, 0, /* 'C' */ 25,
|
|
|
|
|
0, /* 'E' */ 19, /* F */ 19, /* 'G' */ 19,
|
|
|
|
|
0, /* 'I' */ 29, 0, 0,
|
|
|
|
|
/* 'L' */ 12, 0, 0, 0,
|
|
|
|
|
0, 0, 0, /* 'S' */ 21,
|
|
|
|
|
0, 0, 0, 0,
|
|
|
|
|
/* 'X' */ 18, 0, /* 'Z' */ 13, 0,
|
|
|
|
|
0, 0, 0, 0,
|
|
|
|
|
0, /* 'a' */ 26, 0, /* 'c' */ 20,
|
|
|
|
|
/* 'd' */ 15, /* 'e' */ 19, /* 'f' */ 19, /* 'g' */ 19,
|
|
|
|
|
/* 'h' */ 10, /* 'i' */ 15, /* 'j' */ 28, 0,
|
|
|
|
|
/* 'l' */ 11, /* 'm' */ 24, /* 'n' */ 23, /* 'o' */ 17,
|
|
|
|
|
/* 'p' */ 22, /* 'q' */ 12, 0, /* 's' */ 21,
|
|
|
|
|
/* 't' */ 27, /* 'u' */ 16, 0, 0,
|
|
|
|
|
/* 'x' */ 18, 0, /* 'z' */ 13
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#define NOT_IN_JUMP_RANGE(Ch) ((Ch) < ' ' || (Ch) > 'z')
|
|
|
|
|
#define CHAR_CLASS(Ch) (jump_table[(wint_t) (Ch) - ' '])
|
|
|
|
|
# define JUMP_TABLE_TYPE const void *const
|
|
|
|
|
|
|
|
|
|
/* Initialize local variables. */
|
|
|
|
|
done = 0;
|
|
|
|
|
grouping = (const char *) -1;
|
|
|
|
|
#ifdef __va_copy
|
|
|
|
|
/* This macro will be available soon in gcc's <stdarg.h>. We need it
|
|
|
|
|
since on some systems `va_list' is not an integral type. */
|
|
|
|
|
__va_copy (ap_save, ap);
|
|
|
|
|
#else
|
|
|
|
|
ap_save = ap;
|
|
|
|
|
#endif
|
|
|
|
|
nspecs_done = 0;
|
|
|
|
|
|
|
|
|
|
/* Find the first format specifier. */
|
|
|
|
|
f = lead_str_end = find_spec ((const unichar *) format);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Write the literal text before the first format. */
|
|
|
|
|
outstring ((const unichar *) format,
|
|
|
|
|
lead_str_end - (const unichar *) format);
|
|
|
|
|
|
|
|
|
|
/* If we only have to print a simple string, return now. */
|
|
|
|
|
if (*f == '\0')
|
|
|
|
|
goto all_done;
|
|
|
|
|
|
|
|
|
|
/* Process whole format string. */
|
|
|
|
|
|
|
|
|
|
workend = &work_buffer[sizeof (work_buffer) / sizeof (unichar)];
|
|
|
|
|
|
|
|
|
|
/* Here starts the more complex loop to handle positional parameters. */
|
|
|
|
|
{
|
|
|
|
|
/* Array with information about the needed arguments. This has to
|
|
|
|
|
be dynamically extensible. */
|
|
|
|
|
size_t nspecs = 0;
|
|
|
|
|
size_t nspecs_max = 32; /* A more or less arbitrary start value. */
|
|
|
|
|
struct printf_spec *specs
|
|
|
|
|
= alloca (nspecs_max * sizeof (struct printf_spec));
|
|
|
|
|
|
|
|
|
|
/* The number of arguments the format string requests. This will
|
|
|
|
|
determine the size of the array needed to store the argument
|
|
|
|
|
attributes. */
|
|
|
|
|
size_t nargs = 0;
|
|
|
|
|
int *args_type;
|
|
|
|
|
union printf_arg *args_value = NULL;
|
|
|
|
|
|
|
|
|
|
/* Positional parameters refer to arguments directly. This could
|
|
|
|
|
also determine the maximum number of arguments. Track the
|
|
|
|
|
maximum number. */
|
|
|
|
|
size_t max_ref_arg = 0;
|
|
|
|
|
|
|
|
|
|
/* Just a counter. */
|
|
|
|
|
size_t cnt;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (grouping == (const char *) -1)
|
|
|
|
|
{
|
|
|
|
|
thousands_sep = [locale objectForKey: NSThousandsSeparator];
|
2003-05-12 19:23:02 +00:00
|
|
|
|
if (thousands_sep == nil) thousands_sep = @",";
|
2001-02-02 06:14:42 +00:00
|
|
|
|
|
|
|
|
|
grouping = ""; // FIXME: grouping info missing in locale?
|
|
|
|
|
if (*grouping == '\0' || *grouping == CHAR_MAX)
|
|
|
|
|
grouping = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (f = lead_str_end; *f != '\0'; f = specs[nspecs++].next_fmt)
|
|
|
|
|
{
|
|
|
|
|
if (nspecs >= nspecs_max)
|
|
|
|
|
{
|
|
|
|
|
/* Extend the array of format specifiers. */
|
|
|
|
|
struct printf_spec *old = specs;
|
|
|
|
|
|
|
|
|
|
nspecs_max *= 2;
|
|
|
|
|
specs = alloca (nspecs_max * sizeof (struct printf_spec));
|
|
|
|
|
|
|
|
|
|
if (specs == &old[nspecs])
|
|
|
|
|
/* Stack grows up, OLD was the last thing allocated;
|
|
|
|
|
extend it. */
|
|
|
|
|
nspecs_max += nspecs_max / 2;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* Copy the old array's elements to the new space. */
|
|
|
|
|
memcpy (specs, old, nspecs * sizeof (struct printf_spec));
|
|
|
|
|
if (old == &specs[nspecs])
|
|
|
|
|
/* Stack grows down, OLD was just below the new
|
|
|
|
|
SPECS. We can use that space when the new space
|
|
|
|
|
runs out. */
|
|
|
|
|
nspecs_max += nspecs_max / 2;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Parse the format specifier. */
|
|
|
|
|
nargs += parse_one_spec (f, nargs, &specs[nspecs], &max_ref_arg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Determine the number of arguments the format string consumes. */
|
|
|
|
|
nargs = MAX (nargs, max_ref_arg);
|
|
|
|
|
|
|
|
|
|
/* Allocate memory for the argument descriptions. */
|
|
|
|
|
args_type = alloca (nargs * sizeof (int));
|
|
|
|
|
memset (args_type, 0, nargs * sizeof (int));
|
|
|
|
|
args_value = alloca (nargs * sizeof (union printf_arg));
|
|
|
|
|
|
|
|
|
|
/* XXX Could do sanity check here: If any element in ARGS_TYPE is
|
|
|
|
|
still zero after this loop, format is invalid. For now we
|
|
|
|
|
simply use 0 as the value. */
|
|
|
|
|
|
|
|
|
|
/* Fill in the types of all the arguments. */
|
|
|
|
|
for (cnt = 0; cnt < nspecs; ++cnt)
|
|
|
|
|
{
|
|
|
|
|
/* If the width is determined by an argument this is an int. */
|
|
|
|
|
if (specs[cnt].width_arg != -1)
|
|
|
|
|
args_type[specs[cnt].width_arg] = PA_INT;
|
|
|
|
|
|
|
|
|
|
/* If the precision is determined by an argument this is an int. */
|
|
|
|
|
if (specs[cnt].prec_arg != -1)
|
|
|
|
|
args_type[specs[cnt].prec_arg] = PA_INT;
|
|
|
|
|
|
|
|
|
|
switch (specs[cnt].ndata_args)
|
|
|
|
|
{
|
|
|
|
|
case 0: /* No arguments. */
|
|
|
|
|
break;
|
|
|
|
|
case 1: /* One argument; we already have the type. */
|
|
|
|
|
args_type[specs[cnt].data_arg] = specs[cnt].data_arg_type;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
/* ??? */
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Now we know all the types and the order. Fill in the argument
|
|
|
|
|
values. */
|
|
|
|
|
for (cnt = 0; cnt < nargs; ++cnt)
|
|
|
|
|
switch (args_type[cnt])
|
|
|
|
|
{
|
|
|
|
|
#define T(tag, mem, type) \
|
|
|
|
|
case tag: \
|
|
|
|
|
args_value[cnt].mem = va_arg (ap_save, type); \
|
|
|
|
|
break
|
|
|
|
|
|
|
|
|
|
T (PA_CHAR, pa_char, int); /* Promoted. */
|
2004-12-08 16:22:51 +00:00
|
|
|
|
T (PA_WCHAR, pa_wchar, int); /* Sometimes promoted. */
|
2001-02-02 06:14:42 +00:00
|
|
|
|
T (PA_INT|PA_FLAG_SHORT, pa_short_int, int); /* Promoted. */
|
|
|
|
|
T (PA_INT, pa_int, int);
|
|
|
|
|
T (PA_INT|PA_FLAG_LONG, pa_long_int, long int);
|
|
|
|
|
T (PA_INT|PA_FLAG_LONG_LONG, pa_long_long_int, long long int);
|
|
|
|
|
T (PA_FLOAT, pa_float, double); /* Promoted. */
|
|
|
|
|
T (PA_DOUBLE, pa_double, double);
|
|
|
|
|
T (PA_DOUBLE|PA_FLAG_LONG_DOUBLE, pa_long_double, long double);
|
|
|
|
|
T (PA_STRING, pa_string, const char *);
|
|
|
|
|
T (PA_WSTRING, pa_wstring, const wchar_t *);
|
|
|
|
|
T (PA_OBJECT, pa_object, id);
|
|
|
|
|
T (PA_POINTER, pa_pointer, void *);
|
|
|
|
|
#undef T
|
|
|
|
|
default:
|
|
|
|
|
if ((args_type[cnt] & PA_FLAG_PTR) != 0)
|
|
|
|
|
args_value[cnt].pa_pointer = va_arg (ap_save, void *);
|
|
|
|
|
else
|
|
|
|
|
args_value[cnt].pa_long_double = 0.0;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Now walk through all format specifiers and process them. */
|
|
|
|
|
for (; (size_t) nspecs_done < nspecs; ++nspecs_done)
|
|
|
|
|
{
|
|
|
|
|
# define REF(Name) &&do2_##Name
|
|
|
|
|
#define LABEL(Name) do2_##Name
|
2001-02-07 12:31:58 +00:00
|
|
|
|
/* Step 4: processing format specifier. */
|
|
|
|
|
static JUMP_TABLE_TYPE step4_jumps[31] =
|
|
|
|
|
{
|
|
|
|
|
REF (form_unknown),
|
|
|
|
|
REF (form_unknown), /* for ' ' */
|
|
|
|
|
REF (form_unknown), /* for '+' */
|
|
|
|
|
REF (form_unknown), /* for '-' */
|
|
|
|
|
REF (form_unknown), /* for '<hash>' */
|
|
|
|
|
REF (form_unknown), /* for '0' */
|
|
|
|
|
REF (form_unknown), /* for '\'' */
|
|
|
|
|
REF (form_unknown), /* for '*' */
|
|
|
|
|
REF (form_unknown), /* for '1'...'9' */
|
|
|
|
|
REF (form_unknown), /* for '.' */
|
|
|
|
|
REF (form_unknown), /* for 'h' */
|
|
|
|
|
REF (form_unknown), /* for 'l' */
|
|
|
|
|
REF (form_unknown), /* for 'L', 'q' */
|
|
|
|
|
REF (form_unknown), /* for 'z', 'Z' */
|
|
|
|
|
REF (form_percent), /* for '%' */
|
|
|
|
|
REF (form_integer), /* for 'd', 'i' */
|
|
|
|
|
REF (form_unsigned), /* for 'u' */
|
|
|
|
|
REF (form_octal), /* for 'o' */
|
|
|
|
|
REF (form_hexa), /* for 'X', 'x' */
|
|
|
|
|
REF (form_float), /* for 'E', 'e', 'F', 'f', 'G', 'g' */
|
|
|
|
|
REF (form_character), /* for 'c' */
|
|
|
|
|
REF (form_string), /* for 's', 'S' */
|
|
|
|
|
REF (form_pointer), /* for 'p' */
|
|
|
|
|
REF (form_number), /* for 'n' */
|
|
|
|
|
REF (form_strerror), /* for 'm' */
|
|
|
|
|
REF (form_wcharacter), /* for 'C' */
|
|
|
|
|
REF (form_floathex), /* for 'A', 'a' */
|
|
|
|
|
REF (form_unknown), /* for 't' */
|
|
|
|
|
REF (form_unknown), /* for 'j' */
|
|
|
|
|
REF (form_unknown), /* for 'I' */
|
2001-02-02 06:14:42 +00:00
|
|
|
|
REF (form_object) /* for '@' */
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
int is_negative;
|
|
|
|
|
union
|
|
|
|
|
{
|
|
|
|
|
unsigned long long int longlong;
|
|
|
|
|
unsigned long int word;
|
|
|
|
|
} number;
|
|
|
|
|
int base;
|
|
|
|
|
unichar *string; /* Pointer to argument string. */
|
|
|
|
|
|
|
|
|
|
/* Fill variables from values in struct. */
|
|
|
|
|
int alt = specs[nspecs_done].info.alt;
|
|
|
|
|
int space = specs[nspecs_done].info.space;
|
|
|
|
|
int left = specs[nspecs_done].info.left;
|
|
|
|
|
int showsign = specs[nspecs_done].info.showsign;
|
|
|
|
|
int group = specs[nspecs_done].info.group;
|
2002-05-08 05:43:15 +00:00
|
|
|
|
#if defined(LONG_LONG_MAX) && (LONG_MAX != LONG_LONG_MAX)
|
2001-02-02 06:14:42 +00:00
|
|
|
|
int is_long_double = specs[nspecs_done].info.is_long_double;
|
2002-05-08 05:43:15 +00:00
|
|
|
|
#endif
|
2001-02-02 06:14:42 +00:00
|
|
|
|
int is_short = specs[nspecs_done].info.is_short;
|
|
|
|
|
int is_char = specs[nspecs_done].info.is_char;
|
|
|
|
|
int is_long = specs[nspecs_done].info.is_long;
|
|
|
|
|
int width = specs[nspecs_done].info.width;
|
|
|
|
|
int prec = specs[nspecs_done].info.prec;
|
|
|
|
|
int use_outdigits = specs[nspecs_done].info.i18n;
|
|
|
|
|
char pad = specs[nspecs_done].info.pad;
|
|
|
|
|
unichar spec = specs[nspecs_done].info.spec;
|
|
|
|
|
|
|
|
|
|
/* Fill in last information. */
|
|
|
|
|
if (specs[nspecs_done].width_arg != -1)
|
|
|
|
|
{
|
|
|
|
|
/* Extract the field width from an argument. */
|
|
|
|
|
specs[nspecs_done].info.width =
|
|
|
|
|
args_value[specs[nspecs_done].width_arg].pa_int;
|
|
|
|
|
|
|
|
|
|
if (specs[nspecs_done].info.width < 0)
|
|
|
|
|
/* If the width value is negative left justification is
|
|
|
|
|
selected and the value is taken as being positive. */
|
|
|
|
|
{
|
|
|
|
|
specs[nspecs_done].info.width *= -1;
|
|
|
|
|
left = specs[nspecs_done].info.left = 1;
|
|
|
|
|
}
|
|
|
|
|
width = specs[nspecs_done].info.width;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (specs[nspecs_done].prec_arg != -1)
|
|
|
|
|
{
|
|
|
|
|
/* Extract the precision from an argument. */
|
|
|
|
|
specs[nspecs_done].info.prec =
|
|
|
|
|
args_value[specs[nspecs_done].prec_arg].pa_int;
|
|
|
|
|
|
|
|
|
|
if (specs[nspecs_done].info.prec < 0)
|
|
|
|
|
/* If the precision is negative the precision is
|
|
|
|
|
omitted. */
|
|
|
|
|
specs[nspecs_done].info.prec = -1;
|
|
|
|
|
|
|
|
|
|
prec = specs[nspecs_done].info.prec;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Maybe the buffer is too small. */
|
2003-01-03 20:14:47 +00:00
|
|
|
|
if ((unsigned)(MAX (prec, width) + 32)
|
|
|
|
|
> sizeof (work_buffer) / sizeof (unichar))
|
|
|
|
|
{
|
|
|
|
|
workend = ((unichar *) alloca ((MAX (prec, width) + 32)
|
|
|
|
|
* sizeof (unichar)) + (MAX (prec, width) + 32));
|
|
|
|
|
}
|
2001-02-02 06:14:42 +00:00
|
|
|
|
|
|
|
|
|
/* Process format specifiers. */
|
|
|
|
|
while (1)
|
|
|
|
|
{
|
2001-02-07 18:17:41 +00:00
|
|
|
|
int string_malloced;
|
2001-02-07 12:31:58 +00:00
|
|
|
|
do
|
|
|
|
|
{
|
|
|
|
|
const void *ptr;
|
|
|
|
|
ptr = NOT_IN_JUMP_RANGE (spec) ? REF (form_unknown)
|
|
|
|
|
: step4_jumps[CHAR_CLASS (spec)];
|
|
|
|
|
goto *ptr;
|
|
|
|
|
}
|
2001-02-02 06:14:42 +00:00
|
|
|
|
while (0);
|
|
|
|
|
|
2001-02-07 12:31:58 +00:00
|
|
|
|
/* Start real work. We know about all flags and modifiers and
|
|
|
|
|
now process the wanted format specifier. */
|
|
|
|
|
LABEL (form_percent):
|
|
|
|
|
/* Write a literal "%". */
|
|
|
|
|
outchar ('%');
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
LABEL (form_integer):
|
|
|
|
|
/* Signed decimal integer. */
|
|
|
|
|
base = 10;
|
|
|
|
|
|
|
|
|
|
if (is_longlong)
|
|
|
|
|
{
|
|
|
|
|
long long int signed_number;
|
|
|
|
|
|
2001-11-12 12:09:40 +00:00
|
|
|
|
signed_number
|
|
|
|
|
= args_value[specs[nspecs_done].data_arg].pa_long_long_int;
|
2001-02-07 12:31:58 +00:00
|
|
|
|
|
|
|
|
|
is_negative = signed_number < 0;
|
|
|
|
|
number.longlong = is_negative ? (- signed_number) : signed_number;
|
|
|
|
|
|
|
|
|
|
goto LABEL (longlong_number);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
long int signed_number;
|
|
|
|
|
|
2001-11-12 12:09:40 +00:00
|
|
|
|
if (is_char)
|
|
|
|
|
{
|
|
|
|
|
signed_number = args_value[specs[nspecs_done].data_arg].pa_char;
|
|
|
|
|
}
|
|
|
|
|
else if (is_short)
|
|
|
|
|
{
|
|
|
|
|
signed_number
|
|
|
|
|
= args_value[specs[nspecs_done].data_arg].pa_short_int;
|
|
|
|
|
}
|
|
|
|
|
else if (is_long_num)
|
|
|
|
|
{
|
|
|
|
|
signed_number
|
|
|
|
|
= args_value[specs[nspecs_done].data_arg].pa_long_int;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2001-02-07 12:31:58 +00:00
|
|
|
|
signed_number = args_value[specs[nspecs_done].data_arg].pa_int;
|
2001-11-12 12:09:40 +00:00
|
|
|
|
}
|
2001-02-07 12:31:58 +00:00
|
|
|
|
|
|
|
|
|
is_negative = signed_number < 0;
|
|
|
|
|
number.word = is_negative ? (- signed_number) : signed_number;
|
|
|
|
|
|
|
|
|
|
goto LABEL (number);
|
|
|
|
|
}
|
|
|
|
|
/* NOTREACHED */
|
|
|
|
|
|
|
|
|
|
LABEL (form_unsigned):
|
|
|
|
|
/* Unsigned decimal integer. */
|
|
|
|
|
base = 10;
|
|
|
|
|
goto LABEL (unsigned_number);
|
|
|
|
|
/* NOTREACHED */
|
|
|
|
|
|
|
|
|
|
LABEL (form_octal):
|
|
|
|
|
/* Unsigned octal integer. */
|
|
|
|
|
base = 8;
|
|
|
|
|
goto LABEL (unsigned_number);
|
|
|
|
|
/* NOTREACHED */
|
|
|
|
|
|
|
|
|
|
LABEL (form_hexa):
|
|
|
|
|
/* Unsigned hexadecimal integer. */
|
|
|
|
|
base = 16;
|
|
|
|
|
|
|
|
|
|
LABEL (unsigned_number): /* Unsigned number of base BASE. */
|
|
|
|
|
|
|
|
|
|
/* ISO specifies the `+' and ` ' flags only for signed
|
|
|
|
|
conversions. */
|
|
|
|
|
is_negative = 0;
|
|
|
|
|
showsign = 0;
|
|
|
|
|
space = 0;
|
|
|
|
|
|
|
|
|
|
if (is_longlong)
|
|
|
|
|
{
|
2001-11-12 12:09:40 +00:00
|
|
|
|
number.longlong
|
|
|
|
|
= args_value[specs[nspecs_done].data_arg].pa_u_long_long_int;
|
2001-02-07 12:31:58 +00:00
|
|
|
|
|
|
|
|
|
LABEL (longlong_number):
|
|
|
|
|
if (prec < 0)
|
|
|
|
|
/* Supply a default precision if none was given. */
|
|
|
|
|
prec = 1;
|
|
|
|
|
else
|
|
|
|
|
/* We have to take care for the '0' flag. If a precision
|
|
|
|
|
is given it must be ignored. */
|
|
|
|
|
pad = ' ';
|
|
|
|
|
|
|
|
|
|
/* If the precision is 0 and the number is 0 nothing has to
|
|
|
|
|
be written for the number, except for the 'o' format in
|
|
|
|
|
alternate form. */
|
|
|
|
|
if (prec == 0 && number.longlong == 0)
|
|
|
|
|
{
|
|
|
|
|
string = workend;
|
|
|
|
|
if (base == 8 && alt)
|
|
|
|
|
*--string = '0';
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* Put the number in WORK. */
|
|
|
|
|
string = _itowa (number.longlong, workend, base,
|
|
|
|
|
spec == 'X');
|
|
|
|
|
if (group && grouping)
|
|
|
|
|
string = group_number (string, workend, grouping,
|
|
|
|
|
thousands_sep);
|
|
|
|
|
|
|
|
|
|
if (use_outdigits && base == 10)
|
2005-02-21 20:27:42 +00:00
|
|
|
|
string = _i18n_number_rewrite
|
|
|
|
|
(string, workend, [locale objectForKey: NSDecimalDigits]);
|
2001-02-07 12:31:58 +00:00
|
|
|
|
}
|
|
|
|
|
/* Simplify further test for num != 0. */
|
|
|
|
|
number.word = number.longlong != 0;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2001-11-12 12:09:40 +00:00
|
|
|
|
if (is_long_num)
|
|
|
|
|
number.word = args_value[specs[nspecs_done].data_arg].pa_u_long_int;
|
|
|
|
|
else if (is_char)
|
|
|
|
|
number.word = (unsigned char)
|
|
|
|
|
args_value[specs[nspecs_done].data_arg].pa_char;
|
|
|
|
|
else if (!is_short)
|
|
|
|
|
number.word = args_value[specs[nspecs_done].data_arg].pa_u_int;
|
|
|
|
|
else
|
|
|
|
|
number.word = (unsigned short int)
|
|
|
|
|
args_value[specs[nspecs_done].data_arg].pa_u_short_int;
|
2001-02-07 12:31:58 +00:00
|
|
|
|
|
|
|
|
|
LABEL (number):
|
|
|
|
|
if (prec < 0)
|
|
|
|
|
/* Supply a default precision if none was given. */
|
|
|
|
|
prec = 1;
|
|
|
|
|
else
|
|
|
|
|
/* We have to take care for the '0' flag. If a precision
|
|
|
|
|
is given it must be ignored. */
|
|
|
|
|
pad = ' ';
|
|
|
|
|
|
|
|
|
|
/* If the precision is 0 and the number is 0 nothing has to
|
|
|
|
|
be written for the number, except for the 'o' format in
|
|
|
|
|
alternate form. */
|
|
|
|
|
if (prec == 0 && number.word == 0)
|
|
|
|
|
{
|
|
|
|
|
string = workend;
|
|
|
|
|
if (base == 8 && alt)
|
|
|
|
|
*--string = '0';
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* Put the number in WORK. */
|
|
|
|
|
string = _itowa_word (number.word, workend, base,
|
|
|
|
|
spec == 'X');
|
|
|
|
|
if (group && grouping)
|
|
|
|
|
string = group_number (string, workend, grouping,
|
|
|
|
|
thousands_sep);
|
|
|
|
|
|
|
|
|
|
if (use_outdigits && base == 10)
|
2005-02-21 20:27:42 +00:00
|
|
|
|
string = _i18n_number_rewrite
|
|
|
|
|
(string, workend, [locale objectForKey: NSDecimalDigits]);
|
2001-02-07 12:31:58 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (prec <= workend - string && number.word != 0 && alt && base == 8)
|
|
|
|
|
/* Add octal marker. */
|
|
|
|
|
*--string = '0';
|
|
|
|
|
|
|
|
|
|
prec = MAX (0, prec - (workend - string));
|
|
|
|
|
|
|
|
|
|
if (!left)
|
|
|
|
|
{
|
|
|
|
|
width -= workend - string + prec;
|
|
|
|
|
|
|
|
|
|
if (number.word != 0 && alt && base == 16)
|
|
|
|
|
/* Account for 0X hex marker. */
|
|
|
|
|
width -= 2;
|
|
|
|
|
|
|
|
|
|
if (is_negative || showsign || space)
|
|
|
|
|
--width;
|
|
|
|
|
|
|
|
|
|
if (pad == ' ')
|
|
|
|
|
{
|
|
|
|
|
PAD (' ');
|
|
|
|
|
width = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (is_negative)
|
|
|
|
|
outchar ('-');
|
|
|
|
|
else if (showsign)
|
|
|
|
|
outchar ('+');
|
|
|
|
|
else if (space)
|
|
|
|
|
outchar (' ');
|
|
|
|
|
|
|
|
|
|
if (number.word != 0 && alt && base == 16)
|
|
|
|
|
{
|
|
|
|
|
outchar ('0');
|
|
|
|
|
outchar (spec);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
width += prec;
|
|
|
|
|
PAD ('0');
|
|
|
|
|
|
|
|
|
|
outstring (string, workend - string);
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (is_negative)
|
|
|
|
|
{
|
|
|
|
|
outchar ('-');
|
|
|
|
|
--width;
|
|
|
|
|
}
|
|
|
|
|
else if (showsign)
|
|
|
|
|
{
|
|
|
|
|
outchar ('+');
|
|
|
|
|
--width;
|
|
|
|
|
}
|
|
|
|
|
else if (space)
|
|
|
|
|
{
|
|
|
|
|
outchar (' ');
|
|
|
|
|
--width;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (number.word != 0 && alt && base == 16)
|
|
|
|
|
{
|
|
|
|
|
outchar ('0');
|
|
|
|
|
outchar (spec);
|
|
|
|
|
width -= 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
width -= workend - string + prec;
|
|
|
|
|
|
|
|
|
|
if (prec > 0)
|
|
|
|
|
{
|
|
|
|
|
int temp = width;
|
|
|
|
|
width = prec;
|
|
|
|
|
PAD ('0');;
|
|
|
|
|
width = temp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
outstring (string, workend - string);
|
|
|
|
|
|
|
|
|
|
PAD (' ');
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
LABEL (form_float):
|
|
|
|
|
{
|
|
|
|
|
/* Floating-point number. This is handled by the native sprintf. */
|
2001-04-28 05:53:56 +00:00
|
|
|
|
char buf1[32], *bp;
|
|
|
|
|
char buf2[specs[nspecs_done].info.width
|
|
|
|
|
+specs[nspecs_done].info.prec+32];
|
|
|
|
|
unichar work_buffer[MAX (specs[nspecs_done].info.width,
|
|
|
|
|
specs[nspecs_done].info.spec) + 32];
|
|
|
|
|
unichar *const workend
|
|
|
|
|
= &work_buffer[sizeof (work_buffer) / sizeof (unichar)];
|
|
|
|
|
register unichar *w;
|
|
|
|
|
NSString *decimal_sep;
|
|
|
|
|
|
|
|
|
|
decimal_sep = [locale objectForKey: NSDecimalSeparator];
|
2003-05-12 19:23:02 +00:00
|
|
|
|
if (decimal_sep == nil) decimal_sep = @".";
|
2001-04-28 05:53:56 +00:00
|
|
|
|
|
|
|
|
|
bp = buf1;
|
|
|
|
|
|
|
|
|
|
*bp++ = '%';
|
|
|
|
|
|
|
|
|
|
if (specs[nspecs_done].info.alt)
|
|
|
|
|
*bp++ = '#';
|
|
|
|
|
if (specs[nspecs_done].info.group)
|
|
|
|
|
*bp++ = '\'';
|
|
|
|
|
if (specs[nspecs_done].info.showsign)
|
|
|
|
|
*bp++ = '+';
|
|
|
|
|
else if (specs[nspecs_done].info.space)
|
|
|
|
|
*bp++ = ' ';
|
|
|
|
|
if (specs[nspecs_done].info.left)
|
|
|
|
|
*bp++ = '-';
|
|
|
|
|
if (specs[nspecs_done].info.pad == '0')
|
|
|
|
|
*bp++ = '0';
|
|
|
|
|
if (specs[nspecs_done].info.i18n)
|
|
|
|
|
*bp++ = 'I';
|
|
|
|
|
|
|
|
|
|
if (specs[nspecs_done].info.width != 0)
|
|
|
|
|
{
|
|
|
|
|
w = _itowa_word (specs[nspecs_done].info.width, workend, 10, 0);
|
|
|
|
|
while (w < workend)
|
|
|
|
|
*bp++ = *w++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (specs[nspecs_done].info.prec != -1)
|
|
|
|
|
{
|
|
|
|
|
*bp++ = '.';
|
|
|
|
|
w = _itowa_word (specs[nspecs_done].info.prec, workend, 10, 0);
|
|
|
|
|
while (w < workend)
|
|
|
|
|
*bp++ = *w++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (specs[nspecs_done].info.spec != '\0')
|
|
|
|
|
*bp++ = specs[nspecs_done].info.spec;
|
|
|
|
|
|
|
|
|
|
*bp++ = '\0';
|
|
|
|
|
|
|
|
|
|
if (specs[nspecs_done].info.is_long_double)
|
|
|
|
|
{
|
|
|
|
|
sprintf(buf2, buf1,
|
|
|
|
|
args_value[specs[nspecs_done].data_arg].pa_long_double);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
sprintf(buf2, buf1,
|
|
|
|
|
args_value[specs[nspecs_done].data_arg].pa_double);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* FIXME - hack to rewrite decimal separator into correct locale
|
|
|
|
|
* if necessary.
|
|
|
|
|
*/
|
|
|
|
|
if (decimal_sep != nil)
|
|
|
|
|
{
|
2005-02-21 20:27:42 +00:00
|
|
|
|
static NSString *sep = nil;
|
2001-04-28 05:53:56 +00:00
|
|
|
|
|
|
|
|
|
if (sep == nil)
|
2005-02-21 20:27:42 +00:00
|
|
|
|
{
|
|
|
|
|
char buf[32];
|
|
|
|
|
char *from = buf;
|
|
|
|
|
char *to;
|
|
|
|
|
|
|
|
|
|
sprintf(buf, "%g", 1.2);
|
|
|
|
|
if (*from == '1') from++;
|
|
|
|
|
to = from;
|
|
|
|
|
while (*to != '\0' && *to != '2')
|
|
|
|
|
to++;
|
|
|
|
|
*to = '\0';
|
|
|
|
|
sep = [[NSString alloc] initWithCString: from];
|
|
|
|
|
}
|
2001-04-28 05:53:56 +00:00
|
|
|
|
if ([decimal_sep isEqual: sep] == NO && [sep length] == 1)
|
|
|
|
|
{
|
|
|
|
|
unichar m = [sep characterAtIndex: 0];
|
|
|
|
|
char *p = &buf2[strlen(buf2)];
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Assume that we won't be finding an escape in the string
|
|
|
|
|
* so we can use it as a marker.
|
|
|
|
|
*/
|
|
|
|
|
while (p-- > buf2)
|
|
|
|
|
{
|
|
|
|
|
if (*p == m)
|
|
|
|
|
{
|
|
|
|
|
*p = '\033';
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bp = buf2;
|
|
|
|
|
while (*bp)
|
|
|
|
|
{
|
|
|
|
|
if (*bp == '\033')
|
|
|
|
|
{
|
|
|
|
|
int i = 0;
|
|
|
|
|
int c = [decimal_sep length];
|
|
|
|
|
unichar b[c];
|
|
|
|
|
|
|
|
|
|
[decimal_sep getCharacters: b];
|
|
|
|
|
while (i < c)
|
|
|
|
|
{
|
|
|
|
|
outchar(b[i++]);
|
|
|
|
|
}
|
|
|
|
|
bp++;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
outchar(*bp++);
|
|
|
|
|
}
|
|
|
|
|
}
|
2001-02-07 12:31:58 +00:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
LABEL (form_floathex):
|
|
|
|
|
{
|
2001-04-28 05:53:56 +00:00
|
|
|
|
/* Floating point number printed as hexadecimal number. */
|
|
|
|
|
char buf1[32], *bp;
|
|
|
|
|
char buf2[specs[nspecs_done].info.width
|
|
|
|
|
+specs[nspecs_done].info.prec+32];
|
|
|
|
|
unichar work_buffer[MAX (specs[nspecs_done].info.width,
|
|
|
|
|
specs[nspecs_done].info.spec) + 32];
|
|
|
|
|
unichar *const workend
|
|
|
|
|
= &work_buffer[sizeof (work_buffer) / sizeof (unichar)];
|
|
|
|
|
register unichar *w;
|
|
|
|
|
NSString *decimal_sep;
|
|
|
|
|
|
|
|
|
|
decimal_sep = [locale objectForKey: NSDecimalSeparator];
|
2003-05-12 19:23:02 +00:00
|
|
|
|
if (decimal_sep == nil) decimal_sep = @".";
|
2001-04-28 05:53:56 +00:00
|
|
|
|
|
|
|
|
|
bp = buf1;
|
|
|
|
|
|
|
|
|
|
*bp++ = '%';
|
|
|
|
|
|
|
|
|
|
if (specs[nspecs_done].info.alt)
|
|
|
|
|
*bp++ = '#';
|
|
|
|
|
if (specs[nspecs_done].info.group)
|
|
|
|
|
*bp++ = '\'';
|
|
|
|
|
if (specs[nspecs_done].info.showsign)
|
|
|
|
|
*bp++ = '+';
|
|
|
|
|
else if (specs[nspecs_done].info.space)
|
|
|
|
|
*bp++ = ' ';
|
|
|
|
|
if (specs[nspecs_done].info.left)
|
|
|
|
|
*bp++ = '-';
|
|
|
|
|
if (specs[nspecs_done].info.pad == '0')
|
|
|
|
|
*bp++ = '0';
|
|
|
|
|
if (specs[nspecs_done].info.i18n)
|
|
|
|
|
*bp++ = 'I';
|
|
|
|
|
|
|
|
|
|
if (specs[nspecs_done].info.width != 0)
|
|
|
|
|
{
|
|
|
|
|
w = _itowa_word (specs[nspecs_done].info.width, workend, 10, 0);
|
|
|
|
|
while (w < workend)
|
|
|
|
|
*bp++ = *w++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (specs[nspecs_done].info.prec != -1)
|
|
|
|
|
{
|
|
|
|
|
*bp++ = '.';
|
|
|
|
|
w = _itowa_word (specs[nspecs_done].info.prec, workend, 10, 0);
|
|
|
|
|
while (w < workend)
|
|
|
|
|
*bp++ = *w++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (specs[nspecs_done].info.spec != '\0')
|
|
|
|
|
*bp++ = specs[nspecs_done].info.spec;
|
|
|
|
|
|
|
|
|
|
*bp++ = '\0';
|
|
|
|
|
|
|
|
|
|
if (specs[nspecs_done].info.is_long_double)
|
|
|
|
|
{
|
|
|
|
|
sprintf(buf2, buf1,
|
|
|
|
|
args_value[specs[nspecs_done].data_arg].pa_long_double);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
sprintf(buf2, buf1,
|
|
|
|
|
args_value[specs[nspecs_done].data_arg].pa_double);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* FIXME - hack to rewrite decimal separator into correct locale
|
|
|
|
|
* if necessary.
|
|
|
|
|
*/
|
|
|
|
|
if (decimal_sep != nil)
|
|
|
|
|
{
|
|
|
|
|
NSDictionary *def = GSDomainFromDefaultLocale();
|
|
|
|
|
NSString *sep = [def objectForKey: NSDecimalSeparator];
|
|
|
|
|
|
|
|
|
|
if (sep == nil)
|
|
|
|
|
sep = @".";
|
|
|
|
|
if ([decimal_sep isEqual: sep] == NO && [sep length] == 1)
|
|
|
|
|
{
|
|
|
|
|
unichar m = [sep characterAtIndex: 0];
|
|
|
|
|
char *p = &buf2[strlen(buf2)];
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Assume that we won't be finding an escape in the string
|
|
|
|
|
* so we can use it as a marker.
|
|
|
|
|
*/
|
|
|
|
|
while (p-- > buf2)
|
|
|
|
|
{
|
|
|
|
|
if (*p == m)
|
|
|
|
|
{
|
|
|
|
|
*p = '\033';
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bp = buf2;
|
|
|
|
|
while (*bp)
|
|
|
|
|
{
|
|
|
|
|
if (*bp == '\033')
|
|
|
|
|
{
|
|
|
|
|
int i = 0;
|
|
|
|
|
int c = [decimal_sep length];
|
|
|
|
|
unichar b[c];
|
|
|
|
|
|
|
|
|
|
[decimal_sep getCharacters: b];
|
|
|
|
|
while (i < c)
|
|
|
|
|
{
|
|
|
|
|
outchar(b[i++]);
|
|
|
|
|
}
|
|
|
|
|
bp++;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
outchar(*bp++);
|
|
|
|
|
}
|
|
|
|
|
}
|
2001-02-07 12:31:58 +00:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
LABEL (form_pointer):
|
|
|
|
|
/* Generic pointer. */
|
|
|
|
|
{
|
|
|
|
|
const void *ptr;
|
|
|
|
|
ptr = args_value[specs[nspecs_done].data_arg].pa_pointer;
|
|
|
|
|
if (ptr != NULL)
|
|
|
|
|
{
|
|
|
|
|
/* If the pointer is not NULL, write it as a %#x spec. */
|
|
|
|
|
base = 16;
|
|
|
|
|
number.word = (unsigned long int) ptr;
|
|
|
|
|
is_negative = 0;
|
|
|
|
|
alt = 1;
|
|
|
|
|
group = 0;
|
|
|
|
|
spec = 'x';
|
|
|
|
|
goto LABEL (number);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2002-09-19 16:47:49 +00:00
|
|
|
|
string = NULL;
|
|
|
|
|
goto LABEL (print_string);
|
2001-02-07 12:31:58 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/* NOTREACHED */
|
|
|
|
|
|
|
|
|
|
LABEL (form_number):
|
|
|
|
|
/* Answer the count of characters written. */
|
|
|
|
|
if (is_longlong)
|
|
|
|
|
*(long long int *) args_value[specs[nspecs_done].data_arg].pa_pointer = done;
|
|
|
|
|
else if (is_long_num)
|
|
|
|
|
*(long int *) args_value[specs[nspecs_done].data_arg].pa_pointer = done;
|
|
|
|
|
else if (is_long_num)
|
|
|
|
|
*(long int *) args_value[specs[nspecs_done].data_arg].pa_pointer = done;
|
|
|
|
|
else if (is_char)
|
|
|
|
|
*(char *) args_value[specs[nspecs_done].data_arg].pa_pointer = done;
|
|
|
|
|
else if (!is_short)
|
|
|
|
|
*(int *) args_value[specs[nspecs_done].data_arg].pa_pointer = done;
|
|
|
|
|
else
|
|
|
|
|
*(short int *) args_value[specs[nspecs_done].data_arg].pa_pointer = done;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
LABEL (form_strerror):
|
|
|
|
|
/* Print description of error ERRNO. */
|
|
|
|
|
string =
|
2001-05-31 22:39:16 +00:00
|
|
|
|
(unichar *) GSLastErrorStr(save_errno);
|
2001-02-07 12:31:58 +00:00
|
|
|
|
is_long = 0; /* This is no wide-char string. */
|
2001-02-02 06:14:42 +00:00
|
|
|
|
goto LABEL (print_string);
|
2001-02-07 12:31:58 +00:00
|
|
|
|
LABEL (form_character):
|
|
|
|
|
/* Character. */
|
|
|
|
|
if (is_long)
|
|
|
|
|
goto LABEL (form_wcharacter);
|
|
|
|
|
--width; /* Account for the character itself. */
|
|
|
|
|
if (!left)
|
|
|
|
|
PAD (' ');
|
2005-02-22 11:22:44 +00:00
|
|
|
|
outchar (((unsigned char)
|
2001-02-07 12:31:58 +00:00
|
|
|
|
args_value[specs[nspecs_done].data_arg].pa_char));
|
|
|
|
|
if (left)
|
|
|
|
|
PAD (' ');
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
LABEL (form_wcharacter):
|
|
|
|
|
{
|
|
|
|
|
/* Wide character. */
|
|
|
|
|
--width;
|
|
|
|
|
if (!left)
|
|
|
|
|
PAD (' ');
|
|
|
|
|
outchar (args_value[specs[nspecs_done].data_arg].pa_wchar);
|
|
|
|
|
if (left)
|
|
|
|
|
PAD (' ');
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
LABEL (form_string):
|
|
|
|
|
{
|
2002-05-08 05:43:15 +00:00
|
|
|
|
size_t len = 0;
|
2001-02-07 12:31:58 +00:00
|
|
|
|
|
|
|
|
|
/* The string argument could in fact be `char *' or `wchar_t *'.
|
|
|
|
|
But this should not make a difference here. */
|
2001-03-03 14:49:11 +00:00
|
|
|
|
string = (unichar *) args_value[specs[nspecs_done].data_arg].pa_wstring;
|
2001-02-07 12:31:58 +00:00
|
|
|
|
|
|
|
|
|
/* Entry point for printing other strings. */
|
|
|
|
|
LABEL (print_string):
|
|
|
|
|
|
|
|
|
|
string_malloced = 0;
|
|
|
|
|
if (string == NULL)
|
|
|
|
|
{
|
|
|
|
|
/* Write "(null)" if there's space. */
|
|
|
|
|
if (prec == -1
|
|
|
|
|
|| prec >= (int) (sizeof (null) / sizeof (null[0])) - 1)
|
|
|
|
|
{
|
|
|
|
|
string = (unichar *) null;
|
|
|
|
|
len = (sizeof (null) / sizeof (null[0])) - 1;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
string = (unichar *) {'\0'};
|
|
|
|
|
len = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (!is_long && spec != 'S')
|
|
|
|
|
{
|
|
|
|
|
/* This is complicated. We have to transform the multibyte
|
|
|
|
|
string into a unicode string. */
|
2001-02-07 13:22:12 +00:00
|
|
|
|
const char *str = (const char*)string;
|
2004-02-24 09:06:14 +00:00
|
|
|
|
unsigned slen;
|
2001-02-07 13:22:12 +00:00
|
|
|
|
NSStringEncoding enc = GetDefEncoding();
|
2001-02-02 06:14:42 +00:00
|
|
|
|
|
2004-02-24 09:06:14 +00:00
|
|
|
|
if (prec != -1)
|
|
|
|
|
{
|
|
|
|
|
len = (unsigned)prec;
|
|
|
|
|
/*
|
|
|
|
|
* If the actual length is less than the precision,
|
|
|
|
|
* we use the actual length.
|
|
|
|
|
*/
|
|
|
|
|
for (slen = 0; slen < len; slen++)
|
|
|
|
|
{
|
|
|
|
|
if (str[slen] == 0)
|
|
|
|
|
{
|
|
|
|
|
len = slen;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
len = strlen(str);
|
|
|
|
|
}
|
2001-02-07 12:31:58 +00:00
|
|
|
|
|
|
|
|
|
/* Allocate dynamically an array which definitely is long
|
|
|
|
|
enough for the wide character version. */
|
|
|
|
|
if (len < 8192
|
2004-05-14 10:52:30 +00:00
|
|
|
|
|| ((string = (unichar *) NSZoneMalloc(s->_zone, len * sizeof (unichar)))
|
2001-02-07 12:31:58 +00:00
|
|
|
|
== NULL))
|
|
|
|
|
string = (unichar *) alloca (len * sizeof (unichar));
|
|
|
|
|
else
|
|
|
|
|
string_malloced = 1;
|
2001-02-02 06:14:42 +00:00
|
|
|
|
|
2001-02-07 13:22:12 +00:00
|
|
|
|
for (slen = 0; slen < len; slen++)
|
|
|
|
|
string[slen] = encode_chartouni(str[slen], enc);
|
2001-02-07 12:31:58 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2005-07-25 16:00:52 +00:00
|
|
|
|
/* This is simple. Wide string == unicode string. */
|
2001-02-02 06:14:42 +00:00
|
|
|
|
int prc;
|
2005-07-25 16:00:52 +00:00
|
|
|
|
unichar *wsp;
|
2001-03-03 14:49:11 +00:00
|
|
|
|
|
2001-02-02 06:14:42 +00:00
|
|
|
|
len = 0;
|
|
|
|
|
prc = prec;
|
2005-07-25 16:00:52 +00:00
|
|
|
|
wsp = (unichar *)string;
|
2001-02-02 06:14:42 +00:00
|
|
|
|
while (prc-- && *wsp++) len++;
|
2001-02-07 12:31:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-02-07 13:22:12 +00:00
|
|
|
|
if ((width -= len) <= 0)
|
2001-02-07 12:31:58 +00:00
|
|
|
|
{
|
|
|
|
|
outstring (string, len);
|
|
|
|
|
}
|
2003-06-16 11:38:49 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (!left)
|
|
|
|
|
PAD (' ');
|
|
|
|
|
outstring (string, len);
|
|
|
|
|
if (left)
|
|
|
|
|
PAD (' ');
|
|
|
|
|
}
|
2001-02-07 12:31:58 +00:00
|
|
|
|
if (string_malloced)
|
2004-05-14 10:52:30 +00:00
|
|
|
|
NSZoneFree(s->_zone, string);
|
2001-02-07 12:31:58 +00:00
|
|
|
|
}
|
2001-02-02 06:14:42 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2001-02-07 12:31:58 +00:00
|
|
|
|
LABEL (form_object):
|
|
|
|
|
{
|
|
|
|
|
size_t len;
|
2001-02-02 06:14:42 +00:00
|
|
|
|
id obj;
|
|
|
|
|
NSString *dsc;
|
|
|
|
|
|
|
|
|
|
obj = args_value[specs[nspecs_done].data_arg].pa_object;
|
|
|
|
|
|
|
|
|
|
if (!obj) dsc = @"(nil)";
|
|
|
|
|
else if ([obj respondsToSelector: @selector(descriptionWithLocale:)]) dsc = [obj descriptionWithLocale: locale];
|
|
|
|
|
else dsc = [obj description];
|
|
|
|
|
|
|
|
|
|
if (!dsc) dsc = @"(null)";
|
|
|
|
|
|
|
|
|
|
len = [dsc length];
|
2001-02-07 12:31:58 +00:00
|
|
|
|
|
|
|
|
|
string_malloced = 0;
|
|
|
|
|
{
|
|
|
|
|
/* This is complicated. We have to transform the
|
|
|
|
|
NSString into a unicode string. */
|
2001-02-02 06:14:42 +00:00
|
|
|
|
NSRange r;
|
|
|
|
|
|
2001-02-07 18:17:41 +00:00
|
|
|
|
len = [dsc length];
|
2003-01-03 20:14:47 +00:00
|
|
|
|
if (prec >= 0 && prec < (int)len) len = prec;
|
2001-02-07 12:31:58 +00:00
|
|
|
|
|
|
|
|
|
/* Allocate dynamically an array which definitely is long
|
|
|
|
|
enough for the wide character version. */
|
|
|
|
|
if (len < 8192
|
2004-05-14 10:52:30 +00:00
|
|
|
|
|| ((string = (unichar *) NSZoneMalloc(s->_zone, len * sizeof (unichar)))
|
2001-02-07 12:31:58 +00:00
|
|
|
|
== NULL))
|
|
|
|
|
string = (unichar *) alloca (len * sizeof (unichar));
|
|
|
|
|
else
|
|
|
|
|
string_malloced = 1;
|
2001-02-02 06:14:42 +00:00
|
|
|
|
|
|
|
|
|
r.location = 0;
|
|
|
|
|
r.length = len;
|
|
|
|
|
[dsc getCharacters: string range: r];
|
2001-02-07 12:31:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ((width -= len) < 0)
|
|
|
|
|
{
|
|
|
|
|
outstring (string, len);
|
|
|
|
|
}
|
2003-06-16 11:38:49 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (!left)
|
|
|
|
|
PAD (' ');
|
|
|
|
|
outstring (string, len);
|
|
|
|
|
if (left)
|
|
|
|
|
PAD (' ');
|
|
|
|
|
}
|
2001-02-07 12:31:58 +00:00
|
|
|
|
if (string_malloced)
|
2004-05-14 10:52:30 +00:00
|
|
|
|
NSZoneFree(s->_zone, string);
|
2001-02-07 12:31:58 +00:00
|
|
|
|
}
|
2001-02-02 06:14:42 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
LABEL (form_unknown):
|
|
|
|
|
{
|
|
|
|
|
int function_done;
|
|
|
|
|
unsigned int i;
|
|
|
|
|
const void **ptr;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ptr = alloca (specs[nspecs_done].ndata_args
|
|
|
|
|
* sizeof (const void *));
|
|
|
|
|
|
|
|
|
|
/* Fill in an array of pointers to the argument values. */
|
|
|
|
|
for (i = 0; i < specs[nspecs_done].ndata_args; ++i)
|
|
|
|
|
ptr[i] = &args_value[specs[nspecs_done].data_arg + i];
|
|
|
|
|
|
|
|
|
|
/* Call the function. */
|
|
|
|
|
function_done = printf_unknown(s, &specs[nspecs_done].info, ptr);
|
|
|
|
|
|
|
|
|
|
/* If an error occurred we don't have information about #
|
|
|
|
|
of chars. */
|
|
|
|
|
|
|
|
|
|
done += function_done;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Write the following constant string. */
|
|
|
|
|
outstring (specs[nspecs_done].end_of_fmt,
|
|
|
|
|
specs[nspecs_done].next_fmt
|
|
|
|
|
- specs[nspecs_done].end_of_fmt);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
all_done:
|
|
|
|
|
/* Unlock the stream. */
|
2001-06-21 13:36:13 +00:00
|
|
|
|
return;
|
2001-02-02 06:14:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Handle an unknown format specifier. This prints out a canonicalized
|
|
|
|
|
representation of the format spec itself. */
|
|
|
|
|
static int
|
2004-05-14 10:52:30 +00:00
|
|
|
|
printf_unknown (GSStr s, const struct printf_info *info,
|
2001-02-02 06:14:42 +00:00
|
|
|
|
const void *const *args)
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
int done = 0;
|
|
|
|
|
unichar work_buffer[MAX (info->width, info->spec) + 32];
|
|
|
|
|
unichar *const workend
|
|
|
|
|
= &work_buffer[sizeof (work_buffer) / sizeof (unichar)];
|
|
|
|
|
register unichar *w;
|
|
|
|
|
|
|
|
|
|
outchar ('%');
|
|
|
|
|
|
|
|
|
|
if (info->alt)
|
|
|
|
|
outchar ('#');
|
|
|
|
|
if (info->group)
|
|
|
|
|
outchar ('\'');
|
|
|
|
|
if (info->showsign)
|
|
|
|
|
outchar ('+');
|
|
|
|
|
else if (info->space)
|
|
|
|
|
outchar (' ');
|
|
|
|
|
if (info->left)
|
|
|
|
|
outchar ('-');
|
|
|
|
|
if (info->pad == '0')
|
|
|
|
|
outchar ('0');
|
|
|
|
|
if (info->i18n)
|
|
|
|
|
outchar ('I');
|
|
|
|
|
|
|
|
|
|
if (info->width != 0)
|
|
|
|
|
{
|
|
|
|
|
w = _itowa_word (info->width, workend, 10, 0);
|
|
|
|
|
while (w < workend)
|
|
|
|
|
outchar (*w++);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (info->prec != -1)
|
|
|
|
|
{
|
|
|
|
|
outchar ('.');
|
|
|
|
|
w = _itowa_word (info->prec, workend, 10, 0);
|
|
|
|
|
while (w < workend)
|
|
|
|
|
outchar (*w++);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (info->spec != '\0')
|
|
|
|
|
outchar (info->spec);
|
|
|
|
|
|
|
|
|
|
return done;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Group the digits according to the grouping rules of the current locale.
|
|
|
|
|
The interpretation of GROUPING is as in `struct lconv' from <locale.h>. */
|
|
|
|
|
static unichar *
|
|
|
|
|
group_number (unichar *w, unichar *rear_ptr, const char *grouping,
|
|
|
|
|
NSString *thousands_sep
|
2005-02-22 11:22:44 +00:00
|
|
|
|
)
|
2001-02-02 06:14:42 +00:00
|
|
|
|
{
|
|
|
|
|
int len;
|
|
|
|
|
unichar *src, *s;
|
|
|
|
|
|
|
|
|
|
/* We treat all negative values like CHAR_MAX. */
|
|
|
|
|
|
|
|
|
|
if (*grouping == CHAR_MAX || *grouping <= 0)
|
|
|
|
|
/* No grouping should be done. */
|
|
|
|
|
return w;
|
|
|
|
|
|
|
|
|
|
len = *grouping;
|
|
|
|
|
|
|
|
|
|
/* Copy existing string so that nothing gets overwritten. */
|
|
|
|
|
src = (unichar *) alloca ((rear_ptr - w) * sizeof (unichar));
|
|
|
|
|
s = (unichar *) memcpy (src, w,
|
|
|
|
|
(rear_ptr - w) * sizeof (unichar));
|
|
|
|
|
w = rear_ptr;
|
|
|
|
|
|
|
|
|
|
/* Process all characters in the string. */
|
|
|
|
|
while (s > src)
|
|
|
|
|
{
|
|
|
|
|
*--w = *--s;
|
|
|
|
|
|
|
|
|
|
if (--len == 0 && s > src)
|
|
|
|
|
{
|
|
|
|
|
/* A new group begins. */
|
|
|
|
|
*--w = [thousands_sep characterAtIndex: 0];
|
|
|
|
|
|
|
|
|
|
len = *grouping++;
|
|
|
|
|
if (*grouping == '\0')
|
|
|
|
|
/* The previous grouping repeats ad infinitum. */
|
|
|
|
|
--grouping;
|
|
|
|
|
else if (*grouping == CHAR_MAX
|
|
|
|
|
#if CHAR_MIN < 0
|
|
|
|
|
|| *grouping < 0
|
|
|
|
|
#endif
|
2005-02-22 11:22:44 +00:00
|
|
|
|
)
|
2001-02-02 06:14:42 +00:00
|
|
|
|
{
|
|
|
|
|
/* No further grouping to be done.
|
|
|
|
|
Copy the rest of the number. */
|
|
|
|
|
do
|
2001-02-07 12:31:58 +00:00
|
|
|
|
{
|
|
|
|
|
*--w = *--s;
|
|
|
|
|
}
|
2001-02-02 06:14:42 +00:00
|
|
|
|
while (s > src);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return w;
|
|
|
|
|
}
|
2003-07-07 09:05:53 +00:00
|
|
|
|
|