Merge commit 'cc543d0f9e35a75cc302a4cb152756d233299564'
[unleashed.git] / bin / localedef / numeric.c
blob9d1b56ec85525ef07b189db62bf4c6f7e564c0ea
1 /*
2 * This file and its contents are supplied under the terms of the
3 * Common Development and Distribution License ("CDDL"), version 1.0.
4 * You may only use this file in accordance with the terms of version
5 * 1.0 of the CDDL.
7 * A full copy of the text of the CDDL should have accompanied this
8 * source. A copy of the CDDL is also available via the Internet at
9 * http://www.illumos.org/license/CDDL.
13 * Copyright 2013 Garrett D'Amore <garrett@damore.org>
14 * Copyright 2010 Nexenta Systems, Inc. All rights reserved.
18 * LC_NUMERIC database generation routines for localedef.
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <errno.h>
24 #include <sys/types.h>
25 #include <string.h>
26 #include <unistd.h>
27 #include "localedef.h"
28 #include "parser.h"
29 #include "lnumeric.h"
31 static struct lc_numeric numeric;
33 void
34 init_numeric(void)
36 (void) memset(&numeric, 0, sizeof (numeric));
39 void
40 add_numeric_str(wchar_t *wcs)
42 char *str;
44 if ((str = to_mb_string(wcs)) == NULL) {
45 INTERR;
46 return;
48 free(wcs);
50 switch (last_kw) {
51 case T_DECIMAL_POINT:
52 numeric.decimal_point = str;
53 break;
54 case T_THOUSANDS_SEP:
55 numeric.thousands_sep = str;
56 break;
57 default:
58 free(str);
59 INTERR;
60 break;
64 void
65 reset_numeric_group(void)
67 free((char *)numeric.grouping);
68 numeric.grouping = NULL;
71 void
72 add_numeric_group(int n)
74 char *s;
76 if (numeric.grouping == NULL) {
77 (void) asprintf(&s, "%d", n);
78 } else {
79 (void) asprintf(&s, "%s;%d", numeric.grouping, n);
81 if (s == NULL)
82 errf(_("out of memory"));
84 free((char *)numeric.grouping);
85 numeric.grouping = s;
88 void
89 dump_numeric(void)
91 FILE *f;
93 if ((f = open_category()) == NULL) {
94 return;
97 if ((putl_category(numeric.decimal_point, f) == EOF) ||
98 (putl_category(numeric.thousands_sep, f) == EOF) ||
99 (putl_category(numeric.grouping, f) == EOF)) {
100 return;
102 close_category(f);