1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
// © 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/*
**********************************************************************
* Copyright (c) 2002-2011, International Business Machines Corporation
* and others. All Rights Reserved.
**********************************************************************
* Date Name Description
* 02/04/2002 aliu Creation.
**********************************************************************
*/
#ifndef FUNCREPL_H
#define FUNCREPL_H
#include "unicode/utypes.h"
#if !UCONFIG_NO_TRANSLITERATION
#include "unicode/unifunct.h"
#include "unicode/unirepl.h"
U_NAMESPACE_BEGIN
class Transliterator;
/**
* A replacer that calls a transliterator to generate its output text.
* The input text to the transliterator is the output of another
* UnicodeReplacer object. That is, this replacer wraps another
* replacer with a transliterator.
*
* @author Alan Liu
*/
class FunctionReplacer : public UnicodeFunctor, public UnicodeReplacer {
private:
/**
* The transliterator. Must not be null. OWNED.
*/
Transliterator* translit;
/**
* The replacer object. This generates text that is then
* processed by 'translit'. Must not be null. OWNED.
*/
UnicodeFunctor* replacer;
public:
/**
* Construct a replacer that takes the output of the given
* replacer, passes it through the given transliterator, and emits
* the result as output.
*/
FunctionReplacer(Transliterator* adoptedTranslit,
UnicodeFunctor* adoptedReplacer);
/**
* Copy constructor.
*/
FunctionReplacer(const FunctionReplacer& other);
/**
* Destructor
*/
virtual ~FunctionReplacer();
/**
* Implement UnicodeFunctor
*/
virtual FunctionReplacer* clone() const override;
/**
* UnicodeFunctor API. Cast 'this' to a UnicodeReplacer* pointer
* and return the pointer.
*/
virtual UnicodeReplacer* toReplacer() const override;
/**
* UnicodeReplacer API
*/
virtual int32_t replace(Replaceable& text,
int32_t start,
int32_t limit,
int32_t& cursor) override;
/**
* UnicodeReplacer API
*/
virtual UnicodeString& toReplacerPattern(UnicodeString& rule,
UBool escapeUnprintable) const override;
/**
* Implement UnicodeReplacer
*/
virtual void addReplacementSetTo(UnicodeSet& toUnionTo) const override;
/**
* UnicodeFunctor API
*/
virtual void setData(const TransliterationRuleData*) override;
/**
* ICU "poor man's RTTI", returns a UClassID for the actual class.
*/
virtual UClassID getDynamicClassID() const override;
/**
* ICU "poor man's RTTI", returns a UClassID for this class.
*/
static UClassID U_EXPORT2 getStaticClassID();
};
U_NAMESPACE_END
#endif /* #if !UCONFIG_NO_TRANSLITERATION */
#endif
//eof
|