First public contribution.
1 // Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Incremental matcher class
18 #if !defined (__BAMATCH_H__)
21 #if !defined(__E32STD_H__)
25 #if !defined(__E32BASE_H__)
29 #if !defined(__BAMDESCA_H__)
35 /** A simple class that encapsulates a text string.
37 As with the descriptor classes, the class sets a maximum length for the encapsulated
38 string, which cannot be exceeded. The class might be preferred to a descriptor
39 in some circumstances as its maximum length can be increased (unlike a TBuf),
40 and it can be created on the stack (unlike an HBufC) .
50 inline const TPtr& Text() const;
51 inline TInt MaxLength() const;
52 inline void SetText(const TDesC &aDes);
53 IMPORT_C void SetMaxLengthL(TInt aMaxLength);
54 IMPORT_C void Close();
62 class RIncrMatcherBase
63 /** Base class for incremental matcher classes.
65 An incremental matcher compares two text buffers from left-to-right. For example,
66 the match between "garage" and "gander" is "ga".
68 The class provides the interface for getting and setting the text to be matched
69 against, and for performing match tests. Each type of match test is available
70 in three versions, one using binary comparison, one using locale collation
71 rules (comparison of strings to produce a dictionary-like ('lexicographic')
72 ordering, e.g. ignoring punctuation), and one using locale folding rules (e.g.
82 IMPORT_C virtual ~RIncrMatcherBase();
84 /** Default constructor. */
85 inline RIncrMatcherBase() {}
87 /** Gets the match text.
90 virtual TDes& MatchDes()=0;
92 /** Gets the match text.
95 virtual const TDes& MatchDes() const=0;
97 inline TInt MaxLength() const;
98 inline TInt MatchLength() const;
99 inline TPtrC MatchText() const;
102 IMPORT_C void DeleteLastChar();
103 IMPORT_C void AppendChar(TChar aLetter);
104 inline void SetMatchText(const TDesC& aText);
106 IMPORT_C void SetBestMatch(const TDesC& aBuf);
107 IMPORT_C void SetBestMatchC(const TDesC& aBuf);
108 IMPORT_C void SetBestMatchF(const TDesC& aBuf);
109 IMPORT_C TBool IsMatch(const TDesC& aBuf) const;
110 IMPORT_C TBool IsMatchC(const TDesC& aBuf) const;
111 IMPORT_C TBool IsMatchF(const TDesC& aBuf) const;
112 IMPORT_C TInt FirstMatchingIndex(TInt& aResult,const MDesCArray& aDesArray,TInt aStartIndex=0) const;
113 IMPORT_C TInt FirstMatchingIndexC(TInt& aResult,const MDesCArray& aDesArray,TInt aStartIndex=0) const;
114 IMPORT_C TInt FirstMatchingIndexF(TInt& aResult,const MDesCArray& aDesArray,TInt aStartIndex=0) const;
116 typedef TInt (*TCompareFunc)(const TText*,TInt,const TText*,TInt);
117 TBool DoIsMatch(const TDesC& aQuery,TCompareFunc aCompare) const;
118 TInt DoFirstMatchingIndex(TInt& aIndex,const MDesCArray& aDesArray,TCompareFunc aCompare) const;
119 void DoSetBestMatch(const TDesC& aBuf,TCompareFunc aCompare);
123 class RIncrMatcherPtr : public RIncrMatcherBase
124 /** Incrementally matches text against a descriptor, accessed via a pointer.
126 The class does not take a copy of the text to match against, but only stores
133 IMPORT_C RIncrMatcherPtr();
134 IMPORT_C RIncrMatcherPtr(TDes& aDes);
135 IMPORT_C virtual ~RIncrMatcherPtr();
137 inline void SetMatcherPtr(TDes& aDes);
139 IMPORT_C TDes& MatchDes();
140 IMPORT_C const TDes& MatchDes() const;
146 class RIncrMatcherTextBuf : public RIncrMatcherBase
147 /** Incrementally matches text against a text buffer with variable maximum
154 IMPORT_C RIncrMatcherTextBuf();
155 IMPORT_C virtual ~RIncrMatcherTextBuf();
156 inline void SetMatcherLengthL(TInt aMaxLength);
158 IMPORT_C TDes& MatchDes();
159 IMPORT_C const TDes& MatchDes() const;
164 template <TInt aMaximumSize>
165 class RIncrMatcherBuf : public RIncrMatcherBase
167 Incrementally matches text against a modifiable descriptor buffer.
168 Set aMaximumSize to be the maximum size of this buffer.
174 /** Default constructor. */
178 /** Gets the match text.
180 @return Match text (non const) */
181 inline TDes& MatchDes() {return(iMatchBuf);}
183 /** Gets the match text.
185 @return Match text (const)*/
186 inline const TDes& MatchDes() const {return(iMatchBuf);}
188 /** Copy constructor.
190 @param aMatcher RIncrMatcherBuf to copy */
191 inline RIncrMatcherBuf(const RIncrMatcherBuf& aMatcher) {iMatchBuf=aMatcher.iMatchBuf;}
193 TBuf<aMaximumSize> iMatchBuf;
196 inline TPtr& RTextBuf::Text()
197 /** Gets the text as a descriptor.
199 @return Match text descriptor (non const) */
202 inline const TPtr& RTextBuf::Text() const
203 /** Gets the text as a descriptor.
205 @return Match text descriptor (const) */
208 inline TInt RTextBuf::MaxLength() const
209 /** Gets the maximum length of the text.
211 @return The maximum length of the text.*/
212 {return(iPtr.MaxLength());}
214 inline void RTextBuf::SetText(const TDesC &aDes)
215 /** Sets the text. You must have set the maximum length appropriately first with
219 inline TInt RIncrMatcherBase::MaxLength() const
220 /** Gets the maximum length of the match text buffer. */
221 {return(MatchDes().MaxLength());}
222 inline TInt RIncrMatcherBase::MatchLength() const
223 /** Gets the current length of the match text buffer. */
224 {return(MatchDes().Length());}
225 inline TPtrC RIncrMatcherBase::MatchText() const
226 /** Gets the match text as a TPtrC. */
227 {return(TPtrC(MatchDes()));}
228 inline void RIncrMatcherBase::SetMatchText(const TDesC& aText)
229 /** Sets the match text.
231 @param aText String to which to set the match text. */
234 inline void RIncrMatcherBase::Clear()
235 /** Clears the match text. */
238 inline void RIncrMatcherPtr::SetMatcherPtr(TDes& aDes)
239 /** Sets the text to be matched against.
241 @param aDes Text to be matched against */
245 inline void RIncrMatcherTextBuf::SetMatcherLengthL(TInt aMaxLength)
246 /** Sets the maximum length of text that can be stored through SetMatchText()
249 @param aMaxLength Maximum length of text that can be stored */
250 {iTextBuf.SetMaxLengthL(aMaxLength);}