First public contribution.
1 // Copyright (c) 1997-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 // Started by Brendan, January 1996
15 // Descended from HCIMATCH.CPP
16 // Incremental matcher class
26 EXPORT_C RTextBuf::RTextBuf()
27 : iPtr(NULL,0), iText(NULL)
28 /** Default constructor. */
32 EXPORT_C RTextBuf::~RTextBuf()
39 EXPORT_C void RTextBuf::SetMaxLengthL(TInt aMaxLength)
40 /** Sets the maximum length of the text that the object can store.
42 Attempts to store text beyond the maximum length cause a panic, as
45 __ASSERT_ALWAYS(aMaxLength>0,Panic(EBafPanicTextBufOutOfRange));
47 iText=new(ELeave) TText[aMaxLength+1];
48 iPtr.Set(iText,0,aMaxLength);
51 EXPORT_C void RTextBuf::Close()
58 // class RIncrMatcherBase
60 EXPORT_C RIncrMatcherBase::~RIncrMatcherBase()
61 /** Virtual destructor, for reimplementation by derived classes. */
64 TBool RIncrMatcherBase::DoIsMatch(const TDesC& aQuery,TCompareFunc aCompare) const
66 const TDes& des=MatchDes();
68 return l>aQuery.Length() ? EFalse : aCompare(aQuery.Ptr(),l,des.Ptr(),l)==0;
71 TInt RIncrMatcherBase::DoFirstMatchingIndex(TInt& aIndex,const MDesCArray& aDesArray,TCompareFunc aCompare) const
73 TInt noElements=aDesArray.MdcaCount();
74 __ASSERT_ALWAYS(aIndex>=0 && aIndex<noElements,Panic(EBafPanicMatcherOutOfRange));
77 if (DoIsMatch(aDesArray.MdcaPoint(aIndex),aCompare))
79 } while (++aIndex<noElements);
83 void RIncrMatcherBase::DoSetBestMatch(const TDesC& aBuf,TCompareFunc aCompare)
86 des.SetLength(Min(des.Length(),aBuf.Length()));
87 while (!DoIsMatch(aBuf,aCompare))
92 EXPORT_C TBool RIncrMatcherBase::IsMatch(const TDesC& aQuery) const
93 /**Tests for match, using a binary comparison.
95 @param aQuery Text to match
96 @return ETrue if match found, else EFalse */
98 return DoIsMatch(aQuery,Mem::Compare);
102 EXPORT_C TBool RIncrMatcherBase::IsMatchC(const TDesC& aQuery) const
103 /** Tests for match, using locale collation rules.
105 @param aQuery Text to match
106 @return ETrue if match found, else EFalse */
108 return DoIsMatch(aQuery,Mem::CompareC);
111 EXPORT_C TBool RIncrMatcherBase::IsMatchF(const TDesC& aQuery) const
112 /** Tests for match, using locale folding rules.
114 @param aQuery Text to match
115 @return ETrue if match found, else EFalse */
117 return DoIsMatch(aQuery,Mem::CompareF);
120 EXPORT_C TInt RIncrMatcherBase::FirstMatchingIndex(TInt& aResultIndex,const MDesCArray& aDesArray,TInt aStartIndex) const
121 /** Finds the first match in an array, using a binary comparison.
123 @param aResult On return, index of the first match in aDesArray
124 @param aDesArray Array of descriptors to search
125 @param aStartIndex Index of aDesArray at which to begin search
126 @return KErrNone if success or KErrNotFound if no match is found */
128 aResultIndex=aStartIndex;
129 return DoFirstMatchingIndex(aResultIndex,aDesArray,Mem::Compare);
132 EXPORT_C TInt RIncrMatcherBase::FirstMatchingIndexC(TInt& aResultIndex,const MDesCArray& aDesArray,TInt aStartIndex) const
133 /** Finds the first match in an array, using locale collation rules.
135 @param aResult On return, index of the first match in aDesArray
136 @param aDesArray Array of descriptors to search
137 @param aStartIndex Index of aDesArray at which to begin search
138 @return KErrNone if success or KErrNotFound if no match is found */
140 aResultIndex=aStartIndex;
141 return DoFirstMatchingIndex(aResultIndex,aDesArray,Mem::CompareC);
144 EXPORT_C TInt RIncrMatcherBase::FirstMatchingIndexF(TInt& aResultIndex,const MDesCArray& aDesArray,TInt aStartIndex) const
145 /** Finds the first match in an array, using locale folding rules.
147 @param aResult On return, index of the first match in aDesArray
148 @param aDesArray Array of descriptors to search
149 @param aStartIndex Index of aDesArray at which to begin search
150 @return KErrNone if success or KErrNotFound if no match is found */
152 aResultIndex=aStartIndex;
153 return DoFirstMatchingIndex(aResultIndex,aDesArray,Mem::CompareF);
156 EXPORT_C void RIncrMatcherBase::SetBestMatch(const TDesC& aBuf)
157 /** Sets the match text to the best match between the match text and the passed
158 buffer, using a binary comparision.
160 For example, if the original match text is "goose" and the passed buffer is
161 "gooSE", the match text would be changed to "goo".
163 @param aBuf Text to match */
165 DoSetBestMatch(aBuf,Mem::Compare);
168 EXPORT_C void RIncrMatcherBase::SetBestMatchC(const TDesC& aBuf)
169 /** Sets the match text to the best match between the match text and the passed
170 buffer, using locale collation rules.
172 @param aBuf Text to match */
174 DoSetBestMatch(aBuf,Mem::CompareC);
177 EXPORT_C void RIncrMatcherBase::SetBestMatchF(const TDesC& aBuf)
178 /** Sets the match text to the best match between the match text and the passed
179 buffer, using locale folding rules.
181 @param aBuf Text to match */
183 DoSetBestMatch(aBuf,Mem::CompareF);
186 EXPORT_C void RIncrMatcherBase::AppendChar(TChar aLetter)
187 /** Appends a character to the end of the match text.
189 @param aLetter Character to append */
191 TDes& des=MatchDes();
192 __ASSERT_ALWAYS(des.Length()<des.MaxLength(),Panic(EBafPanicMatcherOutOfRange));
196 EXPORT_C void RIncrMatcherBase::DeleteLastChar()
197 /** Deletes the final character in the match text. */
199 TDes& des=MatchDes();
208 EXPORT_C RIncrMatcherPtr::RIncrMatcherPtr()
210 /** Default constructor. */
214 EXPORT_C RIncrMatcherPtr::RIncrMatcherPtr(TDes& aDes)
216 /** Constructor that initialises the object with the text to be matched against.
218 @param aDes Text to be matched against */
222 EXPORT_C RIncrMatcherPtr::~RIncrMatcherPtr()
227 EXPORT_C TDes& RIncrMatcherPtr::MatchDes()
228 /** Gets the match text.
230 @return Match text */
235 EXPORT_C const TDes& RIncrMatcherPtr::MatchDes() const
236 /** Gets the match text.
238 @return Match text */
244 EXPORT_C RIncrMatcherTextBuf::RIncrMatcherTextBuf()
245 /** Default constructor. */
249 EXPORT_C RIncrMatcherTextBuf::~RIncrMatcherTextBuf()
254 EXPORT_C TDes& RIncrMatcherTextBuf::MatchDes()
255 /** Gets the match text.
257 @return Match text */
259 return(iTextBuf.Text());
262 EXPORT_C const TDes& RIncrMatcherTextBuf::MatchDes() const
263 /** Gets the match text.
265 @return Match text */
267 return(iTextBuf.Text());