os/persistentdata/persistentstorage/dbms/udbms/UD_COMP.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1998-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
// implementation for d32comp.h
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include "UD_STD.H"
sl@0
    19
#include "D32COMP.H"
sl@0
    20
sl@0
    21
const TInt KCompareBufSize=0x200;	// 0.5K
sl@0
    22
sl@0
    23
// class Comp
sl@0
    24
sl@0
    25
TInt Comp::Compare(TReal32 aLeft,TReal32 aRight) __SOFTFP
sl@0
    26
	{
sl@0
    27
	return aLeft<aRight ? -1 : aLeft!=aRight;
sl@0
    28
	}
sl@0
    29
sl@0
    30
TInt Comp::Compare(TReal64 aLeft,TReal64 aRight) __SOFTFP
sl@0
    31
	{
sl@0
    32
	return aLeft<aRight ? -1 : aLeft!=aRight;
sl@0
    33
	}
sl@0
    34
sl@0
    35
TInt Comp::Compare(const TInt64& aLeft,const TInt64& aRight)
sl@0
    36
	{
sl@0
    37
	return aLeft<aRight ? -1 : aLeft!=aRight;
sl@0
    38
	}
sl@0
    39
sl@0
    40
TInt Comp::Compare8L(MStreamBuf& aBufL,MStreamBuf& aBufR,TInt aSize,const TTextOps& aTextOp)
sl@0
    41
	{
sl@0
    42
	const TInt KCompareBufLength=KCompareBufSize/sizeof(TText8);
sl@0
    43
	RReadStream left(&aBufL);
sl@0
    44
	RReadStream right(&aBufR);
sl@0
    45
	TText8 bufL[KCompareBufLength];
sl@0
    46
	TText8 bufR[KCompareBufLength];
sl@0
    47
	TInt read=KCompareBufLength;
sl@0
    48
	do
sl@0
    49
		{
sl@0
    50
		if (aSize<=read)
sl@0
    51
			read=aSize;
sl@0
    52
		left.ReadL(bufL,read);
sl@0
    53
		right.ReadL(bufR,read);
sl@0
    54
		TInt r=aTextOp.Compare(bufL,read,bufR,read);
sl@0
    55
		if (r!=0)
sl@0
    56
			return r;
sl@0
    57
		aSize-=KCompareBufLength;
sl@0
    58
		} while (aSize>0);
sl@0
    59
	return 0;
sl@0
    60
	}
sl@0
    61
sl@0
    62
TInt Comp::Compare8L(MStreamBuf& aBuf,const TText8* aPtr,TInt aSize,const TTextOps& aTextOp)
sl@0
    63
	{
sl@0
    64
	const TInt KCompareBufLength=KCompareBufSize/sizeof(TText8);
sl@0
    65
	RReadStream strm(&aBuf);
sl@0
    66
	TText8 buf[KCompareBufLength];
sl@0
    67
	TInt read=KCompareBufLength;
sl@0
    68
	do
sl@0
    69
		{
sl@0
    70
		if (aSize<read)
sl@0
    71
			read=aSize;
sl@0
    72
		strm.ReadL(buf,read);
sl@0
    73
		TInt r=aTextOp.Compare(buf,read,aPtr,read);
sl@0
    74
		if (r!=0)
sl@0
    75
			return r;
sl@0
    76
		aPtr+=KCompareBufLength;
sl@0
    77
		aSize-=KCompareBufLength;
sl@0
    78
		} while (aSize>0);
sl@0
    79
	return 0;
sl@0
    80
	}
sl@0
    81
sl@0
    82
TInt Comp::Compare8L(MStreamBuf& aBuf,TInt aSize,const TDesC8& aDes,const TTextOps& aTextOp)
sl@0
    83
	{
sl@0
    84
	const TText8* ptr=aDes.Ptr();
sl@0
    85
	TInt size=aDes.Length();
sl@0
    86
	TInt r=Compare8L(aBuf,ptr,Min(size,aSize),aTextOp);
sl@0
    87
	return r ? r : aSize-size;
sl@0
    88
	}
sl@0
    89
