formatter_unicode.c 50.3 KB
Newer Older
1 2 3 4 5
/* implements the unicode (as opposed to string) version of the
   built-in formatters for string, int, float.  that is, the versions
   of int.__float__, etc., that take and return unicode objects */

#include "Python.h"
6
#include "pycore_fileutils.h"
Martin v. Löwis's avatar
Martin v. Löwis committed
7
#include <locale.h>
8

Martin v. Löwis's avatar
Martin v. Löwis committed
9 10
/* Raises an exception about an unknown presentation type for this
 * type. */
11

Martin v. Löwis's avatar
Martin v. Löwis committed
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
static void
unknown_presentation_type(Py_UCS4 presentation_type,
                          const char* type_name)
{
    /* %c might be out-of-range, hence the two cases. */
    if (presentation_type > 32 && presentation_type < 128)
        PyErr_Format(PyExc_ValueError,
                     "Unknown format code '%c' "
                     "for object of type '%.200s'",
                     (char)presentation_type,
                     type_name);
    else
        PyErr_Format(PyExc_ValueError,
                     "Unknown format code '\\x%x' "
                     "for object of type '%.200s'",
                     (unsigned int)presentation_type,
                     type_name);
}
30

Martin v. Löwis's avatar
Martin v. Löwis committed
31
static void
32
invalid_thousands_separator_type(char specifier, Py_UCS4 presentation_type)
Martin v. Löwis's avatar
Martin v. Löwis committed
33
{
34
    assert(specifier == ',' || specifier == '_');
Martin v. Löwis's avatar
Martin v. Löwis committed
35 36
    if (presentation_type > 32 && presentation_type < 128)
        PyErr_Format(PyExc_ValueError,
37 38
                     "Cannot specify '%c' with '%c'.",
                     specifier, (char)presentation_type);
Martin v. Löwis's avatar
Martin v. Löwis committed
39 40
    else
        PyErr_Format(PyExc_ValueError,
41 42
                     "Cannot specify '%c' with '\\x%x'.",
                     specifier, (unsigned int)presentation_type);
Martin v. Löwis's avatar
Martin v. Löwis committed
43 44
}

45
static void
46
invalid_comma_and_underscore(void)
47 48 49 50
{
    PyErr_Format(PyExc_ValueError, "Cannot specify both ',' and '_'.");
}

Martin v. Löwis's avatar
Martin v. Löwis committed
51 52 53 54 55 56 57 58
/*
    get_integer consumes 0 or more decimal digit characters from an
    input string, updates *result with the corresponding positive
    integer, and returns the number of digits consumed.

    returns -1 on error.
*/
static int
59
get_integer(PyObject *str, Py_ssize_t *ppos, Py_ssize_t end,
Martin v. Löwis's avatar
Martin v. Löwis committed
60 61
                  Py_ssize_t *result)
{
62
    Py_ssize_t accumulator, digitval, pos = *ppos;
Martin v. Löwis's avatar
Martin v. Löwis committed
63
    int numdigits;
64 65 66
    int kind = PyUnicode_KIND(str);
    void *data = PyUnicode_DATA(str);

Martin v. Löwis's avatar
Martin v. Löwis committed
67
    accumulator = numdigits = 0;
68 69
    for (; pos < end; pos++, numdigits++) {
        digitval = Py_UNICODE_TODECIMAL(PyUnicode_READ(kind, data, pos));
Martin v. Löwis's avatar
Martin v. Löwis committed
70 71 72
        if (digitval < 0)
            break;
        /*
73 74 75 76
           Detect possible overflow before it happens:

              accumulator * 10 + digitval > PY_SSIZE_T_MAX if and only if
              accumulator > (PY_SSIZE_T_MAX - digitval) / 10.
Martin v. Löwis's avatar
Martin v. Löwis committed
77
        */
78
        if (accumulator > (PY_SSIZE_T_MAX - digitval) / 10) {
Martin v. Löwis's avatar
Martin v. Löwis committed
79 80
            PyErr_Format(PyExc_ValueError,
                         "Too many decimal digits in format string");
81
            *ppos = pos;
Martin v. Löwis's avatar
Martin v. Löwis committed
82 83
            return -1;
        }
84
        accumulator = accumulator * 10 + digitval;
Martin v. Löwis's avatar
Martin v. Löwis committed
85
    }
86
    *ppos = pos;
Martin v. Löwis's avatar
Martin v. Löwis committed
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
    *result = accumulator;
    return numdigits;
}

/************************************************************************/
/*********** standard format specifier parsing **************************/
/************************************************************************/

/* returns true if this character is a specifier alignment token */
Py_LOCAL_INLINE(int)
is_alignment_token(Py_UCS4 c)
{
    switch (c) {
    case '<': case '>': case '=': case '^':
        return 1;
    default:
        return 0;
    }
}

/* returns true if this character is a sign element */
Py_LOCAL_INLINE(int)
is_sign_element(Py_UCS4 c)
{
    switch (c) {
    case ' ': case '+': case '-':
        return 1;
    default:
        return 0;
    }
}

119
/* Locale type codes. LT_NO_LOCALE must be zero. */
Benjamin Peterson's avatar
Benjamin Peterson committed
120 121
enum LocaleType {
    LT_NO_LOCALE = 0,
122 123
    LT_DEFAULT_LOCALE = ',',
    LT_UNDERSCORE_LOCALE = '_',
Benjamin Peterson's avatar
Benjamin Peterson committed
124 125 126
    LT_UNDER_FOUR_LOCALE,
    LT_CURRENT_LOCALE
};
Martin v. Löwis's avatar
Martin v. Löwis committed
127 128 129 130 131 132 133

typedef struct {
    Py_UCS4 fill_char;
    Py_UCS4 align;
    int alternate;
    Py_UCS4 sign;
    Py_ssize_t width;
Benjamin Peterson's avatar
Benjamin Peterson committed
134
    enum LocaleType thousands_separators;
Martin v. Löwis's avatar
Martin v. Löwis committed
135 136 137 138 139
    Py_ssize_t precision;
    Py_UCS4 type;
} InternalFormatSpec;

#if 0
140
/* Occasionally useful for debugging. Should normally be commented out. */
Martin v. Löwis's avatar
Martin v. Löwis committed
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
static void
DEBUG_PRINT_FORMAT_SPEC(InternalFormatSpec *format)
{
    printf("internal format spec: fill_char %d\n", format->fill_char);
    printf("internal format spec: align %d\n", format->align);
    printf("internal format spec: alternate %d\n", format->alternate);
    printf("internal format spec: sign %d\n", format->sign);
    printf("internal format spec: width %zd\n", format->width);
    printf("internal format spec: thousands_separators %d\n",
           format->thousands_separators);
    printf("internal format spec: precision %zd\n", format->precision);
    printf("internal format spec: type %c\n", format->type);
    printf("\n");
}
#endif


