sl@0
|
1 |
// Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// Incremental matcher class
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#if !defined (__BAMATCH_H__)
|
sl@0
|
19 |
#define __BAMATCH_H__
|
sl@0
|
20 |
|
sl@0
|
21 |
#if !defined(__E32STD_H__)
|
sl@0
|
22 |
#include <e32std.h>
|
sl@0
|
23 |
#endif
|
sl@0
|
24 |
|
sl@0
|
25 |
#if !defined(__E32BASE_H__)
|
sl@0
|
26 |
#include <e32base.h>
|
sl@0
|
27 |
#endif
|
sl@0
|
28 |
|
sl@0
|
29 |
#if !defined(__BAMDESCA_H__)
|
sl@0
|
30 |
#include <bamdesca.h>
|
sl@0
|
31 |
#endif
|
sl@0
|
32 |
|
sl@0
|
33 |
|
sl@0
|
34 |
class RTextBuf
|
sl@0
|
35 |
/** A simple class that encapsulates a text string.
|
sl@0
|
36 |
|
sl@0
|
37 |
As with the descriptor classes, the class sets a maximum length for the encapsulated
|
sl@0
|
38 |
string, which cannot be exceeded. The class might be preferred to a descriptor
|
sl@0
|
39 |
in some circumstances as its maximum length can be increased (unlike a TBuf),
|
sl@0
|
40 |
and it can be created on the stack (unlike an HBufC) .
|
sl@0
|
41 |
@publishedAll
|
sl@0
|
42 |
@released
|
sl@0
|
43 |
*/
|
sl@0
|
44 |
{
|
sl@0
|
45 |
public:
|
sl@0
|
46 |
IMPORT_C RTextBuf();
|
sl@0
|
47 |
IMPORT_C ~RTextBuf();
|
sl@0
|
48 |
public:
|
sl@0
|
49 |
inline TPtr& Text();
|
sl@0
|
50 |
inline const TPtr& Text() const;
|
sl@0
|
51 |
inline TInt MaxLength() const;
|
sl@0
|
52 |
inline void SetText(const TDesC &aDes);
|
sl@0
|
53 |
IMPORT_C void SetMaxLengthL(TInt aMaxLength);
|
sl@0
|
54 |
IMPORT_C void Close();
|
sl@0
|
55 |
private:
|
sl@0
|
56 |
TPtr iPtr;
|
sl@0
|
57 |
TText* iText;
|
sl@0
|
58 |
};
|
sl@0
|
59 |
|
sl@0
|
60 |
|
sl@0
|
61 |
|
sl@0
|
62 |
class RIncrMatcherBase
|
sl@0
|
63 |
/** Base class for incremental matcher classes.
|
sl@0
|
64 |
|
sl@0
|
65 |
An incremental matcher compares two text buffers from left-to-right. For example,
|
sl@0
|
66 |
the match between "garage" and "gander" is "ga".
|
sl@0
|
67 |
|
sl@0
|
68 |
The class provides the interface for getting and setting the text to be matched
|
sl@0
|
69 |
against, and for performing match tests. Each type of match test is available
|
sl@0
|
70 |
in three versions, one using binary comparison, one using locale collation
|
sl@0
|
71 |
rules (comparison of strings to produce a dictionary-like ('lexicographic')
|
sl@0
|
72 |
ordering, e.g. ignoring punctuation), and one using locale folding rules (e.g.
|
sl@0
|
73 |
ignoring case).
|
sl@0
|
74 |
|
sl@0
|
75 |
"bafl.lib"
|
sl@0
|
76 |
@since 5.0
|
sl@0
|
77 |
@publishedAll
|
sl@0
|
78 |
@released
|
sl@0
|
79 |
*/
|
sl@0
|
80 |
{
|
sl@0
|
81 |
public:
|
sl@0
|
82 |
IMPORT_C virtual ~RIncrMatcherBase();
|
sl@0
|
83 |
protected:
|
sl@0
|
84 |
/** Default constructor. */
|
sl@0
|
85 |
inline RIncrMatcherBase() {}
|
sl@0
|
86 |
protected:
|
sl@0
|
87 |
/** Gets the match text.
|
sl@0
|
88 |
|
sl@0
|
89 |
@return Match text */
|
sl@0
|
90 |
virtual TDes& MatchDes()=0;
|
sl@0
|
91 |
|
sl@0
|
92 |
/** Gets the match text.
|
sl@0
|
93 |
|
sl@0
|
94 |
@return Match text */
|
sl@0
|
95 |
virtual const TDes& MatchDes() const=0;
|
sl@0
|
96 |
public:
|
sl@0
|
97 |
inline TInt MaxLength() const;
|
sl@0
|
98 |
inline TInt MatchLength() const;
|
sl@0
|
99 |
inline TPtrC MatchText() const;
|
sl@0
|
100 |
//
|
sl@0
|
101 |
inline void Clear();
|
sl@0
|
102 |
IMPORT_C void DeleteLastChar();
|
sl@0
|
103 |
IMPORT_C void AppendChar(TChar aLetter);
|
sl@0
|
104 |
inline void SetMatchText(const TDesC& aText);
|
sl@0
|
105 |
//
|
sl@0
|
106 |
IMPORT_C void SetBestMatch(const TDesC& aBuf);
|
sl@0
|
107 |
IMPORT_C void SetBestMatchC(const TDesC& aBuf);
|
sl@0
|
108 |
IMPORT_C void SetBestMatchF(const TDesC& aBuf);
|
sl@0
|
109 |
IMPORT_C TBool IsMatch(const TDesC& aBuf) const;
|
sl@0
|
110 |
IMPORT_C TBool IsMatchC(const TDesC& aBuf) const;
|
sl@0
|
111 |
IMPORT_C TBool IsMatchF(const TDesC& aBuf) const;
|
sl@0
|
112 |
IMPORT_C TInt FirstMatchingIndex(TInt& aResult,const MDesCArray& aDesArray,TInt aStartIndex=0) const;
|
sl@0
|
113 |
IMPORT_C TInt FirstMatchingIndexC(TInt& aResult,const MDesCArray& aDesArray,TInt aStartIndex=0) const;
|
sl@0
|
114 |
IMPORT_C TInt FirstMatchingIndexF(TInt& aResult,const MDesCArray& aDesArray,TInt aStartIndex=0) const;
|
sl@0
|
115 |
private:
|
sl@0
|
116 |
typedef TInt (*TCompareFunc)(const TText*,TInt,const TText*,TInt);
|
sl@0
|
117 |
TBool DoIsMatch(const TDesC& aQuery,TCompareFunc aCompare) const;
|
sl@0
|
118 |
TInt DoFirstMatchingIndex(TInt& aIndex,const MDesCArray& aDesArray,TCompareFunc aCompare) const;
|
sl@0
|
119 |
void DoSetBestMatch(const TDesC& aBuf,TCompareFunc aCompare);
|
sl@0
|
120 |
};
|
sl@0
|
121 |
|
sl@0
|
122 |
|
sl@0
|
123 |
class RIncrMatcherPtr : public RIncrMatcherBase
|
sl@0
|
124 |
/** Incrementally matches text against a descriptor, accessed via a pointer.
|
sl@0
|
125 |
|
sl@0
|
126 |
The class does not take a copy of the text to match against, but only stores
|
sl@0
|
127 |
the pointer.
|
sl@0
|
128 |
@publishedAll
|
sl@0
|
129 |
@released
|
sl@0
|
130 |
*/
|
sl@0
|
131 |
{
|
sl@0
|
132 |
public:
|
sl@0
|
133 |
IMPORT_C RIncrMatcherPtr();
|
sl@0
|
134 |
IMPORT_C RIncrMatcherPtr(TDes& aDes);
|
sl@0
|
135 |
IMPORT_C virtual ~RIncrMatcherPtr();
|
sl@0
|
136 |
public:
|
sl@0
|
137 |
inline void SetMatcherPtr(TDes& aDes);
|
sl@0
|
138 |
protected:
|
sl@0
|
139 |
IMPORT_C TDes& MatchDes();
|
sl@0
|
140 |
IMPORT_C const TDes& MatchDes() const;
|
sl@0
|
141 |
private:
|
sl@0
|
142 |
TDes* iDesPtr;
|
sl@0
|
143 |
};
|
sl@0
|
144 |
|
sl@0
|
145 |
|
sl@0
|
146 |
class RIncrMatcherTextBuf : public RIncrMatcherBase
|
sl@0
|
147 |
/** Incrementally matches text against a text buffer with variable maximum
|
sl@0
|
148 |
length.
|
sl@0
|
149 |
@publishedAll
|
sl@0
|
150 |
@released
|
sl@0
|
151 |
*/
|
sl@0
|
152 |
{
|
sl@0
|
153 |
public:
|
sl@0
|
154 |
IMPORT_C RIncrMatcherTextBuf();
|
sl@0
|
155 |
IMPORT_C virtual ~RIncrMatcherTextBuf();
|
sl@0
|
156 |
inline void SetMatcherLengthL(TInt aMaxLength);
|
sl@0
|
157 |
protected:
|
sl@0
|
158 |
IMPORT_C TDes& MatchDes();
|
sl@0
|
159 |
IMPORT_C const TDes& MatchDes() const;
|
sl@0
|
160 |
private:
|
sl@0
|
161 |
RTextBuf iTextBuf;
|
sl@0
|
162 |
};
|
sl@0
|
163 |
|
sl@0
|
164 |
template <TInt aMaximumSize>
|
sl@0
|
165 |
class RIncrMatcherBuf : public RIncrMatcherBase
|
sl@0
|
166 |
/**
|
sl@0
|
167 |
Incrementally matches text against a modifiable descriptor buffer.
|
sl@0
|
168 |
Set aMaximumSize to be the maximum size of this buffer.
|
sl@0
|
169 |
@publishedAll
|
sl@0
|
170 |
@released
|
sl@0
|
171 |
*/
|
sl@0
|
172 |
{
|
sl@0
|
173 |
public:
|
sl@0
|
174 |
/** Default constructor. */
|
sl@0
|
175 |
RIncrMatcherBuf() {}
|
sl@0
|
176 |
protected:
|
sl@0
|
177 |
|
sl@0
|
178 |
/** Gets the match text.
|
sl@0
|
179 |
|
sl@0
|
180 |
@return Match text (non const) */
|
sl@0
|
181 |
inline TDes& MatchDes() {return(iMatchBuf);}
|
sl@0
|
182 |
|
sl@0
|
183 |
/** Gets the match text.
|
sl@0
|
184 |
|
sl@0
|
185 |
@return Match text (const)*/
|
sl@0
|
186 |
inline const TDes& MatchDes() const {return(iMatchBuf);}
|
sl@0
|
187 |
|
sl@0
|
188 |
/** Copy constructor.
|
sl@0
|
189 |
|
sl@0
|
190 |
@param aMatcher RIncrMatcherBuf to copy */
|
sl@0
|
191 |
inline RIncrMatcherBuf(const RIncrMatcherBuf& aMatcher) {iMatchBuf=aMatcher.iMatchBuf;}
|
sl@0
|
192 |
private:
|
sl@0
|
193 |
TBuf<aMaximumSize> iMatchBuf;
|
sl@0
|
194 |
};
|
sl@0
|
195 |
|
sl@0
|
196 |
inline TPtr& RTextBuf::Text()
|
sl@0
|
197 |
/** Gets the text as a descriptor.
|
sl@0
|
198 |
|
sl@0
|
199 |
@return Match text descriptor (non const) */
|
sl@0
|
200 |
{return(iPtr);}
|
sl@0
|
201 |
|
sl@0
|
202 |
inline const TPtr& RTextBuf::Text() const
|
sl@0
|
203 |
/** Gets the text as a descriptor.
|
sl@0
|
204 |
|
sl@0
|
205 |
@return Match text descriptor (const) */
|
sl@0
|
206 |
{return(iPtr);}
|
sl@0
|
207 |
|
sl@0
|
208 |
inline TInt RTextBuf::MaxLength() const
|
sl@0
|
209 |
/** Gets the maximum length of the text.
|
sl@0
|
210 |
|
sl@0
|
211 |
@return The maximum length of the text.*/
|
sl@0
|
212 |
{return(iPtr.MaxLength());}
|
sl@0
|
213 |
|
sl@0
|
214 |
inline void RTextBuf::SetText(const TDesC &aDes)
|
sl@0
|
215 |
/** Sets the text. You must have set the maximum length appropriately first with
|
sl@0
|
216 |
SetMaxLengthL(). */
|
sl@0
|
217 |
{iPtr.Copy(aDes);}
|
sl@0
|
218 |
|
sl@0
|
219 |
inline TInt RIncrMatcherBase::MaxLength() const
|
sl@0
|
220 |
/** Gets the maximum length of the match text buffer. */
|
sl@0
|
221 |
{return(MatchDes().MaxLength());}
|
sl@0
|
222 |
inline TInt RIncrMatcherBase::MatchLength() const
|
sl@0
|
223 |
/** Gets the current length of the match text buffer. */
|
sl@0
|
224 |
{return(MatchDes().Length());}
|
sl@0
|
225 |
inline TPtrC RIncrMatcherBase::MatchText() const
|
sl@0
|
226 |
/** Gets the match text as a TPtrC. */
|
sl@0
|
227 |
{return(TPtrC(MatchDes()));}
|
sl@0
|
228 |
inline void RIncrMatcherBase::SetMatchText(const TDesC& aText)
|
sl@0
|
229 |
/** Sets the match text.
|
sl@0
|
230 |
|
sl@0
|
231 |
@param aText String to which to set the match text. */
|
sl@0
|
232 |
{MatchDes()=aText;}
|
sl@0
|
233 |
|
sl@0
|
234 |
inline void RIncrMatcherBase::Clear()
|
sl@0
|
235 |
/** Clears the match text. */
|
sl@0
|
236 |
{MatchDes().Zero();}
|
sl@0
|
237 |
|
sl@0
|
238 |
inline void RIncrMatcherPtr::SetMatcherPtr(TDes& aDes)
|
sl@0
|
239 |
/** Sets the text to be matched against.
|
sl@0
|
240 |
|
sl@0
|
241 |
@param aDes Text to be matched against */
|
sl@0
|
242 |
{iDesPtr=&aDes;}
|
sl@0
|
243 |
|
sl@0
|
244 |
|
sl@0
|
245 |
inline void RIncrMatcherTextBuf::SetMatcherLengthL(TInt aMaxLength)
|
sl@0
|
246 |
/** Sets the maximum length of text that can be stored through SetMatchText()
|
sl@0
|
247 |
etc.
|
sl@0
|
248 |
|
sl@0
|
249 |
@param aMaxLength Maximum length of text that can be stored */
|
sl@0
|
250 |
{iTextBuf.SetMaxLengthL(aMaxLength);}
|
sl@0
|
251 |
|
sl@0
|
252 |
|
sl@0
|
253 |
#endif
|