os/persistentdata/persistentstorage/sql/SRC/Common/SqlBufIterator.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) 2006-2010 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
//
sl@0
    15
sl@0
    16
#include <e32math.h>		//Math class
sl@0
    17
#include <s32mem.h>			//TMemBuf
sl@0
    18
#include "SqlBufIterator.h"
sl@0
    19
sl@0
    20
///////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
    21
////////////////////////          TSqlBufIterator class               /////////////////////////////////////
sl@0
    22
///////////////////////////////////////////////////////////////////////////////////////////////////////////
sl@0
    23
sl@0
    24
/**
sl@0
    25
@return Represents the content of the current flat buffer field as integer value.
sl@0
    26
*/
sl@0
    27
inline TInt TSqlBufRIterator::AsInt() const
sl@0
    28
	{
sl@0
    29
	__ASSERT_DEBUG(iCurrent >= iBegin && iCurrent < iEnd, __SQLPANIC(ESqlPanicInternalError));
sl@0
    30
	return *reinterpret_cast <const TInt32*> (reinterpret_cast <const TUint8*> (iBegin) + iCurrent->iPos);
sl@0
    31
	}
sl@0
    32
sl@0
    33
/**
sl@0
    34
@return Represents the content of the current flat buffer field as 64 bit integer value.
sl@0
    35
*/
sl@0
    36
inline TInt64 TSqlBufRIterator::AsInt64() const
sl@0
    37
	{
sl@0
    38
	__ASSERT_DEBUG(iCurrent >= iBegin && iCurrent < iEnd, __SQLPANIC(ESqlPanicInternalError));
sl@0
    39
	return *reinterpret_cast <const TInt64*> (reinterpret_cast <const TUint8*> (iBegin) + iCurrent->iPos);
sl@0
    40
	}
sl@0
    41
sl@0
    42
/**
sl@0
    43
@return Represents the content of the current flat buffer field as real value.
sl@0
    44
*/
sl@0
    45
inline TReal TSqlBufRIterator::AsReal() const
sl@0
    46
	{
sl@0
    47
	__ASSERT_DEBUG(iCurrent >= iBegin && iCurrent < iEnd, __SQLPANIC(ESqlPanicInternalError));
sl@0
    48
	return *reinterpret_cast <const TReal*> (reinterpret_cast <const TUint8*> (iBegin) + iCurrent->iPos);
sl@0
    49
	}
sl@0
    50
sl@0
    51
/**
sl@0
    52
@return Represents the content of the current flat buffer field as integer value.
sl@0
    53
		If the current flat buffer field type does not refer to an integer, then 
sl@0
    54
		the function will do a data conversion as described in the table which can be found
sl@0
    55
		in SqlBufIterator.h file.
sl@0
    56
*/
sl@0
    57
TInt TSqlBufRIterator::Int() const
sl@0
    58
	{
sl@0
    59
	__ASSERT_DEBUG(iCurrent >= iBegin && iCurrent < iEnd, __SQLPANIC(ESqlPanicInternalError));
sl@0
    60
	switch(Type())
sl@0
    61
		{
sl@0
    62
		case ESqlInt64:
sl@0
    63
			{
sl@0
    64
			TInt64 val = AsInt64();
sl@0
    65
			return val == (TInt)val ? (TInt)val : (val < KMinTInt ? KMinTInt : KMaxTInt);
sl@0
    66
			}
sl@0
    67
		case ESqlReal:
sl@0
    68
			{
sl@0
    69
			TReal roundVal;
sl@0
    70
			TInt err = Math::Round(roundVal, AsReal(), 0);
sl@0
    71
			if(err != KErrNone)
sl@0
    72
				{
sl@0
    73
				return KMinTInt;
sl@0
    74
				}
sl@0
    75
			TRealX val(roundVal);
sl@0
    76
			return static_cast <TInt> (val);
sl@0
    77
			}
sl@0
    78
		case ESqlNull:
sl@0
    79
		case ESqlText:
sl@0
    80
		case ESqlBinary:
sl@0
    81
			return 0;
sl@0
    82
		case ESqlZeroBlob:
sl@0
    83
			return AsInt();
sl@0
    84
		default:
sl@0
    85
			return AsInt();
sl@0
    86
		}
sl@0
    87
	}
