1 /* gutf8.c - Operations on UTF-8 strings.
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 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, write to the
18 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
32 #ifdef G_PLATFORM_WIN32
39 #include "libcharset/libcharset.h"
44 #define UTF8_COMPUTE(Char, Mask, Len) \
50 else if ((Char & 0xe0) == 0xc0) \
55 else if ((Char & 0xf0) == 0xe0) \
60 else if ((Char & 0xf8) == 0xf0) \
65 else if ((Char & 0xfc) == 0xf8) \
70 else if ((Char & 0xfe) == 0xfc) \
78 #define UTF8_LENGTH(Char) \
79 ((Char) < 0x80 ? 1 : \
80 ((Char) < 0x800 ? 2 : \
81 ((Char) < 0x10000 ? 3 : \
82 ((Char) < 0x200000 ? 4 : \
83 ((Char) < 0x4000000 ? 5 : 6)))))
86 #define UTF8_GET(Result, Chars, Count, Mask, Len) \
87 (Result) = (Chars)[0] & (Mask); \
88 for ((Count) = 1; (Count) < (Len); ++(Count)) \
90 if (((Chars)[(Count)] & 0xc0) != 0x80) \
96 (Result) |= ((Chars)[(Count)] & 0x3f); \
99 #define UNICODE_VALID(Char) \
100 ((Char) < 0x110000 && \
101 (((Char) & 0xFFFFF800) != 0xD800) && \
102 ((Char) < 0xFDD0 || (Char) > 0xFDEF) && \
103 ((Char) & 0xFFFE) != 0xFFFE)
106 static const gchar utf8_skip_data[256] = {
107 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
108 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
109 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
110 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
111 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
112 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
113 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,
114 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,6,6,1,1
117 const gchar * const g_utf8_skip = utf8_skip_data;
120 * g_utf8_find_prev_char:
121 * @str: pointer to the beginning of a UTF-8 encoded string
122 * @p: pointer to some position within @str
124 * Given a position @p with a UTF-8 encoded string @str, find the start
125 * of the previous UTF-8 character starting before @p. Returns %NULL if no
126 * UTF-8 characters are present in @str before @p.
128 * @p does not have to be at the beginning of a UTF-8 character. No check
129 * is made to see if the character found is actually valid other than
130 * it starts with an appropriate byte.
132 * Return value: a pointer to the found character or %NULL.
135 g_utf8_find_prev_char (const char *str,
138 for (--p; p >= str; --p)
140 if ((*p & 0xc0) != 0x80)
147 * g_utf8_find_next_char:
148 * @p: a pointer to a position within a UTF-8 encoded string
149 * @end: a pointer to the end of the string, or %NULL to indicate
150 * that the string is nul-terminated, in which case
151 * the returned value will be
153 * Finds the start of the next UTF-8 character in the string after @p.
155 * @p does not have to be at the beginning of a UTF-8 character. No check
156 * is made to see if the character found is actually valid other than
157 * it starts with an appropriate byte.
159 * Return value: a pointer to the found character or %NULL
162 g_utf8_find_next_char (const gchar *p,
168 for (++p; p < end && (*p & 0xc0) == 0x80; ++p)
171 for (++p; (*p & 0xc0) == 0x80; ++p)
174 return (p == end) ? NULL : (gchar *)p;
179 * @p: a pointer to a position within a UTF-8 encoded string
181 * Finds the previous UTF-8 character in the string before @p.
183 * @p does not have to be at the beginning of a UTF-8 character. No check
184 * is made to see if the character found is actually valid other than
185 * it starts with an appropriate byte. If @p might be the first
186 * character of the string, you must use g_utf8_find_prev_char() instead.
188 * Return value: a pointer to the found character.
191 g_utf8_prev_char (const gchar *p)
196 if ((*p & 0xc0) != 0x80)
203 * @p: pointer to the start of a UTF-8 encoded string.
204 * @max: the maximum number of bytes to examine. If @max
205 * is less than 0, then the string is assumed to be
206 * nul-terminated. If @max is 0, @p will not be examined and
209 * Returns the length of the string in characters.
211 * Return value: the length of the string in characters
214 g_utf8_strlen (const gchar *p,
218 const gchar *start = p;
219 g_return_val_if_fail (p != NULL || max == 0, 0);
225 p = g_utf8_next_char (p);
234 p = g_utf8_next_char (p);
236 while (p - start < max && *p)
239 p = g_utf8_next_char (p);
242 /* only do the last len increment if we got a complete
243 * char (don't count partial chars)
245 if (p - start <= max)
254 * @p: a pointer to Unicode character encoded as UTF-8
256 * Converts a sequence of bytes encoded as UTF-8 to a Unicode character.
257 * If @p does not point to a valid UTF-8 encoded character, results are
258 * undefined. If you are not sure that the bytes are complete
259 * valid Unicode characters, you should use g_utf8_get_char_validated()
262 * Return value: the resulting character
265 g_utf8_get_char (const gchar *p)
267 int i, mask = 0, len;
269 unsigned char c = (unsigned char) *p;
271 UTF8_COMPUTE (c, mask, len);
274 UTF8_GET (result, p, i, mask, len);
280 * g_utf8_offset_to_pointer:
281 * @str: a UTF-8 encoded string
282 * @offset: a character offset within @str
284 * Converts from an integer character offset to a pointer to a position
287 * Since 2.10, this function allows to pass a negative @offset to
288 * step backwards. It is usually worth stepping backwards from the end
289 * instead of forwards if @offset is in the last fourth of the string,
290 * since moving forward is about 3 times faster than moving backward.
292 * Return value: the resulting pointer
295 g_utf8_offset_to_pointer (const gchar *str,
298 const gchar *s = str;
302 s = g_utf8_next_char (s);
307 /* This nice technique for fast backwards stepping
308 * through a UTF-8 string was dubbed "stutter stepping"
309 * by its inventor, Larry Ewing.
315 while ((*s & 0xc0) == 0x80)
318 offset += g_utf8_pointer_to_offset (s, s1);
326 * g_utf8_pointer_to_offset:
327 * @str: a UTF-8 encoded string
328 * @pos: a pointer to a position within @str
330 * Converts from a pointer to position within a string to a integer
333 * Since 2.10, this function allows @pos to be before @str, and returns
334 * a negative offset in this case.
336 * Return value: the resulting character offset
339 g_utf8_pointer_to_offset (const gchar *str,
342 const gchar *s = str;
346 offset = - g_utf8_pointer_to_offset (pos, str);
350 s = g_utf8_next_char (s);
360 * @dest: buffer to fill with characters from @src
361 * @src: UTF-8 encoded string
362 * @n: character count
364 * Like the standard C strncpy() function, but
365 * copies a given number of characters instead of a given number of
366 * bytes. The @src string must be valid UTF-8 encoded text.
367 * (Use g_utf8_validate() on all text before trying to use UTF-8
368 * utility functions with it.)
370 * Return value: @dest
373 g_utf8_strncpy (gchar *dest,
377 const gchar *s = src;
380 s = g_utf8_next_char(s);
383 strncpy(dest, src, s - src);
388 G_LOCK_DEFINE_STATIC (aliases);
391 get_alias_hash (void)
393 static GHashTable *alias_hash = NULL;
400 alias_hash = g_hash_table_new (g_str_hash, g_str_equal);
402 aliases = _g_locale_get_charset_aliases ();
403 while (*aliases != '\0')
405 const char *canonical;
407 const char **alias_array;
411 aliases += strlen (aliases) + 1;
413 aliases += strlen (aliases) + 1;
415 alias_array = g_hash_table_lookup (alias_hash, canonical);
418 while (alias_array[count])
422 alias_array = g_renew (const char *, alias_array, count + 2);
423 alias_array[count] = alias;
424 alias_array[count + 1] = NULL;
426 g_hash_table_insert (alias_hash, (char *)canonical, alias_array);
435 /* As an abuse of the alias table, the following routines gets
436 * the charsets that are aliases for the canonical name.
438 G_GNUC_INTERNAL const char **
439 _g_charset_get_aliases (const char *canonical_name)
441 GHashTable *alias_hash = get_alias_hash ();
443 return g_hash_table_lookup (alias_hash, canonical_name);
447 g_utf8_get_charset_internal (const char *raw_data,
450 const char *charset = getenv("CHARSET");
452 if (charset && *charset)
456 if (charset && strstr (charset, "UTF-8"))
462 /* The libcharset code tries to be thread-safe without
463 * a lock, but has a memory leak and a missing memory
464 * barrier, so we lock for it
467 charset = _g_locale_charset_unalias (raw_data);
470 if (charset && *charset)
474 if (charset && strstr (charset, "UTF-8"))
480 /* Assume this for compatibility at present. */
486 typedef struct _GCharsetCache GCharsetCache;
488 struct _GCharsetCache {
495 charset_cache_free (gpointer data)
497 GCharsetCache *cache = data;
499 g_free (cache->charset);
505 * @charset: return location for character set name
507 * Obtains the character set for the <link linkend="setlocale">current
508 * locale</link>; you might use this character set as an argument to
509 * g_convert(), to convert from the current locale's encoding to some
510 * other encoding. (Frequently g_locale_to_utf8() and g_locale_from_utf8()
511 * are nice shortcuts, though.)
513 * On Windows the character set returned by this function is the
514 * so-called system default ANSI code-page. That is the character set
515 * used by the "narrow" versions of C library and Win32 functions that
516 * handle file names. It might be different from the character set
517 * used by the C library's current locale.
519 * The return value is %TRUE if the locale's encoding is UTF-8, in that
520 * case you can perhaps avoid calling g_convert().
522 * The string returned in @charset is not allocated, and should not be
525 * Return value: %TRUE if the returned charset is UTF-8
528 g_get_charset (G_CONST_RETURN char **charset)
530 static GStaticPrivate cache_private = G_STATIC_PRIVATE_INIT;
531 GCharsetCache *cache = g_static_private_get (&cache_private);
536 cache = g_new0 (GCharsetCache, 1);
537 g_static_private_set (&cache_private, cache, charset_cache_free);
540 raw = _g_locale_charset_raw ();
542 if (!(cache->raw && strcmp (cache->raw, raw) == 0))
544 const gchar *new_charset;
547 g_free (cache->charset);
548 cache->raw = g_strdup (raw);
549 cache->is_utf8 = g_utf8_get_charset_internal (raw, &new_charset);
550 cache->charset = g_strdup (new_charset);
554 *charset = cache->charset;
556 return cache->is_utf8;
563 * @c: a Unicode character code
564 * @outbuf: output buffer, must have at least 6 bytes of space.
565 * If %NULL, the length will be computed and returned
566 * and nothing will be written to @outbuf.
568 * Converts a single character to UTF-8.
570 * Return value: number of bytes written
573 g_unichar_to_utf8 (gunichar c,
576 /* If this gets modified, also update the copy in g_string_insert_unichar() */
591 else if (c < 0x10000)
596 else if (c < 0x200000)
601 else if (c < 0x4000000)
614 for (i = len - 1; i > 0; --i)
616 outbuf[i] = (c & 0x3f) | 0x80;
619 outbuf[0] = c | first;
627 * @p: a nul-terminated UTF-8 encoded string
628 * @len: the maximum length of @p
629 * @c: a Unicode character
631 * Finds the leftmost occurrence of the given Unicode character
632 * in a UTF-8 encoded string, while limiting the search to @len bytes.
633 * If @len is -1, allow unbounded search.
635 * Return value: %NULL if the string does not contain the character,
636 * otherwise, a pointer to the start of the leftmost occurrence of
637 * the character in the string.
640 g_utf8_strchr (const char *p,
646 gint charlen = g_unichar_to_utf8 (c, ch);
649 return g_strstr_len (p, len, ch);
655 * @p: a nul-terminated UTF-8 encoded string
656 * @len: the maximum length of @p
657 * @c: a Unicode character
659 * Find the rightmost occurrence of the given Unicode character
660 * in a UTF-8 encoded string, while limiting the search to @len bytes.
661 * If @len is -1, allow unbounded search.
663 * Return value: %NULL if the string does not contain the character,
664 * otherwise, a pointer to the start of the rightmost occurrence of the
665 * character in the string.
668 g_utf8_strrchr (const char *p,
674 gint charlen = g_unichar_to_utf8 (c, ch);
677 return g_strrstr_len (p, len, ch);
681 /* Like g_utf8_get_char, but take a maximum length
682 * and return (gunichar)-2 on incomplete trailing character
684 static inline gunichar
685 g_utf8_get_char_extended (const gchar *p,
689 gunichar wc = (guchar) *p;
729 if (max_len >= 0 && len > max_len)
731 for (i = 1; i < max_len; i++)
733 if ((((guchar *)p)[i] & 0xc0) != 0x80)
739 for (i = 1; i < len; ++i)
741 gunichar ch = ((guchar *)p)[i];
743 if ((ch & 0xc0) != 0x80)
755 if (UTF8_LENGTH(wc) != len)
762 * g_utf8_get_char_validated:
763 * @p: a pointer to Unicode character encoded as UTF-8
764 * @max_len: the maximum number of bytes to read, or -1, for no maximum or
765 * if @p is nul-terminated
767 * Convert a sequence of bytes encoded as UTF-8 to a Unicode character.
768 * This function checks for incomplete characters, for invalid characters
769 * such as characters that are out of the range of Unicode, and for
770 * overlong encodings of valid characters.
772 * Return value: the resulting character. If @p points to a partial
773 * sequence at the end of a string that could begin a valid
774 * character (or if @max_len is zero), returns (gunichar)-2;
775 * otherwise, if @p does not point to a valid UTF-8 encoded
776 * Unicode character, returns (gunichar)-1.
779 g_utf8_get_char_validated (const gchar *p,
787 result = g_utf8_get_char_extended (p, max_len);
789 if (result & 0x80000000)
791 else if (!UNICODE_VALID (result))
798 * g_utf8_to_ucs4_fast:
799 * @str: a UTF-8 encoded string
800 * @len: the maximum length of @str to use. If @len < 0, then
801 * the string is nul-terminated.
802 * @items_written: location to store the number of characters in the
805 * Convert a string from UTF-8 to a 32-bit fixed width
806 * representation as UCS-4, assuming valid UTF-8 input.
807 * This function is roughly twice as fast as g_utf8_to_ucs4()
808 * but does no error checking on the input.
810 * Return value: a pointer to a newly allocated UCS-4 string.
811 * This value must be freed with g_free().
814 g_utf8_to_ucs4_fast (const gchar *str,
816 glong *items_written)
823 g_return_val_if_fail (str != NULL, NULL);
831 p = g_utf8_next_char (p);
837 while (p < str + len && *p)
839 p = g_utf8_next_char (p);
844 result = g_new (gunichar, n_chars + 1);
847 for (i=0; i < n_chars; i++)
849 gunichar wc = ((unsigned char *)p)[0];
884 for (j = 1; j < charlen; j++)
887 wc |= ((unsigned char *)p)[j] & 0x3f;
904 * @str: a UTF-8 encoded string
905 * @len: the maximum length of @str to use. If @len < 0, then
906 * the string is nul-terminated.
907 * @items_read: location to store number of bytes read, or %NULL.
908 * If %NULL, then %G_CONVERT_ERROR_PARTIAL_INPUT will be
909 * returned in case @str contains a trailing partial
910 * character. If an error occurs then the index of the
911 * invalid input is stored here.
912 * @items_written: location to store number of characters written or %NULL.
913 * The value here stored does not include the trailing 0
915 * @error: location to store the error occuring, or %NULL to ignore
916 * errors. Any of the errors in #GConvertError other than
917 * %G_CONVERT_ERROR_NO_CONVERSION may occur.
919 * Convert a string from UTF-8 to a 32-bit fixed width
920 * representation as UCS-4. A trailing 0 will be added to the
921 * string after the converted text.
923 * Return value: a pointer to a newly allocated UCS-4 string.
924 * This value must be freed with g_free(). If an
925 * error occurs, %NULL will be returned and
929 g_utf8_to_ucs4 (const gchar *str,
932 glong *items_written,
935 gunichar *result = NULL;
941 while ((len < 0 || str + len - in > 0) && *in)
943 gunichar wc = g_utf8_get_char_extended (in, len < 0 ? 6 : str + len - in);
946 if (wc == (gunichar)-2)
951 g_set_error (error, G_CONVERT_ERROR, G_CONVERT_ERROR_PARTIAL_INPUT,
952 _("Partial character sequence at end of input"));
955 g_set_error (error, G_CONVERT_ERROR, G_CONVERT_ERROR_ILLEGAL_SEQUENCE,
956 _("Invalid byte sequence in conversion input"));
963 in = g_utf8_next_char (in);
966 result = g_new (gunichar, n_chars + 1);
969 for (i=0; i < n_chars; i++)
971 result[i] = g_utf8_get_char (in);
972 in = g_utf8_next_char (in);
977 *items_written = n_chars;
981 *items_read = in - str;
988 * @str: a UCS-4 encoded string
989 * @len: the maximum length (number of characters) of @str to use.
990 * If @len < 0, then the string is terminated with a 0 character.
991 * @items_read: location to store number of characters read, or %NULL.
992 * @items_written: location to store number of bytes written or %NULL.
993 * The value here stored does not include the trailing 0
995 * @error: location to store the error occuring, or %NULL to ignore
996 * errors. Any of the errors in #GConvertError other than
997 * %G_CONVERT_ERROR_NO_CONVERSION may occur.
999 * Convert a string from a 32-bit fixed width representation as UCS-4.
1000 * to UTF-8. The result will be terminated with a 0 byte.
1002 * Return value: a pointer to a newly allocated UTF-8 string.
1003 * This value must be freed with g_free(). If an
1004 * error occurs, %NULL will be returned and
1005 * @error set. In that case, @items_read will be
1006 * set to the position of the first invalid input
1010 g_ucs4_to_utf8 (const gunichar *str,
1013 glong *items_written,
1017 gchar *result = NULL;
1022 for (i = 0; len < 0 || i < len ; i++)
1027 if (str[i] >= 0x80000000)
1029 g_set_error (error, G_CONVERT_ERROR, G_CONVERT_ERROR_ILLEGAL_SEQUENCE,
1030 _("Character out of range for UTF-8"));
1034 result_length += UTF8_LENGTH (str[i]);
1037 result = g_malloc (result_length + 1);
1041 while (p < result + result_length)
1042 p += g_unichar_to_utf8 (str[i++], p);
1047 *items_written = p - result;
1056 #define SURROGATE_VALUE(h,l) (((h) - 0xd800) * 0x400 + (l) - 0xdc00 + 0x10000)
1060 * @str: a UTF-16 encoded string
1061 * @len: the maximum length (number of <type>gunichar2</type>) of @str to use.
1062 * If @len < 0, then the string is terminated with a 0 character.
1063 * @items_read: location to store number of words read, or %NULL.
1064 * If %NULL, then %G_CONVERT_ERROR_PARTIAL_INPUT will be
1065 * returned in case @str contains a trailing partial
1066 * character. If an error occurs then the index of the
1067 * invalid input is stored here.
1068 * @items_written: location to store number of bytes written, or %NULL.
1069 * The value stored here does not include the trailing
1071 * @error: location to store the error occuring, or %NULL to ignore
1072 * errors. Any of the errors in #GConvertError other than
1073 * %G_CONVERT_ERROR_NO_CONVERSION may occur.
1075 * Convert a string from UTF-16 to UTF-8. The result will be
1076 * terminated with a 0 byte.
1078 * Note that the input is expected to be already in native endianness,
1079 * an initial byte-order-mark character is not handled specially.
1080 * g_convert() can be used to convert a byte buffer of UTF-16 data of
1081 * ambiguous endianess.
1083 * Return value: a pointer to a newly allocated UTF-8 string.
1084 * This value must be freed with g_free(). If an
1085 * error occurs, %NULL will be returned and
1089 g_utf16_to_utf8 (const gunichar2 *str,
1092 glong *items_written,
1095 /* This function and g_utf16_to_ucs4 are almost exactly identical - The lines that differ
1098 const gunichar2 *in;
1100 gchar *result = NULL;
1102 gunichar high_surrogate;
1104 g_return_val_if_fail (str != NULL, NULL);
1109 while ((len < 0 || in - str < len) && *in)
1114 if (c >= 0xdc00 && c < 0xe000) /* low surrogate */
1118 wc = SURROGATE_VALUE (high_surrogate, c);
1123 g_set_error (error, G_CONVERT_ERROR, G_CONVERT_ERROR_ILLEGAL_SEQUENCE,
1124 _("Invalid sequence in conversion input"));
1132 g_set_error (error, G_CONVERT_ERROR, G_CONVERT_ERROR_ILLEGAL_SEQUENCE,
1133 _("Invalid sequence in conversion input"));
1137 if (c >= 0xd800 && c < 0xdc00) /* high surrogate */
1146 /********** DIFFERENT for UTF8/UCS4 **********/
1147 n_bytes += UTF8_LENGTH (wc);
1153 if (high_surrogate && !items_read)
1155 g_set_error (error, G_CONVERT_ERROR, G_CONVERT_ERROR_PARTIAL_INPUT,
1156 _("Partial character sequence at end of input"));
1160 /* At this point, everything is valid, and we just need to convert
1162 /********** DIFFERENT for UTF8/UCS4 **********/
1163 result = g_malloc (n_bytes + 1);
1168 while (out < result + n_bytes)
1173 if (c >= 0xdc00 && c < 0xe000) /* low surrogate */
1175 wc = SURROGATE_VALUE (high_surrogate, c);
1178 else if (c >= 0xd800 && c < 0xdc00) /* high surrogate */
1186 /********** DIFFERENT for UTF8/UCS4 **********/
1187 out += g_unichar_to_utf8 (wc, out);
1193 /********** DIFFERENT for UTF8/UCS4 **********/
1197 /********** DIFFERENT for UTF8/UCS4 **********/
1198 *items_written = out - result;
1202 *items_read = in - str;
1209 * @str: a UTF-16 encoded string
1210 * @len: the maximum length (number of <type>gunichar2</type>) of @str to use.
1211 * If @len < 0, then the string is terminated with a 0 character.
1212 * @items_read: location to store number of words read, or %NULL.
1213 * If %NULL, then %G_CONVERT_ERROR_PARTIAL_INPUT will be
1214 * returned in case @str contains a trailing partial
1215 * character. If an error occurs then the index of the
1216 * invalid input is stored here.
1217 * @items_written: location to store number of characters written, or %NULL.
1218 * The value stored here does not include the trailing
1220 * @error: location to store the error occuring, or %NULL to ignore
1221 * errors. Any of the errors in #GConvertError other than
1222 * %G_CONVERT_ERROR_NO_CONVERSION may occur.
1224 * Convert a string from UTF-16 to UCS-4. The result will be
1225 * terminated with a 0 character.
1227 * Return value: a pointer to a newly allocated UCS-4 string.
1228 * This value must be freed with g_free(). If an
1229 * error occurs, %NULL will be returned and
1233 g_utf16_to_ucs4 (const gunichar2 *str,
1236 glong *items_written,
1239 const gunichar2 *in;
1241 gchar *result = NULL;
1243 gunichar high_surrogate;
1245 g_return_val_if_fail (str != NULL, NULL);
1250 while ((len < 0 || in - str < len) && *in)
1255 if (c >= 0xdc00 && c < 0xe000) /* low surrogate */
1259 wc = SURROGATE_VALUE (high_surrogate, c);
1264 g_set_error (error, G_CONVERT_ERROR, G_CONVERT_ERROR_ILLEGAL_SEQUENCE,
1265 _("Invalid sequence in conversion input"));
1273 g_set_error (error, G_CONVERT_ERROR, G_CONVERT_ERROR_ILLEGAL_SEQUENCE,
1274 _("Invalid sequence in conversion input"));
1278 if (c >= 0xd800 && c < 0xdc00) /* high surrogate */
1287 /********** DIFFERENT for UTF8/UCS4 **********/
1288 n_bytes += sizeof (gunichar);
1294 if (high_surrogate && !items_read)
1296 g_set_error (error, G_CONVERT_ERROR, G_CONVERT_ERROR_PARTIAL_INPUT,
1297 _("Partial character sequence at end of input"));
1301 /* At this point, everything is valid, and we just need to convert
1303 /********** DIFFERENT for UTF8/UCS4 **********/
1304 result = g_malloc (n_bytes + 4);
1309 while (out < result + n_bytes)
1314 if (c >= 0xdc00 && c < 0xe000) /* low surrogate */
1316 wc = SURROGATE_VALUE (high_surrogate, c);
1319 else if (c >= 0xd800 && c < 0xdc00) /* high surrogate */
1327 /********** DIFFERENT for UTF8/UCS4 **********/
1328 *(gunichar *)out = wc;
1329 out += sizeof (gunichar);
1335 /********** DIFFERENT for UTF8/UCS4 **********/
1336 *(gunichar *)out = 0;
1339 /********** DIFFERENT for UTF8/UCS4 **********/
1340 *items_written = (out - result) / sizeof (gunichar);
1344 *items_read = in - str;
1346 return (gunichar *)result;
1351 * @str: a UTF-8 encoded string
1352 * @len: the maximum length (number of characters) of @str to use.
1353 * If @len < 0, then the string is nul-terminated.
1354 * @items_read: location to store number of bytes read, or %NULL.
1355 * If %NULL, then %G_CONVERT_ERROR_PARTIAL_INPUT will be
1356 * returned in case @str contains a trailing partial
1357 * character. If an error occurs then the index of the
1358 * invalid input is stored here.
1359 * @items_written: location to store number of <type>gunichar2</type> written,
1361 * The value stored here does not include the trailing 0.
1362 * @error: location to store the error occuring, or %NULL to ignore
1363 * errors. Any of the errors in #GConvertError other than
1364 * %G_CONVERT_ERROR_NO_CONVERSION may occur.
1366 * Convert a string from UTF-8 to UTF-16. A 0 character will be
1367 * added to the result after the converted text.
1369 * Return value: a pointer to a newly allocated UTF-16 string.
1370 * This value must be freed with g_free(). If an
1371 * error occurs, %NULL will be returned and
1375 g_utf8_to_utf16 (const gchar *str,
1378 glong *items_written,
1381 gunichar2 *result = NULL;
1386 g_return_val_if_fail (str != NULL, NULL);
1390 while ((len < 0 || str + len - in > 0) && *in)
1392 gunichar wc = g_utf8_get_char_extended (in, len < 0 ? 6 : str + len - in);
1393 if (wc & 0x80000000)
1395 if (wc == (gunichar)-2)
1400 g_set_error (error, G_CONVERT_ERROR, G_CONVERT_ERROR_PARTIAL_INPUT,
1401 _("Partial character sequence at end of input"));
1404 g_set_error (error, G_CONVERT_ERROR, G_CONVERT_ERROR_ILLEGAL_SEQUENCE,
1405 _("Invalid byte sequence in conversion input"));
1412 else if (wc < 0xe000)
1414 g_set_error (error, G_CONVERT_ERROR, G_CONVERT_ERROR_ILLEGAL_SEQUENCE,
1415 _("Invalid sequence in conversion input"));
1419 else if (wc < 0x10000)
1421 else if (wc < 0x110000)
1425 g_set_error (error, G_CONVERT_ERROR, G_CONVERT_ERROR_ILLEGAL_SEQUENCE,
1426 _("Character out of range for UTF-16"));
1431 in = g_utf8_next_char (in);
1434 result = g_new (gunichar2, n16 + 1);
1437 for (i = 0; i < n16;)
1439 gunichar wc = g_utf8_get_char (in);
1447 result[i++] = (wc - 0x10000) / 0x400 + 0xd800;
1448 result[i++] = (wc - 0x10000) % 0x400 + 0xdc00;
1451 in = g_utf8_next_char (in);
1457 *items_written = n16;
1461 *items_read = in - str;
1468 * @str: a UCS-4 encoded string
1469 * @len: the maximum length (number of characters) of @str to use.
1470 * If @len < 0, then the string is terminated with a 0 character.
1471 * @items_read: location to store number of bytes read, or %NULL.
1472 * If an error occurs then the index of the invalid input
1474 * @items_written: location to store number of <type>gunichar2</type>
1475 * written, or %NULL. The value stored here does not
1476 * include the trailing 0.
1477 * @error: location to store the error occuring, or %NULL to ignore
1478 * errors. Any of the errors in #GConvertError other than
1479 * %G_CONVERT_ERROR_NO_CONVERSION may occur.
1481 * Convert a string from UCS-4 to UTF-16. A 0 character will be
1482 * added to the result after the converted text.
1484 * Return value: a pointer to a newly allocated UTF-16 string.
1485 * This value must be freed with g_free(). If an
1486 * error occurs, %NULL will be returned and
1490 g_ucs4_to_utf16 (const gunichar *str,
1493 glong *items_written,
1496 gunichar2 *result = NULL;
1502 while ((len < 0 || i < len) && str[i])
1504 gunichar wc = str[i];
1508 else if (wc < 0xe000)
1510 g_set_error (error, G_CONVERT_ERROR, G_CONVERT_ERROR_ILLEGAL_SEQUENCE,
1511 _("Invalid sequence in conversion input"));
1515 else if (wc < 0x10000)
1517 else if (wc < 0x110000)
1521 g_set_error (error, G_CONVERT_ERROR, G_CONVERT_ERROR_ILLEGAL_SEQUENCE,
1522 _("Character out of range for UTF-16"));
1530 result = g_new (gunichar2, n16 + 1);
1532 for (i = 0, j = 0; j < n16; i++)
1534 gunichar wc = str[i];
1542 result[j++] = (wc - 0x10000) / 0x400 + 0xd800;
1543 result[j++] = (wc - 0x10000) % 0x400 + 0xdc00;
1549 *items_written = n16;
1558 #define CONTINUATION_CHAR \
1560 if ((*(guchar *)p & 0xc0) != 0x80) /* 10xxxxxx */ \
1563 val |= (*(guchar *)p) & 0x3f; \
1566 static const gchar *
1567 fast_validate (const char *str)
1574 for (p = str; *p; p++)
1576 if (*(guchar *)p < 128)
1583 if ((*(guchar *)p & 0xe0) == 0xc0) /* 110xxxxx */
1585 if (G_UNLIKELY ((*(guchar *)p & 0x1e) == 0))
1588 if (G_UNLIKELY ((*(guchar *)p & 0xc0) != 0x80)) /* 10xxxxxx */
1593 if ((*(guchar *)p & 0xf0) == 0xe0) /* 1110xxxx */
1596 val = *(guchar *)p & 0x0f;
1599 else if ((*(guchar *)p & 0xf8) == 0xf0) /* 11110xxx */
1602 val = *(guchar *)p & 0x07;
1615 if (G_UNLIKELY (val < min))
1618 if (G_UNLIKELY (!UNICODE_VALID(val)))
1632 static const gchar *
1633 fast_validate_len (const char *str,
1641 g_assert (max_len >= 0);
1643 for (p = str; ((p - str) < max_len) && *p; p++)
1645 if (*(guchar *)p < 128)
1652 if ((*(guchar *)p & 0xe0) == 0xc0) /* 110xxxxx */
1654 if (G_UNLIKELY (max_len - (p - str) < 2))
1657 if (G_UNLIKELY ((*(guchar *)p & 0x1e) == 0))
1660 if (G_UNLIKELY ((*(guchar *)p & 0xc0) != 0x80)) /* 10xxxxxx */
1665 if ((*(guchar *)p & 0xf0) == 0xe0) /* 1110xxxx */
1667 if (G_UNLIKELY (max_len - (p - str) < 3))
1671 val = *(guchar *)p & 0x0f;
1674 else if ((*(guchar *)p & 0xf8) == 0xf0) /* 11110xxx */
1676 if (G_UNLIKELY (max_len - (p - str) < 4))
1680 val = *(guchar *)p & 0x07;
1693 if (G_UNLIKELY (val < min))
1695 if (G_UNLIKELY (!UNICODE_VALID(val)))
1711 * @str: a pointer to character data
1712 * @max_len: max bytes to validate, or -1 to go until NUL
1713 * @end: return location for end of valid data
1715 * Validates UTF-8 encoded text. @str is the text to validate;
1716 * if @str is nul-terminated, then @max_len can be -1, otherwise
1717 * @max_len should be the number of bytes to validate.
1718 * If @end is non-%NULL, then the end of the valid range
1719 * will be stored there (i.e. the start of the first invalid
1720 * character if some bytes were invalid, or the end of the text
1721 * being validated otherwise).
1723 * Note that g_utf8_validate() returns %FALSE if @max_len is
1724 * positive and NUL is met before @max_len bytes have been read.
1726 * Returns %TRUE if all of @str was valid. Many GLib and GTK+
1727 * routines <emphasis>require</emphasis> valid UTF-8 as input;
1728 * so data read from a file or the network should be checked
1729 * with g_utf8_validate() before doing anything else with it.
1731 * Return value: %TRUE if the text was valid UTF-8
1734 g_utf8_validate (const char *str,
1742 p = fast_validate (str);
1744 p = fast_validate_len (str, max_len);
1749 if ((max_len >= 0 && p != str + max_len) ||
1750 (max_len < 0 && *p != '\0'))
1757 * g_unichar_validate:
1758 * @ch: a Unicode character
1760 * Checks whether @ch is a valid Unicode character. Some possible
1761 * integer values of @ch will not be valid. 0 is considered a valid
1762 * character, though it's normally a string terminator.
1764 * Return value: %TRUE if @ch is a valid Unicode character
1767 g_unichar_validate (gunichar ch)
1769 return UNICODE_VALID (ch);
1773 * g_utf8_strreverse:
1774 * @str: a UTF-8 encoded string
1775 * @len: the maximum length of @str to use. If @len < 0, then
1776 * the string is nul-terminated.
1778 * Reverses a UTF-8 string. @str must be valid UTF-8 encoded text.
1779 * (Use g_utf8_validate() on all text before trying to use UTF-8
1780 * utility functions with it.)
1782 * This function is intended for programmatic uses of reversed strings.
1783 * It pays no attention to decomposed characters, combining marks, byte
1784 * order marks, directional indicators (LRM, LRO, etc) and similar
1785 * characters which might need special handling when reversing a string
1786 * for display purposes.
1788 * Note that unlike g_strreverse(), this function returns
1789 * newly-allocated memory, which should be freed with g_free() when
1792 * Returns: a newly-allocated string which is the reverse of @str.
1797 g_utf8_strreverse (const gchar *str,
1806 result = g_new (gchar, len + 1);
1811 gchar *m, skip = g_utf8_skip[*(guchar*) p];
1813 for (m = r; skip; skip--)
1823 _g_utf8_make_valid (const gchar *name)
1826 const gchar *remainder, *invalid;
1827 gint remaining_bytes, valid_bytes;
1831 remaining_bytes = strlen (name);
1833 while (remaining_bytes != 0)
1835 if (g_utf8_validate (remainder, remaining_bytes, &invalid))
1837 valid_bytes = invalid - remainder;
1840 string = g_string_sized_new (remaining_bytes);
1842 g_string_append_len (string, remainder, valid_bytes);
1843 /* append U+FFFD REPLACEMENT CHARACTER */
1844 g_string_append (string, "\357\277\275");
1846 remaining_bytes -= valid_bytes + 1;
1847 remainder = invalid + 1;
1851 return g_strdup (name);
1853 g_string_append (string, remainder);
1855 g_assert (g_utf8_validate (string->str, -1, NULL));
1857 return g_string_free (string, FALSE);
1861 #define __G_UTF8_C__
1862 #include "galiasdef.c"