1 /* Helper functions used by strftime/strptime to handle alternate digits.
2 Copyright (C) 1995-2002, 2008, 2010 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20 #include "../locale/localeinfo.h"
21 #include <bits/libc-lock.h>
26 /* Some of the functions here must not be used while setlocale is called. */
27 __libc_rwlock_define (extern, __libc_setlocale_lock attribute_hidden
)
29 #define CURRENT(item) (current->values[_NL_ITEM_INDEX (item)].string)
30 #define CURRENT_WSTR(item) \
31 ((wchar_t *) current->values[_NL_ITEM_INDEX (item)].wstr)
34 _nl_init_alt_digit (struct __locale_data
*current
)
36 struct lc_time_data
*data
;
38 if (current
->private.time
== NULL
)
40 current
->private.time
= malloc (sizeof *current
->private.time
);
41 if (current
->private.time
== NULL
)
43 memset (current
->private.time
, 0, sizeof *current
->private.time
);
44 current
->private.cleanup
= &_nl_cleanup_time
;
46 data
= current
->private.time
;
48 if (! data
->alt_digits_initialized
)
50 const char *ptr
= CURRENT (ALT_DIGITS
);
53 data
->alt_digits_initialized
= 1;
57 data
->alt_digits
= malloc (100 * sizeof (const char *));
58 if (data
->alt_digits
!= NULL
)
59 for (cnt
= 0; cnt
< 100; ++cnt
)
61 data
->alt_digits
[cnt
] = ptr
;
63 /* Skip digit format. */
64 ptr
= strchr (ptr
, '\0') + 1;
73 _nl_get_alt_digit (unsigned int number
, struct __locale_data
*current
)
77 if (number
>= 100 || CURRENT (ALT_DIGITS
)[0] == '\0')
80 __libc_rwlock_wrlock (__libc_setlocale_lock
);
82 if (current
->private.time
== NULL
83 || ! current
->private.time
->alt_digits_initialized
)
84 _nl_init_alt_digit (current
);
86 result
= ((current
->private.time
!= NULL
87 && current
->private.time
->alt_digits
!= NULL
)
88 ? current
->private.time
->alt_digits
[number
]
91 __libc_rwlock_unlock (__libc_setlocale_lock
);
99 _nl_get_walt_digit (unsigned int number
, struct __locale_data
*current
)
101 const wchar_t *result
= NULL
;
102 struct lc_time_data
*data
;
104 if (number
>= 100 || CURRENT_WSTR (_NL_WALT_DIGITS
)[0] == L
'\0')
107 __libc_rwlock_wrlock (__libc_setlocale_lock
);
109 if (current
->private.time
== NULL
)
111 current
->private.time
= malloc (sizeof *current
->private.time
);
112 if (current
->private.time
== NULL
)
114 memset (current
->private.time
, 0, sizeof *current
->private.time
);
115 current
->private.cleanup
= &_nl_cleanup_time
;
117 data
= current
->private.time
;
119 if (! data
->walt_digits_initialized
)
121 const wchar_t *ptr
= CURRENT_WSTR (_NL_WALT_DIGITS
);
124 data
->walt_digits_initialized
= 1;
128 data
->walt_digits
= malloc (100 * sizeof (const uint32_t *));
129 if (data
->walt_digits
!= NULL
)
130 for (cnt
= 0; cnt
< 100; ++cnt
)
132 data
->walt_digits
[cnt
] = ptr
;
134 /* Skip digit format. */
135 ptr
= wcschr (ptr
, L
'\0') + 1;
140 if (data
->walt_digits
!= NULL
)
141 result
= data
->walt_digits
[number
];
144 __libc_rwlock_unlock (__libc_setlocale_lock
);
146 return (wchar_t *) result
;
152 _nl_parse_alt_digit (const char **strp
, struct __locale_data
*current
)
154 const char *str
= *strp
;
159 if (CURRENT_WSTR (_NL_WALT_DIGITS
)[0] == L
'\0')
162 __libc_rwlock_wrlock (__libc_setlocale_lock
);
164 if (current
->private.time
== NULL
165 || ! current
->private.time
->alt_digits_initialized
)
166 _nl_init_alt_digit (current
);
168 if (current
->private.time
!= NULL
&&
169 current
->private.time
->alt_digits
!= NULL
)
170 /* Matching is not unambiguous. The alternative digits could be like
171 I, II, III, ... and the first one is a substring of the second
172 and third. Therefore we must keep on searching until we found
173 the longest possible match. Note that this is not specified in
175 for (cnt
= 0; cnt
< 100; ++cnt
)
177 const char *const dig
= current
->private.time
->alt_digits
[cnt
];
178 size_t len
= strlen (dig
);
180 if (len
> maxlen
&& strncmp (dig
, str
, len
) == 0)
187 __libc_rwlock_unlock (__libc_setlocale_lock
);