os/ossrv/lowlevellibsandfws/apputils/src/BAMATCH.CPP
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 1997-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
// Started by Brendan, January 1996
sl@0
    15
// Descended from HCIMATCH.CPP
sl@0
    16
// Incremental matcher class
sl@0
    17
// 
sl@0
    18
//
sl@0
    19
sl@0
    20
#include <bamatch.h>
sl@0
    21
#include <baflpan.h>
sl@0
    22
#include <bamdesca.h>
sl@0
    23
sl@0
    24
sl@0
    25
sl@0
    26
EXPORT_C RTextBuf::RTextBuf()
sl@0
    27
	: iPtr(NULL,0), iText(NULL)
sl@0
    28
/** Default constructor. */
sl@0
    29
	{}
sl@0
    30
sl@0
    31
sl@0
    32
EXPORT_C RTextBuf::~RTextBuf()
sl@0
    33
/** Destructor. */
sl@0
    34
	{
sl@0
    35
	Close();
sl@0
    36
	}
sl@0
    37
sl@0
    38
sl@0
    39
EXPORT_C void RTextBuf::SetMaxLengthL(TInt aMaxLength)
sl@0
    40
/** Sets the maximum length of the text that the object can store.
sl@0
    41
sl@0
    42
Attempts to store text beyond the maximum length cause a panic, as
sl@0
    43
with descriptors. */
sl@0
    44
    {
sl@0
    45
   	__ASSERT_ALWAYS(aMaxLength>0,Panic(EBafPanicTextBufOutOfRange));
sl@0
    46
	Close();
sl@0
    47
	iText=new(ELeave) TText[aMaxLength+1];
sl@0
    48
	iPtr.Set(iText,0,aMaxLength);
sl@0
    49
	}
sl@0
    50
sl@0
    51
EXPORT_C void RTextBuf::Close()
sl@0
    52
	{
sl@0
    53
	delete [] iText;
sl@0
    54
	iText=NULL;
sl@0
    55
	iPtr.Set(NULL,0,0);
sl@0
    56
   	}
sl@0
    57
sl@0
    58
// class RIncrMatcherBase
sl@0
    59
sl@0
    60
EXPORT_C RIncrMatcherBase::~RIncrMatcherBase()
sl@0
    61
/** Virtual destructor, for reimplementation by derived classes. */
sl@0
    62
	{}
sl@0
    63
sl@0
    64
TBool RIncrMatcherBase::DoIsMatch(const TDesC& aQuery,TCompareFunc aCompare) const
sl@0
    65
	{
sl@0
    66
	const TDes& des=MatchDes();
sl@0
    67
	TInt l=des.Length();
sl@0
    68
	return l>aQuery.Length() ? EFalse : aCompare(aQuery.Ptr(),l,des.Ptr(),l)==0;
sl@0
    69
	}
sl@0
    70
sl@0
    71
TInt RIncrMatcherBase::DoFirstMatchingIndex(TInt& aIndex,const MDesCArray& aDesArray,TCompareFunc aCompare) const
sl@0
    72
	{
sl@0
    73
	TInt noElements=aDesArray.MdcaCount();
sl@0
    74
	__ASSERT_ALWAYS(aIndex>=0 && aIndex<noElements,Panic(EBafPanicMatcherOutOfRange));
sl@0
    75
	do
sl@0
    76
		{
sl@0
    77
		if (DoIsMatch(aDesArray.MdcaPoint(aIndex),aCompare))
sl@0
    78
			return KErrNone;
sl@0
    79
		} while (++aIndex<noElements);
sl@0
    80
	return KErrNotFound;
sl@0
    81
	}
sl@0
    82
sl@0
    83
void RIncrMatcherBase::DoSetBestMatch(const TDesC& aBuf,TCompareFunc aCompare)
sl@0
    84
	{
sl@0
    85
	TDes& des=MatchDes();
sl@0
    86
	des.SetLength(Min(des.Length(),aBuf.Length()));
sl@0
    87
	while (!DoIsMatch(aBuf,aCompare))
sl@0
    88
		DeleteLastChar();
sl@0
    89
	}
sl@0
    90
sl@0
    91
sl@0
    92
EXPORT_C TBool RIncrMatcherBase::IsMatch(const TDesC& aQuery) const
sl@0
    93
/**Tests for match, using a binary comparison.
sl@0
    94
sl@0
    95
@param aQuery Text to match
sl@0
    96
@return  ETrue if match found, else EFalse */
sl@0
    97
    {
sl@0
    98
	return DoIsMatch(aQuery,Mem::Compare);
sl@0
    99
	}
