tests: Fix leak when checking for du binary
[glib.git] / glib / guniprop.c
blob63e7ba5312f7b0f4c961a725021260762d60f6de
1 /* guniprop.c - Unicode character properties.
3 * Copyright (C) 1999 Tom Tromey
4 * Copyright (C) 2000 Red Hat, Inc.
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
20 #include "config.h"
22 #include <stdlib.h>
23 #include <stddef.h>
24 #include <string.h>
25 #include <locale.h>
27 #include "gmem.h"
28 #include "gstring.h"
29 #include "gtestutils.h"
30 #include "gtypes.h"
31 #include "gunicode.h"
32 #include "gunichartables.h"
33 #include "gmirroringtable.h"
34 #include "gscripttable.h"
35 #include "gunicodeprivate.h"
36 #ifdef G_OS_WIN32
37 #include "gwin32.h"
38 #endif
40 #define ATTR_TABLE(Page) (((Page) <= G_UNICODE_LAST_PAGE_PART1) \
41 ? attr_table_part1[Page] \
42 : attr_table_part2[(Page) - 0xe00])
44 #define ATTTABLE(Page, Char) \
45 ((ATTR_TABLE(Page) == G_UNICODE_MAX_TABLE_INDEX) ? 0 : (attr_data[ATTR_TABLE(Page)][Char]))
47 #define TTYPE_PART1(Page, Char) \
48 ((type_table_part1[Page] >= G_UNICODE_MAX_TABLE_INDEX) \
49 ? (type_table_part1[Page] - G_UNICODE_MAX_TABLE_INDEX) \
50 : (type_data[type_table_part1[Page]][Char]))
52 #define TTYPE_PART2(Page, Char) \
53 ((type_table_part2[Page] >= G_UNICODE_MAX_TABLE_INDEX) \
54 ? (type_table_part2[Page] - G_UNICODE_MAX_TABLE_INDEX) \
55 : (type_data[type_table_part2[Page]][Char]))
57 #define TYPE(Char) \
58 (((Char) <= G_UNICODE_LAST_CHAR_PART1) \
59 ? TTYPE_PART1 ((Char) >> 8, (Char) & 0xff) \
60 : (((Char) >= 0xe0000 && (Char) <= G_UNICODE_LAST_CHAR) \
61 ? TTYPE_PART2 (((Char) - 0xe0000) >> 8, (Char) & 0xff) \
62 : G_UNICODE_UNASSIGNED))
65 #define IS(Type, Class) (((guint)1 << (Type)) & (Class))
66 #define OR(Type, Rest) (((guint)1 << (Type)) | (Rest))
70 #define ISALPHA(Type) IS ((Type), \
71 OR (G_UNICODE_LOWERCASE_LETTER, \
72 OR (G_UNICODE_UPPERCASE_LETTER, \
73 OR (G_UNICODE_TITLECASE_LETTER, \
74 OR (G_UNICODE_MODIFIER_LETTER, \
75 OR (G_UNICODE_OTHER_LETTER, 0))))))
77 #define ISALDIGIT(Type) IS ((Type), \
78 OR (G_UNICODE_DECIMAL_NUMBER, \
79 OR (G_UNICODE_LETTER_NUMBER, \
80 OR (G_UNICODE_OTHER_NUMBER, \
81 OR (G_UNICODE_LOWERCASE_LETTER, \
82 OR (G_UNICODE_UPPERCASE_LETTER, \
83 OR (G_UNICODE_TITLECASE_LETTER, \
84 OR (G_UNICODE_MODIFIER_LETTER, \
85 OR (G_UNICODE_OTHER_LETTER, 0)))))))))
87 #define ISMARK(Type) IS ((Type), \
88 OR (G_UNICODE_NON_SPACING_MARK, \
89 OR (G_UNICODE_SPACING_MARK, \
90 OR (G_UNICODE_ENCLOSING_MARK, 0))))
92 #define ISZEROWIDTHTYPE(Type) IS ((Type), \
93 OR (G_UNICODE_NON_SPACING_MARK, \
94 OR (G_UNICODE_ENCLOSING_MARK, \
95 OR (G_UNICODE_FORMAT, 0))))
97 /**
98 * g_unichar_isalnum:
99 * @c: a Unicode character
101 * Determines whether a character is alphanumeric.
102 * Given some UTF-8 text, obtain a character value
103 * with g_utf8_get_char().
105 * Returns: %TRUE if @c is an alphanumeric character
107 gboolean
108 g_unichar_isalnum (gunichar c)
110 return ISALDIGIT (TYPE (c)) ? TRUE : FALSE;
114 * g_unichar_isalpha:
115 * @c: a Unicode character
117 * Determines whether a character is alphabetic (i.e. a letter).
118 * Given some UTF-8 text, obtain a character value with
119 * g_utf8_get_char().
121 * Returns: %TRUE if @c is an alphabetic character
123 gboolean
124 g_unichar_isalpha (gunichar c)
126 return ISALPHA (TYPE (c)) ? TRUE : FALSE;
131 * g_unichar_iscntrl:
132 * @c: a Unicode character
134 * Determines whether a character is a control character.
135 * Given some UTF-8 text, obtain a character value with
136 * g_utf8_get_char().
138 * Returns: %TRUE if @c is a control character
140 gboolean
141 g_unichar_iscntrl (gunichar c)
143 return TYPE (c) == G_UNICODE_CONTROL;
147 * g_unichar_isdigit:
148 * @c: a Unicode character
150 * Determines whether a character is numeric (i.e. a digit). This
151 * covers ASCII 0-9 and also digits in other languages/scripts. Given
152 * some UTF-8 text, obtain a character value with g_utf8_get_char().
154 * Returns: %TRUE if @c is a digit
156 gboolean
157 g_unichar_isdigit (gunichar c)
159 return TYPE (c) == G_UNICODE_DECIMAL_NUMBER;
164 * g_unichar_isgraph:
165 * @c: a Unicode character
167 * Determines whether a character is printable and not a space
168 * (returns %FALSE for control characters, format characters, and
169 * spaces). g_unichar_isprint() is similar, but returns %TRUE for
170 * spaces. Given some UTF-8 text, obtain a character value with
171 * g_utf8_get_char().
173 * Returns: %TRUE if @c is printable unless it's a space
175 gboolean
176 g_unichar_isgraph (gunichar c)
178 return !IS (TYPE(c),
179 OR (G_UNICODE_CONTROL,
180 OR (G_UNICODE_FORMAT,
181 OR (G_UNICODE_UNASSIGNED,
182 OR (G_UNICODE_SURROGATE,
183 OR (G_UNICODE_SPACE_SEPARATOR,
184 0))))));
188 * g_unichar_islower:
189 * @c: a Unicode character
191 * Determines whether a character is a lowercase letter.
192 * Given some UTF-8 text, obtain a character value with
193 * g_utf8_get_char().
195 * Returns: %TRUE if @c is a lowercase letter
197 gboolean
198 g_unichar_islower (gunichar c)
200 return TYPE (c) == G_UNICODE_LOWERCASE_LETTER;
205 * g_unichar_isprint:
206 * @c: a Unicode character
208 * Determines whether a character is printable.
209 * Unlike g_unichar_isgraph(), returns %TRUE for spaces.
210 * Given some UTF-8 text, obtain a character value with
211 * g_utf8_get_char().
213 * Returns: %TRUE if @c is printable
215 gboolean
216 g_unichar_isprint (gunichar c)
218 return !IS (TYPE(c),
219 OR (G_UNICODE_CONTROL,
220 OR (G_UNICODE_FORMAT,
221 OR (G_UNICODE_UNASSIGNED,
222 OR (G_UNICODE_SURROGATE,
223 0)))));
227 * g_unichar_ispunct:
228 * @c: a Unicode character
230 * Determines whether a character is punctuation or a symbol.
231 * Given some UTF-8 text, obtain a character value with
232 * g_utf8_get_char().
234 * Returns: %TRUE if @c is a punctuation or symbol character
236 gboolean
237 g_unichar_ispunct (gunichar c)
239 return IS (TYPE(c),
240 OR (G_UNICODE_CONNECT_PUNCTUATION,
241 OR (G_UNICODE_DASH_PUNCTUATION,
242 OR (G_UNICODE_CLOSE_PUNCTUATION,
243 OR (G_UNICODE_FINAL_PUNCTUATION,
244 OR (G_UNICODE_INITIAL_PUNCTUATION,
245 OR (G_UNICODE_OTHER_PUNCTUATION,
246 OR (G_UNICODE_OPEN_PUNCTUATION,
247 OR (G_UNICODE_CURRENCY_SYMBOL,
248 OR (G_UNICODE_MODIFIER_SYMBOL,
249 OR (G_UNICODE_MATH_SYMBOL,
250 OR (G_UNICODE_OTHER_SYMBOL,
251 0)))))))))))) ? TRUE : FALSE;
255 * g_unichar_isspace:
256 * @c: a Unicode character
258 * Determines whether a character is a space, tab, or line separator
259 * (newline, carriage return, etc.). Given some UTF-8 text, obtain a
260 * character value with g_utf8_get_char().
262 * (Note: don't use this to do word breaking; you have to use
263 * Pango or equivalent to get word breaking right, the algorithm
264 * is fairly complex.)
266 * Returns: %TRUE if @c is a space character
268 gboolean
269 g_unichar_isspace (gunichar c)
271 switch (c)
273 /* special-case these since Unicode thinks they are not spaces */
274 case '\t':
275 case '\n':
276 case '\r':
277 case '\f':
278 return TRUE;
279 break;
281 default:
283 return IS (TYPE(c),
284 OR (G_UNICODE_SPACE_SEPARATOR,
285 OR (G_UNICODE_LINE_SEPARATOR,
286 OR (G_UNICODE_PARAGRAPH_SEPARATOR,
287 0)))) ? TRUE : FALSE;
289 break;
294 * g_unichar_ismark:
295 * @c: a Unicode character
297 * Determines whether a character is a mark (non-spacing mark,
298 * combining mark, or enclosing mark in Unicode speak).
299 * Given some UTF-8 text, obtain a character value
300 * with g_utf8_get_char().
302 * Note: in most cases where isalpha characters are allowed,
303 * ismark characters should be allowed to as they are essential
304 * for writing most European languages as well as many non-Latin
305 * scripts.
307 * Returns: %TRUE if @c is a mark character
309 * Since: 2.14
311 gboolean
312 g_unichar_ismark (gunichar c)
314 return ISMARK (TYPE (c));
318 * g_unichar_isupper:
319 * @c: a Unicode character
321 * Determines if a character is uppercase.
323 * Returns: %TRUE if @c is an uppercase character
325 gboolean
326 g_unichar_isupper (gunichar c)
328 return TYPE (c) == G_UNICODE_UPPERCASE_LETTER;
332 * g_unichar_istitle:
333 * @c: a Unicode character
335 * Determines if a character is titlecase. Some characters in
336 * Unicode which are composites, such as the DZ digraph
337 * have three case variants instead of just two. The titlecase
338 * form is used at the beginning of a word where only the
339 * first letter is capitalized. The titlecase form of the DZ
340 * digraph is U+01F2 LATIN CAPITAL LETTTER D WITH SMALL LETTER Z.
342 * Returns: %TRUE if the character is titlecase
344 gboolean
345 g_unichar_istitle (gunichar c)
347 unsigned int i;
348 for (i = 0; i < G_N_ELEMENTS (title_table); ++i)
349 if (title_table[i][0] == c)
350 return TRUE;
351 return FALSE;
355 * g_unichar_isxdigit:
356 * @c: a Unicode character.
358 * Determines if a character is a hexidecimal digit.
360 * Returns: %TRUE if the character is a hexadecimal digit
362 gboolean
363 g_unichar_isxdigit (gunichar c)
365 return ((c >= 'a' && c <= 'f')
366 || (c >= 'A' && c <= 'F')
367 || (TYPE (c) == G_UNICODE_DECIMAL_NUMBER));
371 * g_unichar_isdefined:
372 * @c: a Unicode character
374 * Determines if a given character is assigned in the Unicode
375 * standard.
377 * Returns: %TRUE if the character has an assigned value
379 gboolean
380 g_unichar_isdefined (gunichar c)
382 return !IS (TYPE(c),
383 OR (G_UNICODE_UNASSIGNED,
384 OR (G_UNICODE_SURROGATE,
385 0)));
389 * g_unichar_iszerowidth:
390 * @c: a Unicode character
392 * Determines if a given character typically takes zero width when rendered.
393 * The return value is %TRUE for all non-spacing and enclosing marks
394 * (e.g., combining accents), format characters, zero-width
395 * space, but not U+00AD SOFT HYPHEN.
397 * A typical use of this function is with one of g_unichar_iswide() or
398 * g_unichar_iswide_cjk() to determine the number of cells a string occupies
399 * when displayed on a grid display (terminals). However, note that not all
400 * terminals support zero-width rendering of zero-width marks.
402 * Returns: %TRUE if the character has zero width
404 * Since: 2.14
406 gboolean
407 g_unichar_iszerowidth (gunichar c)
409 if (G_UNLIKELY (c == 0x00AD))
410 return FALSE;
412 if (G_UNLIKELY (ISZEROWIDTHTYPE (TYPE (c))))
413 return TRUE;
415 if (G_UNLIKELY ((c >= 0x1160 && c < 0x1200) ||
416 c == 0x200B))
417 return TRUE;
419 return FALSE;
422 static int
423 interval_compare (const void *key, const void *elt)
425 gunichar c = GPOINTER_TO_UINT (key);
426 struct Interval *interval = (struct Interval *)elt;
428 if (c < interval->start)
429 return -1;
430 if (c > interval->end)
431 return +1;
433 return 0;
436 #define G_WIDTH_TABLE_MIDPOINT (G_N_ELEMENTS (g_unicode_width_table_wide) / 2)
438 static inline gboolean
439 g_unichar_iswide_bsearch (gunichar ch)
441 int lower = 0;
442 int upper = G_N_ELEMENTS (g_unicode_width_table_wide) - 1;
443 static int saved_mid = G_WIDTH_TABLE_MIDPOINT;
444 int mid = saved_mid;
448 if (ch < g_unicode_width_table_wide[mid].start)
449 upper = mid - 1;
450 else if (ch > g_unicode_width_table_wide[mid].end)
451 lower = mid + 1;
452 else
453 return TRUE;
455 mid = (lower + upper) / 2;
457 while (lower <= upper);
459 return FALSE;
463 * g_unichar_iswide:
464 * @c: a Unicode character
466 * Determines if a character is typically rendered in a double-width
467 * cell.
469 * Returns: %TRUE if the character is wide
471 gboolean
472 g_unichar_iswide (gunichar c)
474 if (c < g_unicode_width_table_wide[0].start)
475 return FALSE;
476 else
477 return g_unichar_iswide_bsearch (c);
482 * g_unichar_iswide_cjk:
483 * @c: a Unicode character
485 * Determines if a character is typically rendered in a double-width
486 * cell under legacy East Asian locales. If a character is wide according to
487 * g_unichar_iswide(), then it is also reported wide with this function, but
488 * the converse is not necessarily true. See the
489 * [Unicode Standard Annex #11](http://www.unicode.org/reports/tr11/)
490 * for details.
492 * If a character passes the g_unichar_iswide() test then it will also pass
493 * this test, but not the other way around. Note that some characters may
494 * pass both this test and g_unichar_iszerowidth().
496 * Returns: %TRUE if the character is wide in legacy East Asian locales
498 * Since: 2.12
500 gboolean
501 g_unichar_iswide_cjk (gunichar c)
503 if (g_unichar_iswide (c))
504 return TRUE;
506 /* bsearch() is declared attribute(nonnull(1)) so we can't validly search
507 * for a NULL key */
508 if (c == 0)
509 return FALSE;
511 if (bsearch (GUINT_TO_POINTER (c),
512 g_unicode_width_table_ambiguous,
513 G_N_ELEMENTS (g_unicode_width_table_ambiguous),
514 sizeof g_unicode_width_table_ambiguous[0],
515 interval_compare))
516 return TRUE;
518 return FALSE;
523 * g_unichar_toupper:
524 * @c: a Unicode character
526 * Converts a character to uppercase.
528 * Returns: the result of converting @c to uppercase.
529 * If @c is not an lowercase or titlecase character,
530 * or has no upper case equivalent @c is returned unchanged.
532 gunichar
533 g_unichar_toupper (gunichar c)
535 int t = TYPE (c);
536 if (t == G_UNICODE_LOWERCASE_LETTER)
538 gunichar val = ATTTABLE (c >> 8, c & 0xff);
539 if (val >= 0x1000000)
541 const gchar *p = special_case_table + val - 0x1000000;
542 val = g_utf8_get_char (p);
544 /* Some lowercase letters, e.g., U+000AA, FEMININE ORDINAL INDICATOR,
545 * do not have an uppercase equivalent, in which case val will be
546 * zero.
548 return val ? val : c;
550 else if (t == G_UNICODE_TITLECASE_LETTER)
552 unsigned int i;
553 for (i = 0; i < G_N_ELEMENTS (title_table); ++i)
555 if (title_table[i][0] == c)
556 return title_table[i][1] ? title_table[i][1] : c;
559 return c;
563 * g_unichar_tolower:
564 * @c: a Unicode character.
566 * Converts a character to lower case.
568 * Returns: the result of converting @c to lower case.
569 * If @c is not an upperlower or titlecase character,
570 * or has no lowercase equivalent @c is returned unchanged.
572 gunichar
573 g_unichar_tolower (gunichar c)
575 int t = TYPE (c);
576 if (t == G_UNICODE_UPPERCASE_LETTER)
578 gunichar val = ATTTABLE (c >> 8, c & 0xff);
579 if (val >= 0x1000000)
581 const gchar *p = special_case_table + val - 0x1000000;
582 return g_utf8_get_char (p);
584 else
586 /* Not all uppercase letters are guaranteed to have a lowercase
587 * equivalent. If this is the case, val will be zero. */
588 return val ? val : c;
591 else if (t == G_UNICODE_TITLECASE_LETTER)
593 unsigned int i;
594 for (i = 0; i < G_N_ELEMENTS (title_table); ++i)
596 if (title_table[i][0] == c)
597 return title_table[i][2];
600 return c;
604 * g_unichar_totitle:
605 * @c: a Unicode character
607 * Converts a character to the titlecase.
609 * Returns: the result of converting @c to titlecase.
610 * If @c is not an uppercase or lowercase character,
611 * @c is returned unchanged.
613 gunichar
614 g_unichar_totitle (gunichar c)
616 unsigned int i;
617 for (i = 0; i < G_N_ELEMENTS (title_table); ++i)
619 if (title_table[i][0] == c || title_table[i][1] == c
620 || title_table[i][2] == c)
621 return title_table[i][0];
624 if (TYPE (c) == G_UNICODE_LOWERCASE_LETTER)
625 return g_unichar_toupper (c);
627 return c;
631 * g_unichar_digit_value:
632 * @c: a Unicode character
634 * Determines the numeric value of a character as a decimal
635 * digit.
637 * Returns: If @c is a decimal digit (according to
638 * g_unichar_isdigit()), its numeric value. Otherwise, -1.
641 g_unichar_digit_value (gunichar c)
643 if (TYPE (c) == G_UNICODE_DECIMAL_NUMBER)
644 return ATTTABLE (c >> 8, c & 0xff);
645 return -1;
649 * g_unichar_xdigit_value:
650 * @c: a Unicode character
652 * Determines the numeric value of a character as a hexidecimal
653 * digit.
655 * Returns: If @c is a hex digit (according to
656 * g_unichar_isxdigit()), its numeric value. Otherwise, -1.
659 g_unichar_xdigit_value (gunichar c)
661 if (c >= 'A' && c <= 'F')
662 return c - 'A' + 10;
663 if (c >= 'a' && c <= 'f')
664 return c - 'a' + 10;
665 if (TYPE (c) == G_UNICODE_DECIMAL_NUMBER)
666 return ATTTABLE (c >> 8, c & 0xff);
667 return -1;
671 * g_unichar_type:
672 * @c: a Unicode character
674 * Classifies a Unicode character by type.
676 * Returns: the type of the character.
678 GUnicodeType
679 g_unichar_type (gunichar c)
681 return TYPE (c);
685 * Case mapping functions
688 typedef enum {
689 LOCALE_NORMAL,
690 LOCALE_TURKIC,
691 LOCALE_LITHUANIAN
692 } LocaleType;
694 static LocaleType
695 get_locale_type (void)
697 #ifdef G_OS_WIN32
698 char *tem = g_win32_getlocale ();
699 char locale[2];
701 locale[0] = tem[0];
702 locale[1] = tem[1];
703 g_free (tem);
704 #else
705 const char *locale = setlocale (LC_CTYPE, NULL);
707 if (locale == NULL)
708 return LOCALE_NORMAL;
709 #endif
711 switch (locale[0])
713 case 'a':
714 if (locale[1] == 'z')
715 return LOCALE_TURKIC;
716 break;
717 case 'l':
718 if (locale[1] == 't')
719 return LOCALE_LITHUANIAN;
720 break;
721 case 't':
722 if (locale[1] == 'r')
723 return LOCALE_TURKIC;
724 break;
727 return LOCALE_NORMAL;
730 static gint
731 output_marks (const char **p_inout,
732 char *out_buffer,
733 gboolean remove_dot)
735 const char *p = *p_inout;
736 gint len = 0;
738 while (*p)
740 gunichar c = g_utf8_get_char (p);
742 if (ISMARK (TYPE (c)))
744 if (!remove_dot || c != 0x307 /* COMBINING DOT ABOVE */)
745 len += g_unichar_to_utf8 (c, out_buffer ? out_buffer + len : NULL);
746 p = g_utf8_next_char (p);
748 else
749 break;
752 *p_inout = p;
753 return len;
756 static gint
757 output_special_case (gchar *out_buffer,
758 int offset,
759 int type,
760 int which)
762 const gchar *p = special_case_table + offset;
763 gint len;
765 if (type != G_UNICODE_TITLECASE_LETTER)
766 p = g_utf8_next_char (p);
768 if (which == 1)
769 p += strlen (p) + 1;
771 len = strlen (p);
772 if (out_buffer)
773 memcpy (out_buffer, p, len);
775 return len;
778 static gsize
779 real_toupper (const gchar *str,
780 gssize max_len,
781 gchar *out_buffer,
782 LocaleType locale_type)
784 const gchar *p = str;
785 const char *last = NULL;
786 gsize len = 0;
787 gboolean last_was_i = FALSE;
789 while ((max_len < 0 || p < str + max_len) && *p)
791 gunichar c = g_utf8_get_char (p);
792 int t = TYPE (c);
793 gunichar val;
795 last = p;
796 p = g_utf8_next_char (p);
798 if (locale_type == LOCALE_LITHUANIAN)
800 if (c == 'i')
801 last_was_i = TRUE;
802 else
804 if (last_was_i)
806 /* Nasty, need to remove any dot above. Though
807 * I think only E WITH DOT ABOVE occurs in practice
808 * which could simplify this considerably.
810 gsize decomp_len, i;
811 gunichar decomp[G_UNICHAR_MAX_DECOMPOSITION_LENGTH];
813 decomp_len = g_unichar_fully_decompose (c, FALSE, decomp, G_N_ELEMENTS (decomp));
814 for (i=0; i < decomp_len; i++)
816 if (decomp[i] != 0x307 /* COMBINING DOT ABOVE */)
817 len += g_unichar_to_utf8 (g_unichar_toupper (decomp[i]), out_buffer ? out_buffer + len : NULL);
820 len += output_marks (&p, out_buffer ? out_buffer + len : NULL, TRUE);
822 continue;
825 if (!ISMARK (t))
826 last_was_i = FALSE;
830 if (locale_type == LOCALE_TURKIC && c == 'i')
832 /* i => LATIN CAPITAL LETTER I WITH DOT ABOVE */
833 len += g_unichar_to_utf8 (0x130, out_buffer ? out_buffer + len : NULL);
835 else if (c == 0x0345) /* COMBINING GREEK YPOGEGRAMMENI */
837 /* Nasty, need to move it after other combining marks .. this would go away if
838 * we normalized first.
840 len += output_marks (&p, out_buffer ? out_buffer + len : NULL, FALSE);
842 /* And output as GREEK CAPITAL LETTER IOTA */
843 len += g_unichar_to_utf8 (0x399, out_buffer ? out_buffer + len : NULL);
845 else if (IS (t,
846 OR (G_UNICODE_LOWERCASE_LETTER,
847 OR (G_UNICODE_TITLECASE_LETTER,
848 0))))
850 val = ATTTABLE (c >> 8, c & 0xff);
852 if (val >= 0x1000000)
854 len += output_special_case (out_buffer ? out_buffer + len : NULL, val - 0x1000000, t,
855 t == G_UNICODE_LOWERCASE_LETTER ? 0 : 1);
857 else
859 if (t == G_UNICODE_TITLECASE_LETTER)
861 unsigned int i;
862 for (i = 0; i < G_N_ELEMENTS (title_table); ++i)
864 if (title_table[i][0] == c)
866 val = title_table[i][1];
867 break;
872 /* Some lowercase letters, e.g., U+000AA, FEMININE ORDINAL INDICATOR,
873 * do not have an uppercase equivalent, in which case val will be
874 * zero. */
875 len += g_unichar_to_utf8 (val ? val : c, out_buffer ? out_buffer + len : NULL);
878 else
880 gsize char_len = g_utf8_skip[*(guchar *)last];
882 if (out_buffer)
883 memcpy (out_buffer + len, last, char_len);
885 len += char_len;
890 return len;
894 * g_utf8_strup:
895 * @str: a UTF-8 encoded string
896 * @len: length of @str, in bytes, or -1 if @str is nul-terminated.
898 * Converts all Unicode characters in the string that have a case
899 * to uppercase. The exact manner that this is done depends
900 * on the current locale, and may result in the number of
901 * characters in the string increasing. (For instance, the
902 * German ess-zet will be changed to SS.)
904 * Returns: a newly allocated string, with all characters
905 * converted to uppercase.
907 gchar *
908 g_utf8_strup (const gchar *str,
909 gssize len)
911 gsize result_len;
912 LocaleType locale_type;
913 gchar *result;
915 g_return_val_if_fail (str != NULL, NULL);
917 locale_type = get_locale_type ();
920 * We use a two pass approach to keep memory management simple
922 result_len = real_toupper (str, len, NULL, locale_type);
923 result = g_malloc (result_len + 1);
924 real_toupper (str, len, result, locale_type);
925 result[result_len] = '\0';
927 return result;
930 /* traverses the string checking for characters with combining class == 230
931 * until a base character is found */
932 static gboolean
933 has_more_above (const gchar *str)
935 const gchar *p = str;
936 gint combining_class;
938 while (*p)
940 combining_class = g_unichar_combining_class (g_utf8_get_char (p));
941 if (combining_class == 230)
942 return TRUE;
943 else if (combining_class == 0)
944 break;
946 p = g_utf8_next_char (p);
949 return FALSE;
952 static gsize
953 real_tolower (const gchar *str,
954 gssize max_len,
955 gchar *out_buffer,
956 LocaleType locale_type)
958 const gchar *p = str;
959 const char *last = NULL;
960 gsize len = 0;
962 while ((max_len < 0 || p < str + max_len) && *p)
964 gunichar c = g_utf8_get_char (p);
965 int t = TYPE (c);
966 gunichar val;
968 last = p;
969 p = g_utf8_next_char (p);
971 if (locale_type == LOCALE_TURKIC && c == 'I')
973 if (g_utf8_get_char (p) == 0x0307)
975 /* I + COMBINING DOT ABOVE => i (U+0069) */
976 len += g_unichar_to_utf8 (0x0069, out_buffer ? out_buffer + len : NULL);
977 p = g_utf8_next_char (p);
979 else
981 /* I => LATIN SMALL LETTER DOTLESS I */
982 len += g_unichar_to_utf8 (0x131, out_buffer ? out_buffer + len : NULL);
985 /* Introduce an explicit dot above when lowercasing capital I's and J's
986 * whenever there are more accents above. [SpecialCasing.txt] */
987 else if (locale_type == LOCALE_LITHUANIAN &&
988 (c == 0x00cc || c == 0x00cd || c == 0x0128))
990 len += g_unichar_to_utf8 (0x0069, out_buffer ? out_buffer + len : NULL);
991 len += g_unichar_to_utf8 (0x0307, out_buffer ? out_buffer + len : NULL);
993 switch (c)
995 case 0x00cc:
996 len += g_unichar_to_utf8 (0x0300, out_buffer ? out_buffer + len : NULL);
997 break;
998 case 0x00cd:
999 len += g_unichar_to_utf8 (0x0301, out_buffer ? out_buffer + len : NULL);
1000 break;
1001 case 0x0128:
1002 len += g_unichar_to_utf8 (0x0303, out_buffer ? out_buffer + len : NULL);
1003 break;
1006 else if (locale_type == LOCALE_LITHUANIAN &&
1007 (c == 'I' || c == 'J' || c == 0x012e) &&
1008 has_more_above (p))
1010 len += g_unichar_to_utf8 (g_unichar_tolower (c), out_buffer ? out_buffer + len : NULL);
1011 len += g_unichar_to_utf8 (0x0307, out_buffer ? out_buffer + len : NULL);
1013 else if (c == 0x03A3) /* GREEK CAPITAL LETTER SIGMA */
1015 if ((max_len < 0 || p < str + max_len) && *p)
1017 gunichar next_c = g_utf8_get_char (p);
1018 int next_type = TYPE(next_c);
1020 /* SIGMA mapps differently depending on whether it is
1021 * final or not. The following simplified test would
1022 * fail in the case of combining marks following the
1023 * sigma, but I don't think that occurs in real text.
1024 * The test here matches that in ICU.
1026 if (ISALPHA (next_type)) /* Lu,Ll,Lt,Lm,Lo */
1027 val = 0x3c3; /* GREEK SMALL SIGMA */
1028 else
1029 val = 0x3c2; /* GREEK SMALL FINAL SIGMA */
1031 else
1032 val = 0x3c2; /* GREEK SMALL FINAL SIGMA */
1034 len += g_unichar_to_utf8 (val, out_buffer ? out_buffer + len : NULL);
1036 else if (IS (t,
1037 OR (G_UNICODE_UPPERCASE_LETTER,
1038 OR (G_UNICODE_TITLECASE_LETTER,
1039 0))))
1041 val = ATTTABLE (c >> 8, c & 0xff);
1043 if (val >= 0x1000000)
1045 len += output_special_case (out_buffer ? out_buffer + len : NULL, val - 0x1000000, t, 0);
1047 else
1049 if (t == G_UNICODE_TITLECASE_LETTER)
1051 unsigned int i;
1052 for (i = 0; i < G_N_ELEMENTS (title_table); ++i)
1054 if (title_table[i][0] == c)
1056 val = title_table[i][2];
1057 break;
1062 /* Not all uppercase letters are guaranteed to have a lowercase
1063 * equivalent. If this is the case, val will be zero. */
1064 len += g_unichar_to_utf8 (val ? val : c, out_buffer ? out_buffer + len : NULL);
1067 else
1069 gsize char_len = g_utf8_skip[*(guchar *)last];
1071 if (out_buffer)
1072 memcpy (out_buffer + len, last, char_len);
1074 len += char_len;
1079 return len;
1083 * g_utf8_strdown:
1084 * @str: a UTF-8 encoded string
1085 * @len: length of @str, in bytes, or -1 if @str is nul-terminated.
1087 * Converts all Unicode characters in the string that have a case
1088 * to lowercase. The exact manner that this is done depends
1089 * on the current locale, and may result in the number of
1090 * characters in the string changing.
1092 * Returns: a newly allocated string, with all characters
1093 * converted to lowercase.
1095 gchar *
1096 g_utf8_strdown (const gchar *str,
1097 gssize len)
1099 gsize result_len;
1100 LocaleType locale_type;
1101 gchar *result;
1103 g_return_val_if_fail (str != NULL, NULL);
1105 locale_type = get_locale_type ();
1108 * We use a two pass approach to keep memory management simple
1110 result_len = real_tolower (str, len, NULL, locale_type);
1111 result = g_malloc (result_len + 1);
1112 real_tolower (str, len, result, locale_type);
1113 result[result_len] = '\0';
1115 return result;
1119 * g_utf8_casefold:
1120 * @str: a UTF-8 encoded string
1121 * @len: length of @str, in bytes, or -1 if @str is nul-terminated.
1123 * Converts a string into a form that is independent of case. The
1124 * result will not correspond to any particular case, but can be
1125 * compared for equality or ordered with the results of calling
1126 * g_utf8_casefold() on other strings.
1128 * Note that calling g_utf8_casefold() followed by g_utf8_collate() is
1129 * only an approximation to the correct linguistic case insensitive
1130 * ordering, though it is a fairly good one. Getting this exactly
1131 * right would require a more sophisticated collation function that
1132 * takes case sensitivity into account. GLib does not currently
1133 * provide such a function.
1135 * Returns: a newly allocated string, that is a
1136 * case independent form of @str.
1138 gchar *
1139 g_utf8_casefold (const gchar *str,
1140 gssize len)
1142 GString *result;
1143 const char *p;
1145 g_return_val_if_fail (str != NULL, NULL);
1147 result = g_string_new (NULL);
1148 p = str;
1149 while ((len < 0 || p < str + len) && *p)
1151 gunichar ch = g_utf8_get_char (p);
1153 int start = 0;
1154 int end = G_N_ELEMENTS (casefold_table);
1156 if (ch >= casefold_table[start].ch &&
1157 ch <= casefold_table[end - 1].ch)
1159 while (TRUE)
1161 int half = (start + end) / 2;
1162 if (ch == casefold_table[half].ch)
1164 g_string_append (result, casefold_table[half].data);
1165 goto next;
1167 else if (half == start)
1168 break;
1169 else if (ch > casefold_table[half].ch)
1170 start = half;
1171 else
1172 end = half;
1176 g_string_append_unichar (result, g_unichar_tolower (ch));
1178 next:
1179 p = g_utf8_next_char (p);
1182 return g_string_free (result, FALSE);
1186 * g_unichar_get_mirror_char:
1187 * @ch: a Unicode character
1188 * @mirrored_ch: location to store the mirrored character
1190 * In Unicode, some characters are "mirrored". This means that their
1191 * images are mirrored horizontally in text that is laid out from right
1192 * to left. For instance, "(" would become its mirror image, ")", in
1193 * right-to-left text.
1195 * If @ch has the Unicode mirrored property and there is another unicode
1196 * character that typically has a glyph that is the mirror image of @ch's
1197 * glyph and @mirrored_ch is set, it puts that character in the address
1198 * pointed to by @mirrored_ch. Otherwise the original character is put.
1200 * Returns: %TRUE if @ch has a mirrored character, %FALSE otherwise
1202 * Since: 2.4
1204 gboolean
1205 g_unichar_get_mirror_char (gunichar ch,
1206 gunichar *mirrored_ch)
1208 gboolean found;
1209 gunichar mirrored;
1211 mirrored = GLIB_GET_MIRRORING(ch);
1213 found = ch != mirrored;
1214 if (mirrored_ch)
1215 *mirrored_ch = mirrored;
1217 return found;
1221 #define G_SCRIPT_TABLE_MIDPOINT (G_N_ELEMENTS (g_script_table) / 2)
1223 static inline GUnicodeScript
1224 g_unichar_get_script_bsearch (gunichar ch)
1226 int lower = 0;
1227 int upper = G_N_ELEMENTS (g_script_table) - 1;
1228 static int saved_mid = G_SCRIPT_TABLE_MIDPOINT;
1229 int mid = saved_mid;
1234 if (ch < g_script_table[mid].start)
1235 upper = mid - 1;
1236 else if (ch >= g_script_table[mid].start + g_script_table[mid].chars)
1237 lower = mid + 1;
1238 else
1239 return g_script_table[saved_mid = mid].script;
1241 mid = (lower + upper) / 2;
1243 while (lower <= upper);
1245 return G_UNICODE_SCRIPT_UNKNOWN;
1249 * g_unichar_get_script:
1250 * @ch: a Unicode character
1252 * Looks up the #GUnicodeScript for a particular character (as defined
1253 * by Unicode Standard Annex \#24). No check is made for @ch being a
1254 * valid Unicode character; if you pass in invalid character, the
1255 * result is undefined.
1257 * This function is equivalent to pango_script_for_unichar() and the
1258 * two are interchangeable.
1260 * Returns: the #GUnicodeScript for the character.
1262 * Since: 2.14
1264 GUnicodeScript
1265 g_unichar_get_script (gunichar ch)
1267 if (ch < G_EASY_SCRIPTS_RANGE)
1268 return g_script_easy_table[ch];
1269 else
1270 return g_unichar_get_script_bsearch (ch);
1274 /* http://unicode.org/iso15924/ */
1275 static const guint32 iso15924_tags[] =
1277 #define PACK(a,b,c,d) ((guint32)((((guint8)(a))<<24)|(((guint8)(b))<<16)|(((guint8)(c))<<8)|((guint8)(d))))
1279 PACK ('Z','y','y','y'), /* G_UNICODE_SCRIPT_COMMON */
1280 PACK ('Z','i','n','h'), /* G_UNICODE_SCRIPT_INHERITED */
1281 PACK ('A','r','a','b'), /* G_UNICODE_SCRIPT_ARABIC */
1282 PACK ('A','r','m','n'), /* G_UNICODE_SCRIPT_ARMENIAN */
1283 PACK ('B','e','n','g'), /* G_UNICODE_SCRIPT_BENGALI */
1284 PACK ('B','o','p','o'), /* G_UNICODE_SCRIPT_BOPOMOFO */
1285 PACK ('C','h','e','r'), /* G_UNICODE_SCRIPT_CHEROKEE */
1286 PACK ('C','o','p','t'), /* G_UNICODE_SCRIPT_COPTIC */
1287 PACK ('C','y','r','l'), /* G_UNICODE_SCRIPT_CYRILLIC */
1288 PACK ('D','s','r','t'), /* G_UNICODE_SCRIPT_DESERET */
1289 PACK ('D','e','v','a'), /* G_UNICODE_SCRIPT_DEVANAGARI */
1290 PACK ('E','t','h','i'), /* G_UNICODE_SCRIPT_ETHIOPIC */
1291 PACK ('G','e','o','r'), /* G_UNICODE_SCRIPT_GEORGIAN */
1292 PACK ('G','o','t','h'), /* G_UNICODE_SCRIPT_GOTHIC */
1293 PACK ('G','r','e','k'), /* G_UNICODE_SCRIPT_GREEK */
1294 PACK ('G','u','j','r'), /* G_UNICODE_SCRIPT_GUJARATI */
1295 PACK ('G','u','r','u'), /* G_UNICODE_SCRIPT_GURMUKHI */
1296 PACK ('H','a','n','i'), /* G_UNICODE_SCRIPT_HAN */
1297 PACK ('H','a','n','g'), /* G_UNICODE_SCRIPT_HANGUL */
1298 PACK ('H','e','b','r'), /* G_UNICODE_SCRIPT_HEBREW */
1299 PACK ('H','i','r','a'), /* G_UNICODE_SCRIPT_HIRAGANA */
1300 PACK ('K','n','d','a'), /* G_UNICODE_SCRIPT_KANNADA */
1301 PACK ('K','a','n','a'), /* G_UNICODE_SCRIPT_KATAKANA */
1302 PACK ('K','h','m','r'), /* G_UNICODE_SCRIPT_KHMER */
1303 PACK ('L','a','o','o'), /* G_UNICODE_SCRIPT_LAO */
1304 PACK ('L','a','t','n'), /* G_UNICODE_SCRIPT_LATIN */
1305 PACK ('M','l','y','m'), /* G_UNICODE_SCRIPT_MALAYALAM */
1306 PACK ('M','o','n','g'), /* G_UNICODE_SCRIPT_MONGOLIAN */
1307 PACK ('M','y','m','r'), /* G_UNICODE_SCRIPT_MYANMAR */
1308 PACK ('O','g','a','m'), /* G_UNICODE_SCRIPT_OGHAM */
1309 PACK ('I','t','a','l'), /* G_UNICODE_SCRIPT_OLD_ITALIC */
1310 PACK ('O','r','y','a'), /* G_UNICODE_SCRIPT_ORIYA */
1311 PACK ('R','u','n','r'), /* G_UNICODE_SCRIPT_RUNIC */
1312 PACK ('S','i','n','h'), /* G_UNICODE_SCRIPT_SINHALA */
1313 PACK ('S','y','r','c'), /* G_UNICODE_SCRIPT_SYRIAC */
1314 PACK ('T','a','m','l'), /* G_UNICODE_SCRIPT_TAMIL */
1315 PACK ('T','e','l','u'), /* G_UNICODE_SCRIPT_TELUGU */
1316 PACK ('T','h','a','a'), /* G_UNICODE_SCRIPT_THAANA */
1317 PACK ('T','h','a','i'), /* G_UNICODE_SCRIPT_THAI */
1318 PACK ('T','i','b','t'), /* G_UNICODE_SCRIPT_TIBETAN */
1319 PACK ('C','a','n','s'), /* G_UNICODE_SCRIPT_CANADIAN_ABORIGINAL */
1320 PACK ('Y','i','i','i'), /* G_UNICODE_SCRIPT_YI */
1321 PACK ('T','g','l','g'), /* G_UNICODE_SCRIPT_TAGALOG */
1322 PACK ('H','a','n','o'), /* G_UNICODE_SCRIPT_HANUNOO */
1323 PACK ('B','u','h','d'), /* G_UNICODE_SCRIPT_BUHID */
1324 PACK ('T','a','g','b'), /* G_UNICODE_SCRIPT_TAGBANWA */
1326 /* Unicode-4.0 additions */
1327 PACK ('B','r','a','i'), /* G_UNICODE_SCRIPT_BRAILLE */
1328 PACK ('C','p','r','t'), /* G_UNICODE_SCRIPT_CYPRIOT */
1329 PACK ('L','i','m','b'), /* G_UNICODE_SCRIPT_LIMBU */
1330 PACK ('O','s','m','a'), /* G_UNICODE_SCRIPT_OSMANYA */
1331 PACK ('S','h','a','w'), /* G_UNICODE_SCRIPT_SHAVIAN */
1332 PACK ('L','i','n','b'), /* G_UNICODE_SCRIPT_LINEAR_B */
1333 PACK ('T','a','l','e'), /* G_UNICODE_SCRIPT_TAI_LE */
1334 PACK ('U','g','a','r'), /* G_UNICODE_SCRIPT_UGARITIC */
1336 /* Unicode-4.1 additions */
1337 PACK ('T','a','l','u'), /* G_UNICODE_SCRIPT_NEW_TAI_LUE */
1338 PACK ('B','u','g','i'), /* G_UNICODE_SCRIPT_BUGINESE */
1339 PACK ('G','l','a','g'), /* G_UNICODE_SCRIPT_GLAGOLITIC */
1340 PACK ('T','f','n','g'), /* G_UNICODE_SCRIPT_TIFINAGH */
1341 PACK ('S','y','l','o'), /* G_UNICODE_SCRIPT_SYLOTI_NAGRI */
1342 PACK ('X','p','e','o'), /* G_UNICODE_SCRIPT_OLD_PERSIAN */
1343 PACK ('K','h','a','r'), /* G_UNICODE_SCRIPT_KHAROSHTHI */
1345 /* Unicode-5.0 additions */
1346 PACK ('Z','z','z','z'), /* G_UNICODE_SCRIPT_UNKNOWN */
1347 PACK ('B','a','l','i'), /* G_UNICODE_SCRIPT_BALINESE */
1348 PACK ('X','s','u','x'), /* G_UNICODE_SCRIPT_CUNEIFORM */
1349 PACK ('P','h','n','x'), /* G_UNICODE_SCRIPT_PHOENICIAN */
1350 PACK ('P','h','a','g'), /* G_UNICODE_SCRIPT_PHAGS_PA */
1351 PACK ('N','k','o','o'), /* G_UNICODE_SCRIPT_NKO */
1353 /* Unicode-5.1 additions */
1354 PACK ('K','a','l','i'), /* G_UNICODE_SCRIPT_KAYAH_LI */
1355 PACK ('L','e','p','c'), /* G_UNICODE_SCRIPT_LEPCHA */
1356 PACK ('R','j','n','g'), /* G_UNICODE_SCRIPT_REJANG */
1357 PACK ('S','u','n','d'), /* G_UNICODE_SCRIPT_SUNDANESE */
1358 PACK ('S','a','u','r'), /* G_UNICODE_SCRIPT_SAURASHTRA */
1359 PACK ('C','h','a','m'), /* G_UNICODE_SCRIPT_CHAM */
1360 PACK ('O','l','c','k'), /* G_UNICODE_SCRIPT_OL_CHIKI */
1361 PACK ('V','a','i','i'), /* G_UNICODE_SCRIPT_VAI */
1362 PACK ('C','a','r','i'), /* G_UNICODE_SCRIPT_CARIAN */
1363 PACK ('L','y','c','i'), /* G_UNICODE_SCRIPT_LYCIAN */
1364 PACK ('L','y','d','i'), /* G_UNICODE_SCRIPT_LYDIAN */
1366 /* Unicode-5.2 additions */
1367 PACK ('A','v','s','t'), /* G_UNICODE_SCRIPT_AVESTAN */
1368 PACK ('B','a','m','u'), /* G_UNICODE_SCRIPT_BAMUM */
1369 PACK ('E','g','y','p'), /* G_UNICODE_SCRIPT_EGYPTIAN_HIEROGLYPHS */
1370 PACK ('A','r','m','i'), /* G_UNICODE_SCRIPT_IMPERIAL_ARAMAIC */
1371 PACK ('P','h','l','i'), /* G_UNICODE_SCRIPT_INSCRIPTIONAL_PAHLAVI */
1372 PACK ('P','r','t','i'), /* G_UNICODE_SCRIPT_INSCRIPTIONAL_PARTHIAN */
1373 PACK ('J','a','v','a'), /* G_UNICODE_SCRIPT_JAVANESE */
1374 PACK ('K','t','h','i'), /* G_UNICODE_SCRIPT_KAITHI */
1375 PACK ('L','i','s','u'), /* G_UNICODE_SCRIPT_LISU */
1376 PACK ('M','t','e','i'), /* G_UNICODE_SCRIPT_MEETEI_MAYEK */
1377 PACK ('S','a','r','b'), /* G_UNICODE_SCRIPT_OLD_SOUTH_ARABIAN */
1378 PACK ('O','r','k','h'), /* G_UNICODE_SCRIPT_OLD_TURKIC */
1379 PACK ('S','a','m','r'), /* G_UNICODE_SCRIPT_SAMARITAN */
1380 PACK ('L','a','n','a'), /* G_UNICODE_SCRIPT_TAI_THAM */
1381 PACK ('T','a','v','t'), /* G_UNICODE_SCRIPT_TAI_VIET */
1383 /* Unicode-6.0 additions */
1384 PACK ('B','a','t','k'), /* G_UNICODE_SCRIPT_BATAK */
1385 PACK ('B','r','a','h'), /* G_UNICODE_SCRIPT_BRAHMI */
1386 PACK ('M','a','n','d'), /* G_UNICODE_SCRIPT_MANDAIC */
1388 /* Unicode-6.1 additions */
1389 PACK ('C','a','k','m'), /* G_UNICODE_SCRIPT_CHAKMA */
1390 PACK ('M','e','r','c'), /* G_UNICODE_SCRIPT_MEROITIC_CURSIVE */
1391 PACK ('M','e','r','o'), /* G_UNICODE_SCRIPT_MEROITIC_HIEROGLYPHS */
1392 PACK ('P','l','r','d'), /* G_UNICODE_SCRIPT_MIAO */
1393 PACK ('S','h','r','d'), /* G_UNICODE_SCRIPT_SHARADA */
1394 PACK ('S','o','r','a'), /* G_UNICODE_SCRIPT_SORA_SOMPENG */
1395 PACK ('T','a','k','r'), /* G_UNICODE_SCRIPT_TAKRI */
1397 /* Unicode 7.0 additions */
1398 PACK ('B','a','s','s'), /* G_UNICODE_SCRIPT_BASSA_VAH */
1399 PACK ('A','g','h','b'), /* G_UNICODE_SCRIPT_CAUCASIAN_ALBANIAN */
1400 PACK ('D','u','p','l'), /* G_UNICODE_SCRIPT_DUPLOYAN */
1401 PACK ('E','l','b','a'), /* G_UNICODE_SCRIPT_ELBASAN */
1402 PACK ('G','r','a','n'), /* G_UNICODE_SCRIPT_GRANTHA */
1403 PACK ('K','h','o','j'), /* G_UNICODE_SCRIPT_KHOJKI*/
1404 PACK ('S','i','n','d'), /* G_UNICODE_SCRIPT_KHUDAWADI */
1405 PACK ('L','i','n','a'), /* G_UNICODE_SCRIPT_LINEAR_A */
1406 PACK ('M','a','h','j'), /* G_UNICODE_SCRIPT_MAHAJANI */
1407 PACK ('M','a','n','u'), /* G_UNICODE_SCRIPT_MANICHAEAN */
1408 PACK ('M','e','n','d'), /* G_UNICODE_SCRIPT_MENDE_KIKAKUI */
1409 PACK ('M','o','d','i'), /* G_UNICODE_SCRIPT_MODI */
1410 PACK ('M','r','o','o'), /* G_UNICODE_SCRIPT_MRO */
1411 PACK ('N','b','a','t'), /* G_UNICODE_SCRIPT_NABATAEAN */
1412 PACK ('N','a','r','b'), /* G_UNICODE_SCRIPT_OLD_NORTH_ARABIAN */
1413 PACK ('P','e','r','m'), /* G_UNICODE_SCRIPT_OLD_PERMIC */
1414 PACK ('H','m','n','g'), /* G_UNICODE_SCRIPT_PAHAWH_HMONG */
1415 PACK ('P','a','l','m'), /* G_UNICODE_SCRIPT_PALMYRENE */
1416 PACK ('P','a','u','c'), /* G_UNICODE_SCRIPT_PAU_CIN_HAU */
1417 PACK ('P','h','l','p'), /* G_UNICODE_SCRIPT_PSALTER_PAHLAVI */
1418 PACK ('S','i','d','d'), /* G_UNICODE_SCRIPT_SIDDHAM */
1419 PACK ('T','i','r','h'), /* G_UNICODE_SCRIPT_TIRHUTA */
1420 PACK ('W','a','r','a'), /* G_UNICODE_SCRIPT_WARANG_CITI */
1422 /* Unicode 8.0 additions */
1423 PACK ('A','h','o','m'), /* G_UNICODE_SCRIPT_AHOM */
1424 PACK ('H','l','u','w'), /* G_UNICODE_SCRIPT_ANATOLIAN_HIEROGLYPHS */
1425 PACK ('H','a','t','r'), /* G_UNICODE_SCRIPT_HATRAN */
1426 PACK ('M','u','l','t'), /* G_UNICODE_SCRIPT_MULTANI */
1427 PACK ('H','u','n','g'), /* G_UNICODE_SCRIPT_OLD_HUNGARIAN */
1428 PACK ('S','g','n','w'), /* G_UNICODE_SCRIPT_SIGNWRITING */
1430 /* Unicode 9.0 additions */
1431 PACK ('A','d','l','m'), /* G_UNICODE_SCRIPT_ADLAM */
1432 PACK ('B','h','k','s'), /* G_UNICODE_SCRIPT_BHAIKSUKI */
1433 PACK ('M','a','r','c'), /* G_UNICODE_SCRIPT_MARCHEN */
1434 PACK ('N','e','w','a'), /* G_UNICODE_SCRIPT_NEWA */
1435 PACK ('O','s','g','e'), /* G_UNICODE_SCRIPT_OSAGE */
1436 PACK ('T','a','n','g'), /* G_UNICODE_SCRIPT_TANGUT */
1438 /* Unicode 10.0 additions */
1439 PACK ('G','o','n','m'), /* G_UNICODE_SCRIPT_MASARAM_GONDI */
1440 PACK ('N','s','h','u'), /* G_UNICODE_SCRIPT_NUSHU */
1441 PACK ('S','o','y','o'), /* G_UNICODE_SCRIPT_SOYOMBO */
1442 PACK ('Z','a','n','b'), /* G_UNICODE_SCRIPT_ZANABAZAR_SQUARE */
1443 #undef PACK
1447 * g_unicode_script_to_iso15924:
1448 * @script: a Unicode script
1450 * Looks up the ISO 15924 code for @script. ISO 15924 assigns four-letter
1451 * codes to scripts. For example, the code for Arabic is 'Arab'. The
1452 * four letter codes are encoded as a @guint32 by this function in a
1453 * big-endian fashion. That is, the code returned for Arabic is
1454 * 0x41726162 (0x41 is ASCII code for 'A', 0x72 is ASCII code for 'r', etc).
1456 * See
1457 * [Codes for the representation of names of scripts](http://unicode.org/iso15924/codelists.html)
1458 * for details.
1460 * Returns: the ISO 15924 code for @script, encoded as an integer,
1461 * of zero if @script is %G_UNICODE_SCRIPT_INVALID_CODE or
1462 * ISO 15924 code 'Zzzz' (script code for UNKNOWN) if @script is not understood.
1464 * Since: 2.30
1466 guint32
1467 g_unicode_script_to_iso15924 (GUnicodeScript script)
1469 if (G_UNLIKELY (script == G_UNICODE_SCRIPT_INVALID_CODE))
1470 return 0;
1472 if (G_UNLIKELY (script < 0 || script >= (int) G_N_ELEMENTS (iso15924_tags)))
1473 return 0x5A7A7A7A;
1475 return iso15924_tags[script];
1479 * g_unicode_script_from_iso15924:
1480 * @iso15924: a Unicode script
1482 * Looks up the Unicode script for @iso15924. ISO 15924 assigns four-letter
1483 * codes to scripts. For example, the code for Arabic is 'Arab'.
1484 * This function accepts four letter codes encoded as a @guint32 in a
1485 * big-endian fashion. That is, the code expected for Arabic is
1486 * 0x41726162 (0x41 is ASCII code for 'A', 0x72 is ASCII code for 'r', etc).
1488 * See
1489 * [Codes for the representation of names of scripts](http://unicode.org/iso15924/codelists.html)
1490 * for details.
1492 * Returns: the Unicode script for @iso15924, or
1493 * of %G_UNICODE_SCRIPT_INVALID_CODE if @iso15924 is zero and
1494 * %G_UNICODE_SCRIPT_UNKNOWN if @iso15924 is unknown.
1496 * Since: 2.30
1498 GUnicodeScript
1499 g_unicode_script_from_iso15924 (guint32 iso15924)
1501 unsigned int i;
1503 if (!iso15924)
1504 return G_UNICODE_SCRIPT_INVALID_CODE;
1506 for (i = 0; i < G_N_ELEMENTS (iso15924_tags); i++)
1507 if (iso15924_tags[i] == iso15924)
1508 return (GUnicodeScript) i;
1510 return G_UNICODE_SCRIPT_UNKNOWN;