1 /* gunicollate.c - Collation
3 * Copyright 2001,2005 Red Hat, Inc.
5 * This 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 of the License, or (at your option) any later version.
10 * This 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 License
16 * along with this library; if not, see <http://www.gnu.org/licenses/>.
23 #ifdef __STDC_ISO_10646__
28 #include <CoreServices/CoreServices.h>
33 #include "gunicodeprivate.h"
35 #include "gstrfuncs.h"
36 #include "gtestutils.h"
38 #ifndef __STDC_ISO_10646__
44 /* Workaround for bug in MSVCR80.DLL */
46 msc_strxfrm_wrapper (char *string1
,
50 if (!string1
|| count
<= 0)
54 return strxfrm (&tmp
, string2
, 1);
56 return strxfrm (string1
, string2
, count
);
58 #define strxfrm msc_strxfrm_wrapper
63 * @str1: a UTF-8 encoded string
64 * @str2: a UTF-8 encoded string
66 * Compares two strings for ordering using the linguistically
67 * correct rules for the [current locale][setlocale].
68 * When sorting a large number of strings, it will be significantly
69 * faster to obtain collation keys with g_utf8_collate_key() and
70 * compare the keys with strcmp() when sorting instead of sorting
71 * the original strings.
73 * Returns: < 0 if @str1 compares before @str2,
74 * 0 if they compare equal, > 0 if @str1 compares after @str2.
77 g_utf8_collate (const gchar
*str1
,
90 g_return_val_if_fail (str1
!= NULL
, 0);
91 g_return_val_if_fail (str2
!= NULL
, 0);
93 str1_utf16
= g_utf8_to_utf16 (str1
, -1, NULL
, &len1
, NULL
);
94 str2_utf16
= g_utf8_to_utf16 (str2
, -1, NULL
, &len2
, NULL
);
96 UCCompareTextDefault (kUCCollateStandardOptions
,
97 str1_utf16
, len1
, str2_utf16
, len2
,
104 #elif defined(__STDC_ISO_10646__)
109 g_return_val_if_fail (str1
!= NULL
, 0);
110 g_return_val_if_fail (str2
!= NULL
, 0);
112 str1_norm
= _g_utf8_normalize_wc (str1
, -1, G_NORMALIZE_ALL_COMPOSE
);
113 str2_norm
= _g_utf8_normalize_wc (str2
, -1, G_NORMALIZE_ALL_COMPOSE
);
115 result
= wcscoll ((wchar_t *)str1_norm
, (wchar_t *)str2_norm
);
120 #else /* !__STDC_ISO_10646__ */
122 const gchar
*charset
;
126 g_return_val_if_fail (str1
!= NULL
, 0);
127 g_return_val_if_fail (str2
!= NULL
, 0);
129 str1_norm
= g_utf8_normalize (str1
, -1, G_NORMALIZE_ALL_COMPOSE
);
130 str2_norm
= g_utf8_normalize (str2
, -1, G_NORMALIZE_ALL_COMPOSE
);
132 if (g_get_charset (&charset
))
134 result
= strcoll (str1_norm
, str2_norm
);
138 gchar
*str1_locale
= g_convert (str1_norm
, -1, charset
, "UTF-8", NULL
, NULL
, NULL
);
139 gchar
*str2_locale
= g_convert (str2_norm
, -1, charset
, "UTF-8", NULL
, NULL
, NULL
);
141 if (str1_locale
&& str2_locale
)
142 result
= strcoll (str1_locale
, str2_locale
);
143 else if (str1_locale
)
145 else if (str2_locale
)
148 result
= strcmp (str1_norm
, str2_norm
);
150 g_free (str1_locale
);
151 g_free (str2_locale
);
157 #endif /* __STDC_ISO_10646__ */
162 #if defined(__STDC_ISO_10646__) || defined(HAVE_CARBON)
163 /* We need UTF-8 encoding of numbers to encode the weights if
164 * we are using wcsxfrm. However, we aren't encoding Unicode
165 * characters, so we can't simply use g_unichar_to_utf8.
167 * The following routine is taken (with modification) from GNU
168 * libc's strxfrm routine:
170 * Copyright (C) 1995-1999,2000,2001 Free Software Foundation, Inc.
171 * Written by Ulrich Drepper <drepper@cygnus.com>, 1995.
174 utf8_encode (char *buf
, wchar_t val
)
188 for (step
= 2; step
< 6; ++step
)
189 if ((val
& (~(guint32
)0 << (5 * step
+ 1))) == 0)
195 *buf
= (unsigned char) (~0xff >> step
);
199 buf
[step
] = 0x80 | (val
& 0x3f);
209 #endif /* __STDC_ISO_10646__ || HAVE_CARBON */
214 collate_key_to_string (UCCollationValue
*key
,
218 gsize result_len
= 0;
219 const gsize start
= 2 * sizeof (void *) / sizeof (UCCollationValue
);
222 /* The first codes should be skipped: the same string on the same
223 * system can get different values at runtime in those positions,
224 * and they do not sort correctly. The exact size of the prefix
225 * depends on whether we are building 64 or 32 bit.
227 if (key_len
<= start
)
228 return g_strdup ("");
230 for (i
= start
; i
< key_len
; i
++)
231 result_len
+= utf8_encode (NULL
, g_htonl (key
[i
] + 1));
233 result
= g_malloc (result_len
+ 1);
235 for (i
= start
; i
< key_len
; i
++)
236 result_len
+= utf8_encode (result
+ result_len
, g_htonl (key
[i
] + 1));
238 result
[result_len
] = '\0';
244 carbon_collate_key_with_collator (const gchar
*str
,
246 CollatorRef collator
)
248 UniChar
*str_utf16
= NULL
;
251 UCCollationValue staticbuf
[512];
252 UCCollationValue
*freeme
= NULL
;
253 UCCollationValue
*buf
;
257 gchar
*result
= NULL
;
259 str_utf16
= g_utf8_to_utf16 (str
, len
, NULL
, &len_utf16
, NULL
);
260 try_len
= len_utf16
* 5 + 2;
262 if (try_len
<= sizeof staticbuf
)
265 buf_len
= sizeof staticbuf
;
269 freeme
= g_new (UCCollationValue
, try_len
);
274 ret
= UCGetCollationKey (collator
, str_utf16
, len_utf16
,
275 buf_len
, &key_len
, buf
);
277 if (ret
== kCollateBufferTooSmall
)
279 freeme
= g_renew (UCCollationValue
, freeme
, try_len
* 2);
281 buf_len
= try_len
* 2;
282 ret
= UCGetCollationKey (collator
, str_utf16
, len_utf16
,
283 buf_len
, &key_len
, buf
);
287 result
= collate_key_to_string (buf
, key_len
);
289 result
= g_strdup ("");
297 carbon_collate_key (const gchar
*str
,
300 static CollatorRef collator
;
302 if (G_UNLIKELY (!collator
))
304 UCCreateCollator (NULL
, 0, kUCCollateStandardOptions
, &collator
);
308 static gboolean been_here
;
310 g_warning ("%s: UCCreateCollator failed", G_STRLOC
);
312 return g_strdup ("");
316 return carbon_collate_key_with_collator (str
, len
, collator
);
320 carbon_collate_key_for_filename (const gchar
*str
,
323 static CollatorRef collator
;
325 if (G_UNLIKELY (!collator
))
327 /* http://developer.apple.com/qa/qa2004/qa1159.html */
328 UCCreateCollator (NULL
, 0,
329 kUCCollateComposeInsensitiveMask
330 | kUCCollateWidthInsensitiveMask
331 | kUCCollateCaseInsensitiveMask
332 | kUCCollateDigitsOverrideMask
333 | kUCCollateDigitsAsNumberMask
334 | kUCCollatePunctuationSignificantMask
,
339 static gboolean been_here
;
341 g_warning ("%s: UCCreateCollator failed", G_STRLOC
);
343 return g_strdup ("");
347 return carbon_collate_key_with_collator (str
, len
, collator
);
350 #endif /* HAVE_CARBON */
353 * g_utf8_collate_key:
354 * @str: a UTF-8 encoded string.
355 * @len: length of @str, in bytes, or -1 if @str is nul-terminated.
357 * Converts a string into a collation key that can be compared
358 * with other collation keys produced by the same function using
361 * The results of comparing the collation keys of two strings
362 * with strcmp() will always be the same as comparing the two
363 * original keys with g_utf8_collate().
365 * Note that this function depends on the [current locale][setlocale].
367 * Returns: a newly allocated string. This string should
368 * be freed with g_free() when you are done with it.
371 g_utf8_collate_key (const gchar
*str
,
378 g_return_val_if_fail (str
!= NULL
, NULL
);
379 result
= carbon_collate_key (str
, len
);
381 #elif defined(__STDC_ISO_10646__)
387 gsize result_len
= 0;
389 g_return_val_if_fail (str
!= NULL
, NULL
);
391 str_norm
= _g_utf8_normalize_wc (str
, len
, G_NORMALIZE_ALL_COMPOSE
);
393 xfrm_len
= wcsxfrm (NULL
, (wchar_t *)str_norm
, 0);
394 result_wc
= g_new (wchar_t, xfrm_len
+ 1);
395 wcsxfrm (result_wc
, (wchar_t *)str_norm
, xfrm_len
+ 1);
397 for (i
= 0; i
< xfrm_len
; i
++)
398 result_len
+= utf8_encode (NULL
, result_wc
[i
]);
400 result
= g_malloc (result_len
+ 1);
402 for (i
= 0; i
< xfrm_len
; i
++)
403 result_len
+= utf8_encode (result
+ result_len
, result_wc
[i
]);
405 result
[result_len
] = '\0';
411 #else /* !__STDC_ISO_10646__ */
414 const gchar
*charset
;
417 g_return_val_if_fail (str
!= NULL
, NULL
);
419 str_norm
= g_utf8_normalize (str
, len
, G_NORMALIZE_ALL_COMPOSE
);
423 if (g_get_charset (&charset
))
425 xfrm_len
= strxfrm (NULL
, str_norm
, 0);
426 if (xfrm_len
>= 0 && xfrm_len
< G_MAXINT
- 2)
428 result
= g_malloc (xfrm_len
+ 1);
429 strxfrm (result
, str_norm
, xfrm_len
+ 1);
434 gchar
*str_locale
= g_convert (str_norm
, -1, charset
, "UTF-8", NULL
, NULL
, NULL
);
438 xfrm_len
= strxfrm (NULL
, str_locale
, 0);
439 if (xfrm_len
< 0 || xfrm_len
>= G_MAXINT
- 2)
447 result
= g_malloc (xfrm_len
+ 2);
449 strxfrm (result
+ 1, str_locale
, xfrm_len
+ 1);
457 xfrm_len
= strlen (str_norm
);
458 result
= g_malloc (xfrm_len
+ 2);
460 memcpy (result
+ 1, str_norm
, xfrm_len
);
461 result
[xfrm_len
+1] = '\0';
465 #endif /* __STDC_ISO_10646__ */
470 /* This is a collation key that is very very likely to sort before any
471 * collation key that libc strxfrm generates. We use this before any
472 * special case (dot or number) to make sure that its sorted before
475 #define COLLATION_SENTINEL "\1\1\1"
478 * g_utf8_collate_key_for_filename:
479 * @str: a UTF-8 encoded string.
480 * @len: length of @str, in bytes, or -1 if @str is nul-terminated.
482 * Converts a string into a collation key that can be compared
483 * with other collation keys produced by the same function using strcmp().
485 * In order to sort filenames correctly, this function treats the dot '.'
486 * as a special case. Most dictionary orderings seem to consider it
487 * insignificant, thus producing the ordering "event.c" "eventgenerator.c"
488 * "event.h" instead of "event.c" "event.h" "eventgenerator.c". Also, we
489 * would like to treat numbers intelligently so that "file1" "file10" "file5"
490 * is sorted as "file1" "file5" "file10".
492 * Note that this function depends on the [current locale][setlocale].
494 * Returns: a newly allocated string. This string should
495 * be freed with g_free() when you are done with it.
500 g_utf8_collate_key_for_filename (const gchar
*str
,
516 * Split the filename into collatable substrings which do
517 * not contain [.0-9] and special-cased substrings. The collatable
518 * substrings are run through the normal g_utf8_collate_key() and the
519 * resulting keys are concatenated with keys generated from the
520 * special-cased substrings.
522 * Special cases: Dots are handled by replacing them with '\1' which
523 * implies that short dot-delimited substrings are before long ones,
530 * Numbers are handled by prepending to each number d-1 superdigits
531 * where d = number of digits in the number and SUPERDIGIT is a
532 * character with an integer value higher than any digit (for instance
533 * ':'). This ensures that single-digit numbers are sorted before
534 * double-digit numbers which in turn are sorted separately from
535 * triple-digit numbers, etc. To avoid strange side-effects when
536 * sorting strings that already contain SUPERDIGITs, a '\2'
537 * is also prepended, like this
543 * file\2::100 (file100)
544 * file:foo (file:foo)
546 * This has the side-effect of sorting numbers before everything else (except
547 * dots), but this is probably OK.
549 * Leading digits are ignored when doing the above. To discriminate
550 * numbers which differ only in the number of leading digits, we append
551 * the number of leading digits as a byte at the very end of the collation
554 * To try avoid conflict with any collation key sequence generated by libc we
555 * start each switch to a special cased part with a sentinel that hopefully
556 * will sort before anything libc will generate.
562 result
= g_string_sized_new (len
* 2);
563 append
= g_string_sized_new (0);
567 /* No need to use utf8 functions, since we're only looking for ascii chars */
568 for (prev
= p
= str
; p
< end
; p
++)
575 collate_key
= g_utf8_collate_key (prev
, p
- prev
);
576 g_string_append (result
, collate_key
);
577 g_free (collate_key
);
580 g_string_append (result
, COLLATION_SENTINEL
"\1");
598 collate_key
= g_utf8_collate_key (prev
, p
- prev
);
599 g_string_append (result
, collate_key
);
600 g_free (collate_key
);
603 g_string_append (result
, COLLATION_SENTINEL
"\2");
607 /* write d-1 colons */
621 if (*p
== '0' && !digits
)
623 else if (g_ascii_isdigit(*p
))
627 /* count an all-zero sequence as
628 * one digit plus leading zeros
641 g_string_append_c (result
, ':');
645 if (leading_zeros
> 0)
647 g_string_append_c (append
, (char)leading_zeros
);
648 prev
+= leading_zeros
;
651 /* write the number itself */
652 g_string_append_len (result
, prev
, p
- prev
);
655 --p
; /* go one step back to avoid disturbing outer loop */
659 /* other characters just accumulate */
666 collate_key
= g_utf8_collate_key (prev
, p
- prev
);
667 g_string_append (result
, collate_key
);
668 g_free (collate_key
);
671 g_string_append (result
, append
->str
);
672 g_string_free (append
, TRUE
);
674 return g_string_free (result
, FALSE
);
675 #else /* HAVE_CARBON */
676 return carbon_collate_key_for_filename (str
, len
);