2 *****************************************************************
3 * Copyright (c) 2002-2004, 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 U_I18N_API 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.
80 virtual UClassID
getDynamicClassID() const;
83 * ICU "poor man's RTTI", returns a UClassID for this class.
87 static UClassID U_EXPORT2
getStaticClassID();
93 * @param id the ID of the form S-T or S-T/V, where T is theTarget
94 * and V is theVariant. Must not be empty.
95 * @param theTarget the target name. Must not be empty, and must
96 * name a script corresponding to theTargetScript.
97 * @param theVariant the variant name, or the empty string if
99 * @param theTargetScript the script code corresponding to
101 * @param ec error code, fails if the internal hashtable cannot be
104 AnyTransliterator(const UnicodeString
& id
,
105 const UnicodeString
& theTarget
,
106 const UnicodeString
& theVariant
,
107 UScriptCode theTargetScript
,
111 * Returns a transliterator from the given source to our target or
112 * target/variant. Returns NULL if the source is the same as our
113 * target script, or if the source is USCRIPT_INVALID_CODE.
114 * Caches the result and returns the same transliterator the next
115 * time. The caller does NOT own the result and must not delete
118 Transliterator
* getTransliterator(UScriptCode source
) const;
121 * Registers standard transliterators with the system. Called by
122 * Transliterator during initialization.
124 static void registerIDs();
126 friend class Transliterator
; // for registerIDs()
129 * Return the script code for a given name, or
130 * USCRIPT_INVALID_CODE if not found.
132 static UScriptCode
scriptNameToCode(const UnicodeString
& name
);
137 #endif /* #if !UCONFIG_NO_TRANSLITERATION */