2001-02-09 01:45:45 +00:00
|
|
|
/*
|
|
|
|
*******************************************************************************
|
|
|
|
*
|
|
|
|
* Copyright (C) 1998-1999, International Business Machines
|
|
|
|
* Corporation and others. All Rights Reserved.
|
|
|
|
*
|
|
|
|
*******************************************************************************
|
|
|
|
*
|
|
|
|
* File sprintf.c
|
|
|
|
*
|
|
|
|
* Modification History:
|
|
|
|
*
|
2002-03-27 19:20:55 +00:00
|
|
|
* Date Name Description
|
|
|
|
* 02/08/2000 george Creation. Copied from uprintf.c
|
|
|
|
* 03/27/2002 Mark Schneckloth Many fixes regarding alignment, null termination
|
|
|
|
* (mschneckloth@atomz.com) and other various problems.
|
2001-02-09 01:45:45 +00:00
|
|
|
*******************************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "unicode/utypes.h"
|
|
|
|
#include "sprintf.h"
|
|
|
|
#include "sprntf_p.h"
|
|
|
|
#include "unicode/ustdio.h"
|
|
|
|
#include "unicode/ustring.h"
|
|
|
|
#include "locbund.h"
|
|
|
|
#include "loccache.h"
|
|
|
|
#include "unicode/unum.h"
|
|
|
|
#include "unicode/udat.h"
|
|
|
|
#include "unicode/uloc.h"
|
|
|
|
|
2002-02-28 01:42:40 +00:00
|
|
|
#include "cmemory.h"
|
2002-02-23 00:34:39 +00:00
|
|
|
#include <ctype.h>
|
2001-02-09 01:45:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* --- Prototypes ---------------------------- */
|
|
|
|
|
|
|
|
int32_t
|
|
|
|
u_sprintf_simple_percent_handler(u_localized_string *output,
|
2002-02-23 00:34:39 +00:00
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
const ufmt_args *args);
|
2001-02-09 01:45:45 +00:00
|
|
|
|
|
|
|
int32_t
|
|
|
|
u_sprintf_string_handler(u_localized_string *output,
|
2002-02-23 00:34:39 +00:00
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
const ufmt_args *args);
|
2001-02-09 01:45:45 +00:00
|
|
|
|
|
|
|
int32_t
|
|
|
|
u_sprintf_date_handler(u_localized_string *output,
|
2002-02-23 00:34:39 +00:00
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
const ufmt_args *args);
|
2001-02-09 01:45:45 +00:00
|
|
|
|
|
|
|
int32_t
|
|
|
|
u_sprintf_scientific_handler(u_localized_string *output,
|
2002-02-23 00:34:39 +00:00
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
const ufmt_args *args);
|
2001-02-09 01:45:45 +00:00
|
|
|
|
|
|
|
int32_t
|
|
|
|
u_sprintf_scidbl_handler(u_localized_string *output,
|
2002-02-23 00:34:39 +00:00
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
const ufmt_args *args);
|
2001-02-09 01:45:45 +00:00
|
|
|
|
|
|
|
int32_t
|
|
|
|
u_sprintf_uchar_handler(u_localized_string *output,
|
2002-02-23 00:34:39 +00:00
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
const ufmt_args *args);
|
2001-02-09 01:45:45 +00:00
|
|
|
|
|
|
|
int32_t
|
|
|
|
u_sprintf_currency_handler(u_localized_string *output,
|
2002-02-23 00:34:39 +00:00
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
const ufmt_args *args);
|
2001-02-09 01:45:45 +00:00
|
|
|
|
|
|
|
int32_t
|
|
|
|
u_sprintf_ustring_handler(u_localized_string *output,
|
2002-02-23 00:34:39 +00:00
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
const ufmt_args *args);
|
2001-02-09 01:45:45 +00:00
|
|
|
|
|
|
|
int32_t
|
|
|
|
u_sprintf_percent_handler(u_localized_string *output,
|
2002-02-23 00:34:39 +00:00
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
const ufmt_args *args);
|
2001-02-09 01:45:45 +00:00
|
|
|
|
|
|
|
int32_t
|
|
|
|
u_sprintf_time_handler(u_localized_string *output,
|
2002-02-23 00:34:39 +00:00
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
const ufmt_args *args);
|
2001-02-09 01:45:45 +00:00
|
|
|
|
|
|
|
int32_t
|
|
|
|
u_sprintf_spellout_handler(u_localized_string *output,
|
2002-02-23 00:34:39 +00:00
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
const ufmt_args *args);
|
2001-02-09 01:45:45 +00:00
|
|
|
|
|
|
|
int32_t
|
|
|
|
u_sprintf_hex_handler(u_localized_string *output,
|
2002-02-23 00:34:39 +00:00
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
const ufmt_args *args);
|
2001-02-09 01:45:45 +00:00
|
|
|
|
|
|
|
int32_t
|
|
|
|
u_sprintf_char_handler(u_localized_string *output,
|
2002-02-23 00:34:39 +00:00
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
const ufmt_args *args);
|
2001-02-09 01:45:45 +00:00
|
|
|
|
|
|
|
int32_t
|
|
|
|
u_sprintf_integer_handler(u_localized_string *output,
|
2002-02-23 00:34:39 +00:00
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
const ufmt_args *args);
|
2001-02-09 01:45:45 +00:00
|
|
|
|
|
|
|
int32_t
|
|
|
|
u_sprintf_uinteger_handler(u_localized_string *output,
|
2002-02-23 00:34:39 +00:00
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
const ufmt_args *args);
|
2001-02-09 01:45:45 +00:00
|
|
|
|
|
|
|
int32_t
|
|
|
|
u_sprintf_double_handler(u_localized_string *output,
|
2002-02-23 00:34:39 +00:00
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
const ufmt_args *args);
|
2001-02-09 01:45:45 +00:00
|
|
|
|
|
|
|
int32_t
|
|
|
|
u_sprintf_count_handler(u_localized_string *output,
|
2002-02-23 00:34:39 +00:00
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
const ufmt_args *args);
|
2001-02-09 01:45:45 +00:00
|
|
|
|
|
|
|
int32_t
|
|
|
|
u_sprintf_octal_handler(u_localized_string *output,
|
2002-02-23 00:34:39 +00:00
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
const ufmt_args *args);
|
2001-02-09 01:45:45 +00:00
|
|
|
|
|
|
|
int32_t
|
|
|
|
u_sprintf_pointer_handler(u_localized_string *output,
|
2002-02-23 00:34:39 +00:00
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
const ufmt_args *args);
|
2001-02-09 01:45:45 +00:00
|
|
|
|
|
|
|
/* ANSI style formatting */
|
|
|
|
/* Use US-ASCII characters only for formatting */
|
|
|
|
|
|
|
|
/* % */
|
|
|
|
#define UFMT_SIMPLE_PERCENT {ufmt_simple_percent, u_sprintf_simple_percent_handler}
|
|
|
|
/* s */
|
|
|
|
#define UFMT_STRING {ufmt_string, u_sprintf_string_handler}
|
|
|
|
/* c */
|
|
|
|
#define UFMT_CHAR {ufmt_char, u_sprintf_char_handler}
|
|
|
|
/* d, i */
|
|
|
|
#define UFMT_INT {ufmt_int, u_sprintf_integer_handler}
|
|
|
|
/* u */
|
|
|
|
#define UFMT_UINT {ufmt_int, u_sprintf_uinteger_handler}
|
|
|
|
/* o */
|
|
|
|
#define UFMT_OCTAL {ufmt_int, u_sprintf_octal_handler}
|
|
|
|
/* x, X */
|
|
|
|
#define UFMT_HEX {ufmt_int, u_sprintf_hex_handler}
|
|
|
|
/* f */
|
|
|
|
#define UFMT_DOUBLE {ufmt_double, u_sprintf_double_handler}
|
|
|
|
/* e, E */
|
|
|
|
#define UFMT_SCIENTIFIC {ufmt_double, u_sprintf_scientific_handler}
|
|
|
|
/* g, G */
|
|
|
|
#define UFMT_SCIDBL {ufmt_double, u_sprintf_scidbl_handler}
|
|
|
|
/* n */
|
|
|
|
#define UFMT_COUNT {ufmt_count, u_sprintf_count_handler}
|
|
|
|
|
|
|
|
/* non-ANSI extensions */
|
|
|
|
/* Use US-ASCII characters only for formatting */
|
|
|
|
|
|
|
|
/* p */
|
|
|
|
#define UFMT_POINTER {ufmt_pointer, u_sprintf_pointer_handler}
|
|
|
|
/* D */
|
|
|
|
#define UFMT_DATE {ufmt_date, u_sprintf_date_handler}
|
|
|
|
/* T */
|
|
|
|
#define UFMT_TIME {ufmt_date, u_sprintf_time_handler}
|
|
|
|
/* V */
|
|
|
|
#define UFMT_SPELLOUT {ufmt_double, u_sprintf_spellout_handler}
|
|
|
|
/* P */
|
|
|
|
#define UFMT_PERCENT {ufmt_double, u_sprintf_percent_handler}
|
|
|
|
/* M */
|
|
|
|
#define UFMT_CURRENCY {ufmt_double, u_sprintf_currency_handler}
|
|
|
|
/* K */
|
|
|
|
#define UFMT_UCHAR {ufmt_uchar, u_sprintf_uchar_handler}
|
|
|
|
/* U */
|
|
|
|
#define UFMT_USTRING {ufmt_ustring, u_sprintf_ustring_handler}
|
|
|
|
|
|
|
|
|
|
|
|
#define UFMT_EMPTY {ufmt_empty, NULL}
|
|
|
|
|
|
|
|
struct u_sprintf_info {
|
|
|
|
enum ufmt_type_info info;
|
|
|
|
u_sprintf_handler handler;
|
|
|
|
};
|
|
|
|
typedef struct u_sprintf_info u_sprintf_info;
|
|
|
|
|
|
|
|
/* Use US-ASCII characters only for formatting. Most codepages have
|
2002-02-23 00:34:39 +00:00
|
|
|
characters 20-7F from Unicode. Using any other codepage specific
|
|
|
|
characters will make it very difficult to format the string on
|
|
|
|
non-Unicode machines */
|
2001-02-09 01:45:45 +00:00
|
|
|
static const u_sprintf_info g_u_sprintf_infos[108] = {
|
2002-02-23 00:34:39 +00:00
|
|
|
/* 0x20 */
|
2001-02-09 01:45:45 +00:00
|
|
|
UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY,
|
|
|
|
UFMT_EMPTY, UFMT_SIMPLE_PERCENT,UFMT_EMPTY, UFMT_EMPTY,
|
|
|
|
UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY,
|
|
|
|
UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY,
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* 0x30 */
|
2001-02-09 01:45:45 +00:00
|
|
|
UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY,
|
|
|
|
UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY,
|
|
|
|
UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY,
|
|
|
|
UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY,
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* 0x40 */
|
2001-02-09 01:45:45 +00:00
|
|
|
UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY,
|
|
|
|
UFMT_DATE, UFMT_SCIENTIFIC, UFMT_EMPTY, UFMT_SCIDBL,
|
|
|
|
UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY, UFMT_UCHAR,
|
|
|
|
UFMT_EMPTY, UFMT_CURRENCY, UFMT_EMPTY, UFMT_EMPTY,
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* 0x50 */
|
2001-02-09 01:45:45 +00:00
|
|
|
UFMT_PERCENT, UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY,
|
|
|
|
UFMT_TIME, UFMT_USTRING, UFMT_SPELLOUT, UFMT_EMPTY,
|
|
|
|
UFMT_HEX, UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY,
|
|
|
|
UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY,
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* 0x60 */
|
2001-02-09 01:45:45 +00:00
|
|
|
UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY, UFMT_CHAR,
|
|
|
|
UFMT_INT, UFMT_SCIENTIFIC, UFMT_DOUBLE, UFMT_SCIDBL,
|
|
|
|
UFMT_EMPTY, UFMT_INT, UFMT_EMPTY, UFMT_EMPTY,
|
|
|
|
UFMT_EMPTY, UFMT_EMPTY, UFMT_COUNT, UFMT_OCTAL,
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* 0x70 */
|
2001-02-09 01:45:45 +00:00
|
|
|
UFMT_POINTER, UFMT_EMPTY, UFMT_EMPTY, UFMT_STRING,
|
|
|
|
UFMT_EMPTY, UFMT_UINT, UFMT_EMPTY, UFMT_EMPTY,
|
|
|
|
UFMT_HEX, UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY,
|
|
|
|
UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY, UFMT_EMPTY,
|
|
|
|
};
|
|
|
|
|
|
|
|
#define USPRINTF_NUM_FMT_HANDLERS sizeof(g_u_sprintf_infos)
|
|
|
|
|
|
|
|
/* We do not use handlers for 0-0x1f */
|
|
|
|
#define USPRINTF_BASE_FMT_HANDLERS 0x20
|
|
|
|
|
|
|
|
/* buffer size for formatting */
|
|
|
|
#define USPRINTF_BUFFER_SIZE 1024
|
2002-03-30 00:02:40 +00:00
|
|
|
#define USPRINTF_SYMBOL_BUFFER_SIZE 8
|
2001-02-09 01:45:45 +00:00
|
|
|
|
2002-03-30 00:02:40 +00:00
|
|
|
static UChar gNullStr[] = {0x28, 0x6E, 0x75, 0x6C, 0x6C, 0x29, 0}; /* "(null)" */
|
|
|
|
static UChar gSpaceStr[] = {0x20, 0}; /* " " */
|
2002-03-26 20:10:19 +00:00
|
|
|
|
2002-03-27 22:17:07 +00:00
|
|
|
U_CAPI int32_t U_EXPORT2
|
2001-02-09 01:45:45 +00:00
|
|
|
u_sprintf(UChar *buffer,
|
2002-02-23 00:34:39 +00:00
|
|
|
const char *locale,
|
|
|
|
const char *patternSpecification,
|
|
|
|
... )
|
2001-02-09 01:45:45 +00:00
|
|
|
{
|
2002-02-23 00:34:39 +00:00
|
|
|
va_list ap;
|
|
|
|
int32_t written;
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
va_start(ap, patternSpecification);
|
|
|
|
written = u_vsnprintf(buffer, INT32_MAX, locale, patternSpecification, ap);
|
|
|
|
va_end(ap);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
return written;
|
2001-02-09 01:45:45 +00:00
|
|
|
}
|
|
|
|
|
2002-03-27 22:17:07 +00:00
|
|
|
U_CAPI int32_t U_EXPORT2
|
2001-02-09 01:45:45 +00:00
|
|
|
u_sprintf_u(UChar *buffer,
|
2002-02-23 00:34:39 +00:00
|
|
|
const char *locale,
|
|
|
|
const UChar *patternSpecification,
|
|
|
|
... )
|
2001-02-09 01:45:45 +00:00
|
|
|
{
|
2002-02-23 00:34:39 +00:00
|
|
|
va_list ap;
|
|
|
|
int32_t written;
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
va_start(ap, patternSpecification);
|
|
|
|
written = u_vsnprintf_u(buffer, INT32_MAX, locale, patternSpecification, ap);
|
|
|
|
va_end(ap);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
return written;
|
2001-02-09 01:45:45 +00:00
|
|
|
}
|
|
|
|
|
2002-03-27 22:17:07 +00:00
|
|
|
U_CAPI int32_t U_EXPORT2 /* U_CAPI ... U_EXPORT2 added by Peter Kirk 17 Nov 2001 */
|
2001-02-09 01:45:45 +00:00
|
|
|
u_vsprintf(UChar *buffer,
|
2002-02-23 00:34:39 +00:00
|
|
|
const char *locale,
|
|
|
|
const char *patternSpecification,
|
|
|
|
va_list ap)
|
2001-02-09 01:45:45 +00:00
|
|
|
{
|
2002-02-23 00:34:39 +00:00
|
|
|
return u_vsnprintf(buffer, INT32_MAX, locale, patternSpecification, ap);
|
2001-02-09 01:45:45 +00:00
|
|
|
}
|
|
|
|
|
2002-03-27 22:17:07 +00:00
|
|
|
U_CAPI int32_t U_EXPORT2
|
2001-02-09 01:45:45 +00:00
|
|
|
u_snprintf(UChar *buffer,
|
2002-02-23 00:34:39 +00:00
|
|
|
int32_t count,
|
|
|
|
const char *locale,
|
|
|
|
const char *patternSpecification,
|
|
|
|
... )
|
2001-02-09 01:45:45 +00:00
|
|
|
{
|
2002-02-23 00:34:39 +00:00
|
|
|
va_list ap;
|
|
|
|
int32_t written;
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
va_start(ap, patternSpecification);
|
|
|
|
written = u_vsnprintf(buffer, count, locale, patternSpecification, ap);
|
|
|
|
va_end(ap);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
return written;
|
2001-02-09 01:45:45 +00:00
|
|
|
}
|
|
|
|
|
2002-03-27 22:17:07 +00:00
|
|
|
U_CAPI int32_t U_EXPORT2
|
2001-02-09 01:45:45 +00:00
|
|
|
u_snprintf_u(UChar *buffer,
|
2002-02-23 00:34:39 +00:00
|
|
|
int32_t count,
|
|
|
|
const char *locale,
|
|
|
|
const UChar *patternSpecification,
|
|
|
|
... )
|
2001-02-09 01:45:45 +00:00
|
|
|
{
|
2002-02-23 00:34:39 +00:00
|
|
|
va_list ap;
|
|
|
|
int32_t written;
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
va_start(ap, patternSpecification);
|
|
|
|
written = u_vsnprintf_u(buffer, count, locale, patternSpecification, ap);
|
|
|
|
va_end(ap);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
return written;
|
2001-02-09 01:45:45 +00:00
|
|
|
}
|
|
|
|
|
2001-11-21 01:22:16 +00:00
|
|
|
U_CAPI int32_t U_EXPORT2 /* U_CAPI ... U_EXPORT2 added by Peter Kirk 17 Nov 2001 */
|
2001-02-09 01:45:45 +00:00
|
|
|
u_vsnprintf(UChar *buffer,
|
2002-02-23 00:34:39 +00:00
|
|
|
int32_t count,
|
|
|
|
const char *locale,
|
|
|
|
const char *patternSpecification,
|
|
|
|
va_list ap)
|
2001-02-09 01:45:45 +00:00
|
|
|
{
|
2002-02-23 00:34:39 +00:00
|
|
|
int32_t written;
|
|
|
|
UChar *pattern;
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* convert from the default codepage to Unicode */
|
2002-03-27 19:20:55 +00:00
|
|
|
pattern = ufmt_defaultCPToUnicode(patternSpecification,
|
2002-05-23 22:10:23 +00:00
|
|
|
(int32_t)strlen(patternSpecification));
|
2002-02-23 00:34:39 +00:00
|
|
|
if(pattern == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* do the work */
|
|
|
|
written = u_vsnprintf_u(buffer, count, locale, pattern, ap);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* clean up */
|
2002-02-28 01:42:40 +00:00
|
|
|
uprv_free(pattern);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
return written;
|
2001-02-09 01:45:45 +00:00
|
|
|
}
|
|
|
|
|
2002-03-27 22:17:07 +00:00
|
|
|
U_CAPI int32_t U_EXPORT2
|
|
|
|
u_vsprintf_u(UChar *buffer,
|
|
|
|
const char *locale,
|
|
|
|
const UChar *patternSpecification,
|
|
|
|
va_list ap)
|
|
|
|
{
|
|
|
|
return u_vsnprintf_u(buffer, INT32_MAX, locale, patternSpecification, ap);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-02-09 01:45:45 +00:00
|
|
|
static UChar *
|
|
|
|
u_strset(UChar *str, int32_t count, UChar c) {
|
|
|
|
int32_t idx;
|
|
|
|
for(idx = 0; idx < count; ++idx) {
|
2002-02-23 00:34:39 +00:00
|
|
|
str[idx] = c;
|
2001-02-09 01:45:45 +00:00
|
|
|
}
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* copies the minimum number of code units of (count or output->available) */
|
|
|
|
static int32_t
|
|
|
|
u_minstrncpy(u_localized_string *output, const UChar *str, int32_t count) {
|
|
|
|
int32_t size = ufmt_min(count, output->available);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2001-02-09 01:45:45 +00:00
|
|
|
u_strncpy(output->str + (output->len - output->available), str, size);
|
|
|
|
output->available -= size;
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int32_t
|
|
|
|
u_sprintf_pad_and_justify(u_localized_string *output,
|
2002-02-23 00:34:39 +00:00
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
const UChar *result,
|
|
|
|
int32_t resultLen)
|
2001-02-09 01:45:45 +00:00
|
|
|
{
|
2002-03-27 19:20:55 +00:00
|
|
|
int32_t written = 0;
|
|
|
|
|
2001-02-09 01:45:45 +00:00
|
|
|
resultLen = ufmt_min(resultLen, output->available);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2001-02-09 01:45:45 +00:00
|
|
|
/* pad and justify, if needed */
|
|
|
|
if(info->fWidth != -1 && resultLen < info->fWidth) {
|
|
|
|
int32_t paddingLeft = info->fWidth - resultLen;
|
|
|
|
int32_t outputPos = output->len - output->available;
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2001-02-09 01:45:45 +00:00
|
|
|
if (paddingLeft + resultLen > output->available) {
|
|
|
|
paddingLeft = output->available - resultLen;
|
2002-03-27 19:20:55 +00:00
|
|
|
if (paddingLeft < 0) {
|
|
|
|
paddingLeft = 0;
|
|
|
|
}
|
|
|
|
/* paddingLeft = output->available - resultLen;*/
|
2001-02-09 01:45:45 +00:00
|
|
|
}
|
|
|
|
written += paddingLeft;
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2001-02-09 01:45:45 +00:00
|
|
|
/* left justify */
|
|
|
|
if(info->fLeft) {
|
|
|
|
written += u_minstrncpy(output, result, resultLen);
|
|
|
|
u_strset(&output->str[outputPos + resultLen], paddingLeft, info->fPadChar);
|
2002-03-27 19:20:55 +00:00
|
|
|
output->available -= paddingLeft;
|
2001-02-09 01:45:45 +00:00
|
|
|
}
|
|
|
|
/* right justify */
|
|
|
|
else {
|
2002-03-27 19:20:55 +00:00
|
|
|
u_strset(&output->str[outputPos], paddingLeft, info->fPadChar);
|
|
|
|
output->available -= paddingLeft;
|
2001-02-09 01:45:45 +00:00
|
|
|
written += u_minstrncpy(output, result, resultLen);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* just write the formatted output */
|
|
|
|
else {
|
2001-09-28 22:58:30 +00:00
|
|
|
written = u_minstrncpy(output, result, resultLen);
|
2001-02-09 01:45:45 +00:00
|
|
|
}
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2001-02-09 01:45:45 +00:00
|
|
|
return written;
|
|
|
|
}
|
|
|
|
|
2002-03-30 00:02:40 +00:00
|
|
|
/* Sets the sign of a format based on u_sprintf_spec_info */
|
|
|
|
/* TODO: Is setting the prefix symbol to a positive sign a good idea in all locales? */
|
|
|
|
static void
|
|
|
|
u_sprintf_set_sign(UNumberFormat *format,
|
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
UErrorCode *status)
|
|
|
|
{
|
|
|
|
if(info->fShowSign) {
|
|
|
|
if (info->fSpace) {
|
|
|
|
/* Setting UNUM_PLUS_SIGN_SYMBOL affects the exponent too. */
|
|
|
|
/* unum_setSymbol(format, UNUM_PLUS_SIGN_SYMBOL, gSpaceStr, 1, &status); */
|
|
|
|
unum_setTextAttribute(format, UNUM_POSITIVE_PREFIX, gSpaceStr, 1, status);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
UChar plusSymbol[USPRINTF_SYMBOL_BUFFER_SIZE];
|
|
|
|
int32_t symbolLen;
|
|
|
|
|
|
|
|
symbolLen = unum_getSymbol(format,
|
|
|
|
UNUM_PLUS_SIGN_SYMBOL,
|
|
|
|
plusSymbol,
|
|
|
|
sizeof(plusSymbol)/sizeof(*plusSymbol),
|
|
|
|
status);
|
|
|
|
unum_setTextAttribute(format,
|
|
|
|
UNUM_POSITIVE_PREFIX,
|
|
|
|
plusSymbol,
|
|
|
|
symbolLen,
|
|
|
|
status);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-02-09 01:45:45 +00:00
|
|
|
/* handle a '%' */
|
|
|
|
|
|
|
|
int32_t
|
|
|
|
u_sprintf_simple_percent_handler(u_localized_string *output,
|
2002-02-23 00:34:39 +00:00
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
const ufmt_args *args)
|
2001-02-09 01:45:45 +00:00
|
|
|
{
|
|
|
|
/* put a single '%' on the stream */
|
|
|
|
if (output->available >= 1) {
|
|
|
|
output->str[output->len - output->available--] = 0x0025;
|
|
|
|
/* we wrote one character */
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* handle 's' */
|
|
|
|
|
|
|
|
int32_t
|
|
|
|
u_sprintf_string_handler(u_localized_string *output,
|
2002-02-23 00:34:39 +00:00
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
const ufmt_args *args)
|
2001-02-09 01:45:45 +00:00
|
|
|
{
|
2002-02-23 00:34:39 +00:00
|
|
|
UChar *s;
|
|
|
|
int32_t len, written;
|
|
|
|
const char *arg = (const char*)(args[0].ptrValue);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* convert from the default codepage to Unicode */
|
2002-03-26 20:10:19 +00:00
|
|
|
if (arg)
|
2002-05-23 22:10:23 +00:00
|
|
|
s = ufmt_defaultCPToUnicode(arg, (int32_t)strlen(arg));
|
2002-03-26 20:10:19 +00:00
|
|
|
else {
|
|
|
|
s = gNullStr;
|
|
|
|
}
|
2002-02-23 00:34:39 +00:00
|
|
|
if(s == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
len = u_strlen(s);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* width = minimum # of characters to write */
|
|
|
|
/* precision = maximum # of characters to write */
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* precision takes precedence over width */
|
|
|
|
/* determine if the string should be truncated */
|
|
|
|
if(info->fPrecision != -1 && len > info->fPrecision) {
|
|
|
|
written = u_minstrncpy(output, s, info->fPrecision);
|
|
|
|
}
|
|
|
|
/* determine if the string should be padded */
|
|
|
|
else {
|
|
|
|
written = u_sprintf_pad_and_justify(output, info, s, len);
|
|
|
|
}
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* clean up */
|
2002-03-26 20:10:19 +00:00
|
|
|
if (gNullStr != s) {
|
|
|
|
uprv_free(s);
|
|
|
|
}
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
return written;
|
2001-02-09 01:45:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* HSYS */
|
|
|
|
int32_t
|
|
|
|
u_sprintf_integer_handler(u_localized_string *output,
|
2002-02-23 00:34:39 +00:00
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
const ufmt_args *args)
|
2001-02-09 01:45:45 +00:00
|
|
|
{
|
2002-02-23 00:34:39 +00:00
|
|
|
long num = (long) (args[0].intValue);
|
|
|
|
UNumberFormat *format;
|
|
|
|
UChar result [USPRINTF_BUFFER_SIZE];
|
|
|
|
int32_t minDigits = -1;
|
|
|
|
UErrorCode status = U_ZERO_ERROR;
|
2002-03-27 19:20:55 +00:00
|
|
|
|
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* mask off any necessary bits */
|
|
|
|
if(info->fIsShort)
|
|
|
|
num &= UINT16_MAX;
|
|
|
|
else if(! info->fIsLong || ! info->fIsLongLong)
|
|
|
|
num &= UINT32_MAX;
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* get the formatter */
|
|
|
|
format = u_locbund_getNumberFormat(output->fBundle);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* handle error */
|
|
|
|
if(format == 0)
|
|
|
|
return 0;
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* set the appropriate flags on the formatter */
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* set the minimum integer digits */
|
|
|
|
if(info->fPrecision != -1) {
|
|
|
|
/* clone the stream's bundle if it isn't owned */
|
|
|
|
if(! output->fOwnBundle) {
|
|
|
|
output->fBundle = u_locbund_clone(output->fBundle);
|
|
|
|
output->fOwnBundle = TRUE;
|
|
|
|
format = u_locbund_getNumberFormat(output->fBundle);
|
|
|
|
}
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* set the minimum # of digits */
|
|
|
|
minDigits = unum_getAttribute(format, UNUM_MIN_INTEGER_DIGITS);
|
|
|
|
unum_setAttribute(format, UNUM_MIN_INTEGER_DIGITS, info->fPrecision);
|
2001-02-09 01:45:45 +00:00
|
|
|
}
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* set whether to show the sign */
|
|
|
|
if(info->fShowSign) {
|
|
|
|
/* clone the stream's bundle if it isn't owned */
|
|
|
|
if(! output->fOwnBundle) {
|
|
|
|
output->fBundle = u_locbund_clone(output->fBundle);
|
|
|
|
output->fOwnBundle = TRUE;
|
|
|
|
format = u_locbund_getNumberFormat(output->fBundle);
|
|
|
|
}
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-03-30 00:02:40 +00:00
|
|
|
u_sprintf_set_sign(format, info, &status);
|
2001-02-09 01:45:45 +00:00
|
|
|
}
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* format the number */
|
|
|
|
unum_format(format, num, result, USPRINTF_BUFFER_SIZE, 0, &status);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* restore the number format */
|
2002-03-30 00:02:40 +00:00
|
|
|
if(minDigits != -1) {
|
2002-02-23 00:34:39 +00:00
|
|
|
unum_setAttribute(format, UNUM_MIN_INTEGER_DIGITS, minDigits);
|
2002-03-30 00:02:40 +00:00
|
|
|
}
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
return u_sprintf_pad_and_justify(output, info, result, u_strlen(result));
|
2001-02-09 01:45:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int32_t
|
|
|
|
u_sprintf_hex_handler(u_localized_string *output,
|
2002-02-23 00:34:39 +00:00
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
const ufmt_args *args)
|
2001-02-09 01:45:45 +00:00
|
|
|
{
|
2002-02-23 00:34:39 +00:00
|
|
|
long num = (long) (args[0].intValue);
|
|
|
|
UChar result [USPRINTF_BUFFER_SIZE];
|
|
|
|
int32_t len = USPRINTF_BUFFER_SIZE;
|
2002-03-27 19:20:55 +00:00
|
|
|
|
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* mask off any necessary bits */
|
|
|
|
if(info->fIsShort)
|
|
|
|
num &= UINT16_MAX;
|
|
|
|
else if(! info->fIsLong || ! info->fIsLongLong)
|
|
|
|
num &= UINT32_MAX;
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* format the number, preserving the minimum # of digits */
|
|
|
|
ufmt_ltou(result, &len, num, 16,
|
2001-02-09 01:45:45 +00:00
|
|
|
(UBool)(info->fSpec == 0x0078),
|
|
|
|
(info->fPrecision == -1 && info->fZero) ? info->fWidth : info->fPrecision);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* convert to alt form, if desired */
|
|
|
|
if(num != 0 && info->fAlt && len < USPRINTF_BUFFER_SIZE - 2) {
|
|
|
|
/* shift the formatted string right by 2 chars */
|
|
|
|
memmove(result + 2, result, len * sizeof(UChar));
|
|
|
|
result[0] = 0x0030;
|
|
|
|
result[1] = info->fSpec;
|
|
|
|
len += 2;
|
|
|
|
}
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
return u_sprintf_pad_and_justify(output, info, result, len);
|
2001-02-09 01:45:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int32_t
|
|
|
|
u_sprintf_octal_handler(u_localized_string *output,
|
2002-02-23 00:34:39 +00:00
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
const ufmt_args *args)
|
2001-02-09 01:45:45 +00:00
|
|
|
{
|
2002-02-23 00:34:39 +00:00
|
|
|
long num = (long) (args[0].intValue);
|
|
|
|
UChar result [USPRINTF_BUFFER_SIZE];
|
|
|
|
int32_t len = USPRINTF_BUFFER_SIZE;
|
2002-03-27 19:20:55 +00:00
|
|
|
|
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* mask off any necessary bits */
|
|
|
|
if(info->fIsShort)
|
|
|
|
num &= UINT16_MAX;
|
|
|
|
else if(! info->fIsLong || ! info->fIsLongLong)
|
|
|
|
num &= UINT32_MAX;
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* format the number, preserving the minimum # of digits */
|
|
|
|
ufmt_ltou(result, &len, num, 8,
|
2001-02-09 01:45:45 +00:00
|
|
|
FALSE, /* doesn't matter for octal */
|
|
|
|
info->fPrecision == -1 && info->fZero ? info->fWidth : info->fPrecision);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* convert to alt form, if desired */
|
|
|
|
if(info->fAlt && result[0] != 0x0030 && len < USPRINTF_BUFFER_SIZE - 1) {
|
|
|
|
/* shift the formatted string right by 1 char */
|
|
|
|
memmove(result + 1, result, len * sizeof(UChar));
|
|
|
|
result[0] = 0x0030;
|
|
|
|
len += 1;
|
|
|
|
}
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
return u_sprintf_pad_and_justify(output, info, result, len);
|
2001-02-09 01:45:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int32_t
|
|
|
|
u_sprintf_uinteger_handler(u_localized_string *output,
|
2002-02-23 00:34:39 +00:00
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
const ufmt_args *args)
|
2001-02-09 01:45:45 +00:00
|
|
|
{
|
|
|
|
u_sprintf_spec_info uint_info;
|
|
|
|
ufmt_args uint_args;
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2001-02-09 01:45:45 +00:00
|
|
|
memcpy(&uint_info, info, sizeof(u_sprintf_spec_info));
|
|
|
|
memcpy(&uint_args, args, sizeof(ufmt_args));
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2001-02-09 01:45:45 +00:00
|
|
|
uint_info.fPrecision = 0;
|
|
|
|
uint_info.fAlt = FALSE;
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2001-02-09 01:45:45 +00:00
|
|
|
/* Get around int32_t limitations */
|
|
|
|
uint_args.doubleValue = ((double) ((uint32_t) (uint_args.intValue)));
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2001-02-09 01:45:45 +00:00
|
|
|
return u_sprintf_double_handler(output, &uint_info, &uint_args);
|
|
|
|
}
|
|
|
|
|
|
|
|
int32_t
|
|
|
|
u_sprintf_double_handler(u_localized_string *output,
|
2002-02-23 00:34:39 +00:00
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
const ufmt_args *args)
|
2001-02-09 01:45:45 +00:00
|
|
|
{
|
2002-02-23 00:34:39 +00:00
|
|
|
double num = (double) (args[0].doubleValue);
|
|
|
|
UNumberFormat *format;
|
|
|
|
UChar result [USPRINTF_BUFFER_SIZE];
|
|
|
|
int32_t minDecimalDigits;
|
|
|
|
int32_t maxDecimalDigits;
|
|
|
|
UErrorCode status = U_ZERO_ERROR;
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* mask off any necessary bits */
|
|
|
|
/* if(! info->fIsLongDouble)
|
|
|
|
num &= DBL_MAX;*/
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* get the formatter */
|
|
|
|
format = u_locbund_getNumberFormat(output->fBundle);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* handle error */
|
|
|
|
if(format == 0)
|
|
|
|
return 0;
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* set the appropriate flags on the formatter */
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* clone the stream's bundle if it isn't owned */
|
|
|
|
if(! output->fOwnBundle) {
|
|
|
|
output->fBundle = u_locbund_clone(output->fBundle);
|
|
|
|
output->fOwnBundle = TRUE;
|
|
|
|
format = u_locbund_getNumberFormat(output->fBundle);
|
|
|
|
}
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* set the number of decimal digits */
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* save the formatter's state */
|
|
|
|
minDecimalDigits = unum_getAttribute(format, UNUM_MIN_FRACTION_DIGITS);
|
|
|
|
maxDecimalDigits = unum_getAttribute(format, UNUM_MAX_FRACTION_DIGITS);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
if(info->fPrecision != -1) {
|
|
|
|
/* set the # of decimal digits */
|
|
|
|
unum_setAttribute(format, UNUM_FRACTION_DIGITS, info->fPrecision);
|
|
|
|
}
|
|
|
|
else if(info->fPrecision == 0 && ! info->fAlt) {
|
|
|
|
/* no decimal point in this case */
|
|
|
|
unum_setAttribute(format, UNUM_FRACTION_DIGITS, 0);
|
|
|
|
}
|
|
|
|
else if(info->fAlt) {
|
|
|
|
/* '#' means always show decimal point */
|
|
|
|
/* copy of printf behavior on Solaris - '#' shows 6 digits */
|
|
|
|
unum_setAttribute(format, UNUM_FRACTION_DIGITS, 6);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* # of decimal digits is 6 if precision not specified regardless of locale */
|
|
|
|
unum_setAttribute(format, UNUM_FRACTION_DIGITS, 6);
|
|
|
|
}
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* set whether to show the sign */
|
2002-03-30 00:02:40 +00:00
|
|
|
u_sprintf_set_sign(format, info, &status);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* format the number */
|
|
|
|
unum_formatDouble(format, num, result, USPRINTF_BUFFER_SIZE, 0, &status);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* restore the number format */
|
|
|
|
unum_setAttribute(format, UNUM_MIN_FRACTION_DIGITS, minDecimalDigits);
|
|
|
|
unum_setAttribute(format, UNUM_MAX_FRACTION_DIGITS, maxDecimalDigits);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
return u_sprintf_pad_and_justify(output, info, result, u_strlen(result));
|
2001-02-09 01:45:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int32_t
|
|
|
|
u_sprintf_char_handler(u_localized_string *output,
|
2002-02-23 00:34:39 +00:00
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
const ufmt_args *args)
|
2001-02-09 01:45:45 +00:00
|
|
|
{
|
2002-02-23 00:34:39 +00:00
|
|
|
UChar *s;
|
|
|
|
int32_t len, written;
|
|
|
|
unsigned char arg = (unsigned char)(args[0].intValue);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* convert from default codepage to Unicode */
|
|
|
|
s = ufmt_defaultCPToUnicode((const char *)&arg, 1);
|
|
|
|
if(s == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* Remember that this may be a surrogate pair */
|
|
|
|
len = u_strlen(s);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* width = minimum # of characters to write */
|
|
|
|
/* precision = maximum # of characters to write */
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* precision takes precedence over width */
|
|
|
|
/* determine if the string should be truncated */
|
|
|
|
if(info->fPrecision != -1 && len > info->fPrecision) {
|
|
|
|
written = u_minstrncpy(output, s, info->fPrecision);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* determine if the string should be padded */
|
|
|
|
written = u_sprintf_pad_and_justify(output, info, s, len);
|
|
|
|
}
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* clean up */
|
2002-02-28 01:42:40 +00:00
|
|
|
uprv_free(s);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
return written;
|
2001-02-09 01:45:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int32_t
|
|
|
|
u_sprintf_pointer_handler(u_localized_string *output,
|
2002-02-23 00:34:39 +00:00
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
const ufmt_args *args)
|
2001-02-09 01:45:45 +00:00
|
|
|
{
|
2002-02-23 00:34:39 +00:00
|
|
|
long num = (long) (args[0].intValue);
|
|
|
|
UChar result [USPRINTF_BUFFER_SIZE];
|
|
|
|
int32_t len = USPRINTF_BUFFER_SIZE;
|
2002-03-27 19:20:55 +00:00
|
|
|
|
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* format the pointer in hex */
|
|
|
|
ufmt_ltou(result, &len, num, 16, TRUE, info->fPrecision);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
return u_sprintf_pad_and_justify(output, info, result, len);
|
2001-02-09 01:45:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int32_t
|
|
|
|
u_sprintf_scientific_handler(u_localized_string *output,
|
2002-02-23 00:34:39 +00:00
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
const ufmt_args *args)
|
2001-02-09 01:45:45 +00:00
|
|
|
{
|
2002-02-23 00:34:39 +00:00
|
|
|
double num = (double) (args[0].doubleValue);
|
|
|
|
UNumberFormat *format;
|
|
|
|
UChar result [USPRINTF_BUFFER_SIZE];
|
|
|
|
int32_t minDecimalDigits;
|
|
|
|
int32_t maxDecimalDigits;
|
|
|
|
UErrorCode status = U_ZERO_ERROR;
|
2002-03-30 00:02:40 +00:00
|
|
|
UChar srcExpBuf[USPRINTF_SYMBOL_BUFFER_SIZE];
|
2002-02-23 00:34:39 +00:00
|
|
|
int32_t srcLen, expLen;
|
2002-03-30 00:02:40 +00:00
|
|
|
UChar expBuf[USPRINTF_SYMBOL_BUFFER_SIZE];
|
2002-03-27 19:20:55 +00:00
|
|
|
|
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* mask off any necessary bits */
|
|
|
|
/* if(! info->fIsLongDouble)
|
|
|
|
num &= DBL_MAX;*/
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* get the formatter */
|
|
|
|
format = u_locbund_getScientificFormat(output->fBundle);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* handle error */
|
|
|
|
if(format == 0)
|
|
|
|
return 0;
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* set the appropriate flags on the formatter */
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* clone the stream's bundle if it isn't owned */
|
|
|
|
if(! output->fOwnBundle) {
|
|
|
|
output->fBundle = u_locbund_clone(output->fBundle);
|
|
|
|
output->fOwnBundle = TRUE;
|
|
|
|
format = u_locbund_getScientificFormat(output->fBundle);
|
|
|
|
}
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
srcLen = unum_getSymbol(format,
|
|
|
|
UNUM_EXPONENTIAL_SYMBOL,
|
|
|
|
srcExpBuf,
|
|
|
|
sizeof(srcExpBuf),
|
|
|
|
&status);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* Upper/lower case the e */
|
|
|
|
if (info->fSpec == (UChar)0x65 /* e */) {
|
|
|
|
expLen = u_strToLower(expBuf, (int32_t)sizeof(expBuf),
|
|
|
|
srcExpBuf, srcLen,
|
|
|
|
output->fBundle->fLocale,
|
|
|
|
&status);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
expLen = u_strToUpper(expBuf, (int32_t)sizeof(expBuf),
|
|
|
|
srcExpBuf, srcLen,
|
|
|
|
output->fBundle->fLocale,
|
|
|
|
&status);
|
|
|
|
}
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
unum_setSymbol(format,
|
|
|
|
UNUM_EXPONENTIAL_SYMBOL,
|
|
|
|
expBuf,
|
|
|
|
expLen,
|
|
|
|
&status);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* set the number of decimal digits */
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* save the formatter's state */
|
|
|
|
minDecimalDigits = unum_getAttribute(format, UNUM_MIN_FRACTION_DIGITS);
|
|
|
|
maxDecimalDigits = unum_getAttribute(format, UNUM_MAX_FRACTION_DIGITS);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
if(info->fPrecision != -1) {
|
|
|
|
/* set the # of decimal digits */
|
|
|
|
unum_setAttribute(format, UNUM_FRACTION_DIGITS, info->fPrecision);
|
|
|
|
}
|
|
|
|
else if(info->fPrecision == 0 && ! info->fAlt) {
|
|
|
|
/* no decimal point in this case */
|
|
|
|
unum_setAttribute(format, UNUM_FRACTION_DIGITS, 0);
|
|
|
|
}
|
|
|
|
else if(info->fAlt) {
|
|
|
|
/* '#' means always show decimal point */
|
|
|
|
/* copy of printf behavior on Solaris - '#' shows 6 digits */
|
|
|
|
unum_setAttribute(format, UNUM_FRACTION_DIGITS, 6);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* # of decimal digits is 6 if precision not specified */
|
|
|
|
unum_setAttribute(format, UNUM_FRACTION_DIGITS, 6);
|
|
|
|
}
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* set whether to show the sign */
|
2002-03-30 00:02:40 +00:00
|
|
|
u_sprintf_set_sign(format, info, &status);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* format the number */
|
|
|
|
unum_formatDouble(format, num, result, USPRINTF_BUFFER_SIZE, 0, &status);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* restore the number format */
|
|
|
|
unum_setAttribute(format, UNUM_MIN_FRACTION_DIGITS, minDecimalDigits);
|
|
|
|
unum_setAttribute(format, UNUM_MAX_FRACTION_DIGITS, maxDecimalDigits);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
unum_setSymbol(format,
|
|
|
|
UNUM_EXPONENTIAL_SYMBOL,
|
|
|
|
srcExpBuf,
|
|
|
|
srcLen,
|
|
|
|
&status);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
return u_sprintf_pad_and_justify(output, info, result, u_strlen(result));
|
2001-02-09 01:45:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int32_t
|
|
|
|
u_sprintf_date_handler(u_localized_string *output,
|
2002-02-23 00:34:39 +00:00
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
const ufmt_args *args)
|
2001-02-09 01:45:45 +00:00
|
|
|
{
|
2002-02-23 00:34:39 +00:00
|
|
|
UDate num = (UDate) (args[0].dateValue);
|
|
|
|
UDateFormat *format;
|
|
|
|
UChar result [USPRINTF_BUFFER_SIZE];
|
|
|
|
UErrorCode status = U_ZERO_ERROR;
|
2002-03-27 19:20:55 +00:00
|
|
|
|
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* get the formatter */
|
|
|
|
format = u_locbund_getDateFormat(output->fBundle);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* handle error */
|
|
|
|
if(format == 0)
|
|
|
|
return 0;
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* format the date */
|
|
|
|
udat_format(format, num, result, USPRINTF_BUFFER_SIZE, 0, &status);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
return u_sprintf_pad_and_justify(output, info, result, u_strlen(result));
|
2001-02-09 01:45:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int32_t
|
|
|
|
u_sprintf_time_handler(u_localized_string *output,
|
2002-02-23 00:34:39 +00:00
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
const ufmt_args *args)
|
2001-02-09 01:45:45 +00:00
|
|
|
{
|
2002-02-23 00:34:39 +00:00
|
|
|
UDate num = (UDate) (args[0].dateValue);
|
|
|
|
UDateFormat *format;
|
|
|
|
UChar result [USPRINTF_BUFFER_SIZE];
|
|
|
|
UErrorCode status = U_ZERO_ERROR;
|
2002-03-27 19:20:55 +00:00
|
|
|
|
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* get the formatter */
|
|
|
|
format = u_locbund_getTimeFormat(output->fBundle);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* handle error */
|
|
|
|
if(format == 0)
|
|
|
|
return 0;
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* format the time */
|
|
|
|
udat_format(format, num, result, USPRINTF_BUFFER_SIZE, 0, &status);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
return u_sprintf_pad_and_justify(output, info, result, u_strlen(result));
|
2001-02-09 01:45:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int32_t
|
|
|
|
u_sprintf_percent_handler(u_localized_string *output,
|
2002-02-23 00:34:39 +00:00
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
const ufmt_args *args)
|
2001-02-09 01:45:45 +00:00
|
|
|
{
|
2002-02-23 00:34:39 +00:00
|
|
|
double num = (double) (args[0].doubleValue);
|
|
|
|
UNumberFormat *format;
|
|
|
|
UChar result [USPRINTF_BUFFER_SIZE];
|
|
|
|
int32_t minDecimalDigits;
|
|
|
|
int32_t maxDecimalDigits;
|
|
|
|
UErrorCode status = U_ZERO_ERROR;
|
2002-03-27 19:20:55 +00:00
|
|
|
|
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* mask off any necessary bits */
|
|
|
|
/* if(! info->fIsLongDouble)
|
|
|
|
num &= DBL_MAX;*/
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* get the formatter */
|
|
|
|
format = u_locbund_getPercentFormat(output->fBundle);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* handle error */
|
|
|
|
if(format == 0)
|
|
|
|
return 0;
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* set the appropriate flags on the formatter */
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* clone the stream's bundle if it isn't owned */
|
|
|
|
if(! output->fOwnBundle) {
|
|
|
|
output->fBundle = u_locbund_clone(output->fBundle);
|
|
|
|
output->fOwnBundle = TRUE;
|
|
|
|
format = u_locbund_getPercentFormat(output->fBundle);
|
|
|
|
}
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* set the number of decimal digits */
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* save the formatter's state */
|
|
|
|
minDecimalDigits = unum_getAttribute(format, UNUM_MIN_FRACTION_DIGITS);
|
|
|
|
maxDecimalDigits = unum_getAttribute(format, UNUM_MAX_FRACTION_DIGITS);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
if(info->fPrecision != -1) {
|
|
|
|
/* set the # of decimal digits */
|
|
|
|
unum_setAttribute(format, UNUM_FRACTION_DIGITS, info->fPrecision);
|
|
|
|
}
|
|
|
|
else if(info->fPrecision == 0 && ! info->fAlt) {
|
|
|
|
/* no decimal point in this case */
|
|
|
|
unum_setAttribute(format, UNUM_FRACTION_DIGITS, 0);
|
|
|
|
}
|
|
|
|
else if(info->fAlt) {
|
|
|
|
/* '#' means always show decimal point */
|
|
|
|
/* copy of printf behavior on Solaris - '#' shows 6 digits */
|
|
|
|
unum_setAttribute(format, UNUM_FRACTION_DIGITS, 6);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* # of decimal digits is 6 if precision not specified */
|
|
|
|
unum_setAttribute(format, UNUM_FRACTION_DIGITS, 6);
|
|
|
|
}
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* set whether to show the sign */
|
2002-03-30 00:02:40 +00:00
|
|
|
u_sprintf_set_sign(format, info, &status);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* format the number */
|
|
|
|
unum_formatDouble(format, num, result, USPRINTF_BUFFER_SIZE, 0, &status);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* restore the number format */
|
|
|
|
unum_setAttribute(format, UNUM_MIN_FRACTION_DIGITS, minDecimalDigits);
|
|
|
|
unum_setAttribute(format, UNUM_MAX_FRACTION_DIGITS, maxDecimalDigits);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
return u_sprintf_pad_and_justify(output, info, result, u_strlen(result));
|
2001-02-09 01:45:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int32_t
|
|
|
|
u_sprintf_currency_handler(u_localized_string *output,
|
2002-02-23 00:34:39 +00:00
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
const ufmt_args *args)
|
2001-02-09 01:45:45 +00:00
|
|
|
{
|
2002-02-23 00:34:39 +00:00
|
|
|
double num = (double) (args[0].doubleValue);
|
|
|
|
UNumberFormat *format;
|
|
|
|
UChar result [USPRINTF_BUFFER_SIZE];
|
|
|
|
int32_t minDecimalDigits;
|
|
|
|
int32_t maxDecimalDigits;
|
|
|
|
UErrorCode status = U_ZERO_ERROR;
|
2002-03-27 19:20:55 +00:00
|
|
|
|
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* mask off any necessary bits */
|
|
|
|
/* if(! info->fIsLongDouble)
|
|
|
|
num &= DBL_MAX;*/
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* get the formatter */
|
|
|
|
format = u_locbund_getCurrencyFormat(output->fBundle);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* handle error */
|
|
|
|
if(format == 0)
|
|
|
|
return 0;
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* set the appropriate flags on the formatter */
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* clone the stream's bundle if it isn't owned */
|
|
|
|
if(! output->fOwnBundle) {
|
|
|
|
output->fBundle = u_locbund_clone(output->fBundle);
|
|
|
|
output->fOwnBundle = TRUE;
|
|
|
|
format = u_locbund_getCurrencyFormat(output->fBundle);
|
|
|
|
}
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* set the number of decimal digits */
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* save the formatter's state */
|
|
|
|
minDecimalDigits = unum_getAttribute(format, UNUM_MIN_FRACTION_DIGITS);
|
|
|
|
maxDecimalDigits = unum_getAttribute(format, UNUM_MAX_FRACTION_DIGITS);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
if(info->fPrecision != -1) {
|
|
|
|
/* set the # of decimal digits */
|
|
|
|
unum_setAttribute(format, UNUM_FRACTION_DIGITS, info->fPrecision);
|
|
|
|
}
|
|
|
|
else if(info->fPrecision == 0 && ! info->fAlt) {
|
|
|
|
/* no decimal point in this case */
|
|
|
|
unum_setAttribute(format, UNUM_FRACTION_DIGITS, 0);
|
|
|
|
}
|
|
|
|
else if(info->fAlt) {
|
|
|
|
/* '#' means always show decimal point */
|
|
|
|
/* copy of printf behavior on Solaris - '#' shows 6 digits */
|
|
|
|
unum_setAttribute(format, UNUM_FRACTION_DIGITS, 6);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* # of decimal digits is 6 if precision not specified */
|
|
|
|
unum_setAttribute(format, UNUM_FRACTION_DIGITS, 6);
|
|
|
|
}
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* set whether to show the sign */
|
2002-03-30 00:02:40 +00:00
|
|
|
u_sprintf_set_sign(format, info, &status);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* format the number */
|
|
|
|
unum_formatDouble(format, num, result, USPRINTF_BUFFER_SIZE, 0, &status);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* restore the number format */
|
|
|
|
unum_setAttribute(format, UNUM_MIN_FRACTION_DIGITS, minDecimalDigits);
|
|
|
|
unum_setAttribute(format, UNUM_MAX_FRACTION_DIGITS, maxDecimalDigits);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
return u_sprintf_pad_and_justify(output, info, result, u_strlen(result));
|
2001-02-09 01:45:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int32_t
|
|
|
|
u_sprintf_ustring_handler(u_localized_string *output,
|
2002-02-23 00:34:39 +00:00
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
const ufmt_args *args)
|
2001-02-09 01:45:45 +00:00
|
|
|
{
|
2002-02-23 00:34:39 +00:00
|
|
|
int32_t len, written;
|
|
|
|
const UChar *arg = (const UChar*)(args[0].ptrValue);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* allocate enough space for the buffer */
|
2002-03-26 20:10:19 +00:00
|
|
|
if (!arg) {
|
|
|
|
arg = gNullStr;
|
|
|
|
}
|
2002-02-23 00:34:39 +00:00
|
|
|
len = u_strlen(arg);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* width = minimum # of characters to write */
|
|
|
|
/* precision = maximum # of characters to write */
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* precision takes precedence over width */
|
|
|
|
/* determine if the string should be truncated */
|
|
|
|
if(info->fPrecision != -1 && len > info->fPrecision) {
|
|
|
|
written = u_minstrncpy(output, arg, info->fPrecision);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* determine if the string should be padded */
|
|
|
|
written = u_sprintf_pad_and_justify(output, info, arg, len);
|
|
|
|
}
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
return written;
|
2001-02-09 01:45:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int32_t
|
|
|
|
u_sprintf_uchar_handler(u_localized_string *output,
|
2002-02-23 00:34:39 +00:00
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
const ufmt_args *args)
|
2001-02-09 01:45:45 +00:00
|
|
|
{
|
2002-02-23 00:34:39 +00:00
|
|
|
int32_t written = 0;
|
|
|
|
UChar arg = (UChar)(args[0].intValue);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* width = minimum # of characters to write */
|
|
|
|
/* precision = maximum # of characters to write */
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* precision takes precedence over width */
|
|
|
|
/* determine if the char should be printed */
|
|
|
|
if(info->fPrecision != -1 && info->fPrecision < 1) {
|
|
|
|
/* write nothing */
|
|
|
|
written = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* determine if the string should be padded */
|
|
|
|
written = u_sprintf_pad_and_justify(output, info, &arg, 1);
|
|
|
|
}
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
return written;
|
2001-02-09 01:45:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int32_t
|
|
|
|
u_sprintf_scidbl_handler(u_localized_string *output,
|
2002-02-23 00:34:39 +00:00
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
const ufmt_args *args)
|
2001-02-09 01:45:45 +00:00
|
|
|
{
|
2002-02-23 00:34:39 +00:00
|
|
|
u_sprintf_spec_info scidbl_info;
|
|
|
|
double num = args[0].doubleValue;
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
memcpy(&scidbl_info, info, sizeof(u_sprintf_spec_info));
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* determine whether to use 'd', 'e' or 'f' notation */
|
|
|
|
if (scidbl_info.fPrecision == -1 && num == uprv_trunc(num))
|
|
|
|
{
|
|
|
|
/* use 'f' notation */
|
|
|
|
scidbl_info.fSpec = 0x0066;
|
|
|
|
scidbl_info.fPrecision = 0;
|
|
|
|
/* call the double handler */
|
|
|
|
return u_sprintf_double_handler(output, &scidbl_info, args);
|
|
|
|
}
|
|
|
|
else if(num < 0.0001
|
|
|
|
|| (scidbl_info.fPrecision != -1 && num > uprv_pow10(scidbl_info.fPrecision)))
|
|
|
|
{
|
|
|
|
/* use 'e' or 'E' notation */
|
|
|
|
scidbl_info.fSpec = scidbl_info.fSpec - 1;
|
|
|
|
/* call the scientific handler */
|
|
|
|
return u_sprintf_scientific_handler(output, &scidbl_info, args);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* use 'f' notation */
|
|
|
|
scidbl_info.fSpec = 0x0066;
|
|
|
|
/* call the double handler */
|
|
|
|
return u_sprintf_double_handler(output, &scidbl_info, args);
|
|
|
|
}
|
2001-02-09 01:45:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int32_t
|
|
|
|
u_sprintf_count_handler(u_localized_string *output,
|
2002-02-23 00:34:39 +00:00
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
const ufmt_args *args)
|
2001-02-09 01:45:45 +00:00
|
|
|
{
|
2002-02-23 00:34:39 +00:00
|
|
|
int *count = (int*)(args[0].ptrValue);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* in the special case of count, the u_printf_spec_info's width */
|
|
|
|
/* will contain the # of chars written thus far */
|
|
|
|
*count = info->fWidth;
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
return 0;
|
2001-02-09 01:45:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int32_t
|
|
|
|
u_sprintf_spellout_handler(u_localized_string *output,
|
2002-02-23 00:34:39 +00:00
|
|
|
const u_sprintf_spec_info *info,
|
|
|
|
const ufmt_args *args)
|
2001-02-09 01:45:45 +00:00
|
|
|
{
|
2002-02-23 00:34:39 +00:00
|
|
|
double num = (double) (args[0].doubleValue);
|
|
|
|
UNumberFormat *format;
|
|
|
|
UChar result [USPRINTF_BUFFER_SIZE];
|
|
|
|
int32_t minDecimalDigits;
|
|
|
|
int32_t maxDecimalDigits;
|
|
|
|
UErrorCode status = U_ZERO_ERROR;
|
2002-03-27 19:20:55 +00:00
|
|
|
|
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* mask off any necessary bits */
|
|
|
|
/* if(! info->fIsLongDouble)
|
|
|
|
num &= DBL_MAX;*/
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* get the formatter */
|
|
|
|
format = u_locbund_getSpelloutFormat(output->fBundle);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* handle error */
|
|
|
|
if(format == 0)
|
|
|
|
return 0;
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* set the appropriate flags on the formatter */
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* clone the stream's bundle if it isn't owned */
|
|
|
|
if(! output->fOwnBundle) {
|
|
|
|
output->fBundle = u_locbund_clone(output->fBundle);
|
|
|
|
output->fOwnBundle = TRUE;
|
|
|
|
format = u_locbund_getSpelloutFormat(output->fBundle);
|
|
|
|
}
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* set the number of decimal digits */
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* save the formatter's state */
|
|
|
|
minDecimalDigits = unum_getAttribute(format, UNUM_MIN_FRACTION_DIGITS);
|
|
|
|
maxDecimalDigits = unum_getAttribute(format, UNUM_MAX_FRACTION_DIGITS);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
if(info->fPrecision != -1) {
|
|
|
|
/* set the # of decimal digits */
|
|
|
|
unum_setAttribute(format, UNUM_FRACTION_DIGITS, info->fPrecision);
|
|
|
|
}
|
|
|
|
else if(info->fPrecision == 0 && ! info->fAlt) {
|
|
|
|
/* no decimal point in this case */
|
|
|
|
unum_setAttribute(format, UNUM_FRACTION_DIGITS, 0);
|
|
|
|
}
|
|
|
|
else if(info->fAlt) {
|
|
|
|
/* '#' means always show decimal point */
|
|
|
|
/* copy of printf behavior on Solaris - '#' shows 6 digits */
|
|
|
|
unum_setAttribute(format, UNUM_FRACTION_DIGITS, 6);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* # of decimal digits is 6 if precision not specified */
|
|
|
|
unum_setAttribute(format, UNUM_FRACTION_DIGITS, 6);
|
|
|
|
}
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* set whether to show the sign */
|
2002-03-30 00:02:40 +00:00
|
|
|
u_sprintf_set_sign(format, info, &status);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* format the number */
|
|
|
|
unum_formatDouble(format, num, result, USPRINTF_BUFFER_SIZE, 0, &status);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* restore the number format */
|
|
|
|
unum_setAttribute(format, UNUM_MIN_FRACTION_DIGITS, minDecimalDigits);
|
|
|
|
unum_setAttribute(format, UNUM_MAX_FRACTION_DIGITS, maxDecimalDigits);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
return u_sprintf_pad_and_justify(output, info, result, u_strlen(result));
|
2001-02-09 01:45:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#define UP_PERCENT 0x0025
|
|
|
|
|
2001-11-21 01:22:16 +00:00
|
|
|
U_CAPI int32_t U_EXPORT2 /* U_CAPI ... U_EXPORT2 added by Peter Kirk 17 Nov 2001 */
|
2001-02-09 01:45:45 +00:00
|
|
|
u_vsnprintf_u(UChar *buffer,
|
2002-02-23 00:34:39 +00:00
|
|
|
int32_t count,
|
|
|
|
const char *locale,
|
|
|
|
const UChar *patternSpecification,
|
|
|
|
va_list ap)
|
2001-02-09 01:45:45 +00:00
|
|
|
{
|
2002-02-23 00:34:39 +00:00
|
|
|
const UChar *alias = patternSpecification;
|
|
|
|
const UChar *lastAlias;
|
|
|
|
int32_t patCount;
|
|
|
|
int32_t written = 0;
|
|
|
|
uint16_t handlerNum;
|
2002-03-27 19:20:55 +00:00
|
|
|
|
|
|
|
ufmt_args args;
|
2002-02-23 00:34:39 +00:00
|
|
|
u_localized_string outStr;
|
|
|
|
u_sprintf_spec spec;
|
|
|
|
ufmt_type_info info;
|
|
|
|
u_sprintf_handler handler;
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
if (count < 0) {
|
|
|
|
count = INT32_MAX;
|
|
|
|
}
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
outStr.str = buffer;
|
|
|
|
outStr.len = count;
|
|
|
|
outStr.available = count;
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* if locale is 0, use the default */
|
|
|
|
if(locale == 0) {
|
|
|
|
locale = uloc_getDefault();
|
|
|
|
}
|
|
|
|
outStr.fBundle = u_loccache_get(locale);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
if(outStr.fBundle == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
outStr.fOwnBundle = FALSE;
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* iterate through the pattern */
|
|
|
|
while(outStr.available > 0) {
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* find the next '%' */
|
|
|
|
lastAlias = alias;
|
|
|
|
while(*alias != UP_PERCENT && *alias != 0x0000) {
|
|
|
|
alias++;
|
|
|
|
}
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* write any characters before the '%' */
|
|
|
|
if(alias > lastAlias) {
|
|
|
|
written += u_minstrncpy(&outStr, lastAlias, (int32_t)(alias - lastAlias));
|
|
|
|
}
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* break if at end of string */
|
|
|
|
if(*alias == 0x0000) {
|
2001-02-09 01:45:45 +00:00
|
|
|
break;
|
|
|
|
}
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* parse the specifier */
|
|
|
|
patCount = u_sprintf_parse_spec(alias, &spec);
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* fill in the precision and width, if specified out of line */
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* width specified out of line */
|
|
|
|
if(spec.fInfo.fWidth == -2) {
|
|
|
|
if(spec.fWidthPos == -1) {
|
|
|
|
/* read the width from the argument list */
|
|
|
|
spec.fInfo.fWidth = va_arg(ap, int);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* handle positional parameter */
|
|
|
|
}
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* if it's negative, take the absolute value and set left alignment */
|
|
|
|
if(spec.fInfo.fWidth < 0) {
|
|
|
|
spec.fInfo.fWidth *= -1;
|
|
|
|
spec.fInfo.fLeft = TRUE;
|
|
|
|
}
|
|
|
|
}
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* precision specified out of line */
|
|
|
|
if(spec.fInfo.fPrecision == -2) {
|
|
|
|
if(spec.fPrecisionPos == -1) {
|
|
|
|
/* read the precision from the argument list */
|
|
|
|
spec.fInfo.fPrecision = va_arg(ap, int);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* handle positional parameter */
|
|
|
|
}
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* if it's negative, set it to zero */
|
|
|
|
if(spec.fInfo.fPrecision < 0)
|
|
|
|
spec.fInfo.fPrecision = 0;
|
|
|
|
}
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
handlerNum = (uint16_t)(spec.fInfo.fSpec - USPRINTF_BASE_FMT_HANDLERS);
|
|
|
|
if (handlerNum < USPRINTF_NUM_FMT_HANDLERS) {
|
|
|
|
/* query the info function for argument information */
|
|
|
|
info = g_u_sprintf_infos[ handlerNum ].info;
|
2002-03-27 19:20:55 +00:00
|
|
|
if(info > ufmt_simple_percent) {
|
2002-02-23 00:34:39 +00:00
|
|
|
switch(info) {
|
|
|
|
case ufmt_count:
|
|
|
|
/* set the spec's width to the # of chars written */
|
|
|
|
spec.fInfo.fWidth = written;
|
|
|
|
case ufmt_char:
|
|
|
|
case ufmt_uchar:
|
|
|
|
case ufmt_int:
|
|
|
|
args.intValue = va_arg(ap, int);
|
|
|
|
break;
|
|
|
|
case ufmt_wchar:
|
|
|
|
args.wcharValue = va_arg(ap, wchar_t);
|
|
|
|
break;
|
|
|
|
case ufmt_string:
|
|
|
|
args.ptrValue = va_arg(ap, char*);
|
|
|
|
break;
|
|
|
|
case ufmt_wstring:
|
|
|
|
args.ptrValue = va_arg(ap, wchar_t*);
|
|
|
|
break;
|
|
|
|
case ufmt_ustring:
|
|
|
|
args.ptrValue = va_arg(ap, UChar*);
|
|
|
|
break;
|
|
|
|
case ufmt_pointer:
|
|
|
|
args.ptrValue = va_arg(ap, void*);
|
|
|
|
break;
|
|
|
|
case ufmt_float:
|
|
|
|
args.floatValue = (float) va_arg(ap, double);
|
|
|
|
break;
|
|
|
|
case ufmt_double:
|
|
|
|
args.doubleValue = va_arg(ap, double);
|
|
|
|
break;
|
|
|
|
case ufmt_date:
|
|
|
|
args.dateValue = va_arg(ap, UDate);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break; /* Should never get here */
|
|
|
|
}
|
|
|
|
}
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* call the handler function */
|
|
|
|
handler = g_u_sprintf_infos[ handlerNum ].handler;
|
|
|
|
if(handler != 0) {
|
|
|
|
written += (*handler)(&outStr, &spec.fInfo, &args);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* just echo unknown tags */
|
|
|
|
written += u_minstrncpy(&outStr, lastAlias, (int32_t)(alias - lastAlias));
|
|
|
|
}
|
2001-02-09 01:45:45 +00:00
|
|
|
}
|
|
|
|
else {
|
2002-02-23 00:34:39 +00:00
|
|
|
/* just echo unknown tags */
|
|
|
|
written += u_minstrncpy(&outStr, lastAlias, (int32_t)(alias - lastAlias));
|
2001-02-09 01:45:45 +00:00
|
|
|
}
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* update the pointer in pattern and continue */
|
|
|
|
alias += patCount;
|
2001-02-09 01:45:45 +00:00
|
|
|
}
|
2002-03-27 19:20:55 +00:00
|
|
|
|
2002-03-28 21:34:57 +00:00
|
|
|
/* Terminate the buffer, if there's room. */
|
2002-03-27 19:20:55 +00:00
|
|
|
if (outStr.available > 0) {
|
|
|
|
buffer[outStr.len - outStr.available] = 0x0000;
|
|
|
|
}
|
|
|
|
|
2002-03-26 20:10:19 +00:00
|
|
|
/* Release the cloned bundle, if we cloned it. */
|
2002-03-26 05:33:56 +00:00
|
|
|
if(outStr.fOwnBundle) {
|
|
|
|
u_locbund_delete(outStr.fBundle);
|
|
|
|
outStr.fBundle = NULL;
|
|
|
|
outStr.fOwnBundle = FALSE;
|
|
|
|
}
|
|
|
|
|
2002-02-23 00:34:39 +00:00
|
|
|
/* return # of UChars written */
|
|
|
|
return written;
|
2001-02-09 01:45:45 +00:00
|
|
|
}
|
|
|
|
|