/*
  ptr points to the start of the format_spec, end points just past its end.
  fills in format with the parsed information.
  returns 1 on success, 0 on failure.
  if failure, sets the exception
*/
static int
parse_internal_render_format_spec(PyObject *format_spec,
                                  Py_ssize_t start, Py_ssize_t end,
                                  InternalFormatSpec *format,
                                  char default_type,
                                  char default_align)
{
    Py_ssize_t pos = start;
172 173
    int kind = PyUnicode_KIND(format_spec);
    void *data = PyUnicode_DATA(format_spec);
Martin v. Löwis's avatar
Martin v. Löwis committed
174 175
    /* end-pos is used throughout this code to specify the length of
       the input string */
176
#define READ_spec(index) PyUnicode_READ(kind, data, index)
Martin v. Löwis's avatar
Martin v. Löwis committed
177 178 179

    Py_ssize_t consumed;
    int align_specified = 0;
180
    int fill_char_specified = 0;
Martin v. Löwis's avatar
Martin v. Löwis committed
181

182
    format->fill_char = ' ';
Martin v. Löwis's avatar
Martin v. Löwis committed
183 184 185 186
    format->align = default_align;
    format->alternate = 0;
    format->sign = '\0';
    format->width = -1;
Benjamin Peterson's avatar
Benjamin Peterson committed
187
    format->thousands_separators = LT_NO_LOCALE;
Martin v. Löwis's avatar
Martin v. Löwis committed
188 189 190 191 192 193 194 195
    format->precision = -1;
    format->type = default_type;

    /* If the second char is an alignment token,
       then parse the fill char */
    if (end-pos >= 2 && is_alignment_token(READ_spec(pos+1))) {
        format->align = READ_spec(pos+1);
        format->fill_char = READ_spec(pos);
196
        fill_char_specified = 1;
Martin v. Löwis's avatar
Martin v. Löwis committed
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
        align_specified = 1;
        pos += 2;
    }
    else if (end-pos >= 1 && is_alignment_token(READ_spec(pos))) {
        format->align = READ_spec(pos);
        align_specified = 1;
        ++pos;
    }

    /* Parse the various sign options */
    if (end-pos >= 1 && is_sign_element(READ_spec(pos))) {
        format->sign = READ_spec(pos);
        ++pos;
    }

    /* If the next character is #, we're in alternate mode.  This only
       applies to integers. */
    if (end-pos >= 1 && READ_spec(pos) == '#') {
        format->alternate = 1;
        ++pos;
    }

    /* The special case for 0-padding (backwards compat) */
220
    if (!fill_char_specified && end-pos >= 1 && READ_spec(pos) == '0') {
Martin v. Löwis's avatar
Martin v. Löwis committed
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
        format->fill_char = '0';
        if (!align_specified) {
            format->align = '=';
        }
        ++pos;
    }

    consumed = get_integer(format_spec, &pos, end, &format->width);
    if (consumed == -1)
        /* Overflow error. Exception already set. */
        return 0;

    /* If consumed is 0, we didn't consume any characters for the
       width. In that case, reset the width to -1, because
       get_integer() will have set it to zero. -1 is how we record
       that the width wasn't specified. */
    if (consumed == 0)
        format->width = -1;

    /* Comma signifies add thousands separators */
    if (end-pos && READ_spec(pos) == ',') {
242
        format->thousands_separators = LT_DEFAULT_LOCALE;
Martin v. Löwis's avatar
Martin v. Löwis committed
243 244
        ++pos;
    }
245 246
    /* Underscore signifies add thousands separators */
    if (end-pos && READ_spec(pos) == '_') {
Benjamin Peterson's avatar
Benjamin Peterson committed
247
        if (format->thousands_separators != LT_NO_LOCALE) {
248 249 250 251 252 253 254 255 256 257
            invalid_comma_and_underscore();
            return 0;
        }
        format->thousands_separators = LT_UNDERSCORE_LOCALE;
        ++pos;
    }
    if (end-pos && READ_spec(pos) == ',') {
        invalid_comma_and_underscore();
        return 0;
    }
Martin v. Löwis's avatar
Martin v. Löwis committed
258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279

    /* Parse field precision */
    if (end-pos && READ_spec(pos) == '.') {
        ++pos;

        consumed = get_integer(format_spec, &pos, end, &format->precision);
        if (consumed == -1)
            /* Overflow error. Exception already set. */
            return 0;

        /* Not having a precision after a dot is an error. */
        if (consumed == 0) {
            PyErr_Format(PyExc_ValueError,
                         "Format specifier missing precision");
            return 0;
        }

    }

    /* Finally, parse the type field. */

    if (end-pos > 1) {
280 281
        /* More than one char remain, invalid format specifier. */
        PyErr_Format(PyExc_ValueError, "Invalid format specifier");
Martin v. Löwis's avatar
Martin v. Löwis committed
282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306
        return 0;
    }

    if (end-pos == 1) {
        format->type = READ_spec(pos);
        ++pos;
    }

    /* Do as much validating as we can, just by looking at the format
       specifier.  Do not take into account what type of formatting
       we're doing (int, float, string). */

    if (format->thousands_separators) {
        switch (format->type) {
        case 'd':
        case 'e':
        case 'f':
        case 'g':
        case 'E':
        case 'G':
        case '%':
        case 'F':
        case '\0':
            /* These are allowed. See PEP 378.*/
            break;
307 308 309 310 311 312 313 314 315 316
        case 'b':
        case 'o':
        case 'x':
        case 'X':
            /* Underscores are allowed in bin/oct/hex. See PEP 515. */
            if (format->thousands_separators == LT_UNDERSCORE_LOCALE) {
                /* Every four digits, not every three, in bin/oct/hex. */
                format->thousands_separators = LT_UNDER_FOUR_LOCALE;
                break;
            }
317
            /* fall through */
Martin v. Löwis's avatar
Martin v. Löwis committed
318
        default:
319
            invalid_thousands_separator_type(format->thousands_separators, format->type);
Martin v. Löwis's avatar
Martin v. Löwis committed
320 321 322 323
            return 0;
        }
    }

324 325
    assert (format->align <= 127);
    assert (format->sign <= 127);
Martin v. Löwis's avatar
Martin v. Löwis committed
326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355
    return 1;
}

/* Calculate the padding needed. */
static void
calc_padding(Py_ssize_t nchars, Py_ssize_t width, Py_UCS4 align,
             Py_ssize_t *n_lpadding, Py_ssize_t *n_rpadding,
             Py_ssize_t *n_total)
{
    if (width >= 0) {
        if (nchars > width)
            *n_total = nchars;
        else
            *n_total = width;
    }
    else {
        /* not specified, use all of the chars and no more */
        *n_total = nchars;
    }

    /* Figure out how much leading space we need, based on the
       aligning */
    if (align == '>')
        *n_lpadding = *n_total - nchars;
    else if (align == '^')
        *n_lpadding = (*n_total - nchars) / 2;
    else if (align == '<' || align == '=')
        *n_lpadding = 0;
    else {
        /* We should never have an unspecified alignment. */
Barry Warsaw's avatar
Barry Warsaw committed
356
        Py_UNREACHABLE();
Martin v. Löwis's avatar
Martin v. Löwis committed
357 358 359 360 361 362 363
    }

    *n_rpadding = *n_total - nchars - *n_lpadding;
}

/* Do the padding, and return a pointer to where the caller-supplied
   content goes. */
364
static int
365 366
fill_padding(_PyUnicodeWriter *writer,
             Py_ssize_t nchars,
Martin v. Löwis's avatar
Martin v. Löwis committed
367 368 369
             Py_UCS4 fill_char, Py_ssize_t n_lpadding,
             Py_ssize_t n_rpadding)
{
370 371
    Py_ssize_t pos;

Martin v. Löwis's avatar
Martin v. Löwis committed
372
    /* Pad on left. */
373 374 375 376
    if (n_lpadding) {
        pos = writer->pos;
        _PyUnicode_FastFill(writer->buffer, pos, n_lpadding, fill_char);
    }
Martin v. Löwis's avatar
Martin v. Löwis committed
377 378

    /* Pad on right. */
379 380 381 382
    if (n_rpadding) {
        pos = writer->pos + nchars + n_lpadding;
        _PyUnicode_FastFill(writer->buffer, pos, n_rpadding, fill_char);
    }
Martin v. Löwis's avatar
Martin v. Löwis committed
383 384

    /* Pointer to the user content. */
385 386
    writer->pos += n_lpadding;
    return 0;
Martin v. Löwis's avatar
Martin v. Löwis committed
387 388 389 390 391 392 393 394 395 396
}

/************************************************************************/
/*********** common routines for numeric formatting *********************/
/************************************************************************/

/* Locale info needed for formatting integers and the part of floats
   before and including the decimal. Note that locales only support
   8-bit chars, not unicode. */
typedef struct {
397 398 399
    PyObject *decimal_point;
    PyObject *thousands_sep;
    const char *grouping;
400
    char *grouping_buffer;
Martin v. Löwis's avatar
Martin v. Löwis committed
401 402
} LocaleInfo;

403
#define LocaleInfo_STATIC_INIT {0, 0, 0, 0}
404

Martin v. Löwis's avatar
Martin v. Löwis committed
405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444
/* describes the layout for an integer, see the comment in
   calc_number_widths() for details */