sl@0
   100
sl@0
   101
sl@0
   102
EXPORT_C TBool RIncrMatcherBase::IsMatchC(const TDesC& aQuery) const
sl@0
   103
/** Tests for match, using locale collation rules.
sl@0
   104
sl@0
   105
@param aQuery  Text to match
sl@0
   106
@return ETrue if match found, else EFalse */
sl@0
   107
    {
sl@0
   108
	return DoIsMatch(aQuery,Mem::CompareC);
sl@0
   109
	}
sl@0
   110
sl@0
   111
EXPORT_C TBool RIncrMatcherBase::IsMatchF(const TDesC& aQuery) const
sl@0
   112
/** Tests for match, using locale folding rules.
sl@0
   113
sl@0
   114
@param    aQuery  Text to match
sl@0
   115
@return  ETrue if match found, else EFalse */
sl@0
   116
	{
sl@0
   117
	return DoIsMatch(aQuery,Mem::CompareF);
sl@0
   118
	}
sl@0
   119
sl@0
   120
EXPORT_C TInt RIncrMatcherBase::FirstMatchingIndex(TInt& aResultIndex,const MDesCArray& aDesArray,TInt aStartIndex) const
sl@0
   121
/** Finds the first match in an array, using a binary comparison.
sl@0
   122
sl@0
   123
@param aResult On return, index of the first match in aDesArray 
sl@0
   124
@param aDesArray  Array of descriptors to search
sl@0
   125
@param aStartIndex Index of aDesArray at which to begin  search
sl@0
   126
@return  KErrNone if success or KErrNotFound if no match is found */
sl@0
   127
	{
sl@0
   128
	aResultIndex=aStartIndex;
sl@0
   129
	return DoFirstMatchingIndex(aResultIndex,aDesArray,Mem::Compare);
sl@0
   130
	}
sl@0
   131
sl@0
   132
EXPORT_C TInt RIncrMatcherBase::FirstMatchingIndexC(TInt& aResultIndex,const MDesCArray& aDesArray,TInt aStartIndex) const
sl@0
   133
/** Finds the first match in an array, using locale collation rules.
sl@0
   134
sl@0
   135
@param aResult  On return, index of the first match in aDesArray 
sl@0
   136
@param aDesArray Array of descriptors to search
sl@0
   137
@param aStartIndex Index of aDesArray  at which to begin search
sl@0
   138
@return  KErrNone if success or KErrNotFound if no match is found */
sl@0
   139
    {
sl@0
   140
	aResultIndex=aStartIndex;
sl@0
   141
	return DoFirstMatchingIndex(aResultIndex,aDesArray,Mem::CompareC);
sl@0
   142
	}
sl@0
   143
sl@0
   144
EXPORT_C TInt RIncrMatcherBase::FirstMatchingIndexF(TInt& aResultIndex,const MDesCArray& aDesArray,TInt aStartIndex) const
sl@0
   145
/** Finds the first match in an array, using locale folding rules.
sl@0
   146
sl@0
   147
@param aResult  On return, index of the first match in aDesArray
sl@0
   148
@param     aDesArray Array of descriptors to search
sl@0
   149
@param     aStartIndex Index of aDesArray at which to begin search
sl@0
   150
@return  KErrNone if success or KErrNotFound if no match is found */
sl@0
   151
    {
sl@0
   152
	aResultIndex=aStartIndex;
sl@0
   153
	return DoFirstMatchingIndex(aResultIndex,aDesArray,Mem::CompareF);
sl@0
   154
	}
sl@0
   155
sl@0
   156
EXPORT_C void RIncrMatcherBase::SetBestMatch(const TDesC& aBuf)
sl@0
   157
/** Sets the match text to the best match between the match text and the passed 
sl@0
   158
buffer, using a binary comparision.
sl@0
   159
sl@0
   160
For example, if the original match text is "goose" and the passed buffer is 
sl@0
   161
"gooSE", the match text would be changed to "goo".
sl@0
   162
sl@0
   163
@param aBuf Text to match */
sl@0
   164
	{
sl@0
   165
	DoSetBestMatch(aBuf,Mem::Compare);
sl@0
   166
	}
sl@0
   167
sl@0
   168
EXPORT_C void RIncrMatcherBase::SetBestMatchC(const TDesC& aBuf)
sl@0
   169
