Print this page
2964 need POSIX 2008 locale object support
Reviewed by: Robert Mustacchi <rm@joyent.com>
Reviewed by: Gordon Ross <gordon.ross@nexenta.com>
Approved by: TBD
   1 /*

   2  * Copyright 2010 Nexenta Systems, Inc.  All rights reserved.
   3  * Copyright (c) 2001 Alexey Zelkin <phantom@FreeBSD.org>
   4  * All rights reserved.
   5  *
   6  * Redistribution and use in source and binary forms, with or without
   7  * modification, are permitted provided that the following conditions
   8  * are met:
   9  * 1. Redistributions of source code must retain the above copyright
  10  *    notice, this list of conditions and the following disclaimer.
  11  * 2. Redistributions in binary form must reproduce the above copyright
  12  *    notice, this list of conditions and the following disclaimer in the
  13  *    documentation and/or other materials provided with the distribution.
  14  *
  15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  18  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  19  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)


  24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  25  * SUCH DAMAGE.
  26  *
  27  */
  28 
  29 #ifndef _LCONV_C99
  30 #define _LCONV_C99
  31 #endif
  32 
  33 #include "lint.h"
  34 #include <sys/types.h>
  35 #include <ctype.h>
  36 #include <errno.h>
  37 #include <limits.h>
  38 #include <locale.h>
  39 #include <monetary.h>
  40 #include <stdarg.h>
  41 #include <stdio.h>
  42 #include <stdlib.h>
  43 #include <string.h>



  44 
  45 /* internal flags */
  46 #define NEED_GROUPING           0x01    /* print digits grouped (default) */
  47 #define SIGN_POSN_USED          0x02    /* '+' or '(' usage flag */
  48 #define LOCALE_POSN             0x04    /* use locale defined +/- (default) */
  49 #define PARENTH_POSN            0x08    /* enclose negative amount in () */
  50 #define SUPRESS_CURR_SYMBOL     0x10    /* supress the currency from output */
  51 #define LEFT_JUSTIFY            0x20    /* left justify */
  52 #define USE_INTL_CURRENCY       0x40    /* use international currency symbol */
  53 #define IS_NEGATIVE             0x80    /* is argument value negative ? */
  54 
  55 /* internal macros */
  56 #define PRINT(CH) {                                             \
  57         if (dst >= s + maxsize)                              \
  58                 goto e2big_error;                               \
  59         *dst++ = CH;                                            \
  60 }
  61 
  62 #define PRINTS(STR) {                                           \
  63         char *tmps = STR;                                       \
  64         while (*tmps != '\0')                                   \
  65                 PRINT(*tmps++);                                 \
  66 }
  67 
  68 #define GET_NUMBER(VAR) {                                       \
  69         VAR = 0;                                                \
  70         while (isdigit((unsigned char)*fmt)) {                  \
  71                 if (VAR > INT_MAX / 10)                              \
  72                         goto e2big_error;                       \
  73                 VAR *= 10;                                      \
  74                 VAR += *fmt - '0';                              \
  75                 if (VAR < 0)                                 \
  76                         goto e2big_error;                       \
  77                 fmt++;                                          \
  78         }                                                       \
  79 }
  80 
  81 #define GRPCPY(howmany) {                                       \
  82         int i = howmany;                                        \
  83         while (i-- > 0) {                                    \
  84                 avalue_size--;                                  \
  85                 *--bufend = *(avalue+avalue_size+padded);       \
  86         }                                                       \
  87 }
  88 
  89 #define GRPSEP {                                                \
  90         *--bufend = thousands_sep;                              \

  91         groups++;                                               \
  92 }
  93 
  94 static void __setup_vars(int, char *, char *, char *, char **);
  95 static int __calc_left_pad(int, char *);
  96 static char *__format_grouped_double(double, int *, int, int, int);


  97 
  98 ssize_t
  99 strfmon(char *_RESTRICT_KYWD s, size_t maxsize,
 100     const char *_RESTRICT_KYWD format, ...)
 101 {
 102         va_list         ap;
 103         char            *dst;           /* output destination pointer */
 104         const char      *fmt;           /* current format poistion pointer */
 105         struct lconv    *lc;            /* pointer to lconv structure */
 106         char            *asciivalue;    /* formatted double pointer */
 107 
 108         int             flags;          /* formatting options */
 109         int             pad_char;       /* padding character */
 110         int             pad_size;       /* pad size */
 111         int             width;          /* field width */
 112         int             left_prec;      /* left precision */
 113         int             right_prec;     /* right precision */
 114         double          value;          /* just value */
 115         char            space_char = ' '; /* space after currency */
 116 
 117         char            cs_precedes;    /* values gathered from struct lconv */
 118         char            sep_by_space;
 119         char            sign_posn;
 120         char            *signstr;
 121         char            *currency_symbol;
 122 
 123         char            *tmpptr;        /* temporary vars */
 124         int             sverrno;


 125 
 126         va_start(ap, format);

 127 
 128         lc = localeconv();
 129         dst = s;
 130         fmt = format;
 131         asciivalue = NULL;
 132         currency_symbol = NULL;
 133         pad_size = 0;
 134 
 135         while (*fmt) {
 136                 /* pass nonformating characters AS IS */
 137                 if (*fmt != '%')
 138                         goto literal;
 139 
 140                 /* '%' found ! */
 141 
 142                 /* "%%" mean just '%' */
 143                 if (*(fmt+1) == '%') {
 144                         fmt++;
 145         literal:
 146                         PRINT(*fmt++);
 147                         continue;
 148                 }


 214                                 goto format_error;
 215                         GET_NUMBER(right_prec);
 216                         if ((unsigned int)right_prec >= maxsize - (dst - s) -
 217                             left_prec)
 218                                 goto e2big_error;
 219                 }
 220 
 221                 /* Conversion Characters */
 222                 switch (*fmt++) {
 223                         case 'i':       /* use internaltion currency format */
 224                                 flags |= USE_INTL_CURRENCY;
 225                                 break;
 226                         case 'n':       /* use national currency format */
 227                                 flags &= ~(USE_INTL_CURRENCY);
 228                                 break;
 229                         default:
 230                                 /* required char missing or premature EOS */
 231                                 goto format_error;
 232                 }
 233 
 234                 if (currency_symbol != NULL)
 235                         free(currency_symbol);
 236                 if (flags & USE_INTL_CURRENCY) {
 237                         currency_symbol = strdup(lc->int_curr_symbol);

 238                         if (currency_symbol != NULL)
 239                                 space_char = *(currency_symbol+3);
 240                 } else
 241                         currency_symbol = strdup(lc->currency_symbol);
 242 
 243                 if (currency_symbol == NULL)
 244                         goto end_error;                 /* ENOMEM. */
 245 
 246                 /* value itself */
 247                 value = va_arg(ap, double);
 248 
 249                 /* detect sign */
 250                 if (value < 0) {
 251                         flags |= IS_NEGATIVE;
 252                         value = -value;
 253                 }
 254 
 255                 /* fill left_prec with amount of padding chars */
 256                 if (left_prec >= 0) {
 257                         pad_size = __calc_left_pad((flags ^ IS_NEGATIVE),
 258                             currency_symbol) -
 259                             __calc_left_pad(flags, currency_symbol);
 260                         if (pad_size < 0)
 261                                 pad_size = 0;
 262                 }
 263 
 264                 if (asciivalue != NULL)
 265                         free(asciivalue);
 266                 asciivalue = __format_grouped_double(value, &flags,
 267                     left_prec, right_prec, pad_char);
 268                 if (asciivalue == NULL)
 269                         goto end_error;         /* errno already set */
 270                                                 /* to ENOMEM by malloc() */
 271 
 272                 /* set some variables for later use */
 273                 __setup_vars(flags, &cs_precedes, &sep_by_space, &sign_posn,
 274                     &signstr);
 275 
 276                 /*
 277                  * Description of some LC_MONETARY's values:
 278                  *
 279                  * p_cs_precedes & n_cs_precedes
 280                  *
 281                  * = 1 - $currency_symbol precedes the value
 282                  *       for a monetary quantity with a non-negative value
 283                  * = 0 - symbol succeeds the value
 284                  *
 285                  * p_sep_by_space & n_sep_by_space
 286                  *
 287                  * = 0 - no space separates $currency_symbol
 288                  *       from the value for a monetary quantity with a
 289                  *       non-negative value
 290                  * = 1 - space separates the symbol from the value
 291                  * = 2 - space separates the symbol and the sign string,
 292                  *       if adjacent.
 293                  *
 294                  * p_sign_posn & n_sign_posn


 298                  * = 1 - the sign string precedes the quantity and the
 299                  *       $currency_symbol
 300                  * = 2 - the sign string succeeds the quantity and the
 301                  *       $currency_symbol
 302                  * = 3 - the sign string precedes the $currency_symbol
 303                  * = 4 - the sign string succeeds the $currency_symbol
 304                  *
 305                  */
 306 
 307                 tmpptr = dst;
 308 
 309                 while (pad_size-- > 0)
 310                         PRINT(' ');
 311 
 312                 if (sign_posn == 0 && (flags & IS_NEGATIVE))
 313                         PRINT('(');
 314 
 315                 if (cs_precedes == 1) {
 316                         if (sign_posn == 1 || sign_posn == 3) {
 317                                 PRINTS(signstr);
 318                                 if (sep_by_space == 2)          /* XXX: ? */
 319                                         PRINT(' ');
 320                         }
 321 
 322                         if (!(flags & SUPRESS_CURR_SYMBOL)) {
 323                                 PRINTS(currency_symbol);
 324 
 325                                 if (sign_posn == 4) {
 326                                         if (sep_by_space == 2)
 327                                                 PRINT(space_char);
 328                                         PRINTS(signstr);
 329                                         if (sep_by_space == 1)
 330                                                 PRINT(' ');
 331                                 } else if (sep_by_space == 1)
 332                                         PRINT(space_char);
 333                         }
 334                 } else if (sign_posn == 1)
 335                         PRINTS(signstr);
 336 
 337                 PRINTS(asciivalue);
 338 


 365                 }
 366 
 367                 if (sign_posn == 0 && (flags & IS_NEGATIVE))
 368                         PRINT(')');
 369 
 370                 if (dst - tmpptr < width) {
 371                         if (flags & LEFT_JUSTIFY) {
 372                                 while (dst - tmpptr < width)
 373                                         PRINT(' ');
 374                         } else {
 375                                 pad_size = dst-tmpptr;
 376                                 (void) memmove(tmpptr + width-pad_size, tmpptr,
 377                                     pad_size);
 378                                 (void) memset(tmpptr, ' ', width-pad_size);
 379                                 dst += width-pad_size;
 380                         }
 381                 }
 382         }
 383 
 384         PRINT('\0');
 385         va_end(ap);
 386         free(asciivalue);
 387         free(currency_symbol);
 388         return (dst - s - 1);   /* size of put data except trailing '\0' */
 389 
 390 e2big_error:
 391         errno = E2BIG;
 392         goto end_error;
 393 
 394 format_error:
 395         errno = EINVAL;
 396 
 397 end_error:
 398         sverrno = errno;
 399         if (asciivalue != NULL)
 400                 free(asciivalue);
 401         if (currency_symbol != NULL)
 402                 free(currency_symbol);
 403         errno = sverrno;
 404         va_end(ap);
 405         return (-1);
 406 }
 407 
 408 static void
 409 __setup_vars(int flags, char *cs_precedes, char *sep_by_space,
 410     char *sign_posn, char **signstr)
 411 {


 412 
 413         struct lconv *lc = localeconv();




 414 
















 415         if ((flags & IS_NEGATIVE) && (flags & USE_INTL_CURRENCY)) {
 416                 *cs_precedes = lc->int_n_cs_precedes;
 417                 *sep_by_space = lc->int_n_sep_by_space;
 418                 *sign_posn = (flags & PARENTH_POSN) ? 0 : lc->int_n_sign_posn;
 419                 *signstr = (lc->negative_sign[0] == '\0') ? "-"
 420                     : lc->negative_sign;

 421         } else if (flags & USE_INTL_CURRENCY) {
 422                 *cs_precedes = lc->int_p_cs_precedes;
 423                 *sep_by_space = lc->int_p_sep_by_space;
 424                 *sign_posn = (flags & PARENTH_POSN) ? 0 : lc->int_p_sign_posn;
 425                 *signstr = lc->positive_sign;

 426         } else if (flags & IS_NEGATIVE) {
 427                 *cs_precedes = lc->n_cs_precedes;
 428                 *sep_by_space = lc->n_sep_by_space;
 429                 *sign_posn = (flags & PARENTH_POSN) ? 0 : lc->n_sign_posn;
 430                 *signstr = (lc->negative_sign[0] == '\0') ? "-"
 431                     : lc->negative_sign;
 432         } else {
 433                 *cs_precedes = lc->p_cs_precedes;
 434                 *sep_by_space = lc->p_sep_by_space;
 435                 *sign_posn = (flags & PARENTH_POSN) ? 0 : lc->p_sign_posn;
 436                 *signstr = lc->positive_sign;
 437         }
 438 
 439         /* Set defult values for unspecified information. */
 440         if (*cs_precedes != 0)
 441                 *cs_precedes = 1;
 442         if (*sep_by_space == CHAR_MAX)
 443                 *sep_by_space = 0;
 444         if (*sign_posn == CHAR_MAX)
 445                 *sign_posn = 0;
 446 }
 447 
 448 static int
 449 __calc_left_pad(int flags, char *cur_symb)
 450 {
 451 
 452         char cs_precedes, sep_by_space, sign_posn, *signstr;
 453         int left_chars = 0;
 454 
 455         __setup_vars(flags, &cs_precedes, &sep_by_space, &sign_posn, &signstr);

 456 
 457         if (cs_precedes != 0) {
 458                 left_chars += strlen(cur_symb);
 459                 if (sep_by_space != 0)
 460                         left_chars++;
 461         }
 462 
 463         switch (sign_posn) {
 464                 case 1:
 465                         left_chars += strlen(signstr);
 466                         break;
 467                 case 3:
 468                 case 4:
 469                         if (cs_precedes != 0)
 470                                 left_chars += strlen(signstr);
 471         }
 472         return (left_chars);
 473 }
 474 
 475 static int
 476 get_groups(int size, char *grouping)
 477 {
 478 
 479         int     chars = 0;
 480 
 481         if (*grouping == CHAR_MAX || *grouping <= 0) /* no grouping ? */
 482                 return (0);
 483 
 484         while (size > (int)*grouping) {
 485                 chars++;
 486                 size -= (int)*grouping++;
 487                 /* no more grouping ? */
 488                 if (*grouping == CHAR_MAX)
 489                         break;
 490                 /* rest grouping with same value ? */
 491                 if (*grouping == 0) {
 492                         chars += (size - 1) / *(grouping - 1);
 493                         break;
 494                 }
 495         }
 496         return (chars);
 497 }
 498 
 499 /* convert double to ASCII */
 500 static char *
 501 __format_grouped_double(double value, int *flags,
 502     int left_prec, int right_prec, int pad_char)

 503 {
 504 
 505         char            *rslt;
 506         char            *avalue;
 507         int             avalue_size;
 508         char            fmt[32];
 509 
 510         size_t          bufsize;
 511         char            *bufend;
 512 
 513         int             padded;
 514 
 515         struct lconv    *lc = localeconv();
 516         char            *grouping;
 517         char            decimal_point;
 518         char            thousands_sep;

 519 
 520         int groups = 0;
 521 
 522         grouping = lc->mon_grouping;
 523         decimal_point = *lc->mon_decimal_point;
 524         if (decimal_point == '\0')
 525                 decimal_point = *lc->decimal_point;
 526         thousands_sep = *lc->mon_thousands_sep;
 527         if (thousands_sep == '\0')
 528                 thousands_sep = *lc->thousands_sep;
 529 



 530         /* fill left_prec with default value */
 531         if (left_prec == -1)
 532                 left_prec = 0;
 533 
 534         /* fill right_prec with default value */
 535         if (right_prec == -1) {
 536                 if (*flags & USE_INTL_CURRENCY)
 537                         right_prec = lc->int_frac_digits;
 538                 else
 539                         right_prec = lc->frac_digits;
 540 
 541                 if (right_prec == CHAR_MAX)     /* POSIX locale ? */
 542                         right_prec = 2;
 543         }
 544 
 545         if (*flags & NEED_GROUPING)
 546                 left_prec += get_groups(left_prec, grouping);
 547 
 548         /* convert to string */
 549         (void) snprintf(fmt, sizeof (fmt), "%%%d.%df",
 550             left_prec + right_prec + 1, right_prec);
 551         avalue_size = asprintf(&avalue, fmt, value);
 552         if (avalue_size < 0)
 553                 return (NULL);
 554 
 555         /* make sure that we've enough space for result string */








 556         bufsize = strlen(avalue)*2+1;
 557         rslt = calloc(1, bufsize);
 558         if (rslt == NULL) {
 559                 free(avalue);
 560                 return (NULL);
 561         }
 562         bufend = rslt + bufsize - 1;    /* reserve space for trailing '\0' */
 563 
 564         /* skip spaces at beggining */
 565         padded = 0;
 566         while (avalue[padded] == ' ') {
 567                 padded++;
 568                 avalue_size--;
 569         }
 570 
 571         if (right_prec > 0) {
 572                 bufend -= right_prec;
 573                 (void) memcpy(bufend, avalue + avalue_size+padded-right_prec,
 574                     right_prec);
 575                 *--bufend = decimal_point;
 576                 avalue_size -= (right_prec + 1);

 577         }
 578 
 579         if ((*flags & NEED_GROUPING) &&
 580             thousands_sep != '\0' &&    /* XXX: need investigation */
 581             *grouping != CHAR_MAX &&
 582             *grouping > 0) {
 583                 while (avalue_size > (int)*grouping) {
 584                         GRPCPY(*grouping);
 585                         GRPSEP;
 586                         grouping++;
 587 
 588                         /* no more grouping ? */
 589                         if (*grouping == CHAR_MAX)
 590                                 break;
 591 
 592                         /* rest grouping with same value ? */
 593                         if (*grouping == 0) {
 594                                 grouping--;
 595                                 while (avalue_size > *grouping) {
 596                                         GRPCPY(*grouping);
 597                                         GRPSEP;
 598                                 }
 599                         }
 600                 }


   1 /*
   2  * Copyright 2013 Garrett D'Amore <garrett@damore.org>
   3  * Copyright 2010 Nexenta Systems, Inc.  All rights reserved.
   4  * Copyright (c) 2001 Alexey Zelkin <phantom@FreeBSD.org>
   5  * All rights reserved.
   6  *
   7  * Redistribution and use in source and binary forms, with or without
   8  * modification, are permitted provided that the following conditions
   9  * are met:
  10  * 1. Redistributions of source code must retain the above copyright
  11  *    notice, this list of conditions and the following disclaimer.
  12  * 2. Redistributions in binary form must reproduce the above copyright
  13  *    notice, this list of conditions and the following disclaimer in the
  14  *    documentation and/or other materials provided with the distribution.
  15  *
  16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)


  25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  26  * SUCH DAMAGE.
  27  *
  28  */
  29 
  30 #ifndef _LCONV_C99
  31 #define _LCONV_C99
  32 #endif
  33 
  34 #include "lint.h"
  35 #include <sys/types.h>
  36 #include <ctype.h>
  37 #include <errno.h>
  38 #include <limits.h>
  39 #include <locale.h>
  40 #include <monetary.h>
  41 #include <stdarg.h>
  42 #include <stdio.h>
  43 #include <stdlib.h>
  44 #include <string.h>
  45 #include "localeimpl.h"
  46 #include "lmonetary.h"
  47 #include "lnumeric.h"
  48 
  49 /* internal flags */
  50 #define NEED_GROUPING           0x01    /* print digits grouped (default) */
  51 #define SIGN_POSN_USED          0x02    /* '+' or '(' usage flag */
  52 #define LOCALE_POSN             0x04    /* use locale defined +/- (default) */
  53 #define PARENTH_POSN            0x08    /* enclose negative amount in () */
  54 #define SUPRESS_CURR_SYMBOL     0x10    /* supress the currency from output */
  55 #define LEFT_JUSTIFY            0x20    /* left justify */
  56 #define USE_INTL_CURRENCY       0x40    /* use international currency symbol */
  57 #define IS_NEGATIVE             0x80    /* is argument value negative ? */
  58 
  59 /* internal macros */
  60 #define PRINT(CH) {                                             \
  61         if (dst >= s + maxsize)                              \
  62                 goto e2big_error;                               \
  63         *dst++ = CH;                                            \
  64 }
  65 
  66 #define PRINTS(STR) {                                           \
  67         const char *tmps = STR;                                 \
  68         while (*tmps != '\0')                                   \
  69                 PRINT(*tmps++);                                 \
  70 }
  71 
  72 #define GET_NUMBER(VAR) {                                       \
  73         VAR = 0;                                                \
  74         while (isdigit((unsigned char)*fmt)) {                  \
  75                 if (VAR > INT_MAX / 10)                              \
  76                         goto e2big_error;                       \
  77                 VAR *= 10;                                      \
  78                 VAR += *fmt - '0';                              \
  79                 if (VAR < 0)                                 \
  80                         goto e2big_error;                       \
  81                 fmt++;                                          \
  82         }                                                       \
  83 }
  84 
  85 #define GRPCPY(howmany) {                                       \
  86         int i = howmany;                                        \
  87         while (i-- > 0) {                                    \
  88                 avalue_size--;                                  \
  89                 *--bufend = *(avalue+avalue_size+padded);       \
  90         }                                                       \
  91 }
  92 
  93 #define GRPSEP {                                                \
  94         bufend -= thousands_len;                                \
  95         (void) memcpy(bufend, thousands_sep, thousands_len);    \
  96         groups++;                                               \
  97 }
  98 
  99 static void setup_vars(const struct lc_monetary *, int, char *, char *, char *,
 100     const char **);
 101 static int calc_left_pad(const struct lc_monetary *, int, const char *);
 102 static char *format_grouped_double(const struct lc_monetary *,
 103     const struct lc_numeric *, double, int *, int, int, int);
 104 
 105 ssize_t
 106 strfmon_impl(char *_RESTRICT_KYWD s, size_t maxsize, locale_t loc,
 107     const char *_RESTRICT_KYWD format, va_list ap)
 108 {

 109         char            *dst;           /* output destination pointer */
 110         const char      *fmt;           /* current format poistion pointer */

 111         char            *asciivalue;    /* formatted double pointer */
 112 
 113         int             flags;          /* formatting options */
 114         int             pad_char;       /* padding character */
 115         int             pad_size;       /* pad size */
 116         int             width;          /* field width */
 117         int             left_prec;      /* left precision */
 118         int             right_prec;     /* right precision */
 119         double          value;          /* just value */
 120         char            space_char = ' '; /* space after currency */
 121 
 122         char            cs_precedes;    /* values from struct lc_monetary */
 123         char            sep_by_space;
 124         char            sign_posn;
 125         const char      *signstr;
 126         const char      *currency_symbol;
 127 
 128         char            *tmpptr;        /* temporary vars */
 129         int             sverrno;
 130         const struct lc_monetary *lmon;         /* monetary structure */
 131         const struct lc_numeric *lnum;          /* numeric structure */
 132 
 133         lmon = loc->monetary;
 134         lnum = loc->numeric;
 135 

 136         dst = s;
 137         fmt = format;
 138         asciivalue = NULL;
 139         currency_symbol = NULL;
 140         pad_size = 0;
 141 
 142         while (*fmt) {
 143                 /* pass nonformating characters AS IS */
 144                 if (*fmt != '%')
 145                         goto literal;
 146 
 147                 /* '%' found ! */
 148 
 149                 /* "%%" mean just '%' */
 150                 if (*(fmt+1) == '%') {
 151                         fmt++;
 152         literal:
 153                         PRINT(*fmt++);
 154                         continue;
 155                 }


 221                                 goto format_error;
 222                         GET_NUMBER(right_prec);
 223                         if ((unsigned int)right_prec >= maxsize - (dst - s) -
 224                             left_prec)
 225                                 goto e2big_error;
 226                 }
 227 
 228                 /* Conversion Characters */
 229                 switch (*fmt++) {
 230                         case 'i':       /* use internaltion currency format */
 231                                 flags |= USE_INTL_CURRENCY;
 232                                 break;
 233                         case 'n':       /* use national currency format */
 234                                 flags &= ~(USE_INTL_CURRENCY);
 235                                 break;
 236                         default:
 237                                 /* required char missing or premature EOS */
 238                                 goto format_error;
 239                 }
 240 


 241                 if (flags & USE_INTL_CURRENCY) {
 242                         currency_symbol = lmon->int_curr_symbol;
 243                         /* by definition three letters followed by a space */
 244                         if (currency_symbol != NULL)
 245                                 space_char = currency_symbol[3];
 246                 } else
 247                         currency_symbol = lmon->currency_symbol;
 248 



 249                 /* value itself */
 250                 value = va_arg(ap, double);
 251 
 252                 /* detect sign */
 253                 if (value < 0) {
 254                         flags |= IS_NEGATIVE;
 255                         value = -value;
 256                 }
 257 
 258                 /* fill left_prec with amount of padding chars */
 259                 if (left_prec >= 0) {
 260                         pad_size = calc_left_pad(lmon, (flags ^ IS_NEGATIVE),
 261                             currency_symbol) -
 262                             calc_left_pad(lmon, flags, currency_symbol);
 263                         if (pad_size < 0)
 264                                 pad_size = 0;
 265                 }
 266 
 267                 if (asciivalue != NULL)
 268                         free(asciivalue);
 269                 asciivalue = format_grouped_double(lmon, lnum, value, &flags,
 270                     left_prec, right_prec, pad_char);
 271                 if (asciivalue == NULL)
 272                         goto end_error;         /* errno already set */
 273                                                 /* to ENOMEM by malloc() */
 274 
 275                 /* set some variables for later use */
 276                 setup_vars(lmon, flags, &cs_precedes, &sep_by_space,
 277                     &sign_posn, &signstr);
 278 
 279                 /*
 280                  * Description of some LC_MONETARY's values:
 281                  *
 282                  * p_cs_precedes & n_cs_precedes
 283                  *
 284                  * = 1 - $currency_symbol precedes the value
 285                  *       for a monetary quantity with a non-negative value
 286                  * = 0 - symbol succeeds the value
 287                  *
 288                  * p_sep_by_space & n_sep_by_space
 289                  *
 290                  * = 0 - no space separates $currency_symbol
 291                  *       from the value for a monetary quantity with a
 292                  *       non-negative value
 293                  * = 1 - space separates the symbol from the value
 294                  * = 2 - space separates the symbol and the sign string,
 295                  *       if adjacent.
 296                  *
 297                  * p_sign_posn & n_sign_posn


 301                  * = 1 - the sign string precedes the quantity and the
 302                  *       $currency_symbol
 303                  * = 2 - the sign string succeeds the quantity and the
 304                  *       $currency_symbol
 305                  * = 3 - the sign string precedes the $currency_symbol
 306                  * = 4 - the sign string succeeds the $currency_symbol
 307                  *
 308                  */
 309 
 310                 tmpptr = dst;
 311 
 312                 while (pad_size-- > 0)
 313                         PRINT(' ');
 314 
 315                 if (sign_posn == 0 && (flags & IS_NEGATIVE))
 316                         PRINT('(');
 317 
 318                 if (cs_precedes == 1) {
 319                         if (sign_posn == 1 || sign_posn == 3) {
 320                                 PRINTS(signstr);
 321                                 if (sep_by_space == 2)
 322                                         PRINT(' ');
 323                         }
 324 
 325                         if (!(flags & SUPRESS_CURR_SYMBOL)) {
 326                                 PRINTS(currency_symbol);
 327 
 328                                 if (sign_posn == 4) {
 329                                         if (sep_by_space == 2)
 330                                                 PRINT(space_char);
 331                                         PRINTS(signstr);
 332                                         if (sep_by_space == 1)
 333                                                 PRINT(' ');
 334                                 } else if (sep_by_space == 1)
 335                                         PRINT(space_char);
 336                         }
 337                 } else if (sign_posn == 1)
 338                         PRINTS(signstr);
 339 
 340                 PRINTS(asciivalue);
 341 


 368                 }
 369 
 370                 if (sign_posn == 0 && (flags & IS_NEGATIVE))
 371                         PRINT(')');
 372 
 373                 if (dst - tmpptr < width) {
 374                         if (flags & LEFT_JUSTIFY) {
 375                                 while (dst - tmpptr < width)
 376                                         PRINT(' ');
 377                         } else {
 378                                 pad_size = dst-tmpptr;
 379                                 (void) memmove(tmpptr + width-pad_size, tmpptr,
 380                                     pad_size);
 381                                 (void) memset(tmpptr, ' ', width-pad_size);
 382                                 dst += width-pad_size;
 383                         }
 384                 }
 385         }
 386 
 387         PRINT('\0');

 388         free(asciivalue);

 389         return (dst - s - 1);   /* size of put data except trailing '\0' */
 390 
 391 e2big_error:
 392         errno = E2BIG;
 393         goto end_error;
 394 
 395 format_error:
 396         errno = EINVAL;
 397 
 398 end_error:
 399         sverrno = errno;
 400         if (asciivalue != NULL)
 401                 free(asciivalue);


 402         errno = sverrno;

 403         return (-1);
 404 }
 405 
 406 ssize_t
 407 strfmon(char *_RESTRICT_KYWD s, size_t maxsize,
 408     const char *_RESTRICT_KYWD format, ...)
 409 {
 410         va_list ap;
 411         ssize_t ret;
 412 
 413         va_start(ap, format);
 414         ret = strfmon_impl(s, maxsize, uselocale(NULL), format, ap);
 415         va_end(ap);
 416         return (ret);
 417 }
 418 
 419 ssize_t
 420 strfmon_l(char *_RESTRICT_KYWD s, size_t maxsize, locale_t loc,
 421     const char *_RESTRICT_KYWD format, ...)
 422 {
 423         ssize_t ret;
 424         va_list ap;
 425         va_start(ap, format);
 426         ret = strfmon_impl(s, maxsize, loc, format, ap);
 427         va_end(ap);
 428         return (ret);
 429 }
 430 
 431 static void
 432 setup_vars(const struct lc_monetary *lmon, int flags, char *cs_precedes,
 433     char *sep_by_space, char *sign_posn, const char **signstr)
 434 {
 435         if ((flags & IS_NEGATIVE) && (flags & USE_INTL_CURRENCY)) {
 436                 *cs_precedes = lmon->int_n_cs_precedes[0];
 437                 *sep_by_space = lmon->int_n_sep_by_space[0];
 438                 *sign_posn = (flags & PARENTH_POSN) ? 0 :
 439                     lmon->int_n_sign_posn[0];
 440                 *signstr = (lmon->negative_sign[0] == '\0') ? "-" :
 441                     lmon->negative_sign;
 442         } else if (flags & USE_INTL_CURRENCY) {
 443                 *cs_precedes = lmon->int_p_cs_precedes[0];
 444                 *sep_by_space = lmon->int_p_sep_by_space[0];
 445                 *sign_posn = (flags & PARENTH_POSN) ? 0 :
 446                     lmon->int_p_sign_posn[0];
 447                 *signstr = lmon->positive_sign;
 448         } else if (flags & IS_NEGATIVE) {
 449                 *cs_precedes = lmon->n_cs_precedes[0];
 450                 *sep_by_space = lmon->n_sep_by_space[0];
 451                 *sign_posn = (flags & PARENTH_POSN) ? 0 : lmon->n_sign_posn[0];
 452                 *signstr = (lmon->negative_sign[0] == '\0') ? "-" :
 453                     lmon->negative_sign;
 454         } else {
 455                 *cs_precedes = lmon->p_cs_precedes[0];
 456                 *sep_by_space = lmon->p_sep_by_space[0];
 457                 *sign_posn = (flags & PARENTH_POSN) ? 0 : lmon->p_sign_posn[0];
 458                 *signstr = lmon->positive_sign;
 459         }
 460 
 461         /* Set default values for unspecified information. */
 462         if (*cs_precedes != 0)
 463                 *cs_precedes = 1;
 464         if (*sep_by_space == CHAR_MAX)
 465                 *sep_by_space = 0;
 466         if (*sign_posn == CHAR_MAX)
 467                 *sign_posn = 0;
 468 }
 469 
 470 static int
 471 calc_left_pad(const struct lc_monetary *lmon, int flags, const char *cur_symb)
 472 {
 473         char cs_precedes, sep_by_space, sign_posn;
 474         const char *signstr;
 475         int left_chars = 0;
 476 
 477         setup_vars(lmon, flags, &cs_precedes, &sep_by_space, &sign_posn,
 478             &signstr);
 479 
 480         if (cs_precedes != 0) {
 481                 left_chars += strlen(cur_symb);
 482                 if (sep_by_space != 0)
 483                         left_chars++;
 484         }
 485 
 486         switch (sign_posn) {
 487                 case 1:
 488                         left_chars += strlen(signstr);
 489                         break;
 490                 case 3:
 491                 case 4:
 492                         if (cs_precedes != 0)
 493                                 left_chars += strlen(signstr);
 494         }
 495         return (left_chars);
 496 }
 497 
 498 static int
 499 get_groups(int size, const char *grouping)
 500 {
 501 
 502         int     chars = 0;
 503 
 504         if (*grouping == CHAR_MAX || *grouping <= 0) /* no grouping ? */
 505                 return (0);
 506 
 507         while (size > (int)*grouping) {
 508                 chars++;
 509                 size -= (int)*grouping++;
 510                 /* no more grouping ? */
 511                 if (*grouping == CHAR_MAX)
 512                         break;
 513                 /* rest grouping with same value ? */
 514                 if (*grouping == 0) {
 515                         chars += (size - 1) / *(grouping - 1);
 516                         break;
 517                 }
 518         }
 519         return (chars);
 520 }
 521 
 522 /* convert double to ASCII */
 523 static char *
 524 format_grouped_double(const struct lc_monetary *lmon,
 525     const struct lc_numeric *lnum,
 526     double value, int *flags, int left_prec, int right_prec, int pad_char)
 527 {
 528 
 529         char            *rslt;
 530         char            *avalue;
 531         int             avalue_size;
 532         char            fmt[32];
 533 
 534         size_t          bufsize;
 535         char            *bufend;
 536 
 537         int             padded;
 538 
 539         const char      *grouping;
 540         const char      *decimal_point;
 541         const char      *thousands_sep;
 542         int             decimal_len;
 543         int             thousands_len;
 544 
 545         int groups = 0;
 546 
 547         grouping = lmon->mon_grouping;
 548         decimal_point = lmon->mon_decimal_point;
 549         if (*decimal_point == '\0')
 550                 decimal_point = lnum->decimal_point;
 551         thousands_sep = lmon->mon_thousands_sep;
 552         if (*thousands_sep == '\0')
 553                 thousands_sep = lnum->thousands_sep;
 554 
 555         decimal_len = strlen(decimal_point);    /* usually 1 */
 556         thousands_len = strlen(thousands_sep);  /* 0 or 1 usually */
 557 
 558         /* fill left_prec with default value */
 559         if (left_prec == -1)
 560                 left_prec = 0;
 561 
 562         /* fill right_prec with default value */
 563         if (right_prec == -1) {
 564                 if (*flags & USE_INTL_CURRENCY)
 565                         right_prec = lmon->int_frac_digits[0];
 566                 else
 567                         right_prec = lmon->frac_digits[0];
 568 
 569                 if (right_prec == CHAR_MAX)     /* POSIX locale ? */
 570                         right_prec = 2;
 571         }
 572 
 573         if (*flags & NEED_GROUPING)
 574                 left_prec += get_groups(left_prec, grouping);
 575 
 576         /* convert to string */
 577         (void) snprintf(fmt, sizeof (fmt), "%%%d.%df",
 578             left_prec + right_prec + 1, right_prec);
 579         avalue_size = asprintf(&avalue, fmt, value);
 580         if (avalue_size < 0)
 581                 return (NULL);
 582 
 583         /*
 584          * Make sure that we've enough space for result string.
 585          * This assumes that digits take up at least much space as
 586          * grouping and radix characters.  The worst case currently known
 587          * is for Arabic, where two-byte UTF-8 sequences are used for both
 588          * decimal and thousands seperators, and groups can be a small as two
 589          * decimal digits.  This will do no worse than doubling the storage
 590          * requirement.
 591          */
 592         bufsize = strlen(avalue)*2+1;
 593         rslt = calloc(1, bufsize);
 594         if (rslt == NULL) {
 595                 free(avalue);
 596                 return (NULL);
 597         }
 598         bufend = rslt + bufsize - 1;    /* reserve space for trailing '\0' */
 599 
 600         /* skip spaces at beginning */
 601         padded = 0;
 602         while (avalue[padded] == ' ') {
 603                 padded++;
 604                 avalue_size--;
 605         }
 606 
 607         if (right_prec > 0) {
 608                 bufend -= right_prec;
 609                 (void) memcpy(bufend, avalue + avalue_size+padded-right_prec,
 610                     right_prec);
 611                 bufend -= decimal_len;
 612                 (void) memcpy(bufend, decimal_point, decimal_len);
 613                 avalue_size -= (right_prec + decimal_len);
 614         }
 615 
 616         if ((*flags & NEED_GROUPING) &&
 617             thousands_len != 0 &&
 618             *grouping != CHAR_MAX &&
 619             *grouping > 0) {
 620                 while (avalue_size > (int)*grouping) {
 621                         GRPCPY(*grouping);
 622                         GRPSEP;
 623                         grouping++;
 624 
 625                         /* no more grouping ? */
 626                         if (*grouping == CHAR_MAX)
 627                                 break;
 628 
 629                         /* rest grouping with same value ? */
 630                         if (*grouping == 0) {
 631                                 grouping--;
 632                                 while (avalue_size > *grouping) {
 633                                         GRPCPY(*grouping);
 634                                         GRPSEP;
 635                                 }
 636                         }
 637                 }