2 *******************************************************************************
4 * Copyright (c) 1995-2013 International Business Machines Corporation and others
8 * Permission is hereby granted, free of charge, to any person obtaining a copy of
9 * this software and associated documentation files (the "Software"), to deal in
10 * the Software without restriction, including without limitation the rights to
11 * use, copy, modify, merge, publish, distribute, and/or sell copies of the
12 * Software, and to permit persons to whom the Software is furnished to do so,
13 * provided that the above copyright notice(s) and this permission notice appear
14 * in all copies of the Software and that both the above copyright notice(s) and
15 * this permission notice appear in supporting documentation.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN
20 * NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE
21 * LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY
22 * DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
23 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
24 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
26 * Except as contained in this notice, the name of a copyright holder shall not be
27 * used in advertising or otherwise to promote the sale, use or other dealings in
28 * this Software without prior written authorization of the copyright holder.
30 *******************************************************************************
31 * file name: scrptrun.cpp
33 * created on: 10/17/2001
34 * created by: Eric R. Mader
37 * This file is largely copied from the ICU project,
38 * under folder source/extra/scrptrun/scrptrun.cpp
40 #include <unicode/utypes.h>
41 #include <unicode/uscript.h>
56 std::fill_n(ma00
, 0xff, -1);
57 std::fill_n(ma20
, 0x7f, -1);
58 std::fill_n(ma30
, 0x7f, -1);
60 // characters in the range 0x0000 - 0x007e (inclusive)
61 // ascii paired punctuation
74 // characters in the range 0x2000 - 0x207e (inclusive)
75 // general punctuation
83 // characters in the range 0x3000 - 0x307e (inclusive)
84 // chinese paired punctuation
105 int32_t getPairIndex(UChar32 ch
) const
109 if (ch
>= 0x2000 && ch
< 0x207f)
110 return ma20
[ch
- 0x2000];
111 if (ch
>= 0x3000 && ch
< 0x307f)
112 return ma30
[ch
- 0x3000];
118 // There are three Unicode script codes for Japanese text, but only one
119 // OpenType script tag, so we want to keep them in one run as splitting is
120 // pointless for the purpose of OpenType shaping.
121 UScriptCode
getScript(UChar32 ch
, UErrorCode
* status
)
123 UScriptCode script
= uscript_getScript(ch
, status
);
124 if (U_FAILURE(*status
))
126 if (script
== USCRIPT_KATAKANA
|| script
== USCRIPT_KATAKANA_OR_HIRAGANA
)
127 return USCRIPT_HIRAGANA
;
133 static const PairIndices gPairIndices
;
138 const char ScriptRun::fgClassID
=0;
140 static bool sameScript(int32_t scriptOne
, int32_t scriptTwo
)
142 return scriptOne
<= USCRIPT_INHERITED
|| scriptTwo
<= USCRIPT_INHERITED
|| scriptOne
== scriptTwo
;
145 UBool
ScriptRun::next()
147 int32_t startSP
= parenSP
; // used to find the first new open character
148 UErrorCode error
= U_ZERO_ERROR
;
150 // if we've fallen off the end of the text, we're done
151 if (scriptEnd
>= charLimit
) {
155 scriptCode
= USCRIPT_COMMON
;
157 for (scriptStart
= scriptEnd
; scriptEnd
< charLimit
; scriptEnd
+= 1) {
158 UChar high
= charArray
[scriptEnd
];
161 // if the character is a high surrogate and it's not the last one
162 // in the text, see if it's followed by a low surrogate
163 if (high
>= 0xD800 && high
<= 0xDBFF && scriptEnd
< charLimit
- 1)
165 UChar low
= charArray
[scriptEnd
+ 1];
167 // if it is followed by a low surrogate,
168 // consume it and form the full character
169 if (low
>= 0xDC00 && low
<= 0xDFFF) {
170 ch
= (high
- 0xD800) * 0x0400 + low
- 0xDC00 + 0x10000;
175 UScriptCode sc
= getScript(ch
, &error
);
176 int32_t pairIndex
= gPairIndices
.getPairIndex(ch
);
178 // Paired character handling:
180 // if it's an open character, push it onto the stack.
181 // if it's a close character, find the matching open on the
182 // stack, and use that script code. Any non-matching open
183 // characters above it on the stack will be popped.
184 if (pairIndex
>= 0) {
185 if ((pairIndex
& 1) == 0) {
187 int32_t nVecSize
= parenStack
.size();
188 if (parenSP
== nVecSize
)
189 parenStack
.resize(nVecSize
+ 128);
190 parenStack
[parenSP
].pairIndex
= pairIndex
;
191 parenStack
[parenSP
].scriptCode
= scriptCode
;
192 } else if (parenSP
>= 0) {
193 int32_t pi
= pairIndex
& ~1;
195 while (parenSP
>= 0 && parenStack
[parenSP
].pairIndex
!= pi
) {
199 if (parenSP
< startSP
) {
204 sc
= parenStack
[parenSP
].scriptCode
;
209 if (sameScript(scriptCode
, sc
)) {
210 if (scriptCode
<= USCRIPT_INHERITED
&& sc
> USCRIPT_INHERITED
) {
213 // now that we have a final script code, fix any open
214 // characters we pushed before we knew the script code.
215 while (startSP
< parenSP
) {
216 parenStack
[++startSP
].scriptCode
= scriptCode
;
220 // if this character is a close paired character,
221 // pop it from the stack
222 if (pairIndex
>= 0 && (pairIndex
& 1) != 0 && parenSP
>= 0) {
224 /* decrement startSP only if it is >= 0,
225 decrementing it unnecessarily will lead to memory corruption
226 while processing the above while block.
227 e.g. startSP = -4 , parenSP = -1
234 // if the run broke on a surrogate pair,
235 // end it before the high surrogate