1 /* Copyright (C) 1998,1999,2000,2001,2002,2004 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
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
26 #include <locale/localeinfo.h>
27 #include <wcsmbsload.h>
28 #include <bits/libc-lock.h>
31 /* These are the descriptions for the default conversion functions. */
32 static struct __gconv_step to_wc
=
34 .__shlib_handle
= NULL
,
37 .__from_name
= (char *) "ANSI_X3.4-1968//TRANSLIT",
38 .__to_name
= (char *) "INTERNAL",
39 .__fct
= __gconv_transform_ascii_internal
,
40 .__btowc_fct
= __gconv_btwoc_ascii
,
43 .__min_needed_from
= 1,
44 .__max_needed_from
= 1,
51 static struct __gconv_step to_mb
=
53 .__shlib_handle
= NULL
,
56 .__from_name
= (char *) "INTERNAL",
57 .__to_name
= (char *) "ANSI_X3.4-1968//TRANSLIT",
58 .__fct
= __gconv_transform_internal_ascii
,
62 .__min_needed_from
= 4,
63 .__max_needed_from
= 4,
71 /* For the default locale we only have to handle ANSI_X3.4-1968. */
72 const struct gconv_fcts __wcsmbs_gconv_fcts_c
=
83 __wcsmbs_getfct (const char *to
, const char *from
, size_t *nstepsp
)
86 struct __gconv_step
*result
;
92 if (__gconv_find_transform (to
, from
, &result
, &nsteps
, 0) != __GCONV_OK
)
93 /* Loading the conversion step is not possible. */
96 /* Maybe it is someday necessary to allow more than one step.
97 Currently this is not the case since the conversions handled here
98 are from and to INTERNAL and there always is a converted for
99 that. It the directly following code is enabled the libio
100 functions will have to allocate appropriate __gconv_step_data
101 elements instead of only one. */
103 /* Count the number of stateful conversions. Since we will only
104 have one 'mbstate_t' object available we can only deal with one
105 stateful conversion. */
107 for (cnt
= 0; cnt
< nsteps
; ++cnt
)
108 if (result
[cnt
].__stateful
)
115 /* We cannot handle this case. */
116 __gconv_close_transform (result
, nsteps
);
126 /* Extract from the given locale name the character set portion. Since
127 only the XPG form of the name includes this information we don't have
128 to take care for the CEN form. */
129 #define extract_charset_name(str) \
131 const char *cp = str; \
132 char *result = NULL; \
134 cp += strcspn (cp, "@.+,"); \
137 const char *endp = ++cp; \
138 while (*endp != '\0' && *endp != '@') \
141 result = strndupa (cp, endp - cp); \
147 /* Some of the functions here must not be used while setlocale is called. */
148 __libc_lock_define (extern, __libc_setlocale_lock attribute_hidden
)
150 /* Load conversion functions for the currently selected locale. */
153 __wcsmbs_load_conv (struct locale_data
*new_category
)
155 /* Acquire the lock. */
156 __libc_lock_lock (__libc_setlocale_lock
);
158 /* We should repeat the test since while we waited some other thread
159 might have run this function. */
160 if (__builtin_expect (new_category
->private.ctype
== NULL
, 1))
162 /* We must find the real functions. */
163 const char *charset_name
;
164 const char *complete_name
;
165 struct gconv_fcts
*new_fcts
;
168 /* Allocate the gconv_fcts structure. */
169 new_fcts
= malloc (sizeof *new_fcts
);
170 if (new_fcts
== NULL
)
173 /* Get name of charset of the locale. */
174 charset_name
= new_category
->values
[_NL_ITEM_INDEX(CODESET
)].string
;
176 /* Does the user want transliteration? */
177 use_translit
= new_category
->use_translit
;
179 /* Normalize the name and add the slashes necessary for a
181 complete_name
= norm_add_slashes (charset_name
,
182 use_translit
? "TRANSLIT" : "");
184 /* It is not necessary to use transliteration in this direction
185 since the internal character set is supposed to be able to
186 represent all others. */
187 new_fcts
->towc
= __wcsmbs_getfct ("INTERNAL", complete_name
,
188 &new_fcts
->towc_nsteps
);
189 new_fcts
->tomb
= (new_fcts
->towc
!= NULL
190 ? __wcsmbs_getfct (complete_name
, "INTERNAL",
191 &new_fcts
->tomb_nsteps
)
194 /* If any of the conversion functions is not available we don't
195 use any since this would mean we cannot convert back and
197 if (new_fcts
->tomb
== NULL
)
199 if (new_fcts
->towc
!= NULL
)
200 __gconv_close_transform (new_fcts
->towc
, new_fcts
->towc_nsteps
);
205 new_category
->private.ctype
= &__wcsmbs_gconv_fcts_c
;
209 new_category
->private.ctype
= new_fcts
;
210 new_category
->private.cleanup
= &_nl_cleanup_ctype
;
214 __libc_lock_unlock (__libc_setlocale_lock
);
218 /* Clone the current conversion function set. */
221 __wcsmbs_clone_conv (struct gconv_fcts
*copy
)
223 const struct gconv_fcts
*orig
;
225 orig
= get_gconv_fcts (_NL_CURRENT_DATA (LC_CTYPE
));
230 /* Now increment the usage counters.
231 Note: This assumes copy->towc_nsteps == 1 and copy->tomb_nsteps == 1. */
232 if (copy
->towc
->__shlib_handle
!= NULL
)
233 ++copy
->towc
->__counter
;
234 if (copy
->tomb
->__shlib_handle
!= NULL
)
235 ++copy
->tomb
->__counter
;
239 /* Get converters for named charset. */
242 __wcsmbs_named_conv (struct gconv_fcts
*copy
, const char *name
)
244 copy
->towc
= __wcsmbs_getfct ("INTERNAL", name
, ©
->towc_nsteps
);
245 if (copy
->towc
!= NULL
)
247 copy
->tomb
= __wcsmbs_getfct (name
, "INTERNAL", ©
->tomb_nsteps
);
248 if (copy
->tomb
== NULL
)
249 __gconv_close_transform (copy
->towc
, copy
->towc_nsteps
);
252 return copy
->towc
== NULL
|| copy
->tomb
== NULL
? 1 : 0;
255 void internal_function
256 _nl_cleanup_ctype (struct locale_data
*locale
)
258 const struct gconv_fcts
*const data
= locale
->private.ctype
;
261 locale
->private.ctype
= NULL
;
262 locale
->private.cleanup
= NULL
;
264 /* Free the old conversions. */
265 __gconv_close_transform (data
->tomb
, data
->tomb_nsteps
);
266 __gconv_close_transform (data
->towc
, data
->towc_nsteps
);
267 free ((char *) data
);