sl@0
    88
sl@0
    89
/**
sl@0
    90
@return Represents the content of the current flat buffer field as 64 bit integer value.
sl@0
    91
		If the current flat buffer field type does not refer to a 64 bit integer, then 
sl@0
    92
		the function will do a data conversion as described in the table which can be found
sl@0
    93
		in SqlBufIterator.h file.
sl@0
    94
*/
sl@0
    95
TInt64 TSqlBufRIterator::Int64() const
sl@0
    96
	{
sl@0
    97
	__ASSERT_DEBUG(iCurrent >= iBegin && iCurrent < iEnd, __SQLPANIC(ESqlPanicInternalError));
sl@0
    98
	switch(Type())
sl@0
    99
		{
sl@0
   100
		case ESqlInt:
sl@0
   101
		case ESqlZeroBlob:
sl@0
   102
			return AsInt();
sl@0
   103
		case ESqlReal:
sl@0
   104
			{
sl@0
   105
			TReal roundVal;
sl@0
   106
			TInt err = Math::Round(roundVal, AsReal(), 0);
sl@0
   107
			if(err != KErrNone)
sl@0
   108
				{
sl@0
   109
				return KMinTInt64;
sl@0
   110
				}
sl@0
   111
			TRealX val(roundVal);
sl@0
   112
			return static_cast <TInt64> (val);
sl@0
   113
			}
sl@0
   114
		case ESqlNull:
sl@0
   115
		case ESqlText:
sl@0
   116
		case ESqlBinary:
sl@0
   117
			return 0;
sl@0
   118
		default:
sl@0
   119
			return AsInt64();
sl@0
   120
		}
sl@0
   121
	}
sl@0
   122
sl@0
   123
/**
sl@0
   124
@return Represents the content of the current flat buffer field as real value.
sl@0
   125
		If the current flat buffer field type does not refer to a real, then 
sl@0
   126
		the function will do a data conversion as described in the table which can be found
sl@0
   127
		in SqlBufIterator.h file.
sl@0
   128
*/
sl@0
   129
TReal TSqlBufRIterator::Real() const
sl@0
   130
	{
sl@0
   131
	__ASSERT_DEBUG(iCurrent >= iBegin && iCurrent < iEnd, __SQLPANIC(ESqlPanicInternalError));
sl@0
   132
	switch(Type())
sl@0
   133
		{
sl@0
   134
		case ESqlInt:
sl@0
   135
		case ESqlZeroBlob:
sl@0
   136
			{
sl@0
   137
			TRealX val(AsInt());	
sl@0
   138
			return static_cast <TReal> (val);
sl@0
   139
			}
sl@0
   140
		case ESqlInt64:
sl@0
   141
			{
sl@0
   142
			TRealX val(AsInt64());	
sl@0
   143
			return static_cast <TReal> (val);
sl@0
   144
			}
sl@0
   145
		case ESqlNull:
sl@0
   146
		case ESqlText:
sl@0
   147
		case ESqlBinary:
sl@0
   148
			return 0.0;
sl@0
   149
		default:
sl@0
   150
			return AsReal();
sl@0
   151
		}
sl@0
   152
	}
sl@0
   153
sl@0
   154
/**
sl@0
   155
@return Represents the content of the current flat buffer field as binary (8 bit) descriptor.
sl@0
   156
		If the current flat buffer field type does not refer to a binary block of data, then 
sl@0
   157
		the function will do a data conversion as described in the table which can be found
sl@0
   158
		in SqlBufIterator.h file.
sl@0
   159
*/
sl@0
   160
