blob: 2b13654903d821227598ef70dd327bef83c14c77 [file] [log] [blame]
/*
**********************************************************************
* Copyright (c) 2002, International Business Machines Corporation
* and others. All Rights Reserved.
**********************************************************************
* Date Name Description
* 02/04/2002 aliu Creation.
**********************************************************************
*/
#include "funcrepl.h"
#include "unicode/translit.h"
static const UChar AMPERSAND = 38; // '&'
static const UChar OPEN[] = {40,32,0}; // "( "
static const UChar CLOSE[] = {32,41,0}; // " )"
U_NAMESPACE_BEGIN
/**
* Construct a replacer that takes the output of the given
* replacer, passes it through the given transliterator, and emits
* the result as output.
*/
FunctionReplacer::FunctionReplacer(Transliterator* adoptedTranslit,
UnicodeFunctor* adoptedReplacer) {
translit = adoptedTranslit;
replacer = adoptedReplacer;
}
/**
* Copy constructor.
*/
FunctionReplacer::FunctionReplacer(const FunctionReplacer& other) {
translit = other.translit->clone();
replacer = other.replacer->clone();
}
/**
* Destructor
*/
FunctionReplacer::~FunctionReplacer() {
delete translit;
delete replacer;
}
/**
* Implement UnicodeFunctor
*/
UnicodeFunctor* FunctionReplacer::clone() const {
return new FunctionReplacer(*this);
}
/**
* UnicodeFunctor API. Cast 'this' to a UnicodeReplacer* pointer
* and return the pointer.
*/
UnicodeReplacer* FunctionReplacer::toReplacer() const {
return (UnicodeReplacer*) this;
}
/**
* UnicodeReplacer API
*/
int32_t FunctionReplacer::replace(Replaceable& text,
int32_t start,
int32_t limit,
int32_t& cursor) {
// First delegate to subordinate replacer
int32_t len = replacer->toReplacer()->replace(text, start, limit, cursor);
limit = start + len;
// Now transliterate
limit = translit->transliterate(text, start, limit);
return limit - start;
}
/**
* UnicodeReplacer API
*/
UnicodeString& FunctionReplacer::toReplacerPattern(UnicodeString& rule,
UBool escapeUnprintable) const {
UnicodeString str;
rule.truncate(0);
rule.append(AMPERSAND);
rule.append(translit->getID());
rule.append(OPEN);
rule.append(replacer->toReplacer()->toReplacerPattern(str, escapeUnprintable));
rule.append(CLOSE);
return rule;
}
/**
* UnicodeFunctor API
*/
void FunctionReplacer::setData(const TransliterationRuleData* d) {
replacer->setData(d);
}
U_NAMESPACE_END
//eof