typedef struct {
    Py_ssize_t n_lpadding;
    Py_ssize_t n_prefix;
    Py_ssize_t n_spadding;
    Py_ssize_t n_rpadding;
    char sign;
    Py_ssize_t n_sign;      /* number of digits needed for sign (0/1) */
    Py_ssize_t n_grouped_digits; /* Space taken up by the digits, including
                                    any grouping chars. */
    Py_ssize_t n_decimal;   /* 0 if only an integer */
    Py_ssize_t n_remainder; /* Digits in decimal and/or exponent part,
                               excluding the decimal itself, if
                               present. */

    /* These 2 are not the widths of fields, but are needed by
       STRINGLIB_GROUPING. */
    Py_ssize_t n_digits;    /* The number of digits before a decimal
                               or exponent. */
    Py_ssize_t n_min_width; /* The min_width we used when we computed
                               the n_grouped_digits width. */
} NumberFieldWidths;


/* Given a number of the form:
   digits[remainder]
   where ptr points to the start and end points to the end, find where
    the integer part ends. This could be a decimal, an exponent, both,
    or neither.
   If a decimal point is present, set *has_decimal and increment
    remainder beyond it.
   Results are undefined (but shouldn't crash) for improperly
    formatted strings.
*/
static void
parse_number(PyObject *s, Py_ssize_t pos, Py_ssize_t end,
             Py_ssize_t *n_remainder, int *has_decimal)
{
    Py_ssize_t remainder;
445 446
    int kind = PyUnicode_KIND(s);
    void *data = PyUnicode_DATA(s);
Martin v. Löwis's avatar
Martin v. Löwis committed
447

448
    while (pos<end && Py_ISDIGIT(PyUnicode_READ(kind, data, pos)))
Martin v. Löwis's avatar
Martin v. Löwis committed
449 450 451 452
        ++pos;
    remainder = pos;

    /* Does remainder start with a decimal point? */
453
    *has_decimal = pos<end && PyUnicode_READ(kind, data, remainder) == '.';
Martin v. Löwis's avatar
Martin v. Löwis committed
454 455 456 457 458 459 460 461 462 463 464

    /* Skip the decimal point. */
    if (*has_decimal)
        remainder++;

    *n_remainder = end - remainder;
}

/* not all fields of format are used.  for example, precision is
   unused.  should this take discrete params in order to be more clear
   about what it does?  or is passing a single format parameter easier
465 466
   and more efficient enough to justify a little obfuscation?
   Return -1 on error. */
Martin v. Löwis's avatar
Martin v. Löwis committed
467 468 469 470 471
static Py_ssize_t
calc_number_widths(NumberFieldWidths *spec, Py_ssize_t n_prefix,
                   Py_UCS4 sign_char, PyObject *number, Py_ssize_t n_start,
                   Py_ssize_t n_end, Py_ssize_t n_remainder,
                   int has_decimal, const LocaleInfo *locale,
472
                   const InternalFormatSpec *format, Py_UCS4 *maxchar)
Martin v. Löwis's avatar
Martin v. Löwis committed
473 474 475 476 477 478 479
{
    Py_ssize_t n_non_digit_non_padding;
    Py_ssize_t n_padding;

    spec->n_digits = n_end - n_start - n_remainder - (has_decimal?1:0);
    spec->n_lpadding = 0;
    spec->n_prefix = n_prefix;
480
    spec->n_decimal = has_decimal ? PyUnicode_GET_LENGTH(locale->decimal_point) : 0;
Martin v. Löwis's avatar
Martin v. Löwis committed
481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540
    spec->n_remainder = n_remainder;
    spec->n_spadding = 0;
    spec->n_rpadding = 0;
    spec->sign = '\0';
    spec->n_sign = 0;

    /* the output will look like:
       |                                                                                         |
       | <lpadding> <sign> <prefix> <spadding> <grouped_digits> <decimal> <remainder> <rpadding> |
       |                                                                                         |

       sign is computed from format->sign and the actual
       sign of the number

       prefix is given (it's for the '0x' prefix)

       digits is already known

       the total width is either given, or computed from the
       actual digits

       only one of lpadding, spadding, and rpadding can be non-zero,
       and it's calculated from the width and other fields
    */

    /* compute the various parts we're going to write */
    switch (format->sign) {
    case '+':
        /* always put a + or - */
        spec->n_sign = 1;
        spec->sign = (sign_char == '-' ? '-' : '+');
        break;
    case ' ':
        spec->n_sign = 1;
        spec->sign = (sign_char == '-' ? '-' : ' ');
        break;
    default:
        /* Not specified, or the default (-) */
        if (sign_char == '-') {
            spec->n_sign = 1;
            spec->sign = '-';
        }
    }

    /* The number of chars used for non-digits and non-padding. */
    n_non_digit_non_padding = spec->n_sign + spec->n_prefix + spec->n_decimal +
        spec->n_remainder;

    /* min_width can go negative, that's okay. format->width == -1 means
       we don't care. */
    if (format->fill_char == '0' && format->align == '=')
        spec->n_min_width = format->width - n_non_digit_non_padding;
    else
        spec->n_min_width = 0;

    if (spec->n_digits == 0)
        /* This case only occurs when using 'c' formatting, we need
           to special case it because the grouping code always wants
           to have at least one character. */
        spec->n_grouped_digits = 0;
541 542
    else {
        Py_UCS4 grouping_maxchar;
Martin v. Löwis's avatar
Martin v. Löwis committed
543
        spec->n_grouped_digits = _PyUnicode_InsertThousandsGrouping(
544
            NULL, 0,
545 546
            NULL, 0, spec->n_digits,
            spec->n_min_width,
547
            locale->grouping, locale->thousands_sep, &grouping_maxchar);
548 549 550
        if (spec->n_grouped_digits == -1) {
            return -1;
        }
551 552
        *maxchar = Py_MAX(*maxchar, grouping_maxchar);
    }
Martin v. Löwis's avatar
Martin v. Löwis committed
553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577

    /* Given the desired width and the total of digit and non-digit
       space we consume, see if we need any padding. format->width can
       be negative (meaning no padding), but this code still works in
       that case. */
    n_padding = format->width -
                        (n_non_digit_non_padding + spec->n_grouped_digits);
    if (n_padding > 0) {
        /* Some padding is needed. Determine if it's left, space, or right. */
        switch (format->align) {
        case '<':
            spec->n_rpadding = n_padding;
            break;
        case '^':
            spec->n_lpadding = n_padding / 2;
            spec->n_rpadding = n_padding - spec->n_lpadding;
            break;
        case '=':
            spec->n_spadding = n_padding;
            break;
        case '>':
            spec->n_lpadding = n_padding;
            break;
        default:
            /* Shouldn't get here, but treat it as '>' */
Barry Warsaw's avatar
Barry Warsaw committed
578
            Py_UNREACHABLE();
Martin v. Löwis's avatar
Martin v. Löwis committed
579 580
        }
    }
581 582 583 584

    if (spec->n_lpadding || spec->n_spadding || spec->n_rpadding)
        *maxchar = Py_MAX(*maxchar, format->fill_char);

585 586 587
    if (spec->n_decimal)
        *maxchar = Py_MAX(*maxchar, PyUnicode_MAX_CHAR_VALUE(locale->decimal_point));

Martin v. Löwis's avatar
Martin v. Löwis committed
588 589 590 591 592 593 594
    return spec->n_lpadding + spec->n_sign + spec->n_prefix +
        spec->n_spadding + spec->n_grouped_digits + spec->n_decimal +
        spec->n_remainder + spec->n_rpadding;
}

/* Fill in the digit parts of a numbers's string representation,
   as determined in calc_number_widths().
595 596
   Return -1 on error, or 0 on success. */
