1 /* Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 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 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
25 # define STRING_TYPE char
26 # define USTRING_TYPE unsigned char
28 # ifdef USE_IN_EXTENDED_LOCALE_MODEL
29 # define STRXFRM __strxfrm_l
31 # define STRXFRM strxfrm
33 # define STRLEN strlen
34 # define STPNCPY __stpncpy
37 /* Include the shared helper functions. `strxfrm'/`wcsxfrm' also use
39 #include "../locale/weight.h"
43 /* Write 32 bit value UTF-8 encoded but only if enough space is left. */
44 static __inline
size_t
45 print_val (u_int32_t value
, char *dest
, size_t max
, size_t act
)
51 tmp
[idx
++] = (char) value
;
54 tmp
[idx
++] = '\x80' + (char) (value
& 0x3f);
58 tmp
[idx
++] = '\xc0' + (char) value
;
61 tmp
[idx
++] = '\x80' + (char) (value
& 0x3f);
65 tmp
[idx
++] = '\xe0' + (char) value
;
68 tmp
[idx
++] = '\x80' + (char) (value
& 0x3f);
72 tmp
[idx
++] = '\xf0' + (char) value
;
75 tmp
[idx
++] = '\x80' + (char) (value
& 0x3f);
79 tmp
[idx
++] = '\xf8' + (char) value
;
82 tmp
[idx
++] = '\x80' + (char) (value
& 0x3f);
83 tmp
[idx
++] = '\xfc' + (char) (value
>> 6);
100 static __inline
size_t
101 print_val (u_int32_t value
, wchar_t *dest
, size_t max
, size_t act
)
103 /* We cannot really assume wchar_t is 32 bits wide. But it is for
104 GCC and so we don't do much optimization for the other case. */
105 if (sizeof (wchar_t) == 4)
108 dest
[act
] = (wchar_t) value
;
117 tmp
[idx
++] = (wchar_t) act
;
120 tmp
[idx
++] = (wchar_t) (0x8000 + (value
& 0x3fff));
123 tmp
[idx
++] = (wchar_t) (0xc000 + value
);
126 tmp
[idx
++] = (wchar_t) (0x8000 + (value
& 0x3fff));
128 tmp
[idx
++] = (wchar_t) (0xe000 + value
);
134 dest
[act
] = tmp
[idx
];
143 /* Transform SRC into a form such that the result of strcmp
144 on two strings that have been transformed by strxfrm is
145 the same as the result of strcoll on the two strings before
146 their transformation. The transformed string is put in at
147 most N characters of DEST and its length is returned. */
148 #ifndef USE_IN_EXTENDED_LOCALE_MODEL
150 STRXFRM (STRING_TYPE
*dest
, const STRING_TYPE
*src
, size_t n
)
153 STRXFRM (STRING_TYPE
*dest
, const STRING_TYPE
*src
, size_t n
, __locale_t l
)
156 #ifdef USE_IN_EXTENDED_LOCALE_MODEL
157 struct locale_data
*current
= l
->__locales
[LC_COLLATE
];
158 # if BYTE_ORDER == BIG_ENDIAN
159 const u_int32_t
*collate_table
= (const u_int32_t
*)
160 current
->values
[_NL_ITEM_INDEX (_NL_COLLATE_TABLE_EB
)].string
;
161 const u_int32_t
*collate_extra
= (const u_int32_t
*)
162 current
->values
[_NL_ITEM_INDEX (_NL_COLLATE_EXTRA_EB
)].string
;
163 # elif BYTE_ORDER == LITTLE_ENDIAN
164 const u_int32_t
*collate_table
= (const u_int32_t
*)
165 current
->values
[_NL_ITEM_INDEX (_NL_COLLATE_TABLE_EL
)].string
;
166 const u_int32_t
*collate_extra
= (const u_int32_t
*)
167 current
->values
[_NL_ITEM_INDEX (_NL_COLLATE_EXTRA_EL
)].string
;
169 # error bizarre byte order
172 weight_t
*forw
= NULL
;
173 weight_t
*backw
= NULL
;
177 /* If the current locale does not specify locale data we use normal
178 8-bit string comparison. */
179 if (collate_nrules
== 0)
182 STPNCPY (dest
, src
, n
);
187 /* Handle an empty string as a special case. */
195 /* Get full information about the string. This means we get
196 information for all passes in a special data structure. */
197 get_string (src
, forw
, backw
);
199 /* Now we have all the information. In at most the given number of
200 passes we can finally decide about the order. */
202 for (pass
= 0; pass
< collate_nrules
; ++pass
)
204 int forward
= (collate_rules
[pass
] & sort_forward
) != 0;
205 const weight_t
*run
= forward
? forw
: backw
;
206 int idx
= forward
? 0 : run
->data
[pass
].number
- 1;
213 /* Here we have to check for IGNORE entries. If these are
214 found we count them and go on with he next value. */
216 && ((w
= run
->data
[pass
].value
[idx
])
217 == (u_int32_t
) IGNORE_CHAR
))
221 ? ++idx
>= run
->data
[pass
].number
224 weight_t
*nextp
= forward
? run
->next
: run
->prev
;
228 /* No more non-INGOREd elements means lowest
233 idx
= forward
? 0 : nextp
->data
[pass
].number
- 1;
238 /* Stop if all characters are processed. */
242 /* Now we have information of the number of ignored weights
243 and the value of the next weight. We have to add 2
244 because 0 means EOS and 1 is the intermediate string end. */
245 if ((collate_rules
[pass
] & sort_position
) != 0)
246 written
= print_val (ignore
+ 2, dest
, n
, written
);
249 written
= print_val (w
, dest
, n
, written
);
251 /* We have to increment the index counters. */
254 if (++idx
>= run
->data
[pass
].number
)
266 idx
= run
->data
[pass
].number
- 1;
271 /* Write marker for end of word. */
272 if (pass
+ 1 < collate_nrules
)
273 written
= print_val (1, dest
, n
, written
);
276 /* Terminate string. */
278 dest
[written
] = L_('\0');
280 /* Return length without counting the terminating '\0'. */