2 **********************************************************************
3 * Copyright (C) 1999-2004, International Business Machines
4 * Corporation and others. All Rights Reserved.
5 **********************************************************************
6 * Date Name Description
7 * 11/17/99 aliu Creation.
8 **********************************************************************
11 #include "unicode/utypes.h"
13 #if !UCONFIG_NO_TRANSLITERATION
15 #include "unicode/rep.h"
16 #include "unicode/unifilt.h"
17 #include "unicode/uniset.h"
26 static const UChar FORWARD_OP
[] = {32,62,32,0}; // " > "
31 * Construct a new rule with the given input, output text, and other
32 * attributes. A cursor position may be specified for the output text.
33 * @param input input string, including key and optional ante and
35 * @param anteContextPos offset into input to end of ante context, or -1 if
36 * none. Must be <= input.length() if not -1.
37 * @param postContextPos offset into input to start of post context, or -1
38 * if none. Must be <= input.length() if not -1, and must be >=
40 * @param output output string
41 * @param cursorPosition offset into output at which cursor is located, or -1 if
42 * none. If less than zero, then the cursor is placed after the
43 * <code>output</code>; that is, -1 is equivalent to
44 * <code>output.length()</code>. If greater than
45 * <code>output.length()</code> then an exception is thrown.
46 * @param segs array of UnicodeFunctors corresponding to input pattern
47 * segments, or null if there are none. The array itself is adopted,
48 * but the pointers within it are not.
49 * @param segsCount number of elements in segs[]
50 * @param anchorStart TRUE if the the rule is anchored on the left to
52 * @param anchorEnd TRUE if the rule is anchored on the right to the
55 TransliterationRule::TransliterationRule(const UnicodeString
& input
,
56 int32_t anteContextPos
, int32_t postContextPos
,
57 const UnicodeString
& outputStr
,
58 int32_t cursorPosition
, int32_t cursorOffset
,
59 UnicodeFunctor
** segs
,
61 UBool anchorStart
, UBool anchorEnd
,
62 const TransliterationRuleData
* theData
,
68 if (U_FAILURE(status
)) {
71 // Do range checks only when warranted to save time
72 if (anteContextPos
< 0) {
73 anteContextLength
= 0;
75 if (anteContextPos
> input
.length()) {
76 // throw new IllegalArgumentException("Invalid ante context");
77 status
= U_ILLEGAL_ARGUMENT_ERROR
;
80 anteContextLength
= anteContextPos
;
82 if (postContextPos
< 0) {
83 keyLength
= input
.length() - anteContextLength
;
85 if (postContextPos
< anteContextLength
||
86 postContextPos
> input
.length()) {
87 // throw new IllegalArgumentException("Invalid post context");
88 status
= U_ILLEGAL_ARGUMENT_ERROR
;
91 keyLength
= postContextPos
- anteContextLength
;
93 if (cursorPosition
< 0) {
94 cursorPosition
= outputStr
.length();
95 } else if (cursorPosition
> outputStr
.length()) {
96 // throw new IllegalArgumentException("Invalid cursor position");
97 status
= U_ILLEGAL_ARGUMENT_ERROR
;
100 // We don't validate the segments array. The caller must
101 // guarantee that the segments are well-formed (that is, that
102 // all $n references in the output refer to indices of this
103 // array, and that no array elements are null).
104 this->segments
= segs
;
105 this->segmentsCount
= segsCount
;
110 flags
|= ANCHOR_START
;
117 if (anteContextLength
> 0) {
118 anteContext
= new StringMatcher(pattern
, 0, anteContextLength
,
121 if (anteContext
== 0) {
122 status
= U_MEMORY_ALLOCATION_ERROR
;
129 key
= new StringMatcher(pattern
, anteContextLength
, anteContextLength
+ keyLength
,
133 status
= U_MEMORY_ALLOCATION_ERROR
;
138 int32_t postContextLength
= pattern
.length() - keyLength
- anteContextLength
;
140 if (postContextLength
> 0) {
141 postContext
= new StringMatcher(pattern
, anteContextLength
+ keyLength
, pattern
.length(),
144 if (postContext
== 0) {
145 status
= U_MEMORY_ALLOCATION_ERROR
;
150 this->output
= new StringReplacer(outputStr
, cursorPosition
+ cursorOffset
, data
);
152 if (this->output
== 0) {
153 status
= U_MEMORY_ALLOCATION_ERROR
;
161 TransliterationRule::TransliterationRule(TransliterationRule
& other
) :
166 pattern(other
.pattern
),
167 anteContextLength(other
.anteContextLength
),
168 keyLength(other
.keyLength
),
174 if (other
.segmentsCount
> 0) {
175 segments
= (UnicodeFunctor
**)uprv_malloc(other
.segmentsCount
* sizeof(UnicodeFunctor
*));
176 uprv_memcpy(segments
, other
.segments
, other
.segmentsCount
*sizeof(segments
[0]));
179 if (other
.anteContext
!= NULL
) {
180 anteContext
= (StringMatcher
*) other
.anteContext
->clone();
182 if (other
.key
!= NULL
) {
183 key
= (StringMatcher
*) other
.key
->clone();
185 if (other
.postContext
!= NULL
) {
186 postContext
= (StringMatcher
*) other
.postContext
->clone();
188 output
= other
.output
->clone();
191 TransliterationRule::~TransliterationRule() {
200 * Return the preceding context length. This method is needed to
201 * support the <code>Transliterator</code> method
202 * <code>getMaximumContextLength()</code>. Internally, this is
203 * implemented as the anteContextLength, optionally plus one if
204 * there is a start anchor. The one character anchor gap is
205 * needed to make repeated incremental transliteration with
208 int32_t TransliterationRule::getContextLength(void) const {
209 return anteContextLength
+ ((flags
& ANCHOR_START
) ? 1 : 0);
213 * Internal method. Returns 8-bit index value for this rule.
214 * This is the low byte of the first character of the key,
215 * unless the first character of the key is a set. If it's a
216 * set, or otherwise can match multiple keys, the index value is -1.
218 int16_t TransliterationRule::getIndexValue() const {
219 if (anteContextLength
== pattern
.length()) {
220 // A pattern with just ante context {such as foo)>bar} can
224 UChar32 c
= pattern
.char32At(anteContextLength
);
225 return (int16_t)(data
->lookupMatcher(c
) == NULL
? (c
& 0xFF) : -1);
229 * Internal method. Returns true if this rule matches the given
230 * index value. The index value is an 8-bit integer, 0..255,
231 * representing the low byte of the first character of the key.
232 * It matches this rule if it matches the first character of the
233 * key, or if the first character of the key is a set, and the set
234 * contains any character with a low byte equal to the index
235 * value. If the rule contains only ante context, as in foo)>bar,
236 * then it will match any key.
238 UBool
TransliterationRule::matchesIndexValue(uint8_t v
) const {
239 // Delegate to the key, or if there is none, to the postContext.
240 // If there is neither then we match any key; return true.
241 UnicodeMatcher
*m
= (key
!= NULL
) ? key
: postContext
;
242 return (m
!= NULL
) ? m
->matchesIndexValue(v
) : TRUE
;
246 * Return true if this rule masks another rule. If r1 masks r2 then
247 * r1 matches any input string that r2 matches. If r1 masks r2 and r2 masks
248 * r1 then r1 == r2. Examples: "a>x" masks "ab>y". "a>x" masks "a[b]>y".
249 * "[c]a>x" masks "[dc]a>y".
251 UBool
TransliterationRule::masks(const TransliterationRule
& r2
) const {
252 /* Rule r1 masks rule r2 if the string formed of the
253 * antecontext, key, and postcontext overlaps in the following
260 * The strings must be aligned at the first character of the
261 * key. The length of r1 to the left of the alignment point
262 * must be <= the length of r2 to the left; ditto for the
263 * right. The characters of r1 must equal (or be a superset
264 * of) the corresponding characters of r2. The superset
265 * operation should be performed to check for UnicodeSet
268 * Anchors: Two patterns that differ only in anchors only
269 * mask one another if they are exactly equal, and r2 has
270 * all the anchors r1 has (optionally, plus some). Here Y
271 * means the row masks the column, N means it doesn't.
279 * Post context: {a}b masks ab, but not vice versa, since {a}b
280 * matches everything ab matches, and {a}b matches {|a|}b but ab
281 * does not. Pre context is different (a{b} does not align with
285 /* LIMITATION of the current mask algorithm: Some rule
286 * maskings are currently not detected. For example,
287 * "{Lu}]a>x" masks "A]a>y". This can be added later. TODO
290 int32_t len
= pattern
.length();
291 int32_t left
= anteContextLength
;
292 int32_t left2
= r2
.anteContextLength
;
293 int32_t right
= len
- left
;
294 int32_t right2
= r2
.pattern
.length() - left2
;
296 // TODO Clean this up -- some logic might be combinable with the
299 // Test for anchor masking
300 if (left
== left2
&& right
== right2
&&
301 keyLength
<= r2
.keyLength
&&
302 0 == r2
.pattern
.compare(0, len
, pattern
)) {
303 // The following boolean logic implements the table above
304 return (flags
== r2
.flags
) ||
305 (!(flags
& ANCHOR_START
) && !(flags
& ANCHOR_END
)) ||
306 ((r2
.flags
& ANCHOR_START
) && (r2
.flags
& ANCHOR_END
));
309 return left
<= left2
&&
311 (right
== right2
&& keyLength
<= r2
.keyLength
)) &&
312 0 == r2
.pattern
.compare(left2
- left
, len
, pattern
);
315 static inline int32_t posBefore(const Replaceable
& str
, int32_t pos
) {
317 pos
- UTF_CHAR_LENGTH(str
.char32At(pos
-1)) :
321 static inline int32_t posAfter(const Replaceable
& str
, int32_t pos
) {
322 return (pos
>= 0 && pos
< str
.length()) ?
323 pos
+ UTF_CHAR_LENGTH(str
.char32At(pos
)) :
328 * Attempt a match and replacement at the given position. Return
329 * the degree of match between this rule and the given text. The
330 * degree of match may be mismatch, a partial match, or a full
331 * match. A mismatch means at least one character of the text
332 * does not match the context or key. A partial match means some
333 * context and key characters match, but the text is not long
334 * enough to match all of them. A full match means all context
335 * and key characters match.
337 * If a full match is obtained, perform a replacement, update pos,
338 * and return U_MATCH. Otherwise both text and pos are unchanged.
340 * @param text the text
341 * @param pos the position indices
342 * @param incremental if TRUE, test for partial matches that may
343 * be completed by additional text inserted at pos.limit.
344 * @return one of <code>U_MISMATCH</code>,
345 * <code>U_PARTIAL_MATCH</code>, or <code>U_MATCH</code>. If
346 * incremental is FALSE then U_PARTIAL_MATCH will not be returned.
348 UMatchDegree
TransliterationRule::matchAndReplace(Replaceable
& text
,
350 UBool incremental
) const {
351 // Matching and replacing are done in one method because the
352 // replacement operation needs information obtained during the
353 // match. Another way to do this is to have the match method
354 // create a match result struct with relevant offsets, and to pass
355 // this into the replace method.
357 // ============================ MATCH ===========================
359 // Reset segment match data
360 if (segments
!= NULL
) {
361 for (int32_t i
=0; i
<segmentsCount
; ++i
) {
362 ((StringMatcher
*) segments
[i
])->resetMatch();
366 // int32_t lenDelta, keyLimit;
369 // ------------------------ Ante Context ------------------------
371 // A mismatch in the ante context, or with the start anchor,
372 // is an outright U_MISMATCH regardless of whether we are
373 // incremental or not.
374 int32_t oText
; // offset into 'text'
375 // int32_t newStart = 0;
378 // Note (1): We process text in 16-bit code units, rather than
379 // 32-bit code points. This works because stand-ins are
380 // always in the BMP and because we are doing a literal match
381 // operation, which can be done 16-bits at a time.
383 int32_t anteLimit
= posBefore(text
, pos
.contextStart
);
387 // Start reverse match at char before pos.start
388 oText
= posBefore(text
, pos
.start
);
390 if (anteContext
!= NULL
) {
391 match
= anteContext
->matches(text
, oText
, anteLimit
, FALSE
);
392 if (match
!= U_MATCH
) {
397 minOText
= posAfter(text
, oText
);
399 // ------------------------ Start Anchor ------------------------
401 if (((flags
& ANCHOR_START
) != 0) && oText
!= anteLimit
) {
405 // -------------------- Key and Post Context --------------------
410 match
= key
->matches(text
, oText
, pos
.limit
, incremental
);
411 if (match
!= U_MATCH
) {
418 if (postContext
!= NULL
) {
419 if (incremental
&& keyLimit
== pos
.limit
) {
420 // The key matches just before pos.limit, and there is
421 // a postContext. Since we are in incremental mode,
422 // we must assume more characters may be inserted at
423 // pos.limit -- this is a partial match.
424 return U_PARTIAL_MATCH
;
427 match
= postContext
->matches(text
, oText
, pos
.contextLimit
, incremental
);
428 if (match
!= U_MATCH
) {
433 // ------------------------- Stop Anchor ------------------------
435 if (((flags
& ANCHOR_END
)) != 0) {
436 if (oText
!= pos
.contextLimit
) {
440 return U_PARTIAL_MATCH
;
444 // =========================== REPLACE ==========================
446 // We have a full match. The key is between pos.start and
450 int32_t newLength
= output
->toReplacer()->replace(text
, pos
.start
, keyLimit
, newStart
);
451 int32_t lenDelta
= newLength
- (keyLimit
- pos
.start
);
454 pos
.limit
+= lenDelta
;
455 pos
.contextLimit
+= lenDelta
;
456 // Restrict new value of start to [minOText, min(oText, pos.limit)].
457 pos
.start
= uprv_max(minOText
, uprv_min(uprv_min(oText
, pos
.limit
), newStart
));
462 * Create a source string that represents this rule. Append it to the
465 UnicodeString
& TransliterationRule::toRule(UnicodeString
& rule
,
466 UBool escapeUnprintable
) const {
468 // Accumulate special characters (and non-specials following them)
469 // into quoteBuf. Append quoteBuf, within single quotes, when
470 // a non-quoted element must be inserted.
471 UnicodeString str
, quoteBuf
;
473 // Do not emit the braces '{' '}' around the pattern if there
474 // is neither anteContext nor postContext.
476 (anteContext
!= NULL
) || (postContext
!= NULL
);
479 if ((flags
& ANCHOR_START
) != 0) {
480 rule
.append((UChar
)94/*^*/);
483 // Emit the input pattern
484 ICU_Utility::appendToRule(rule
, anteContext
, escapeUnprintable
, quoteBuf
);
487 ICU_Utility::appendToRule(rule
, (UChar
) 0x007B /*{*/, TRUE
, escapeUnprintable
, quoteBuf
);
490 ICU_Utility::appendToRule(rule
, key
, escapeUnprintable
, quoteBuf
);
493 ICU_Utility::appendToRule(rule
, (UChar
) 0x007D /*}*/, TRUE
, escapeUnprintable
, quoteBuf
);
496 ICU_Utility::appendToRule(rule
, postContext
, escapeUnprintable
, quoteBuf
);
499 if ((flags
& ANCHOR_END
) != 0) {
500 rule
.append((UChar
)36/*$*/);
503 ICU_Utility::appendToRule(rule
, FORWARD_OP
, TRUE
, escapeUnprintable
, quoteBuf
);
505 // Emit the output pattern
507 ICU_Utility::appendToRule(rule
, output
->toReplacer()->toReplacerPattern(str
, escapeUnprintable
),
508 TRUE
, escapeUnprintable
, quoteBuf
);
510 ICU_Utility::appendToRule(rule
, (UChar
) 0x003B /*;*/, TRUE
, escapeUnprintable
, quoteBuf
);
515 void TransliterationRule::setData(const TransliterationRuleData
* d
) {
517 if (anteContext
!= NULL
) anteContext
->setData(d
);
518 if (postContext
!= NULL
) postContext
->setData(d
);
519 if (key
!= NULL
) key
->setData(d
);
520 // assert(output != NULL);
522 // Don't have to do segments since they are in the context or key
526 * Union the set of all characters that may be modified by this rule
527 * into the given set.
529 void TransliterationRule::addSourceSetTo(UnicodeSet
& toUnionTo
) const {
530 int32_t limit
= anteContextLength
+ keyLength
;
531 for (int32_t i
=anteContextLength
; i
<limit
; ) {
532 UChar32 ch
= pattern
.char32At(i
);
533 i
+= UTF_CHAR_LENGTH(ch
);
534 const UnicodeMatcher
* matcher
= data
->lookupMatcher(ch
);
535 if (matcher
== NULL
) {
538 matcher
->addMatchSetTo(toUnionTo
);
544 * Union the set of all characters that may be emitted by this rule
545 * into the given set.
547 void TransliterationRule::addTargetSetTo(UnicodeSet
& toUnionTo
) const {
548 output
->toReplacer()->addReplacementSetTo(toUnionTo
);
553 #endif /* #if !UCONFIG_NO_TRANSLITERATION */