ICU-5260 'multiple passes' rules in C API of the transliteration functions

X-SVN-Rev: 25806
This commit is contained in:
Andy Heninger 2009-04-17 01:02:11 +00:00
parent c29e95d549
commit f940a828eb
2 changed files with 14 additions and 10 deletions

View file

@ -1,6 +1,6 @@
/*
*******************************************************************************
* Copyright (C) 1997-2005, International Business Machines
* Copyright (C) 1997-2009, International Business Machines
* Corporation and others. All Rights Reserved.
*******************************************************************************
* Date Name Description
@ -166,15 +166,12 @@ utrans_openU(const UChar *id,
rules,
rulesLength); // r-o alias
RuleBasedTransliterator *trans = NULL;
trans = new RuleBasedTransliterator(ID, ruleStr, dir,
NULL, *parseError, *status);
if (trans == NULL) {
*status = U_MEMORY_ALLOCATION_ERROR;
} else if (U_FAILURE(*status)) {
delete trans;
trans = NULL;
Transliterator *trans = NULL;
trans = Transliterator::createFromRules(ID, ruleStr, dir, *parseError, *status);
if(U_FAILURE(*status)) {
return NULL;
}
return (UTransliterator*) trans;
}
}

View file

@ -1,6 +1,6 @@
/*
*******************************************************************************
* Copyright (C) 1997-2006, International Business Machines
* Copyright (C) 1997-2009, International Business Machines
* Corporation and others. All Rights Reserved.
*******************************************************************************
* Date Name Description
@ -474,6 +474,13 @@ static void TestSimpleRules() {
"$lu > '*';"
"a > ERROR",
"abcdefgABCDEFGU", "&bcd&fg!^**!^*&");
/* Test multiple passes
*/
_expectRules("abc > xy;"
"::Null;"
"aba > z;",
"abc ababc aba", "xy abxy z");
}
static void TestFilter() {