2 ***********************************************************************
3 * Copyright (c) 2002-2007, International Business Machines Corporation
4 * and others. All Rights Reserved.
5 ***********************************************************************
6 * Date Name Description
7 * 06/06/2002 aliu Creation.
8 ***********************************************************************
13 #include "unicode/utypes.h"
15 #if !UCONFIG_NO_TRANSLITERATION
17 #include "unicode/translit.h"
18 #include "unicode/uscript.h"
24 * A transliterator named Any-T or Any-T/V, where T is the target
25 * script and V is the optional variant, that uses multiple
26 * transliterators, all going to T or T/V, all with script sources.
27 * The target must be a script. It partitions text into runs of the
28 * same script, and then based on the script of each run,
29 * transliterates from that script to the given target or
30 * target/variant. Adjacent COMMON or INHERITED script characters are
31 * included in each run.
35 class AnyTransliterator
: public Transliterator
{
38 * Cache mapping UScriptCode values to Transliterator*.
43 * The target or target/variant string.
48 * The target script code. Never USCRIPT_INVALID_CODE.
50 UScriptCode targetScript
;
57 virtual ~AnyTransliterator();
62 AnyTransliterator(const AnyTransliterator
&);
67 virtual Transliterator
* clone() const;
70 * Implements {@link Transliterator#handleTransliterate}.
72 virtual void handleTransliterate(Replaceable
& text
, UTransPosition
& index
,
73 UBool incremental
) const;
76 * ICU "poor man's RTTI", returns a UClassID for the actual class.
78 virtual UClassID
getDynamicClassID() const;
81 * ICU "poor man's RTTI", returns a UClassID for this class.
83 U_I18N_API
static UClassID U_EXPORT2
getStaticClassID();
89 * @param id the ID of the form S-T or S-T/V, where T is theTarget
90 * and V is theVariant. Must not be empty.
91 * @param theTarget the target name. Must not be empty, and must
92 * name a script corresponding to theTargetScript.
93 * @param theVariant the variant name, or the empty string if
95 * @param theTargetScript the script code corresponding to
97 * @param ec error code, fails if the internal hashtable cannot be
100 AnyTransliterator(const UnicodeString
& id
,
101 const UnicodeString
& theTarget
,
102 const UnicodeString
& theVariant
,
103 UScriptCode theTargetScript
,
107 * Returns a transliterator from the given source to our target or
108 * target/variant. Returns NULL if the source is the same as our
109 * target script, or if the source is USCRIPT_INVALID_CODE.
110 * Caches the result and returns the same transliterator the next
111 * time. The caller does NOT own the result and must not delete
114 Transliterator
* getTransliterator(UScriptCode source
) const;
117 * Registers standard transliterators with the system. Called by
118 * Transliterator during initialization.
120 static void registerIDs();
122 friend class Transliterator
; // for registerIDs()
127 #endif /* #if !UCONFIG_NO_TRANSLITERATION */