static int
597
fill_number(_PyUnicodeWriter *writer, const NumberFieldWidths *spec,
Martin v. Löwis's avatar
Martin v. Löwis committed
598
            PyObject *digits, Py_ssize_t d_start, Py_ssize_t d_end,
599 600
            PyObject *prefix, Py_ssize_t p_start,
            Py_UCS4 fill_char,
Martin v. Löwis's avatar
Martin v. Löwis committed
601 602 603 604
            LocaleInfo *locale, int toupper)
{
    /* Used to keep track of digits, decimal, and remainder. */
    Py_ssize_t d_pos = d_start;
605
    const unsigned int kind = writer->kind;
606
    const void *data = writer->data;
Martin v. Löwis's avatar
Martin v. Löwis committed
607 608 609
    Py_ssize_t r;

    if (spec->n_lpadding) {
610 611 612
        _PyUnicode_FastFill(writer->buffer,
                            writer->pos, spec->n_lpadding, fill_char);
        writer->pos += spec->n_lpadding;
Martin v. Löwis's avatar
Martin v. Löwis committed
613 614
    }
    if (spec->n_sign == 1) {
615 616
        PyUnicode_WRITE(kind, data, writer->pos, spec->sign);
        writer->pos++;
Martin v. Löwis's avatar
Martin v. Löwis committed
617 618
    }
    if (spec->n_prefix) {
619 620 621
        _PyUnicode_FastCopyCharacters(writer->buffer, writer->pos,
                                      prefix, p_start,
                                      spec->n_prefix);
Martin v. Löwis's avatar
Martin v. Löwis committed
622 623
        if (toupper) {
            Py_ssize_t t;
624
            for (t = 0; t < spec->n_prefix; t++) {
625
                Py_UCS4 c = PyUnicode_READ(kind, data, writer->pos + t);
626
                c = Py_TOUPPER(c);
627
                assert (c <= 127);
628
                PyUnicode_WRITE(kind, data, writer->pos + t, c);
629
            }
Martin v. Löwis's avatar
Martin v. Löwis committed
630
        }
631
        writer->pos += spec->n_prefix;
Martin v. Löwis's avatar
Martin v. Löwis committed
632 633
    }
    if (spec->n_spadding) {
634 635 636
        _PyUnicode_FastFill(writer->buffer,
                            writer->pos, spec->n_spadding, fill_char);
        writer->pos += spec->n_spadding;
Martin v. Löwis's avatar
Martin v. Löwis committed
637 638 639 640 641
    }

    /* Only for type 'c' special case, it has no digits. */
    if (spec->n_digits != 0) {
        /* Fill the digits with InsertThousandsGrouping. */
642
        r = _PyUnicode_InsertThousandsGrouping(
643 644 645
                writer, spec->n_grouped_digits,
                digits, d_pos, spec->n_digits,
                spec->n_min_width,
646
                locale->grouping, locale->thousands_sep, NULL);
647 648
        if (r == -1)
            return -1;
Martin v. Löwis's avatar
Martin v. Löwis committed
649 650 651 652 653
        assert(r == spec->n_grouped_digits);
        d_pos += spec->n_digits;
    }
    if (toupper) {
        Py_ssize_t t;
654
        for (t = 0; t < spec->n_grouped_digits; t++) {
655
            Py_UCS4 c = PyUnicode_READ(kind, data, writer->pos + t);
656
            c = Py_TOUPPER(c);
657 658 659 660
            if (c > 127) {
                PyErr_SetString(PyExc_SystemError, "non-ascii grouped digit");
                return -1;
            }
661
            PyUnicode_WRITE(kind, data, writer->pos + t, c);
662
        }
Martin v. Löwis's avatar
Martin v. Löwis committed
663
    }
664
    writer->pos += spec->n_grouped_digits;
Martin v. Löwis's avatar
Martin v. Löwis committed
665 666

    if (spec->n_decimal) {
667 668 669 670
        _PyUnicode_FastCopyCharacters(
            writer->buffer, writer->pos,
            locale->decimal_point, 0, spec->n_decimal);
        writer->pos += spec->n_decimal;
Martin v. Löwis's avatar
Martin v. Löwis committed
671 672 673 674
        d_pos += 1;
    }

    if (spec->n_remainder) {
675 676 677 678
        _PyUnicode_FastCopyCharacters(
            writer->buffer, writer->pos,
            digits, d_pos, spec->n_remainder);
        writer->pos += spec->n_remainder;
679
        /* d_pos += spec->n_remainder; */
Martin v. Löwis's avatar
Martin v. Löwis committed
680 681 682
    }

    if (spec->n_rpadding) {
683 684 685 686
        _PyUnicode_FastFill(writer->buffer,
                            writer->pos, spec->n_rpadding,
                            fill_char);
        writer->pos += spec->n_rpadding;
Martin v. Löwis's avatar
Martin v. Löwis committed
687
    }
688
    return 0;
Martin v. Löwis's avatar
Martin v. Löwis committed
689 690
}

691
static const char no_grouping[1] = {CHAR_MAX};
Martin v. Löwis's avatar
Martin v. Löwis committed
692 693 694

/* Find the decimal point character(s?), thousands_separator(s?), and
   grouping description, either for the current locale if type is
695 696
   LT_CURRENT_LOCALE, a hard-coded locale if LT_DEFAULT_LOCALE or
   LT_UNDERSCORE_LOCALE/LT_UNDER_FOUR_LOCALE, or none if LT_NO_LOCALE. */
697
static int
698
get_locale_info(enum LocaleType type, LocaleInfo *locale_info)
Martin v. Löwis's avatar
Martin v. Löwis committed
699 700 701
{
    switch (type) {
    case LT_CURRENT_LOCALE: {
702 703 704 705
        struct lconv *lc = localeconv();
        if (_Py_GetLocaleconvNumeric(lc,
                                     &locale_info->decimal_point,
                                     &locale_info->thousands_sep) < 0) {
706
            return -1;
707
        }
708 709 710 711 712 713 714 715 716 717

        /* localeconv() grouping can become a dangling pointer or point
           to a different string if another thread calls localeconv() during
           the string formatting. Copy the string to avoid this risk. */
        locale_info->grouping_buffer = _PyMem_Strdup(lc->grouping);
        if (locale_info->grouping_buffer == NULL) {
            PyErr_NoMemory();
            return -1;
        }
        locale_info->grouping = locale_info->grouping_buffer;
Martin v. Löwis's avatar
Martin v. Löwis committed
718 719 720
        break;
    }
    case LT_DEFAULT_LOCALE:
721 722
    case LT_UNDERSCORE_LOCALE:
    case LT_UNDER_FOUR_LOCALE:
723
        locale_info->decimal_point = PyUnicode_FromOrdinal('.');
724 725
        locale_info->thousands_sep = PyUnicode_FromOrdinal(
            type == LT_DEFAULT_LOCALE ? ',' : '_');
726
        if (!locale_info->decimal_point || !locale_info->thousands_sep)
727
            return -1;
728 729
        if (type != LT_UNDER_FOUR_LOCALE)
            locale_info->grouping = "\3"; /* Group every 3 characters.  The
Martin v. Löwis's avatar
Martin v. Löwis committed
730 731
                                         (implicit) trailing 0 means repeat
                                         infinitely. */
732 733
        else
            locale_info->grouping = "\4"; /* Bin/oct/hex group every four. */
Martin v. Löwis's avatar
Martin v. Löwis committed
734 735
        break;
    case LT_NO_LOCALE:
736 737
        locale_info->decimal_point = PyUnicode_FromOrdinal('.');
        locale_info->thousands_sep = PyUnicode_New(0, 0);
738
        if (!locale_info->decimal_point || !locale_info->thousands_sep)
739
            return -1;
Martin v. Löwis's avatar
Martin v. Löwis committed
740 741 742
        locale_info->grouping = no_grouping;
        break;
    }
743 744 745 746 747 748 749 750
    return 0;
}

static void
free_locale_info(LocaleInfo *locale_info)
{
    Py_XDECREF(locale_info->decimal_point);
    Py_XDECREF(locale_info->thousands_sep);
751
    PyMem_Free(locale_info->grouping_buffer);
Martin v. Löwis's avatar
Martin v. Löwis committed
752 753 754 755 756 757
}

/************************************************************************/
/*********** string formatting ******************************************/
/************************************************************************/

758 759 760
static int
format_string_internal(PyObject *value, const InternalFormatSpec *format,
                       _PyUnicodeWriter *writer)
