sl@0: // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // Started by Brendan, January 1996 sl@0: // Descended from HCIMATCH.CPP sl@0: // Incremental matcher class sl@0: // sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: sl@0: sl@0: EXPORT_C RTextBuf::RTextBuf() sl@0: : iPtr(NULL,0), iText(NULL) sl@0: /** Default constructor. */ sl@0: {} sl@0: sl@0: sl@0: EXPORT_C RTextBuf::~RTextBuf() sl@0: /** Destructor. */ sl@0: { sl@0: Close(); sl@0: } sl@0: sl@0: sl@0: EXPORT_C void RTextBuf::SetMaxLengthL(TInt aMaxLength) sl@0: /** Sets the maximum length of the text that the object can store. sl@0: sl@0: Attempts to store text beyond the maximum length cause a panic, as sl@0: with descriptors. */ sl@0: { sl@0: __ASSERT_ALWAYS(aMaxLength>0,Panic(EBafPanicTextBufOutOfRange)); sl@0: Close(); sl@0: iText=new(ELeave) TText[aMaxLength+1]; sl@0: iPtr.Set(iText,0,aMaxLength); sl@0: } sl@0: sl@0: EXPORT_C void RTextBuf::Close() sl@0: { sl@0: delete [] iText; sl@0: iText=NULL; sl@0: iPtr.Set(NULL,0,0); sl@0: } sl@0: sl@0: // class RIncrMatcherBase sl@0: sl@0: EXPORT_C RIncrMatcherBase::~RIncrMatcherBase() sl@0: /** Virtual destructor, for reimplementation by derived classes. */ sl@0: {} sl@0: sl@0: TBool RIncrMatcherBase::DoIsMatch(const TDesC& aQuery,TCompareFunc aCompare) const sl@0: { sl@0: const TDes& des=MatchDes(); sl@0: TInt l=des.Length(); sl@0: return l>aQuery.Length() ? EFalse : aCompare(aQuery.Ptr(),l,des.Ptr(),l)==0; sl@0: } sl@0: sl@0: TInt RIncrMatcherBase::DoFirstMatchingIndex(TInt& aIndex,const MDesCArray& aDesArray,TCompareFunc aCompare) const sl@0: { sl@0: TInt noElements=aDesArray.MdcaCount(); sl@0: __ASSERT_ALWAYS(aIndex>=0 && aIndex=0) sl@0: { sl@0: des[l]=0; sl@0: des.SetLength(l); sl@0: } sl@0: } sl@0: sl@0: EXPORT_C RIncrMatcherPtr::RIncrMatcherPtr() sl@0: : iDesPtr(NULL) sl@0: /** Default constructor. */ sl@0: { sl@0: } sl@0: sl@0: EXPORT_C RIncrMatcherPtr::RIncrMatcherPtr(TDes& aDes) sl@0: : iDesPtr(&aDes) sl@0: /** Constructor that initialises the object with the text to be matched against. sl@0: sl@0: @param aDes Text to be matched against */ sl@0: { sl@0: } sl@0: sl@0: EXPORT_C RIncrMatcherPtr::~RIncrMatcherPtr() sl@0: /** Destructor. */ sl@0: { sl@0: } sl@0: sl@0: EXPORT_C TDes& RIncrMatcherPtr::MatchDes() sl@0: /** Gets the match text. sl@0: sl@0: @return Match text */ sl@0: { sl@0: return(*iDesPtr); sl@0: } sl@0: sl@0: EXPORT_C const TDes& RIncrMatcherPtr::MatchDes() const sl@0: /** Gets the match text. sl@0: sl@0: @return Match text */ sl@0: { sl@0: return(*iDesPtr); sl@0: } sl@0: sl@0: sl@0: EXPORT_C RIncrMatcherTextBuf::RIncrMatcherTextBuf() sl@0: /** Default constructor. */ sl@0: { sl@0: } sl@0: sl@0: EXPORT_C RIncrMatcherTextBuf::~RIncrMatcherTextBuf() sl@0: /** Destructor.*/ sl@0: { sl@0: } sl@0: sl@0: EXPORT_C TDes& RIncrMatcherTextBuf::MatchDes() sl@0: /** Gets the match text. sl@0: sl@0: @return Match text */ sl@0: { sl@0: return(iTextBuf.Text()); sl@0: } sl@0: sl@0: EXPORT_C const TDes& RIncrMatcherTextBuf::MatchDes() const sl@0: /** Gets the match text. sl@0: sl@0: @return Match text */ sl@0: { sl@0: return(iTextBuf.Text()); sl@0: }