1 /* Copyright (C) 1995-2015 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Written by Ulrich Drepper <drepper@gnu.org>, 1995.
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, see
17 <http://www.gnu.org/licenses/>. */
26 #include <sys/param.h>
29 # define STRING_TYPE char
30 # define USTRING_TYPE unsigned char
31 # define STRCOLL __strcoll_l
32 # define STRDIFF __strdiff
33 # define STRCMP strcmp
34 # define WEIGHT_H "../locale/weight.h"
39 #define CONCAT(a,b) CONCAT1(a,b)
40 #define CONCAT1(a,b) a##b
42 #include "../locale/localeinfo.h"
45 #define MASK_UTF8_7BIT (1 << 7)
46 #define MASK_UTF8_START (3 << 6)
49 STRDIFF (const STRING_TYPE
*s
, const STRING_TYPE
*t
)
53 for (n
= 0; *s
!= '\0' && *s
++ == *t
++; ++n
)
59 /* Track status while looking for sequences in a string. */
62 int len
; /* Length of the current sequence. */
63 size_t val
; /* Position of the sequence relative to the
64 previous non-ignored sequence. */
65 size_t idxnow
; /* Current index in sequences. */
66 size_t idxmax
; /* Maximum index in sequences. */
67 size_t idxcnt
; /* Current count of indices. */
68 size_t backw
; /* Current Backward sequence index. */
69 size_t backw_stop
; /* Index where the backward sequences stop. */
70 const USTRING_TYPE
*us
; /* The string. */
71 unsigned char rule
; /* Saved rule for the first sequence. */
72 int32_t idx
; /* Index to weight of the current sequence. */
73 int32_t save_idx
; /* Save looked up index of a forward
74 sequence after the last backward
76 const USTRING_TYPE
*back_us
; /* Beginning of the backward sequence. */
79 /* Get next sequence. Traverse the string as required. */
80 static __always_inline
void
81 get_next_seq (coll_seq
*seq
, int nrules
, const unsigned char *rulesets
,
82 const USTRING_TYPE
*weights
, const int32_t *table
,
83 const USTRING_TYPE
*extra
, const int32_t *indirect
,
86 size_t val
= seq
->val
= 0;
88 size_t backw_stop
= seq
->backw_stop
;
89 size_t backw
= seq
->backw
;
90 size_t idxcnt
= seq
->idxcnt
;
91 size_t idxmax
= seq
->idxmax
;
92 int32_t idx
= seq
->idx
;
93 const USTRING_TYPE
*us
= seq
->us
;
98 if (backw_stop
!= ~0ul)
100 /* There is something pushed. */
101 if (backw
== backw_stop
)
103 /* The last pushed character was handled. Continue
104 with forward characters. */
112 /* Nothing anymore. The backward sequence ended with
113 the last sequence in the string. Note that len is
121 /* XXX Traverse BACKW sequences from the beginning of
122 BACKW_STOP to get the next sequence. Is ther a quicker way
124 size_t i
= backw_stop
;
128 int32_t tmp
= findidx (table
, indirect
, extra
, &us
, -1);
129 idx
= tmp
& 0xffffff;
139 int32_t prev_idx
= idx
;
141 while (*us
!= L('\0'))
143 int32_t tmp
= findidx (table
, indirect
, extra
, &us
, -1);
144 unsigned char rule
= tmp
>> 24;
146 idx
= tmp
& 0xffffff;
149 /* Save the rule for the first sequence. */
150 if (__glibc_unlikely (idxcnt
== 0))
153 if ((rulesets
[rule
* nrules
+ pass
]
154 & sort_backward
) == 0)
155 /* No more backward characters to push. */
160 if (backw_stop
>= idxcnt
)
162 /* No sequence at all or just one. */
163 if (idxcnt
== idxmax
|| backw_stop
> idxcnt
)
164 /* Note that len is still zero. */
171 /* We pushed backward sequences. If the stream ended with the
172 backward sequence, then we process the last sequence we
173 found. Otherwise we process the sequence before the last
174 one since the last one was a forward sequence. */
175 seq
->back_us
= seq
->us
;
184 if (backw
> backw_stop
)
189 len
= weights
[idx
++];
190 /* Skip over indices of previous levels. */
191 for (int i
= 0; i
< pass
; i
++)
199 /* Update the structure. */
202 seq
->backw_stop
= backw_stop
;
204 seq
->idxcnt
= idxcnt
;
205 seq
->idxmax
= idxmax
;
210 /* Compare two sequences. */
211 static __always_inline
int
212 do_compare (coll_seq
*seq1
, coll_seq
*seq2
, int position
,
213 const USTRING_TYPE
*weights
)
215 int seq1len
= seq1
->len
;
216 int seq2len
= seq2
->len
;
217 size_t val1
= seq1
->val
;
218 size_t val2
= seq2
->val
;
219 int idx1
= seq1
->idx
;
220 int idx2
= seq2
->idx
;
223 /* Test for position if necessary. */
224 if (position
&& val1
!= val2
)
226 result
= val1
> val2
? 1 : -1;
230 /* Compare the two sequences. */
233 if (weights
[idx1
] != weights
[idx2
])
235 /* The sequences differ. */
236 result
= weights
[idx1
] - weights
[idx2
];
240 /* Increment the offsets. */
247 while (seq1len
> 0 && seq2len
> 0);
249 if (position
&& seq1len
!= seq2len
)
250 result
= seq1len
- seq2len
;
261 STRCOLL (const STRING_TYPE
*s1
, const STRING_TYPE
*s2
, __locale_t l
)
263 struct __locale_data
*current
= l
->__locales
[LC_COLLATE
];
264 uint_fast32_t nrules
= current
->values
[_NL_ITEM_INDEX (_NL_COLLATE_NRULES
)].word
;
265 /* We don't assign the following values right away since it might be
266 unnecessary in case there are no rules. */
267 const unsigned char *rulesets
;
268 const int32_t *table
;
269 const USTRING_TYPE
*weights
;
270 const USTRING_TYPE
*extra
;
271 const int32_t *indirect
;
273 /* In case there is no locale specific sort order (C / POSIX). */
275 return STRCMP (s1
, s2
);
277 /* Fast forward to the position of the first difference. Needs to be
278 encoding aware as the byte-by-byte comparison can stop in the middle
279 of a char sequence for multibyte encodings like UTF-8. */
280 uint_fast32_t encoding
=
281 current
->values
[_NL_ITEM_INDEX (_NL_COLLATE_ENCODING_TYPE
)].word
;
282 if (encoding
!= __cet_other
)
284 size_t diff
= STRDIFF (s1
, s2
);
287 if (encoding
== __cet_utf8
&& (*(s1
+ diff
) & MASK_UTF8_7BIT
) != 0)
290 while (diff
> 0 && (*(s1
+ diff
) & MASK_UTF8_START
) != MASK_UTF8_START
);
296 /* Catch empty strings. */
297 if (__glibc_unlikely (*s1
== '\0') || __glibc_unlikely (*s2
== '\0'))
298 return (*s1
!= '\0') - (*s2
!= '\0');
300 rulesets
= (const unsigned char *)
301 current
->values
[_NL_ITEM_INDEX (_NL_COLLATE_RULESETS
)].string
;
302 table
= (const int32_t *)
303 current
->values
[_NL_ITEM_INDEX (CONCAT(_NL_COLLATE_TABLE
,SUFFIX
))].string
;
304 weights
= (const USTRING_TYPE
*)
305 current
->values
[_NL_ITEM_INDEX (CONCAT(_NL_COLLATE_WEIGHT
,SUFFIX
))].string
;
306 extra
= (const USTRING_TYPE
*)
307 current
->values
[_NL_ITEM_INDEX (CONCAT(_NL_COLLATE_EXTRA
,SUFFIX
))].string
;
308 indirect
= (const int32_t *)
309 current
->values
[_NL_ITEM_INDEX (CONCAT(_NL_COLLATE_INDIRECT
,SUFFIX
))].string
;
311 assert (((uintptr_t) table
) % __alignof__ (table
[0]) == 0);
312 assert (((uintptr_t) weights
) % __alignof__ (weights
[0]) == 0);
313 assert (((uintptr_t) extra
) % __alignof__ (extra
[0]) == 0);
314 assert (((uintptr_t) indirect
) % __alignof__ (indirect
[0]) == 0);
316 int result
= 0, rule
= 0;
319 memset (&seq1
, 0, sizeof (seq1
));
322 for (int pass
= 0; pass
< nrules
; ++pass
)
327 seq1
.backw_stop
= ~0ul;
330 seq2
.backw_stop
= ~0ul;
333 /* We need the elements of the strings as unsigned values since they
334 are used as indices. */
335 seq1
.us
= (const USTRING_TYPE
*) s1
;
336 seq2
.us
= (const USTRING_TYPE
*) s2
;
338 /* We assume that if a rule has defined `position' in one section
339 this is true for all of them. Please note that the localedef programs
340 makes sure that `position' is not used at the first level. */
342 int position
= rulesets
[rule
* nrules
+ pass
] & sort_position
;
346 get_next_seq (&seq1
, nrules
, rulesets
, weights
, table
,
347 extra
, indirect
, pass
);
348 get_next_seq (&seq2
, nrules
, rulesets
, weights
, table
,
349 extra
, indirect
, pass
);
350 /* See whether any or both strings are empty. */
351 if (seq1
.len
== 0 || seq2
.len
== 0)
353 if (seq1
.len
== seq2
.len
)
355 /* Both strings ended and are equal at this level. Do a
356 byte-level comparison to ensure that we don't waste time
357 going through multiple passes for totally equal strings
358 before proceeding to subsequent passes. */
359 if (pass
== 0 && encoding
== __cet_other
&&
360 STRCMP (s1
, s2
) == 0)
366 /* This means one string is shorter than the other. Find out
367 which one and return an appropriate value. */
368 return seq1
.len
== 0 ? -1 : 1;
371 result
= do_compare (&seq1
, &seq2
, position
, weights
);
381 libc_hidden_def (STRCOLL
)
383 #ifndef WIDE_CHAR_VERSION
384 weak_alias (__strcoll_l
, strcoll_l
)