Martin v. Löwis's avatar
Martin v. Löwis committed
761 762 763 764
{
    Py_ssize_t lpad;
    Py_ssize_t rpad;
    Py_ssize_t total;
765 766
    Py_ssize_t len;
    int result = -1;
767
    Py_UCS4 maxchar;
Martin v. Löwis's avatar
Martin v. Löwis committed
768

769 770 771
    assert(PyUnicode_IS_READY(value));
    len = PyUnicode_GET_LENGTH(value);

Martin v. Löwis's avatar
Martin v. Löwis committed
772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794
    /* sign is not allowed on strings */
    if (format->sign != '\0') {
        PyErr_SetString(PyExc_ValueError,
                        "Sign not allowed in string format specifier");
        goto done;
    }

    /* alternate is not allowed on strings */
    if (format->alternate) {
        PyErr_SetString(PyExc_ValueError,
                        "Alternate form (#) not allowed in string format "
                        "specifier");
        goto done;
    }

    /* '=' alignment not allowed on strings */
    if (format->align == '=') {
        PyErr_SetString(PyExc_ValueError,
                        "'=' alignment not allowed "
                        "in string format specifier");
        goto done;
    }

795 796
    if ((format->width == -1 || format->width <= len)
        && (format->precision == -1 || format->precision >= len)) {
797 798 799 800
        /* Fast path */
        return _PyUnicodeWriter_WriteStr(writer, value);
    }

Martin v. Löwis's avatar
Martin v. Löwis committed
801 802 803 804 805 806 807 808
    /* if precision is specified, output no more that format.precision
       characters */
    if (format->precision >= 0 && len >= format->precision) {
        len = format->precision;
    }

    calc_padding(len, format->width, format->align, &lpad, &rpad, &total);

809
    maxchar = writer->maxchar;
810 811
    if (lpad != 0 || rpad != 0)
        maxchar = Py_MAX(maxchar, format->fill_char);
812 813 814 815
    if (PyUnicode_MAX_CHAR_VALUE(value) > maxchar) {
        Py_UCS4 valmaxchar = _PyUnicode_FindMaxChar(value, 0, len);
        maxchar = Py_MAX(maxchar, valmaxchar);
    }
816

Martin v. Löwis's avatar
Martin v. Löwis committed
817
    /* allocate the resulting string */
818
    if (_PyUnicodeWriter_Prepare(writer, total, maxchar) == -1)
Martin v. Löwis's avatar
Martin v. Löwis committed
819 820 821
        goto done;

    /* Write into that space. First the padding. */
822
    result = fill_padding(writer, len, format->fill_char, lpad, rpad);
823 824
    if (result == -1)
        goto done;
Martin v. Löwis's avatar
Martin v. Löwis committed
825 826

    /* Then the source string. */
827 828 829 830
    if (len) {
        _PyUnicode_FastCopyCharacters(writer->buffer, writer->pos,
                                      value, 0, len);
    }
831 832
    writer->pos += (len + rpad);
    result = 0;
Martin v. Löwis's avatar
Martin v. Löwis committed
833 834 835 836 837 838 839 840 841 842

done:
    return result;
}


/************************************************************************/
/*********** long formatting ********************************************/
/************************************************************************/

843 844 845
static int
format_long_internal(PyObject *value, const InternalFormatSpec *format,
                     _PyUnicodeWriter *writer)
Martin v. Löwis's avatar
Martin v. Löwis committed
846
{
847
    int result = -1;
848
    Py_UCS4 maxchar = 127;
Martin v. Löwis's avatar
Martin v. Löwis committed
849 850 851 852 853 854 855 856 857
    PyObject *tmp = NULL;
    Py_ssize_t inumeric_chars;
    Py_UCS4 sign_char = '\0';
    Py_ssize_t n_digits;       /* count of digits need from the computed
                                  string */
    Py_ssize_t n_remainder = 0; /* Used only for 'c' formatting, which
                                   produces non-digits */
    Py_ssize_t n_prefix = 0;   /* Count of prefix chars, (e.g., '0x') */
    Py_ssize_t n_total;
858
    Py_ssize_t prefix = 0;
Martin v. Löwis's avatar
Martin v. Löwis committed
859 860 861 862 863
    NumberFieldWidths spec;
    long x;

    /* Locale settings, either from the actual locale or
       from a hard-code pseudo-locale */
864
    LocaleInfo locale = LocaleInfo_STATIC_INIT;
Martin v. Löwis's avatar
Martin v. Löwis committed
865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881

    /* no precision allowed on integers */
    if (format->precision != -1) {
        PyErr_SetString(PyExc_ValueError,
                        "Precision not allowed in integer format specifier");
        goto done;
    }

    /* special case for character formatting */
    if (format->type == 'c') {
        /* error to specify a sign */
        if (format->sign != '\0') {
            PyErr_SetString(PyExc_ValueError,
                            "Sign not allowed with integer"
                            " format specifier 'c'");
            goto done;
        }
882 883 884 885 886 887 888
        /* error to request alternate format */
        if (format->alternate) {
            PyErr_SetString(PyExc_ValueError,
                            "Alternate form (#) not allowed with integer"
                            " format specifier 'c'");
            goto done;
        }
Martin v. Löwis's avatar
Martin v. Löwis committed
889 890 891 892 893 894 895 896

        /* taken from unicodeobject.c formatchar() */
        /* Integer input truncated to a character */
        x = PyLong_AsLong(value);
        if (x == -1 && PyErr_Occurred())
            goto done;
        if (x < 0 || x > 0x10ffff) {
            PyErr_SetString(PyExc_OverflowError,
897
                            "%c arg not in range(0x110000)");
Martin v. Löwis's avatar
Martin v. Löwis committed
898 899 900 901 902
            goto done;
        }
        tmp = PyUnicode_FromOrdinal(x);
        inumeric_chars = 0;
        n_digits = 1;
903
        maxchar = Py_MAX(maxchar, (Py_UCS4)x);
Martin v. Löwis's avatar
Martin v. Löwis committed
904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940

        /* As a sort-of hack, we tell calc_number_widths that we only
           have "remainder" characters. calc_number_widths thinks
           these are characters that don't get formatted, only copied
           into the output string. We do this for 'c' formatting,
           because the characters are likely to be non-digits. */
        n_remainder = 1;
    }
    else {
        int base;
        int leading_chars_to_skip = 0;  /* Number of characters added by
                                           PyNumber_ToBase that we want to
                                           skip over. */

        /* Compute the base and how many characters will be added by
           PyNumber_ToBase */
        switch (format->type) {
        case 'b':
            base = 2;
            leading_chars_to_skip = 2; /* 0b */
            break;
        case 'o':
            base = 8;
            leading_chars_to_skip = 2; /* 0o */
            break;
        case 'x':
        case 'X':
            base = 16;
            leading_chars_to_skip = 2; /* 0x */
            break;
        default:  /* shouldn't be needed, but stops a compiler warning */
        case 'd':
        case 'n':
            base = 10;
            break;
        }

941 942 943 944 945 946 947 948 949 950
        if (format->sign != '+' && format->sign != ' '
            && format->width == -1
            && format->type != 'X' && format->type != 'n'
            && !format->thousands_separators
            && PyLong_CheckExact(value))
        {
            /* Fast path */
            return _PyLong_FormatWriter(writer, value, base, format->alternate);
        }

Martin v. Löwis's avatar
Martin v. Löwis committed
951 952 953 954 955 956
        /* The number of prefix chars is the same as the leading
           chars to skip */
        if (format->alternate)
            n_prefix = leading_chars_to_skip;

        /* Do the hard part, converting to a string in a given base */
957
        tmp = _PyLong_Format(value, base);
Martin v. Löwis's avatar
Martin v. Löwis committed
958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979
        if (tmp == NULL || PyUnicode_READY(tmp) == -1)
            goto done;

        inumeric_chars = 0;
        n_digits = PyUnicode_GET_LENGTH(tmp);

        prefix = inumeric_chars;

        /* Is a sign character present in the output?  If so, remember it
           and skip it */
        if (PyUnicode_READ_CHAR(tmp, inumeric_chars) == '-') {
            sign_char = '-';
            ++prefix;
            ++leading_chars_to_skip;
        }

        /* Skip over the leading chars (0x, 0b, etc.) */
        n_digits -= leading_chars_to_skip;
        inumeric_chars += leading_chars_to_skip;
    }

    /* Determine the grouping, separator, and decimal point, if any. */
980
    if (get_locale_info(format->type == 'n' ? LT_CURRENT_LOCALE :
981
                        format->thousands_separators,
982 983
                        &locale) == -1)
        goto done;
Martin v. Löwis's avatar
Martin v. Löwis committed
984 985 986

    /* Calculate how much memory we'll need. */
    n_total = calc_number_widths(&spec, n_prefix, sign_char, tmp, inumeric_chars,
987 988
                                 inumeric_chars + n_digits, n_remainder, 0,
                                 &locale, format, &maxchar);
989 990 991
    if (n_total == -1) {
        goto done;
    }
992

Martin v. Löwis's avatar
Martin v. Löwis committed
993
    /* Allocate the memory. */
994
    if (_PyUnicodeWriter_Prepare(writer, n_total, maxchar) == -1)
Martin v. Löwis's avatar
Martin v. Löwis committed
995 996 997
        goto done;

    /* Populate the memory. */
998 999
    result = fill_number(writer, &spec,
                         tmp, inumeric_chars, inumeric_chars + n_digits,
1000
                         tmp, prefix, format->fill_char,
1001
                         &locale, format->type == 'X');
Martin v. Löwis's avatar
Martin v. Löwis committed
1002 1003 1004

done:
    Py_XDECREF(tmp);
1005
    free_locale_info(&locale);
Martin v. Löwis's avatar
Martin v. Löwis committed
1006 1007 1008 1009 1010 1011 1012 1013
    return result;
}

