Updated to Unicode 4.1. There are five new GUnicodeBreakType types. That
[platform/upstream/glib.git] / glib / gunicode.h
1 /* gunicode.h - Unicode manipulation functions
2  *
3  *  Copyright (C) 1999, 2000 Tom Tromey
4  *  Copyright 2000, 2005 Red Hat, Inc.
5  *
6  * The Gnome Library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public License as
8  * published by the Free Software Foundation; either version 2 of the
9  * License, or (at your option) any later version.
10  *
11  * The Gnome 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.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with the Gnome Library; see the file COPYING.LIB.  If not,
18  * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  *   Boston, MA 02111-1307, USA.
20  */
21
22 #ifndef __G_UNICODE_H__
23 #define __G_UNICODE_H__
24
25 #include <glib/gerror.h>
26 #include <glib/gtypes.h>
27
28 G_BEGIN_DECLS
29
30 typedef guint32 gunichar;
31 typedef guint16 gunichar2;
32
33 /* These are the possible character classifications.
34  * See http://www.unicode.org/Public/UNIDATA/UCD.html#General_Category_Values
35  */
36 typedef enum
37 {
38   G_UNICODE_CONTROL,
39   G_UNICODE_FORMAT,
40   G_UNICODE_UNASSIGNED,
41   G_UNICODE_PRIVATE_USE,
42   G_UNICODE_SURROGATE,
43   G_UNICODE_LOWERCASE_LETTER,
44   G_UNICODE_MODIFIER_LETTER,
45   G_UNICODE_OTHER_LETTER,
46   G_UNICODE_TITLECASE_LETTER,
47   G_UNICODE_UPPERCASE_LETTER,
48   G_UNICODE_COMBINING_MARK,
49   G_UNICODE_ENCLOSING_MARK,
50   G_UNICODE_NON_SPACING_MARK,
51   G_UNICODE_DECIMAL_NUMBER,
52   G_UNICODE_LETTER_NUMBER,
53   G_UNICODE_OTHER_NUMBER,
54   G_UNICODE_CONNECT_PUNCTUATION,
55   G_UNICODE_DASH_PUNCTUATION,
56   G_UNICODE_CLOSE_PUNCTUATION,
57   G_UNICODE_FINAL_PUNCTUATION,
58   G_UNICODE_INITIAL_PUNCTUATION,
59   G_UNICODE_OTHER_PUNCTUATION,
60   G_UNICODE_OPEN_PUNCTUATION,
61   G_UNICODE_CURRENCY_SYMBOL,
62   G_UNICODE_MODIFIER_SYMBOL,
63   G_UNICODE_MATH_SYMBOL,
64   G_UNICODE_OTHER_SYMBOL,
65   G_UNICODE_LINE_SEPARATOR,
66   G_UNICODE_PARAGRAPH_SEPARATOR,
67   G_UNICODE_SPACE_SEPARATOR
68 } GUnicodeType;
69
70 /* These are the possible line break classifications.
71  * Note that new types may be added in the future.
72  * Implementations may regard unknown values like G_UNICODE_BREAK_UNKNOWN
73  * See http://www.unicode.org/unicode/reports/tr14/
74  */
75 typedef enum
76 {
77   G_UNICODE_BREAK_MANDATORY,
78   G_UNICODE_BREAK_CARRIAGE_RETURN,
79   G_UNICODE_BREAK_LINE_FEED,
80   G_UNICODE_BREAK_COMBINING_MARK,
81   G_UNICODE_BREAK_SURROGATE,
82   G_UNICODE_BREAK_ZERO_WIDTH_SPACE,
83   G_UNICODE_BREAK_INSEPARABLE,
84   G_UNICODE_BREAK_NON_BREAKING_GLUE,
85   G_UNICODE_BREAK_CONTINGENT,
86   G_UNICODE_BREAK_SPACE,
87   G_UNICODE_BREAK_AFTER,
88   G_UNICODE_BREAK_BEFORE,
89   G_UNICODE_BREAK_BEFORE_AND_AFTER,
90   G_UNICODE_BREAK_HYPHEN,
91   G_UNICODE_BREAK_NON_STARTER,
92   G_UNICODE_BREAK_OPEN_PUNCTUATION,
93   G_UNICODE_BREAK_CLOSE_PUNCTUATION,
94   G_UNICODE_BREAK_QUOTATION,
95   G_UNICODE_BREAK_EXCLAMATION,
96   G_UNICODE_BREAK_IDEOGRAPHIC,
97   G_UNICODE_BREAK_NUMERIC,
98   G_UNICODE_BREAK_INFIX_SEPARATOR,
99   G_UNICODE_BREAK_SYMBOL,
100   G_UNICODE_BREAK_ALPHABETIC,
101   G_UNICODE_BREAK_PREFIX,
102   G_UNICODE_BREAK_POSTFIX,
103   G_UNICODE_BREAK_COMPLEX_CONTEXT,
104   G_UNICODE_BREAK_AMBIGUOUS,
105   G_UNICODE_BREAK_UNKNOWN,
106   G_UNICODE_BREAK_NEXT_LINE,
107   G_UNICODE_BREAK_WORD_JOINER,
108   G_UNICODE_BREAK_HANGUL_L_JAMO,
109   G_UNICODE_BREAK_HANGUL_V_JAMO,
110   G_UNICODE_BREAK_HANGUL_T_JAMO,
111   G_UNICODE_BREAK_HANGUL_LV_SYLLABLE,
112   G_UNICODE_BREAK_HANGUL_LVT_SYLLABLE
113 } GUnicodeBreakType;
114
115 /* Returns TRUE if current locale uses UTF-8 charset.  If CHARSET is
116  * not null, sets *CHARSET to the name of the current locale's
117  * charset.  This value is statically allocated, and should be copied
118  * in case the locale's charset will be changed later using setlocale()
119  * or in some other way.
120  */
121 gboolean g_get_charset (G_CONST_RETURN char **charset);
122
123 /* These are all analogs of the <ctype.h> functions.
124  */
125 gboolean g_unichar_isalnum   (gunichar c) G_GNUC_CONST;
126 gboolean g_unichar_isalpha   (gunichar c) G_GNUC_CONST;
127 gboolean g_unichar_iscntrl   (gunichar c) G_GNUC_CONST;
128 gboolean g_unichar_isdigit   (gunichar c) G_GNUC_CONST;
129 gboolean g_unichar_isgraph   (gunichar c) G_GNUC_CONST;
130 gboolean g_unichar_islower   (gunichar c) G_GNUC_CONST;
131 gboolean g_unichar_isprint   (gunichar c) G_GNUC_CONST;
132 gboolean g_unichar_ispunct   (gunichar c) G_GNUC_CONST;
133 gboolean g_unichar_isspace   (gunichar c) G_GNUC_CONST;
134 gboolean g_unichar_isupper   (gunichar c) G_GNUC_CONST;
135 gboolean g_unichar_isxdigit  (gunichar c) G_GNUC_CONST;
136 gboolean g_unichar_istitle   (gunichar c) G_GNUC_CONST;
137 gboolean g_unichar_isdefined (gunichar c) G_GNUC_CONST;
138 gboolean g_unichar_iswide    (gunichar c) G_GNUC_CONST;
139
140 /* More <ctype.h> functions.  These convert between the three cases.
141  * See the Unicode book to understand title case.  */
142 gunichar g_unichar_toupper (gunichar c) G_GNUC_CONST;
143 gunichar g_unichar_tolower (gunichar c) G_GNUC_CONST;
144 gunichar g_unichar_totitle (gunichar c) G_GNUC_CONST;
145
146 /* If C is a digit (according to `g_unichar_isdigit'), then return its
147    numeric value.  Otherwise return -1.  */
148 gint g_unichar_digit_value (gunichar c) G_GNUC_CONST;
149
150 gint g_unichar_xdigit_value (gunichar c) G_GNUC_CONST;
151
152 /* Return the Unicode character type of a given character.  */
153 GUnicodeType g_unichar_type (gunichar c) G_GNUC_CONST;
154
155 /* Return the line break property for a given character */
156 GUnicodeBreakType g_unichar_break_type (gunichar c) G_GNUC_CONST;
157
158
159 /* Compute canonical ordering of a string in-place.  This rearranges
160    decomposed characters in the string according to their combining
161    classes.  See the Unicode manual for more information.  */
162 void g_unicode_canonical_ordering (gunichar *string,
163                                    gsize     len);
164
165 /* Compute canonical decomposition of a character.  Returns g_malloc()d
166    string of Unicode characters.  RESULT_LEN is set to the resulting
167    length of the string.  */
168 gunichar *g_unicode_canonical_decomposition (gunichar  ch,
169                                              gsize    *result_len) G_GNUC_MALLOC;
170
171 /* Array of skip-bytes-per-initial character.
172  */
173 GLIB_VAR const gchar * const g_utf8_skip;
174
175 #define g_utf8_next_char(p) (char *)((p) + g_utf8_skip[*(guchar *)(p)])
176
177 gunichar g_utf8_get_char           (const gchar  *p);
178 gunichar g_utf8_get_char_validated (const  gchar *p,
179                                     gssize        max_len);
180
181 gchar*   g_utf8_offset_to_pointer (const gchar *str,
182                                    glong        offset);  
183 glong    g_utf8_pointer_to_offset (const gchar *str,      
184                                    const gchar *pos);
185 gchar*   g_utf8_prev_char         (const gchar *p);
186 gchar*   g_utf8_find_next_char    (const gchar *p,
187                                    const gchar *end);
188 gchar*   g_utf8_find_prev_char    (const gchar *str,
189                                    const gchar *p);
190
191 glong g_utf8_strlen (const gchar *p,  
192                      gssize       max);        
193
194 /* Copies n characters from src to dest */
195 gchar* g_utf8_strncpy (gchar       *dest,
196                        const gchar *src,
197                        gsize        n);
198
199 /* Find the UTF-8 character corresponding to ch, in string p. These
200    functions are equivalants to strchr and strrchr */
201 gchar* g_utf8_strchr  (const gchar *p,
202                        gssize       len,
203                        gunichar     c);
204 gchar* g_utf8_strrchr (const gchar *p,
205                        gssize       len,
206                        gunichar     c);
207 gchar* g_utf8_strreverse (const gchar *str,
208                           gssize len);
209
210 gunichar2 *g_utf8_to_utf16     (const gchar      *str,
211                                 glong             len,            
212                                 glong            *items_read,     
213                                 glong            *items_written,  
214                                 GError          **error) G_GNUC_MALLOC;
215 gunichar * g_utf8_to_ucs4      (const gchar      *str,
216                                 glong             len,            
217                                 glong            *items_read,     
218                                 glong            *items_written,  
219                                 GError          **error) G_GNUC_MALLOC;
220 gunichar * g_utf8_to_ucs4_fast (const gchar      *str,
221                                 glong             len,            
222                                 glong            *items_written) G_GNUC_MALLOC; 
223 gunichar * g_utf16_to_ucs4     (const gunichar2  *str,
224                                 glong             len,            
225                                 glong            *items_read,     
226                                 glong            *items_written,  
227                                 GError          **error) G_GNUC_MALLOC;
228 gchar*     g_utf16_to_utf8     (const gunichar2  *str,
229                                 glong             len,            
230                                 glong            *items_read,     
231                                 glong            *items_written,  
232                                 GError          **error) G_GNUC_MALLOC;
233 gunichar2 *g_ucs4_to_utf16     (const gunichar   *str,
234                                 glong             len,            
235                                 glong            *items_read,     
236                                 glong            *items_written,  
237                                 GError          **error) G_GNUC_MALLOC;
238 gchar*     g_ucs4_to_utf8      (const gunichar   *str,
239                                 glong             len,            
240                                 glong            *items_read,     
241                                 glong            *items_written,  
242                                 GError          **error) G_GNUC_MALLOC;
243
244 /* Convert a single character into UTF-8. outbuf must have at
245  * least 6 bytes of space. Returns the number of bytes in the
246  * result.
247  */
248 gint      g_unichar_to_utf8 (gunichar    c,
249                              gchar      *outbuf);
250
251 /* Validate a UTF8 string, return TRUE if valid, put pointer to
252  * first invalid char in **end
253  */
254
255 gboolean g_utf8_validate (const gchar  *str,
256                           gssize        max_len,  
257                           const gchar **end);
258
259 /* Validate a Unicode character */
260 gboolean g_unichar_validate (gunichar ch);
261
262 gchar *g_utf8_strup   (const gchar *str,
263                        gssize       len) G_GNUC_MALLOC;
264 gchar *g_utf8_strdown (const gchar *str,
265                        gssize       len) G_GNUC_MALLOC;
266 gchar *g_utf8_casefold (const gchar *str,
267                         gssize       len) G_GNUC_MALLOC;
268
269 typedef enum {
270   G_NORMALIZE_DEFAULT,
271   G_NORMALIZE_NFD = G_NORMALIZE_DEFAULT,
272   G_NORMALIZE_DEFAULT_COMPOSE,
273   G_NORMALIZE_NFC = G_NORMALIZE_DEFAULT_COMPOSE,
274   G_NORMALIZE_ALL,
275   G_NORMALIZE_NFKD = G_NORMALIZE_ALL,
276   G_NORMALIZE_ALL_COMPOSE,
277   G_NORMALIZE_NFKC = G_NORMALIZE_ALL_COMPOSE
278 } GNormalizeMode;
279
280 gchar *g_utf8_normalize (const gchar   *str,
281                          gssize         len,
282                          GNormalizeMode mode) G_GNUC_MALLOC;
283
284 gint   g_utf8_collate     (const gchar *str1,
285                            const gchar *str2);
286 gchar *g_utf8_collate_key (const gchar *str,
287                            gssize       len) G_GNUC_MALLOC;
288 gchar *g_utf8_collate_key_for_filename (const gchar *str,
289                                         gssize       len) G_GNUC_MALLOC;
290
291 gboolean g_unichar_get_mirror_char (gunichar ch,
292                                     gunichar *mirrored_ch);
293
294 G_END_DECLS
295
296 #endif /* __G_UNICODE_H__ */