1999-12-28 23:57:50 +00:00
|
|
|
/*
|
|
|
|
**********************************************************************
|
|
|
|
* Copyright (C) 1999, International Business Machines
|
|
|
|
* Corporation and others. All Rights Reserved.
|
|
|
|
**********************************************************************
|
|
|
|
* Date Name Description
|
|
|
|
* 11/17/99 aliu Creation.
|
|
|
|
**********************************************************************
|
|
|
|
*/
|
|
|
|
#ifndef RBT_H
|
|
|
|
#define RBT_H
|
|
|
|
|
|
|
|
#include "unicode/translit.h"
|
|
|
|
#include "unicode/utypes.h"
|
2000-03-18 01:19:39 +00:00
|
|
|
#include "unicode/parseerr.h"
|
1999-12-28 23:57:50 +00:00
|
|
|
|
|
|
|
class TransliterationRuleData;
|
|
|
|
|
|
|
|
/**
|
2000-05-20 04:40:29 +00:00
|
|
|
* <code>RuleBasedTransliterator</code> is a transliterator
|
|
|
|
* that reads a set of rules in order to determine how to perform
|
|
|
|
* translations. Rule sets are stored in resource bundles indexed by
|
|
|
|
* name. Rules within a rule set are separated by semicolons (';').
|
|
|
|
* To include a literal semicolon, prefix it with a backslash ('\').
|
|
|
|
* Whitespace, as defined by <code>Character.isWhitespace()</code>,
|
|
|
|
* is ignored. If the first non-blank character on a line is '#',
|
|
|
|
* the entire line is ignored as a comment. </p>
|
2000-01-13 07:28:31 +00:00
|
|
|
*
|
2000-05-20 04:40:29 +00:00
|
|
|
* <p>Each set of rules consists of two groups, one forward, and one
|
|
|
|
* reverse. This is a convention that is not enforced; rules for one
|
|
|
|
* direction may be omitted, with the result that translations in
|
|
|
|
* that direction will not modify the source text. In addition,
|
|
|
|
* bidirectional forward-reverse rules may be specified for
|
|
|
|
* symmetrical transformations.</p>
|
2000-01-13 07:28:31 +00:00
|
|
|
*
|
|
|
|
* <p><b>Rule syntax</b> </p>
|
|
|
|
*
|
2000-05-20 04:40:29 +00:00
|
|
|
* <p>Rule statements take one of the following forms: </p>
|
2000-01-13 07:28:31 +00:00
|
|
|
*
|
1999-12-28 23:57:50 +00:00
|
|
|
* <dl>
|
2000-05-20 04:40:29 +00:00
|
|
|
* <dt><code>$alefmadda=\u0622;</code></dt>
|
|
|
|
* <dd><strong>Variable definition.</strong> The name on the
|
|
|
|
* left is assigned the text on the right. In this example,
|
|
|
|
* after this statement, instances of the left hand name,
|
|
|
|
* "<code>$alefmadda</code>", will be replaced by
|
|
|
|
* the Unicode character U+0622. Variable names must begin
|
|
|
|
* with a letter and consist only of letters, digits, and
|
|
|
|
* underscores. Case is significant. Duplicate names cause
|
|
|
|
* an exception to be thrown, that is, variables cannot be
|
|
|
|
* redefined. The right hand side may contain well-formed
|
|
|
|
* text of any length, including no text at all ("<code>$empty=;</code>").
|
|
|
|
* The right hand side may contain embedded <code>UnicodeSet</code>
|
|
|
|
* patterns, for example, "<code>$softvowel=[eiyEIY]</code>".</dd>
|
|
|
|
* <dd> </dd>
|
|
|
|
* <dt><code>ai>$alefmadda;</code></dt>
|
|
|
|
* <dd><strong>Forward translation rule.</strong> This rule
|
|
|
|
* states that the string on the left will be changed to the
|
|
|
|
* string on the right when performing forward
|
|
|
|
* transliteration.</dd>
|
|
|
|
* <dt> </dt>
|
|
|
|
* <dt><code>ai<$alefmadda;</code></dt>
|
|
|
|
* <dd><strong>Reverse translation rule.</strong> This rule
|
|
|
|
* states that the string on the right will be changed to
|
|
|
|
* the string on the left when performing reverse
|
|
|
|
* transliteration.</dd>
|
1999-12-28 23:57:50 +00:00
|
|
|
* </dl>
|
2000-01-13 07:28:31 +00:00
|
|
|
*
|
|
|
|
* <dl>
|
2000-05-20 04:40:29 +00:00
|
|
|
* <dt><code>ai<>$alefmadda;</code></dt>
|
|
|
|
* <dd><strong>Bidirectional translation rule.</strong> This
|
|
|
|
* rule states that the string on the right will be changed
|
|
|
|
* to the string on the left when performing forward
|
|
|
|
* transliteration, and vice versa when performing reverse
|
|
|
|
* transliteration.</dd>
|
2000-01-13 07:28:31 +00:00
|
|
|
* </dl>
|
|
|
|
*
|
2000-05-20 04:40:29 +00:00
|
|
|
* <p>Translation rules consist of a <em>match pattern</em> and an <em>output
|
|
|
|
* string</em>. The match pattern consists of literal characters,
|
|
|
|
* optionally preceded by context, and optionally followed by
|
|
|
|
* context. Context characters, like literal pattern characters,
|
|
|
|
* must be matched in the text being transliterated. However, unlike
|
|
|
|
* literal pattern characters, they are not replaced by the output
|
|
|
|
* text. For example, the pattern "<code>abc{def}</code>"
|
|
|
|
* indicates the characters "<code>def</code>" must be
|
|
|
|
* preceded by "<code>abc</code>" for a successful match.
|
|
|
|
* If there is a successful match, "<code>def</code>" will
|
|
|
|
* be replaced, but not "<code>abc</code>". The final '<code>}</code>'
|
|
|
|
* is optional, so "<code>abc{def</code>" is equivalent to
|
|
|
|
* "<code>abc{def}</code>". Another example is "<code>{123}456</code>"
|
|
|
|
* (or "<code>123}456</code>") in which the literal
|
|
|
|
* pattern "<code>123</code>" must be followed by "<code>456</code>".
|
|
|
|
* </p>
|
2000-01-13 07:28:31 +00:00
|
|
|
*
|
2000-05-20 04:40:29 +00:00
|
|
|
* <p>The output string of a forward or reverse rule consists of
|
|
|
|
* characters to replace the literal pattern characters. If the
|
|
|
|
* output string contains the character '<code>|</code>', this is
|
|
|
|
* taken to indicate the location of the <em>cursor</em> after
|
|
|
|
* replacement. The cursor is the point in the text at which the
|
|
|
|
* next replacement, if any, will be applied. The cursor is usually
|
|
|
|
* placed within the replacement text; however, it can actually be
|
|
|
|
* placed into the precending or following context by using the
|
|
|
|
* special character '<code>@</code>'. Examples:</p>
|
2000-01-13 07:28:31 +00:00
|
|
|
*
|
2000-05-20 04:40:29 +00:00
|
|
|
* <blockquote>
|
|
|
|
* <p><code>a {foo} z > | @ bar; # foo -> bar, move cursor
|
|
|
|
* before a<br>
|
|
|
|
* {foo} xyz > bar @@|; # foo -> bar, cursor between
|
|
|
|
* y and z</code></p>
|
|
|
|
* </blockquote>
|
|
|
|
*
|
|
|
|
* <p><b>UnicodeSet</b></p>
|
|
|
|
*
|
|
|
|
* <p><code>UnicodeSet</code> patterns may appear anywhere that
|
|
|
|
* makes sense. They may appear in variable definitions.
|
|
|
|
* Contrariwise, <code>UnicodeSet</code> patterns may themselves
|
|
|
|
* contain variable references, such as "<code>$a=[a-z];$not_a=[^$a]</code>",
|
|
|
|
* or "<code>$range=a-z;$ll=[$range]</code>".</p>
|
|
|
|
*
|
|
|
|
* <p><code>UnicodeSet</code> patterns may also be embedded directly
|
|
|
|
* into rule strings. Thus, the following two rules are equivalent:</p>
|
2000-01-13 07:28:31 +00:00
|
|
|
*
|
|
|
|
* <blockquote>
|
2000-05-20 04:40:29 +00:00
|
|
|
* <p><code>$vowel=[aeiou]; $vowel>'*'; # One way to do this<br>
|
|
|
|
* [aeiou]>'*';
|
|
|
|
* #
|
|
|
|
* Another way</code></p>
|
2000-01-13 07:28:31 +00:00
|
|
|
* </blockquote>
|
|
|
|
*
|
2000-05-20 04:40:29 +00:00
|
|
|
* <p>See {@link UnicodeSet} for more documentation and examples.</p>
|
|
|
|
*
|
|
|
|
* <p><b>Segments</b></p>
|
|
|
|
*
|
|
|
|
* <p>Segments of the input string can be matched and copied to the
|
|
|
|
* output string. This makes certain sets of rules simpler and more
|
|
|
|
* general, and makes reordering possible. For example:</p>
|
|
|
|
*
|
|
|
|
* <blockquote>
|
|
|
|
* <p><code>([a-z]) > $1 $1;
|
|
|
|
* #
|
|
|
|
* double lowercase letters<br>
|
|
|
|
* ([:Lu:]) ([:Ll:]) > $2 $1; # reverse order of Lu-Ll pairs</code></p>
|
|
|
|
* </blockquote>
|
|
|
|
*
|
|
|
|
* <p>The segment of the input string to be copied is delimited by
|
|
|
|
* "<code>(</code>" and "<code>)</code>". Up to
|
|
|
|
* nine segments may be defined. Segments may not overlap. In the
|
|
|
|
* output string, "<code>$1</code>" through "<code>$9</code>"
|
|
|
|
* represent the input string segments, in left-to-right order of
|
|
|
|
* definition.</p>
|
|
|
|
*
|
2000-01-13 07:28:31 +00:00
|
|
|
* <p><b>Example</b> </p>
|
|
|
|
*
|
2000-05-20 04:40:29 +00:00
|
|
|
* <p>The following example rules illustrate many of the features of
|
|
|
|
* the rule language. </p>
|
2000-01-13 07:28:31 +00:00
|
|
|
*
|
2000-05-20 04:40:29 +00:00
|
|
|
* <table border="0" cellpadding="4">
|
|
|
|
* <tr>
|
|
|
|
* <td valign="top">Rule 1.</td>
|
|
|
|
* <td valign="top" nowrap><code>abc{def}>x|y</code></td>
|
|
|
|
* </tr>
|
|
|
|
* <tr>
|
|
|
|
* <td valign="top">Rule 2.</td>
|
|
|
|
* <td valign="top" nowrap><code>xyz>r</code></td>
|
|
|
|
* </tr>
|
|
|
|
* <tr>
|
|
|
|
* <td valign="top">Rule 3.</td>
|
|
|
|
* <td valign="top" nowrap><code>yz>q</code></td>
|
|
|
|
* </tr>
|
1999-12-28 23:57:50 +00:00
|
|
|
* </table>
|
2000-01-13 07:28:31 +00:00
|
|
|
*
|
2000-05-20 04:40:29 +00:00
|
|
|
* <p>Applying these rules to the string "<code>adefabcdefz</code>"
|
|
|
|
* yields the following results: </p>
|
2000-01-13 07:28:31 +00:00
|
|
|
*
|
2000-05-20 04:40:29 +00:00
|
|
|
* <table border="0" cellpadding="4">
|
|
|
|
* <tr>
|
|
|
|
* <td valign="top" nowrap><code>|adefabcdefz</code></td>
|
|
|
|
* <td valign="top">Initial state, no rules match. Advance
|
|
|
|
* cursor.</td>
|
|
|
|
* </tr>
|
|
|
|
* <tr>
|
|
|
|
* <td valign="top" nowrap><code>a|defabcdefz</code></td>
|
|
|
|
* <td valign="top">Still no match. Rule 1 does not match
|
|
|
|
* because the preceding context is not present.</td>
|
|
|
|
* </tr>
|
|
|
|
* <tr>
|
|
|
|
* <td valign="top" nowrap><code>ad|efabcdefz</code></td>
|
|
|
|
* <td valign="top">Still no match. Keep advancing until
|
|
|
|
* there is a match...</td>
|
|
|
|
* </tr>
|
|
|
|
* <tr>
|
|
|
|
* <td valign="top" nowrap><code>ade|fabcdefz</code></td>
|
|
|
|
* <td valign="top">...</td>
|
|
|
|
* </tr>
|
|
|
|
* <tr>
|
|
|
|
* <td valign="top" nowrap><code>adef|abcdefz</code></td>
|
|
|
|
* <td valign="top">...</td>
|
|
|
|
* </tr>
|
|
|
|
* <tr>
|
|
|
|
* <td valign="top" nowrap><code>adefa|bcdefz</code></td>
|
|
|
|
* <td valign="top">...</td>
|
|
|
|
* </tr>
|
|
|
|
* <tr>
|
|
|
|
* <td valign="top" nowrap><code>adefab|cdefz</code></td>
|
|
|
|
* <td valign="top">...</td>
|
|
|
|
* </tr>
|
|
|
|
* <tr>
|
|
|
|
* <td valign="top" nowrap><code>adefabc|defz</code></td>
|
|
|
|
* <td valign="top">Rule 1 matches; replace "<code>def</code>"
|
|
|
|
* with "<code>xy</code>" and back up the cursor
|
|
|
|
* to before the '<code>y</code>'.</td>
|
|
|
|
* </tr>
|
|
|
|
* <tr>
|
|
|
|
* <td valign="top" nowrap><code>adefabcx|yz</code></td>
|
|
|
|
* <td valign="top">Although "<code>xyz</code>" is
|
|
|
|
* present, rule 2 does not match because the cursor is
|
|
|
|
* before the '<code>y</code>', not before the '<code>x</code>'.
|
|
|
|
* Rule 3 does match. Replace "<code>yz</code>"
|
|
|
|
* with "<code>q</code>".</td>
|
|
|
|
* </tr>
|
|
|
|
* <tr>
|
|
|
|
* <td valign="top" nowrap><code>adefabcxq|</code></td>
|
|
|
|
* <td valign="top">The cursor is at the end;
|
|
|
|
* transliteration is complete.</td>
|
|
|
|
* </tr>
|
1999-12-28 23:57:50 +00:00
|
|
|
* </table>
|
2000-01-13 07:28:31 +00:00
|
|
|
*
|
2000-05-20 04:40:29 +00:00
|
|
|
* <p>The order of rules is significant. If multiple rules may match
|
|
|
|
* at some point, the first matching rule is applied. </p>
|
2000-01-13 07:28:31 +00:00
|
|
|
*
|
2000-05-20 04:40:29 +00:00
|
|
|
* <p>Forward and reverse rules may have an empty output string.
|
|
|
|
* Otherwise, an empty left or right hand side of any statement is a
|
|
|
|
* syntax error. </p>
|
2000-01-13 07:28:31 +00:00
|
|
|
*
|
2000-05-20 04:40:29 +00:00
|
|
|
* <p>Single quotes are used to quote any character other than a
|
|
|
|
* digit or letter. To specify a single quote itself, inside or
|
|
|
|
* outside of quotes, use two single quotes in a row. For example,
|
|
|
|
* the rule "<code>'>'>o''clock</code>" changes the
|
|
|
|
* string "<code>></code>" to the string "<code>o'clock</code>".
|
|
|
|
* </p>
|
2000-01-13 07:28:31 +00:00
|
|
|
*
|
|
|
|
* <p><b>Notes</b> </p>
|
|
|
|
*
|
2000-05-20 04:40:29 +00:00
|
|
|
* <p>While a RuleBasedTransliterator is being built, it checks that
|
|
|
|
* the rules are added in proper order. For example, if the rule
|
|
|
|
* "a>x" is followed by the rule "ab>y",
|
|
|
|
* then the second rule will throw an exception. The reason is that
|
|
|
|
* the second rule can never be triggered, since the first rule
|
|
|
|
* always matches anything it matches. In other words, the first
|
|
|
|
* rule <em>masks</em> the second rule. </p>
|
|
|
|
*
|
1999-12-28 23:57:50 +00:00
|
|
|
* @author Alan Liu
|
2000-03-22 19:19:33 +00:00
|
|
|
* @draft
|
1999-12-28 23:57:50 +00:00
|
|
|
*/
|
|
|
|
class U_I18N_API RuleBasedTransliterator : public Transliterator {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The data object is immutable, so we can freely share it with
|
|
|
|
* other instances of RBT, as long as we do NOT own this object.
|
|
|
|
*/
|
|
|
|
TransliterationRuleData* data;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If true, we own the data object and must delete it.
|
|
|
|
*/
|
2000-05-18 22:08:39 +00:00
|
|
|
UBool isDataOwned;
|
1999-12-28 23:57:50 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
2000-03-18 01:19:39 +00:00
|
|
|
/**
|
|
|
|
* Constructs a new transliterator from the given rules.
|
|
|
|
* @param rules rules, separated by ';'
|
|
|
|
* @param direction either FORWARD or REVERSE.
|
|
|
|
* @exception IllegalArgumentException if rules are malformed
|
|
|
|
* or direction is invalid.
|
2000-03-22 19:19:33 +00:00
|
|
|
* @draft
|
2000-03-18 01:19:39 +00:00
|
|
|
*/
|
|
|
|
RuleBasedTransliterator(const UnicodeString& ID,
|
|
|
|
const UnicodeString& rules,
|
|
|
|
Direction direction,
|
|
|
|
UnicodeFilter* adoptedFilter,
|
|
|
|
ParseError& parseError,
|
|
|
|
UErrorCode& status);
|
|
|
|
|
1999-12-28 23:57:50 +00:00
|
|
|
/**
|
|
|
|
* Constructs a new transliterator from the given rules.
|
2000-01-13 07:28:31 +00:00
|
|
|
* @param rules rules, separated by ';'
|
1999-12-28 23:57:50 +00:00
|
|
|
* @param direction either FORWARD or REVERSE.
|
|
|
|
* @exception IllegalArgumentException if rules are malformed
|
|
|
|
* or direction is invalid.
|
|
|
|
*/
|
|
|
|
RuleBasedTransliterator(const UnicodeString& ID,
|
|
|
|
const UnicodeString& rules,
|
|
|
|
Direction direction,
|
|
|
|
UnicodeFilter* adoptedFilter,
|
|
|
|
UErrorCode& status);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Covenience constructor with no filter.
|
2000-03-22 19:19:33 +00:00
|
|
|
* @draft
|
1999-12-28 23:57:50 +00:00
|
|
|
*/
|
|
|
|
RuleBasedTransliterator(const UnicodeString& ID,
|
|
|
|
const UnicodeString& rules,
|
|
|
|
Direction direction,
|
|
|
|
UErrorCode& status);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Covenience constructor with no filter and FORWARD direction.
|
2000-03-22 19:19:33 +00:00
|
|
|
* @draft
|
1999-12-28 23:57:50 +00:00
|
|
|
*/
|
|
|
|
RuleBasedTransliterator(const UnicodeString& ID,
|
|
|
|
const UnicodeString& rules,
|
|
|
|
UErrorCode& status);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Covenience constructor with FORWARD direction.
|
2000-03-22 19:19:33 +00:00
|
|
|
* @draft
|
1999-12-28 23:57:50 +00:00
|
|
|
*/
|
|
|
|
RuleBasedTransliterator(const UnicodeString& ID,
|
|
|
|
const UnicodeString& rules,
|
|
|
|
UnicodeFilter* adoptedFilter,
|
|
|
|
UErrorCode& status);
|
|
|
|
|
2000-03-22 19:19:33 +00:00
|
|
|
/**
|
|
|
|
* Covenience constructor.
|
|
|
|
* @draft
|
|
|
|
*/
|
1999-12-28 23:57:50 +00:00
|
|
|
RuleBasedTransliterator(const UnicodeString& ID,
|
|
|
|
const TransliterationRuleData* theData,
|
|
|
|
UnicodeFilter* adoptedFilter = 0);
|
|
|
|
|
2000-03-22 19:19:33 +00:00
|
|
|
/**
|
|
|
|
* Copy constructor.
|
|
|
|
* @draft
|
|
|
|
*/
|
1999-12-28 23:57:50 +00:00
|
|
|
RuleBasedTransliterator(const RuleBasedTransliterator&);
|
|
|
|
|
|
|
|
virtual ~RuleBasedTransliterator();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implement Transliterator API.
|
2000-03-22 19:19:33 +00:00
|
|
|
* @draft
|
1999-12-28 23:57:50 +00:00
|
|
|
*/
|
|
|
|
Transliterator* clone(void) const;
|
|
|
|
|
|
|
|
/**
|
2000-01-18 18:27:27 +00:00
|
|
|
* Implements {@link Transliterator#handleTransliterate}.
|
2000-03-22 19:19:33 +00:00
|
|
|
* @draft
|
1999-12-28 23:57:50 +00:00
|
|
|
*/
|
2000-01-19 19:02:10 +00:00
|
|
|
virtual void handleTransliterate(Replaceable& text, Position& offsets,
|
2000-05-18 22:08:39 +00:00
|
|
|
UBool isIncremental) const;
|
1999-12-28 23:57:50 +00:00
|
|
|
|
2000-03-18 01:19:39 +00:00
|
|
|
/**
|
|
|
|
* Parse error codes generated by RuleBasedTransliterator.
|
|
|
|
* See parseerr.h.
|
|
|
|
*/
|
|
|
|
enum {
|
|
|
|
PARSE_ERROR_BASE = 0x10000,
|
2000-05-20 04:40:29 +00:00
|
|
|
BAD_VARIABLE_DEFINITION,
|
2000-03-18 01:19:39 +00:00
|
|
|
MALFORMED_RULE,
|
|
|
|
MALFORMED_SET,
|
2000-05-20 04:40:29 +00:00
|
|
|
MALFORMED_SYMBOL_REFERENCE,
|
2000-03-18 01:19:39 +00:00
|
|
|
MALFORMED_UNICODE_ESCAPE,
|
2000-05-20 04:40:29 +00:00
|
|
|
MALFORMED_VARIABLE_DEFINITION,
|
2000-03-18 01:19:39 +00:00
|
|
|
MALFORMED_VARIABLE_REFERENCE,
|
2000-05-20 04:40:29 +00:00
|
|
|
MISMATCHED_SEGMENT_DELIMITERS,
|
|
|
|
MISPLACED_CURSOR_OFFSET,
|
2000-03-18 01:19:39 +00:00
|
|
|
MISSING_OPERATOR,
|
2000-05-20 04:40:29 +00:00
|
|
|
MISSING_SEGMENT_CLOSE,
|
2000-03-18 01:19:39 +00:00
|
|
|
MULTIPLE_ANTE_CONTEXTS,
|
|
|
|
MULTIPLE_CURSORS,
|
|
|
|
MULTIPLE_POST_CONTEXTS,
|
|
|
|
TRAILING_BACKSLASH,
|
2000-05-20 04:40:29 +00:00
|
|
|
UNDEFINED_SEGMENT_REFERENCE,
|
2000-03-18 01:19:39 +00:00
|
|
|
UNDEFINED_VARIABLE,
|
|
|
|
UNQUOTED_SPECIAL,
|
2000-03-27 21:07:05 +00:00
|
|
|
UNTERMINATED_QUOTE
|
2000-03-18 01:19:39 +00:00
|
|
|
};
|
|
|
|
|
1999-12-28 23:57:50 +00:00
|
|
|
private:
|
|
|
|
|
|
|
|
void _construct(const UnicodeString& rules,
|
|
|
|
Direction direction,
|
2000-03-18 01:19:39 +00:00
|
|
|
UErrorCode& status,
|
|
|
|
ParseError* parseError = 0);
|
1999-12-28 23:57:50 +00:00
|
|
|
};
|
|
|
|
|
2000-03-18 01:19:39 +00:00
|
|
|
/**
|
|
|
|
* Constructs a new transliterator from the given rules.
|
|
|
|
* @param rules rules, separated by ';'
|
|
|
|
* @param direction either FORWARD or REVERSE.
|
|
|
|
* @exception IllegalArgumentException if rules are malformed
|
|
|
|
* or direction is invalid.
|
|
|
|
*/
|
|
|
|
inline RuleBasedTransliterator::RuleBasedTransliterator(
|
|
|
|
const UnicodeString& ID,
|
|
|
|
const UnicodeString& rules,
|
|
|
|
Direction direction,
|
|
|
|
UnicodeFilter* adoptedFilter,
|
|
|
|
ParseError& parseError,
|
|
|
|
UErrorCode& status) :
|
|
|
|
Transliterator(ID, adoptedFilter) {
|
|
|
|
_construct(rules, direction, status, &parseError);
|
|
|
|
}
|
|
|
|
|
1999-12-28 23:57:50 +00:00
|
|
|
/**
|
|
|
|
* Constructs a new transliterator from the given rules.
|
2000-01-13 07:28:31 +00:00
|
|
|
* @param rules rules, separated by ';'
|
1999-12-28 23:57:50 +00:00
|
|
|
* @param direction either FORWARD or REVERSE.
|
|
|
|
* @exception IllegalArgumentException if rules are malformed
|
|
|
|
* or direction is invalid.
|
|
|
|
*/
|
|
|
|
inline RuleBasedTransliterator::RuleBasedTransliterator(
|
|
|
|
const UnicodeString& ID,
|
|
|
|
const UnicodeString& rules,
|
|
|
|
Direction direction,
|
|
|
|
UnicodeFilter* adoptedFilter,
|
|
|
|
UErrorCode& status) :
|
|
|
|
Transliterator(ID, adoptedFilter) {
|
|
|
|
_construct(rules, direction, status);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Covenience constructor with no filter.
|
|
|
|
*/
|
|
|
|
inline RuleBasedTransliterator::RuleBasedTransliterator(
|
|
|
|
const UnicodeString& ID,
|
|
|
|
const UnicodeString& rules,
|
|
|
|
Direction direction,
|
|
|
|
UErrorCode& status) :
|
|
|
|
Transliterator(ID, 0) {
|
|
|
|
_construct(rules, direction, status);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Covenience constructor with no filter and FORWARD direction.
|
|
|
|
*/
|
|
|
|
inline RuleBasedTransliterator::RuleBasedTransliterator(
|
|
|
|
const UnicodeString& ID,
|
|
|
|
const UnicodeString& rules,
|
|
|
|
UErrorCode& status) :
|
|
|
|
Transliterator(ID, 0) {
|
|
|
|
_construct(rules, FORWARD, status);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Covenience constructor with FORWARD direction.
|
|
|
|
*/
|
|
|
|
inline RuleBasedTransliterator::RuleBasedTransliterator(
|
|
|
|
const UnicodeString& ID,
|
|
|
|
const UnicodeString& rules,
|
|
|
|
UnicodeFilter* adoptedFilter,
|
|
|
|
UErrorCode& status) :
|
|
|
|
Transliterator(ID, adoptedFilter) {
|
|
|
|
_construct(rules, FORWARD, status);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|