/************************************************************************/
/*********** float formatting *******************************************/
/************************************************************************/

/* much of this is taken from unicodeobject.c */
1014
static int
Martin v. Löwis's avatar
Martin v. Löwis committed
1015
format_float_internal(PyObject *value,
1016 1017
                      const InternalFormatSpec *format,
                      _PyUnicodeWriter *writer)
Martin v. Löwis's avatar
Martin v. Löwis committed
1018 1019 1020 1021 1022 1023 1024
{
    char *buf = NULL;       /* buffer returned from PyOS_double_to_string */
    Py_ssize_t n_digits;
    Py_ssize_t n_remainder;
    Py_ssize_t n_total;
    int has_decimal;
    double val;
1025
    int precision, default_precision = 6;
Martin v. Löwis's avatar
Martin v. Löwis committed
1026 1027 1028 1029 1030
    Py_UCS4 type = format->type;
    int add_pct = 0;
    Py_ssize_t index;
    NumberFieldWidths spec;
    int flags = 0;
1031
    int result = -1;
1032
    Py_UCS4 maxchar = 127;
Martin v. Löwis's avatar
Martin v. Löwis committed
1033 1034 1035 1036 1037 1038
    Py_UCS4 sign_char = '\0';
    int float_type; /* Used to see if we have a nan, inf, or regular float. */
    PyObject *unicode_tmp = NULL;

    /* Locale settings, either from the actual locale or
       from a hard-code pseudo-locale */
1039
    LocaleInfo locale = LocaleInfo_STATIC_INIT;
Martin v. Löwis's avatar
Martin v. Löwis committed
1040

1041 1042 1043 1044 1045 1046
    if (format->precision > INT_MAX) {
        PyErr_SetString(PyExc_ValueError, "precision too big");
        goto done;
    }
    precision = (int)format->precision;

Martin v. Löwis's avatar
Martin v. Löwis committed
1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078
    if (format->alternate)
        flags |= Py_DTSF_ALT;

    if (type == '\0') {
        /* Omitted type specifier.  Behaves in the same way as repr(x)
           and str(x) if no precision is given, else like 'g', but with
           at least one digit after the decimal point. */
        flags |= Py_DTSF_ADD_DOT_0;
        type = 'r';
        default_precision = 0;
    }

    if (type == 'n')
        /* 'n' is the same as 'g', except for the locale used to
           format the result. We take care of that later. */
        type = 'g';

    val = PyFloat_AsDouble(value);
    if (val == -1.0 && PyErr_Occurred())
        goto done;

    if (type == '%') {
        type = 'f';
        val *= 100;
        add_pct = 1;
    }

    if (precision < 0)
        precision = default_precision;
    else if (type == 'r')
        type = 'g';

1079
    /* Cast "type", because if we're in unicode we need to pass an
Martin v. Löwis's avatar
Martin v. Löwis committed
1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095
       8-bit char. This is safe, because we've restricted what "type"
       can be. */
    buf = PyOS_double_to_string(val, (char)type, precision, flags,
                                &float_type);
    if (buf == NULL)
        goto done;
    n_digits = strlen(buf);

    if (add_pct) {
        /* We know that buf has a trailing zero (since we just called
           strlen() on it), and we don't use that fact any more. So we
           can just write over the trailing zero. */
        buf[n_digits] = '%';
        n_digits += 1;
    }

1096 1097 1098 1099 1100 1101
    if (format->sign != '+' && format->sign != ' '
        && format->width == -1
        && format->type != 'n'
        && !format->thousands_separators)
    {
        /* Fast path */
1102 1103
        result = _PyUnicodeWriter_WriteASCIIString(writer, buf, n_digits);
        PyMem_Free(buf);
1104 1105
        return result;
    }
Martin v. Löwis's avatar
Martin v. Löwis committed
1106

1107 1108 1109 1110 1111 1112 1113
    /* Since there is no unicode version of PyOS_double_to_string,
       just use the 8 bit version and then convert to unicode. */
    unicode_tmp = _PyUnicode_FromASCII(buf, n_digits);
    PyMem_Free(buf);
    if (unicode_tmp == NULL)
        goto done;

Martin v. Löwis's avatar
Martin v. Löwis committed
1114 1115
    /* Is a sign character present in the output?  If so, remember it
       and skip it */
1116
    index = 0;
Martin v. Löwis's avatar
Martin v. Löwis committed
1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127
    if (PyUnicode_READ_CHAR(unicode_tmp, index) == '-') {
        sign_char = '-';
        ++index;
        --n_digits;
    }

    /* Determine if we have any "remainder" (after the digits, might include
       decimal or exponent or both (or neither)) */
    parse_number(unicode_tmp, index, index + n_digits, &n_remainder, &has_decimal);

    /* Determine the grouping, separator, and decimal point, if any. */
1128
    if (get_locale_info(format->type == 'n' ? LT_CURRENT_LOCALE :
1129
                        format->thousands_separators,
1130 1131
                        &locale) == -1)
        goto done;
Martin v. Löwis's avatar
Martin v. Löwis committed
1132 1133

    /* Calculate how much memory we'll need. */
1134
    n_total = calc_number_widths(&spec, 0, sign_char, unicode_tmp, index,
Martin v. Löwis's avatar
Martin v. Löwis committed
1135
                                 index + n_digits, n_remainder, has_decimal,
1136
                                 &locale, format, &maxchar);
1137 1138 1139
    if (n_total == -1) {
        goto done;
    }
1140

Martin v. Löwis's avatar
Martin v. Löwis committed
1141
    /* Allocate the memory. */
1142
    if (_PyUnicodeWriter_Prepare(writer, n_total, maxchar) == -1)
Martin v. Löwis's avatar
Martin v. Löwis committed
1143 1144 1145
        goto done;

    /* Populate the memory. */
1146 1147
    result = fill_number(writer, &spec,
                         unicode_tmp, index, index + n_digits,
1148
                         NULL, 0, format->fill_char,
1149
                         &locale, 0);
Martin v. Löwis's avatar
Martin v. Löwis committed
1150 1151

done:
1152
    Py_XDECREF(unicode_tmp);
1153
    free_locale_info(&locale);
Martin v. Löwis's avatar
Martin v. Löwis committed
1154 1155 1156 1157 1158 1159 1160
    return result;
}

/************************************************************************/
/*********** complex formatting *****************************************/
/************************************************************************/

1161
static int
Martin v. Löwis's avatar
Martin v. Löwis committed
1162
format_complex_internal(PyObject *value,
1163 1164
                        const InternalFormatSpec *format,
                        _PyUnicodeWriter *writer)