TPtrC8 TSqlBufRIterator::Binary() const
sl@0
   161
	{
sl@0
   162
	__ASSERT_DEBUG(iCurrent >= iBegin && iCurrent < iEnd, __SQLPANIC(ESqlPanicInternalError));
sl@0
   163
	TInt size = Size();
sl@0
   164
	if(Type() != ESqlBinary || size == 0)
sl@0
   165
		{
sl@0
   166
		return 	TPtrC8();
sl@0
   167
		}
sl@0
   168
	return TPtrC8(reinterpret_cast <const TUint8*> (iBegin) + iCurrent->iPos, size);
sl@0
   169
	}
sl@0
   170
sl@0
   171
/**
sl@0
   172
@return Represents the content of the current flat buffer field as text (16 bit) descriptor.
sl@0
   173
		If the current flat buffer field type does not refer to a text block of data, then 
sl@0
   174
		the function will do a data conversion as described in the table which can be found
sl@0
   175
		in SqlBufIterator.h file.
sl@0
   176
*/
sl@0
   177
TPtrC16 TSqlBufRIterator::Text() const
sl@0
   178
	{
sl@0
   179
	__ASSERT_DEBUG(iCurrent >= iBegin && iCurrent < iEnd, __SQLPANIC(ESqlPanicInternalError));
sl@0
   180
	TInt size = Size();
sl@0
   181
	if(Type() != ESqlText || size == 0)
sl@0
   182
		{
sl@0
   183
		return 	TPtrC16();
sl@0
   184
		}
sl@0
   185
	return TPtrC16(reinterpret_cast <const TUint16*> (reinterpret_cast <const TUint8*> (iBegin) + iCurrent->iPos), size);
sl@0
   186
	}
sl@0
   187
sl@0
   188
/**
sl@0
   189
An instance of the class is used to get a read-only access to the content of a text or binary column
sl@0
   190
via a stream object.
sl@0
   191
sl@0
   192
@internalComponent
sl@0
   193
*/
sl@0
   194
class HReadOnlyBuf : public TMemBuf
sl@0
   195
	{
sl@0
   196
public:
sl@0
   197
	static HReadOnlyBuf* NewL(const TUint8* aFrom, TInt aLen)
sl@0
   198
		{
sl@0
   199
		__ASSERT_DEBUG(aLen >= 0, __SQLPANIC2(ESqlPanicBadArgument));
sl@0
   200
   		HReadOnlyBuf* self = new (ELeave) HReadOnlyBuf;
sl@0
   201
		TUint8* p = const_cast <TUint8*> (aFrom);
sl@0
   202
		self->Set(p, p + aLen, MStreamBuf::ERead);
sl@0
   203
		return self;
sl@0
   204
		}
sl@0
   205
		
sl@0
   206
private:
sl@0
   207
	virtual void DoRelease()
sl@0
   208
		{
sl@0
   209
		delete this;	
sl@0
   210
		}
sl@0
   211
	
sl@0
   212
};
sl@0
   213
sl@0
   214
/**
sl@0
   215
@return Represents the content of a text or a binary field as a stream of bytes.
sl@0
   216
sl@0
   217
@leave KErrNoMemory, out of memory condition has occured,
sl@0
   218
	   KErrArgument, the column type is not text, blob or null;
sl@0
   219
*/	
sl@0
   220
MStreamBuf* TSqlBufRIterator::StreamL() const
sl@0
   221
	{
sl@0
   222
    __ASSERT_DEBUG(iCurrent >= iBegin && iCurrent < iEnd, __SQLPANIC(ESqlPanicInternalError));
sl@0
   223
	if(!::IsSequenceSqlType(Type()))
sl@0
   224
		{
sl@0
   225
		__SQLLEAVE(KErrArgument);
sl@0
   226
		}
sl@0
   227
	return HReadOnlyBuf::NewL(reinterpret_cast <const TUint8*> (iBegin) + iCurrent->iPos, iCurrent->Size());
sl@0
   228
	}