sl@0
    90
TInt Comp::Compare16L(MStreamBuf& aBufL,MStreamBuf& aBufR,TInt aSize,const TTextOps& aTextOp)
sl@0
    91
	{
sl@0
    92
	aSize >>= 1;
sl@0
    93
	const TInt KCompareBufLength=KCompareBufSize/sizeof(TText16);
sl@0
    94
	RReadStream left(&aBufL);
sl@0
    95
	RReadStream right(&aBufR);
sl@0
    96
	TText16 bufL[KCompareBufLength];
sl@0
    97
	TText16 bufR[KCompareBufLength];
sl@0
    98
	TInt read=KCompareBufLength;
sl@0
    99
	do
sl@0
   100
		{
sl@0
   101
		if (aSize<=read)
sl@0
   102
			read=aSize;
sl@0
   103
		left.ReadL(bufL,read);
sl@0
   104
		right.ReadL(bufR,read);
sl@0
   105
		TInt r=aTextOp.Order(bufL,read,bufR,read);
sl@0
   106
		if (r!=0)
sl@0
   107
			return r;
sl@0
   108
		aSize-=KCompareBufLength;
sl@0
   109
		} while (aSize>0);
sl@0
   110
	return 0;
sl@0
   111
	}
sl@0
   112
sl@0
   113
TInt Comp::Compare16L(MStreamBuf& aBuf,const TText16* aPtr,TInt aSize,const TTextOps& aTextOp)
sl@0
   114
	{
sl@0
   115
	aSize >>= 1;
sl@0
   116
	const TInt KCompareBufLength=KCompareBufSize/sizeof(TText16);
sl@0
   117
	RReadStream strm(&aBuf);
sl@0
   118
	TText16 buf[KCompareBufLength];
sl@0
   119
	TInt read=KCompareBufLength;
sl@0
   120
	do
sl@0
   121
		{
sl@0
   122
		if (aSize<read)
sl@0
   123
			read=aSize;
sl@0
   124
		strm.ReadL(buf,read);
sl@0
   125
		TInt r=aTextOp.Order(buf,read,aPtr,read);
sl@0
   126
		if (r!=0)
sl@0
   127
			return r;
sl@0
   128
		aPtr+=KCompareBufLength;
sl@0
   129
		aSize-=KCompareBufLength;
sl@0
   130
		} while (aSize>0);
sl@0
   131
	return 0;
sl@0
   132
	}
sl@0
   133
sl@0
   134
static TInt DoCompare16L(MStreamBuf& aBuf,const TText16* aPtr,TInt aLen,const TTextOps& aTextOp)
sl@0
   135
	{
sl@0
   136
	const TInt KCompareBufLength=KCompareBufSize/sizeof(TText16);
sl@0
   137
	RReadStream strm(&aBuf);
sl@0
   138
	TText16 buf[KCompareBufLength];
sl@0
   139
	TInt read=KCompareBufLength;
sl@0
   140
	do
sl@0
   141
		{
sl@0
   142
		if (aLen<read)
sl@0
   143
			read=aLen;
sl@0
   144
		strm.ReadL(buf,read);
sl@0
   145
		TInt r=aTextOp.Compare(buf,read,aPtr,read);
sl@0
   146
		if (r!=0)
sl@0
   147
			return r;
sl@0
   148
		aPtr+=KCompareBufLength;
sl@0
   149
		aLen-=KCompareBufLength;
sl@0
   150
		} while (aLen>0);
sl@0
   151
	return 0;
sl@0
   152
	}
sl@0
   153
	
sl@0
   154
TInt Comp::Compare16L(MStreamBuf& aBuf,TInt aSize,const TDesC16& aDes,const TTextOps& aTextOp)
sl@0
   155
	{
sl@0
   156
	const TText16* ptr=aDes.Ptr();
sl@0
   157
	TInt size=aDes.Length()<<1;
sl@0
   158
	TInt r=::DoCompare16L(aBuf,ptr,Min(size,aSize)>>1,aTextOp);
sl@0
   159
	return r ? r : aSize-size;
sl@0
   160
	}
sl@0
   161