Martin v. Löwis's avatar
Martin v. Löwis committed
1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179
{
    double re;
    double im;
    char *re_buf = NULL;       /* buffer returned from PyOS_double_to_string */
    char *im_buf = NULL;       /* buffer returned from PyOS_double_to_string */

    InternalFormatSpec tmp_format = *format;
    Py_ssize_t n_re_digits;
    Py_ssize_t n_im_digits;
    Py_ssize_t n_re_remainder;
    Py_ssize_t n_im_remainder;
    Py_ssize_t n_re_total;
    Py_ssize_t n_im_total;
    int re_has_decimal;
    int im_has_decimal;
1180
    int precision, default_precision = 6;
Martin v. Löwis's avatar
Martin v. Löwis committed
1181 1182 1183 1184 1185 1186
    Py_UCS4 type = format->type;
    Py_ssize_t i_re;
    Py_ssize_t i_im;
    NumberFieldWidths re_spec;
    NumberFieldWidths im_spec;
    int flags = 0;
1187
    int result = -1;
1188
    Py_UCS4 maxchar = 127;
1189
    enum PyUnicode_Kind rkind;
Martin v. Löwis's avatar
Martin v. Löwis committed
1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204
    void *rdata;
    Py_UCS4 re_sign_char = '\0';
    Py_UCS4 im_sign_char = '\0';
    int re_float_type; /* Used to see if we have a nan, inf, or regular float. */
    int im_float_type;
    int add_parens = 0;
    int skip_re = 0;
    Py_ssize_t lpad;
    Py_ssize_t rpad;
    Py_ssize_t total;
    PyObject *re_unicode_tmp = NULL;
    PyObject *im_unicode_tmp = NULL;

    /* Locale settings, either from the actual locale or
       from a hard-code pseudo-locale */
1205
    LocaleInfo locale = LocaleInfo_STATIC_INIT;
Martin v. Löwis's avatar
Martin v. Löwis committed
1206

1207 1208 1209 1210 1211 1212
    if (format->precision > INT_MAX) {
        PyErr_SetString(PyExc_ValueError, "precision too big");
        goto done;
    }
    precision = (int)format->precision;

Martin v. Löwis's avatar
Martin v. Löwis committed
1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258
    /* Zero padding is not allowed. */
    if (format->fill_char == '0') {
        PyErr_SetString(PyExc_ValueError,
                        "Zero padding is not allowed in complex format "
                        "specifier");
        goto done;
    }

    /* Neither is '=' alignment . */
    if (format->align == '=') {
        PyErr_SetString(PyExc_ValueError,
                        "'=' alignment flag is not allowed in complex format "
                        "specifier");
        goto done;
    }

    re = PyComplex_RealAsDouble(value);
    if (re == -1.0 && PyErr_Occurred())
        goto done;
    im = PyComplex_ImagAsDouble(value);
    if (im == -1.0 && PyErr_Occurred())
        goto done;

    if (format->alternate)
        flags |= Py_DTSF_ALT;

    if (type == '\0') {
        /* Omitted type specifier. Should be like str(self). */
        type = 'r';
        default_precision = 0;
        if (re == 0.0 && copysign(1.0, re) == 1.0)
            skip_re = 1;
        else
            add_parens = 1;
    }

    if (type == 'n')
        /* 'n' is the same as 'g', except for the locale used to
           format the result. We take care of that later. */
        type = 'g';

    if (precision < 0)
        precision = default_precision;
    else if (type == 'r')
        type = 'g';

1259
    /* Cast "type", because if we're in unicode we need to pass an
Martin v. Löwis's avatar
Martin v. Löwis committed
1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275
       8-bit char. This is safe, because we've restricted what "type"
       can be. */
    re_buf = PyOS_double_to_string(re, (char)type, precision, flags,
                                   &re_float_type);
    if (re_buf == NULL)
        goto done;
    im_buf = PyOS_double_to_string(im, (char)type, precision, flags,
                                   &im_float_type);
    if (im_buf == NULL)
        goto done;

    n_re_digits = strlen(re_buf);
    n_im_digits = strlen(im_buf);

    /* Since there is no unicode version of PyOS_double_to_string,
       just use the 8 bit version and then convert to unicode. */
1276
    re_unicode_tmp = _PyUnicode_FromASCII(re_buf, n_re_digits);
Martin v. Löwis's avatar
Martin v. Löwis committed
1277 1278 1279 1280
    if (re_unicode_tmp == NULL)
        goto done;
    i_re = 0;

1281
    im_unicode_tmp = _PyUnicode_FromASCII(im_buf, n_im_digits);
Martin v. Löwis's avatar
Martin v. Löwis committed
1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300
    if (im_unicode_tmp == NULL)
        goto done;
    i_im = 0;

    /* Is a sign character present in the output?  If so, remember it
       and skip it */
    if (PyUnicode_READ_CHAR(re_unicode_tmp, i_re) == '-') {
        re_sign_char = '-';
        ++i_re;
        --n_re_digits;
    }
    if (PyUnicode_READ_CHAR(im_unicode_tmp, i_im) == '-') {
        im_sign_char = '-';
        ++i_im;
        --n_im_digits;
    }

    /* Determine if we have any "remainder" (after the digits, might include
       decimal or exponent or both (or neither)) */
1301
    parse_number(re_unicode_tmp, i_re, i_re + n_re_digits,
Martin v. Löwis's avatar
Martin v. Löwis committed
1302
                 &n_re_remainder, &re_has_decimal);
1303
    parse_number(im_unicode_tmp, i_im, i_im + n_im_digits,
Martin v. Löwis's avatar
Martin v. Löwis committed
1304 1305 1306
                 &n_im_remainder, &im_has_decimal);

    /* Determine the grouping, separator, and decimal point, if any. */
1307
    if (get_locale_info(format->type == 'n' ? LT_CURRENT_LOCALE :
1308
                        format->thousands_separators,
1309 1310
                        &locale) == -1)
        goto done;
Martin v. Löwis's avatar
Martin v. Löwis committed
1311 1312 1313 1314 1315 1316 1317 1318 1319 1320

    /* Turn off any padding. We'll do it later after we've composed
       the numbers without padding. */
    tmp_format.fill_char = '\0';
    tmp_format.align = '<';
    tmp_format.width = -1;

    /* Calculate how much memory we'll need. */
    n_re_total = calc_number_widths(&re_spec, 0, re_sign_char, re_unicode_tmp,
                                    i_re, i_re + n_re_digits, n_re_remainder,
1321 1322
                                    re_has_decimal, &locale, &tmp_format,
                                    &maxchar);
1323 1324 1325
    if (n_re_total == -1) {
        goto done;
    }
Martin v. Löwis's avatar
Martin v. Löwis committed
1326 1327 1328 1329 1330 1331 1332 1333

    /* Same formatting, but always include a sign, unless the real part is
     * going to be omitted, in which case we use whatever sign convention was
     * requested by the original format. */
    if (!skip_re)
        tmp_format.sign = '+';
    n_im_total = calc_number_widths(&im_spec, 0, im_sign_char, im_unicode_tmp,
                                    i_im, i_im + n_im_digits, n_im_remainder,
1334 1335
                                    im_has_decimal, &locale, &tmp_format,
                                    &maxchar);
1336 1337 1338
    if (n_im_total == -1) {
        goto done;
    }
Martin v. Löwis's avatar
Martin v. Löwis committed
1339 1340 1341 1342 1343 1344 1345 1346

    if (skip_re)
        n_re_total = 0;

    /* Add 1 for the 'j', and optionally 2 for parens. */
    calc_padding(n_re_total + n_im_total + 1 + add_parens * 2,
                 format->width, format->align, &lpad, &rpad, &total);

1347
    if (lpad || rpad)
1348 1349
        maxchar = Py_MAX(maxchar, format->fill_char);

1350
    if (_PyUnicodeWriter_Prepare(writer, total, maxchar) == -1)
Martin v. Löwis's avatar
Martin v. Löwis committed
1351
        goto done;
1352 1353
    rkind = writer->kind;
    rdata = writer->data;
Martin v. Löwis's avatar
Martin v. Löwis committed
1354 1355

    /* Populate the memory. First, the padding. */
1356 1357
    result = fill_padding(writer,
                          n_re_total + n_im_total + 1 + add_parens * 2,
1358
                          format->fill_char, lpad, rpad);
1359 1360
    if (result == -1)
        goto done;
Martin v. Löwis's avatar
Martin v. Löwis committed
1361

1362 1363 1364 1365
    if (add_parens) {
        PyUnicode_WRITE(rkind, rdata, writer->pos, '(');
        writer->pos++;
    }
Martin v. Löwis's avatar
Martin v. Löwis committed
1366 1367

    if (!skip_re) {
1368 1369 1370 1371 1372 1373
        result = fill_number(writer, &re_spec,
                             re_unicode_tmp, i_re, i_re + n_re_digits,
                             NULL, 0,
                             0,
                             &locale, 0);
        if (result == -1)
1374
            goto done;
Martin v. Löwis's avatar
Martin v. Löwis committed
1375
    }
1376 1377 1378 1379 1380 1381
    result = fill_number(writer, &im_spec,
                         im_unicode_tmp, i_im, i_im + n_im_digits,
                         NULL, 0,
                         0,
                         &locale, 0);
    if (result == -1)
1382
        goto done;
1383 1384 1385 1386 1387 1388
    PyUnicode_WRITE(rkind, rdata, writer->pos, 'j');
    writer->pos++;

    if (add_parens) {
        PyUnicode_WRITE(rkind, rdata, writer->pos, ')');
        writer->pos++;
1389
    }
Martin v. Löwis's avatar
Martin v. Löwis committed
1390

1391
    writer->pos += rpad;
Martin v. Löwis's avatar
Martin v. Löwis committed
1392 1393 1394 1395 1396 1397

done:
    PyMem_Free(re_buf);
    PyMem_Free(im_buf);
    Py_XDECREF(re_unicode_tmp);
    Py_XDECREF(im_unicode_tmp);
1398
    free_locale_info(&locale);
Martin v. Löwis's avatar
Martin v. Löwis committed
1399 1400 1401 1402 1403 1404
    return result;
}