/** Sets the match text to the best match between the match text and the passed 
sl@0
   170
buffer, using locale collation rules.
sl@0
   171
sl@0
   172
@param aBuf Text to match */
sl@0
   173
	{
sl@0
   174
	DoSetBestMatch(aBuf,Mem::CompareC);
sl@0
   175
	}
sl@0
   176
sl@0
   177
EXPORT_C void RIncrMatcherBase::SetBestMatchF(const TDesC& aBuf)
sl@0
   178
/** Sets the match text to the best match between the match text and the passed 
sl@0
   179
buffer, using locale folding rules.
sl@0
   180
sl@0
   181
@param aBuf Text to match */
sl@0
   182
	{
sl@0
   183
	DoSetBestMatch(aBuf,Mem::CompareF);
sl@0
   184
	}
sl@0
   185
sl@0
   186
EXPORT_C void RIncrMatcherBase::AppendChar(TChar aLetter)
sl@0
   187
/** Appends a character to the end of the match text.
sl@0
   188
sl@0
   189
@param aLetter Character to append */
sl@0
   190
	{
sl@0
   191
	TDes& des=MatchDes();
sl@0
   192
	__ASSERT_ALWAYS(des.Length()<des.MaxLength(),Panic(EBafPanicMatcherOutOfRange));
sl@0
   193
	des.Append(aLetter);
sl@0
   194
	}
sl@0
   195
sl@0
   196
EXPORT_C void RIncrMatcherBase::DeleteLastChar()
sl@0
   197
/** Deletes the final character in the match text. */
sl@0
   198
	{
sl@0
   199
	TDes& des=MatchDes();
sl@0
   200
	TInt l=des.Length();
sl@0
   201
	if (--l>=0)
sl@0
   202
		{
sl@0
   203
		des[l]=0;
sl@0
   204
		des.SetLength(l);
sl@0
   205
		}
sl@0
   206
	}
sl@0
   207
sl@0
   208
EXPORT_C RIncrMatcherPtr::RIncrMatcherPtr()
sl@0
   209
    : iDesPtr(NULL)
sl@0
   210
/** Default constructor. */
sl@0
   211
    {
sl@0
   212
    }
sl@0
   213
sl@0
   214
EXPORT_C RIncrMatcherPtr::RIncrMatcherPtr(TDes& aDes)
sl@0
   215
    : iDesPtr(&aDes)
sl@0
   216
/** Constructor that initialises the object with the text to be matched against.
sl@0
   217
sl@0
   218
@param aDes Text to be matched against */
sl@0
   219
    {
sl@0
   220
    }
sl@0
   221
sl@0
   222
EXPORT_C RIncrMatcherPtr::~RIncrMatcherPtr()
sl@0
   223
/** Destructor. */
sl@0
   224
    {
sl@0
   225
    }
sl@0
   226
sl@0
   227
EXPORT_C TDes& RIncrMatcherPtr::MatchDes()
sl@0
   228
/** Gets the match text.
sl@0
   229
sl@0
   230
@return Match text */
sl@0
   231
    {
sl@0
   232
    return(*iDesPtr);
sl@0
   233
    }
sl@0
   234
sl@0
   235
EXPORT_C const TDes& RIncrMatcherPtr::MatchDes() const
sl@0
   236
/** Gets the match text.
sl@0
   237
sl@0
   238
@return Match text */
sl@0
   239
    {
sl@0
   240
    return(*iDesPtr);
sl@0
   241
    }
sl@0
   242
sl@0
   243
sl@0
   244
EXPORT_C RIncrMatcherTextBuf::RIncrMatcherTextBuf()
sl@0
   245
/** Default constructor. */
sl@0
   246
    {
sl@0
   247
    }
sl@0
   248
sl@0
   249
EXPORT_C RIncrMatcherTextBuf::~RIncrMatcherTextBuf()
sl@0
   250
/** Destructor.*/
sl@0
   251
    {
sl@0
   252
    }
sl@0
   253
sl@0
   254
EXPORT_C TDes& RIncrMatcherTextBuf::MatchDes()
sl@0
   255
/** Gets the match text.
sl@0
   256
sl@0
   257
@return Match text */
sl@0
   258
    {
sl@0
   259
    return(iTextBuf.Text());
sl@0
   260
    }
sl@0
   261
sl@0
   262
EXPORT_C const TDes& RIncrMatcherTextBuf::MatchDes() const
sl@0
   263
/** Gets the match text.
sl@0
   264
sl@0
   265
@return Match text */
sl@0
   266
   {
sl@0
   267
    return(iTextBuf.Text());
sl@0
   268
    }