2 *******************************************************************************
4 * Copyright (C) 2001-2011, International Business Machines
5 * Corporation and others. All Rights Reserved.
7 *******************************************************************************
8 * file name: casetrn.cpp
10 * tab size: 8 (not used)
13 * created on: 2004sep03
14 * created by: Markus W. Scherer
16 * Implementation class for lower-/upper-/title-casing transliterators.
19 #include "unicode/utypes.h"
21 #if !UCONFIG_NO_TRANSLITERATION
23 #include "unicode/uchar.h"
24 #include "unicode/ustring.h"
25 #include "unicode/utf.h"
26 #include "unicode/utf16.h"
31 /* case context iterator using a Replaceable */
32 U_CFUNC UChar32 U_CALLCONV
33 utrans_rep_caseContextIterator(void *context
, int8_t dir
)
37 UCaseContext
*csc
=(UCaseContext
*)context
;
38 Replaceable
*rep
=(Replaceable
*)csc
->p
;
42 /* reset for backward iteration */
43 csc
->index
=csc
->cpStart
;
46 /* reset for forward iteration */
47 csc
->index
=csc
->cpLimit
;
50 /* continue current iteration direction */
54 // automatically adjust start and limit if the Replaceable disagrees
55 // with the original values
57 if(csc
->start
<csc
->index
) {
58 c
=rep
->char32At(csc
->index
-1);
60 csc
->start
=csc
->index
;
62 csc
->index
-=U16_LENGTH(c
);
67 // detect, and store in csc->b1, if we hit the limit
68 if(csc
->index
<csc
->limit
) {
69 c
=rep
->char32At(csc
->index
);
71 csc
->limit
=csc
->index
;
74 csc
->index
+=U16_LENGTH(c
);
86 UOBJECT_DEFINE_ABSTRACT_RTTI_IMPLEMENTATION(CaseMapTransliterator
)
89 * Constructs a transliterator.
91 CaseMapTransliterator::CaseMapTransliterator(const UnicodeString
&id
, UCaseMapFull
*map
) :
92 Transliterator(id
, 0),
93 fCsp(ucase_getSingleton()),
96 // TODO test incremental mode with context-sensitive text (e.g. greek sigma)
97 // TODO need to call setMaximumContextLength()?!
103 CaseMapTransliterator::~CaseMapTransliterator() {
109 CaseMapTransliterator::CaseMapTransliterator(const CaseMapTransliterator
& o
) :
111 fCsp(o
.fCsp
), fMap(o
.fMap
)
116 * Assignment operator.
118 /*CaseMapTransliterator& CaseMapTransliterator::operator=(const CaseMapTransliterator& o) {
119 Transliterator::operator=(o);
126 * Transliterator API.
128 /*Transliterator* CaseMapTransliterator::clone(void) const {
129 return new CaseMapTransliterator(*this);
133 * Implements {@link Transliterator#handleTransliterate}.
135 void CaseMapTransliterator::handleTransliterate(Replaceable
& text
,
136 UTransPosition
& offsets
,
137 UBool isIncremental
) const
139 if (offsets
.start
>= offsets
.limit
) {
144 uprv_memset(&csc
, 0, sizeof(csc
));
146 csc
.start
= offsets
.contextStart
;
147 csc
.limit
= offsets
.contextLimit
;
152 int32_t textPos
, delta
, result
, locCache
=0;
154 for(textPos
=offsets
.start
; textPos
<offsets
.limit
;) {
156 c
=text
.char32At(textPos
);
157 csc
.cpLimit
=textPos
+=U16_LENGTH(c
);
159 result
=fMap(fCsp
, c
, utrans_rep_caseContextIterator
, &csc
, &s
, "", &locCache
);
161 if(csc
.b1
&& isIncremental
) {
162 // fMap() tried to look beyond the context limit
163 // wait for more input
164 offsets
.start
=csc
.cpStart
;
169 // replace the current code point with its full case mapping result
170 // see UCASE_MAX_STRING_LENGTH
171 if(result
<=UCASE_MAX_STRING_LENGTH
) {
173 tmp
.setTo(FALSE
, s
, result
);
174 delta
=result
-U16_LENGTH(c
);
178 delta
=tmp
.length()-U16_LENGTH(c
);
180 text
.handleReplaceBetween(csc
.cpStart
, textPos
, tmp
);
183 csc
.limit
=offsets
.contextLimit
+=delta
;
184 offsets
.limit
+=delta
;
188 offsets
.start
=textPos
;
193 #endif /* #if !UCONFIG_NO_TRANSLITERATION */