]>
git.saurik.com Git - apple/javascriptcore.git/blob - wtf/unicode/glib/UnicodeGLib.cpp
e20c376e4404fcd29d31d95da22a6f257b17f25c
2 * Copyright (C) 2008 Jürg Billeter <j@bitron.ch>
3 * Copyright (C) 2008 Dominik Röttsches <dominik.roettsches@access-company.com>
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library 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 * Library General Public License for more details.
15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA.
23 #include "UnicodeGLib.h"
28 UChar32
foldCase(UChar32 ch
)
30 GOwnPtr
<GError
> gerror
;
32 GOwnPtr
<char> utf8char
;
33 utf8char
.set(g_ucs4_to_utf8(reinterpret_cast<gunichar
*>(&ch
), 1, 0, 0, &gerror
.outPtr()));
37 GOwnPtr
<char> utf8caseFolded
;
38 utf8caseFolded
.set(g_utf8_casefold(utf8char
.get(), -1));
40 GOwnPtr
<gunichar
> ucs4Result
;
41 ucs4Result
.set(g_utf8_to_ucs4_fast(utf8caseFolded
.get(), -1, 0));
46 int foldCase(UChar
* result
, int resultLength
, const UChar
* src
, int srcLength
, bool* error
)
49 GOwnPtr
<GError
> gerror
;
51 GOwnPtr
<char> utf8src
;
52 utf8src
.set(g_utf16_to_utf8(src
, srcLength
, 0, 0, &gerror
.outPtr()));
58 GOwnPtr
<char> utf8result
;
59 utf8result
.set(g_utf8_casefold(utf8src
.get(), -1));
61 long utf16resultLength
= -1;
62 GOwnPtr
<UChar
> utf16result
;
63 utf16result
.set(g_utf8_to_utf16(utf8result
.get(), -1, 0, &utf16resultLength
, &gerror
.outPtr()));
69 if (utf16resultLength
> resultLength
) {
71 return utf16resultLength
;
73 memcpy(result
, utf16result
.get(), utf16resultLength
* sizeof(UChar
));
75 return utf16resultLength
;
78 int toLower(UChar
* result
, int resultLength
, const UChar
* src
, int srcLength
, bool* error
)
81 GOwnPtr
<GError
> gerror
;
83 GOwnPtr
<char> utf8src
;
84 utf8src
.set(g_utf16_to_utf8(src
, srcLength
, 0, 0, &gerror
.outPtr()));
90 GOwnPtr
<char> utf8result
;
91 utf8result
.set(g_utf8_strdown(utf8src
.get(), -1));
93 long utf16resultLength
= -1;
94 GOwnPtr
<UChar
> utf16result
;
95 utf16result
.set(g_utf8_to_utf16(utf8result
.get(), -1, 0, &utf16resultLength
, &gerror
.outPtr()));
101 if (utf16resultLength
> resultLength
) {
103 return utf16resultLength
;
105 memcpy(result
, utf16result
.get(), utf16resultLength
* sizeof(UChar
));
107 return utf16resultLength
;
110 int toUpper(UChar
* result
, int resultLength
, const UChar
* src
, int srcLength
, bool* error
)
113 GOwnPtr
<GError
> gerror
;
115 GOwnPtr
<char> utf8src
;
116 utf8src
.set(g_utf16_to_utf8(src
, srcLength
, 0, 0, &gerror
.outPtr()));
122 GOwnPtr
<char> utf8result
;
123 utf8result
.set(g_utf8_strup(utf8src
.get(), -1));
125 long utf16resultLength
= -1;
126 GOwnPtr
<UChar
> utf16result
;
127 utf16result
.set(g_utf8_to_utf16(utf8result
.get(), -1, 0, &utf16resultLength
, &gerror
.outPtr()));
133 if (utf16resultLength
> resultLength
) {
135 return utf16resultLength
;
137 memcpy(result
, utf16result
.get(), utf16resultLength
* sizeof(UChar
));
139 return utf16resultLength
;
142 Direction
direction(UChar32 c
)
144 PangoBidiType type
= pango_bidi_type_for_unichar(c
);
146 case PANGO_BIDI_TYPE_L
:
148 case PANGO_BIDI_TYPE_R
:
150 case PANGO_BIDI_TYPE_AL
:
151 return RightToLeftArabic
;
152 case PANGO_BIDI_TYPE_LRE
:
153 return LeftToRightEmbedding
;
154 case PANGO_BIDI_TYPE_RLE
:
155 return RightToLeftEmbedding
;
156 case PANGO_BIDI_TYPE_LRO
:
157 return LeftToRightOverride
;
158 case PANGO_BIDI_TYPE_RLO
:
159 return RightToLeftOverride
;
160 case PANGO_BIDI_TYPE_PDF
:
161 return PopDirectionalFormat
;
162 case PANGO_BIDI_TYPE_EN
:
163 return EuropeanNumber
;
164 case PANGO_BIDI_TYPE_AN
:
166 case PANGO_BIDI_TYPE_ES
:
167 return EuropeanNumberSeparator
;
168 case PANGO_BIDI_TYPE_ET
:
169 return EuropeanNumberTerminator
;
170 case PANGO_BIDI_TYPE_CS
:
171 return CommonNumberSeparator
;
172 case PANGO_BIDI_TYPE_NSM
:
173 return NonSpacingMark
;
174 case PANGO_BIDI_TYPE_BN
:
175 return BoundaryNeutral
;
176 case PANGO_BIDI_TYPE_B
:
177 return BlockSeparator
;
178 case PANGO_BIDI_TYPE_S
:
179 return SegmentSeparator
;
180 case PANGO_BIDI_TYPE_WS
:
181 return WhiteSpaceNeutral
;
187 int umemcasecmp(const UChar
* a
, const UChar
* b
, int len
)
192 utf8a
.set(g_utf16_to_utf8(a
, len
, 0, 0, 0));
193 utf8b
.set(g_utf16_to_utf8(b
, len
, 0, 0, 0));
195 GOwnPtr
<char> foldedA
;
196 GOwnPtr
<char> foldedB
;
198 foldedA
.set(g_utf8_casefold(utf8a
.get(), -1));
199 foldedB
.set(g_utf8_casefold(utf8b
.get(), -1));
201 // FIXME: umemcasecmp needs to mimic u_memcasecmp of icu
202 // from the ICU docs:
203 // "Compare two strings case-insensitively using full case folding.
204 // his is equivalent to u_strcmp(u_strFoldCase(s1, n, options), u_strFoldCase(s2, n, options))."
206 // So it looks like we don't need the full g_utf8_collate here,
207 // but really a bitwise comparison of casefolded unicode chars (not utf-8 bytes).
208 // As there is no direct equivalent to this icu function in GLib, for now
209 // we'll use g_utf8_collate():
211 return g_utf8_collate(foldedA
.get(), foldedB
.get());