/************************************************************************/
/*********** built in formatters ****************************************/
/************************************************************************/
1405
static int
1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423
format_obj(PyObject *obj, _PyUnicodeWriter *writer)
{
    PyObject *str;
    int err;

    str = PyObject_Str(obj);
    if (str == NULL)
        return -1;
    err = _PyUnicodeWriter_WriteStr(writer, str);
    Py_DECREF(str);
    return err;
}

int
_PyUnicode_FormatAdvancedWriter(_PyUnicodeWriter *writer,
                                PyObject *obj,
                                PyObject *format_spec,
                                Py_ssize_t start, Py_ssize_t end)
Martin v. Löwis's avatar
Martin v. Löwis committed
1424 1425
{
    InternalFormatSpec format;
1426 1427

    assert(PyUnicode_Check(obj));
Martin v. Löwis's avatar
Martin v. Löwis committed
1428 1429 1430

    /* check for the special case of zero length format spec, make
       it equivalent to str(obj) */
1431 1432 1433 1434 1435 1436
    if (start == end) {
        if (PyUnicode_CheckExact(obj))
            return _PyUnicodeWriter_WriteStr(writer, obj);
        else
            return format_obj(obj, writer);
    }
Martin v. Löwis's avatar
Martin v. Löwis committed
1437 1438 1439 1440

    /* parse the format_spec */
    if (!parse_internal_render_format_spec(format_spec, start, end,
                                           &format, 's', '<'))
1441
        return -1;
Martin v. Löwis's avatar
Martin v. Löwis committed
1442 1443 1444 1445 1446

    /* type conversion? */
    switch (format.type) {
    case 's':
        /* no type conversion needed, already a string.  do the formatting */
1447
        return format_string_internal(obj, &format, writer);
Martin v. Löwis's avatar
Martin v. Löwis committed
1448 1449 1450
    default:
        /* unknown */
        unknown_presentation_type(format.type, obj->ob_type->tp_name);
1451
        return -1;
Martin v. Löwis's avatar
Martin v. Löwis committed
1452 1453 1454
    }
}

1455 1456 1457 1458 1459
int
_PyLong_FormatAdvancedWriter(_PyUnicodeWriter *writer,
                             PyObject *obj,
                             PyObject *format_spec,
                             Py_ssize_t start, Py_ssize_t end)
Martin v. Löwis's avatar
Martin v. Löwis committed
1460
{
1461
    PyObject *tmp = NULL, *str = NULL;
Martin v. Löwis's avatar
Martin v. Löwis committed
1462
    InternalFormatSpec format;
1463
    int result = -1;
Martin v. Löwis's avatar
Martin v. Löwis committed
1464 1465 1466 1467

    /* check for the special case of zero length format spec, make
       it equivalent to str(obj) */
    if (start == end) {
1468 1469 1470 1471
        if (PyLong_CheckExact(obj))
            return _PyLong_FormatWriter(writer, obj, 10, 0);
        else
            return format_obj(obj, writer);
Martin v. Löwis's avatar
Martin v. Löwis committed
1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487
    }

    /* parse the format_spec */
    if (!parse_internal_render_format_spec(format_spec, start, end,
                                           &format, 'd', '>'))
        goto done;

    /* type conversion? */
    switch (format.type) {
    case 'b':
    case 'c':
    case 'd':
    case 'o':
    case 'x':
    case 'X':
    case 'n':
1488
        /* no type conversion needed, already an int.  do the formatting */
1489
        result = format_long_internal(obj, &format, writer);
Martin v. Löwis's avatar
Martin v. Löwis committed
1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502
        break;

    case 'e':
    case 'E':
    case 'f':
    case 'F':
    case 'g':
    case 'G':
    case '%':
        /* convert to float */
        tmp = PyNumber_Float(obj);
        if (tmp == NULL)
            goto done;
1503
        result = format_float_internal(tmp, &format, writer);
Martin v. Löwis's avatar
Martin v. Löwis committed
1504 1505 1506 1507 1508 1509 1510 1511 1512 1513
        break;

    default:
        /* unknown */
        unknown_presentation_type(format.type, obj->ob_type->tp_name);
        goto done;
    }

done:
    Py_XDECREF(tmp);
1514
    Py_XDECREF(str);
Martin v. Löwis's avatar
Martin v. Löwis committed
1515 1516 1517
    return result;
}

1518 1519 1520 1521 1522
int
_PyFloat_FormatAdvancedWriter(_PyUnicodeWriter *writer,
                              PyObject *obj,
                              PyObject *format_spec,
                              Py_ssize_t start, Py_ssize_t end)
Martin v. Löwis's avatar
Martin v. Löwis committed
1523 1524 1525 1526 1527
{
    InternalFormatSpec format;

    /* check for the special case of zero length format spec, make
       it equivalent to str(obj) */
1528 1529
    if (start == end)
        return format_obj(obj, writer);
Martin v. Löwis's avatar
Martin v. Löwis committed
1530 1531 1532 1533

    /* parse the format_spec */
    if (!parse_internal_render_format_spec(format_spec, start, end,
                                           &format, '\0', '>'))
1534
        return -1;
Martin v. Löwis's avatar
Martin v. Löwis committed
1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547

    /* type conversion? */
    switch (format.type) {
    case '\0': /* No format code: like 'g', but with at least one decimal. */
    case 'e':
    case 'E':
    case 'f':
    case 'F':
    case 'g':
    case 'G':
    case 'n':
    case '%':
        /* no conversion, already a float.  do the formatting */
1548
        return format_float_internal(obj, &format, writer);
Martin v. Löwis's avatar
Martin v. Löwis committed
1549 1550 1551 1552

    default:
        /* unknown */
        unknown_presentation_type(format.type, obj->ob_type->tp_name);
1553
        return -1;
Martin v. Löwis's avatar
Martin v. Löwis committed
1554 1555 1556
    }
}

1557 1558 1559 1560 1561
int
_PyComplex_FormatAdvancedWriter(_PyUnicodeWriter *writer,
                                PyObject *obj,
                                PyObject *format_spec,
                                Py_ssize_t start, Py_ssize_t end)
Martin v. Löwis's avatar
Martin v. Löwis committed
1562 1563 1564 1565 1566
{
    InternalFormatSpec format;

    /* check for the special case of zero length format spec, make
       it equivalent to str(obj) */
1567 1568
    if (start == end)
        return format_obj(obj, writer);
Martin v. Löwis's avatar
Martin v. Löwis committed
1569 1570 1571 1572

    /* parse the format_spec */
    if (!parse_internal_render_format_spec(format_spec, start, end,
                                           &format, '\0', '>'))
1573
        return -1;
Martin v. Löwis's avatar
Martin v. Löwis committed
1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585

    /* type conversion? */
    switch (format.type) {
    case '\0': /* No format code: like 'g', but with at least one decimal. */
    case 'e':
    case 'E':
    case 'f':
    case 'F':
    case 'g':
    case 'G':
    case 'n':
        /* no conversion, already a complex.  do the formatting */
1586
        return format_complex_internal(obj, &format, writer);
Martin v. Löwis's avatar
Martin v. Löwis committed
1587 1588 1589 1590

    default:
        /* unknown */
        unknown_presentation_type(format.type, obj->ob_type->tp_name);
1591
        return -1;
Martin v. Löwis's avatar
Martin v. Löwis committed
1592 1593
    }
}