First public contribution.
1 // Copyright (c) 2006-2010 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.
16 #include <e32math.h> //Math class
17 #include <s32mem.h> //TMemBuf
18 #include "SqlBufIterator.h"
20 ///////////////////////////////////////////////////////////////////////////////////////////////////////////
21 //////////////////////// TSqlBufIterator class /////////////////////////////////////
22 ///////////////////////////////////////////////////////////////////////////////////////////////////////////
25 @return Represents the content of the current flat buffer field as integer value.
27 inline TInt TSqlBufRIterator::AsInt() const
29 __ASSERT_DEBUG(iCurrent >= iBegin && iCurrent < iEnd, __SQLPANIC(ESqlPanicInternalError));
30 return *reinterpret_cast <const TInt32*> (reinterpret_cast <const TUint8*> (iBegin) + iCurrent->iPos);
34 @return Represents the content of the current flat buffer field as 64 bit integer value.
36 inline TInt64 TSqlBufRIterator::AsInt64() const
38 __ASSERT_DEBUG(iCurrent >= iBegin && iCurrent < iEnd, __SQLPANIC(ESqlPanicInternalError));
39 return *reinterpret_cast <const TInt64*> (reinterpret_cast <const TUint8*> (iBegin) + iCurrent->iPos);
43 @return Represents the content of the current flat buffer field as real value.
45 inline TReal TSqlBufRIterator::AsReal() const
47 __ASSERT_DEBUG(iCurrent >= iBegin && iCurrent < iEnd, __SQLPANIC(ESqlPanicInternalError));
48 return *reinterpret_cast <const TReal*> (reinterpret_cast <const TUint8*> (iBegin) + iCurrent->iPos);
52 @return Represents the content of the current flat buffer field as integer value.
53 If the current flat buffer field type does not refer to an integer, then
54 the function will do a data conversion as described in the table which can be found
55 in SqlBufIterator.h file.
57 TInt TSqlBufRIterator::Int() const
59 __ASSERT_DEBUG(iCurrent >= iBegin && iCurrent < iEnd, __SQLPANIC(ESqlPanicInternalError));
64 TInt64 val = AsInt64();
65 return val == (TInt)val ? (TInt)val : (val < KMinTInt ? KMinTInt : KMaxTInt);
70 TInt err = Math::Round(roundVal, AsReal(), 0);
76 return static_cast <TInt> (val);
90 @return Represents the content of the current flat buffer field as 64 bit integer value.
91 If the current flat buffer field type does not refer to a 64 bit integer, then
92 the function will do a data conversion as described in the table which can be found
93 in SqlBufIterator.h file.
95 TInt64 TSqlBufRIterator::Int64() const
97 __ASSERT_DEBUG(iCurrent >= iBegin && iCurrent < iEnd, __SQLPANIC(ESqlPanicInternalError));
106 TInt err = Math::Round(roundVal, AsReal(), 0);
111 TRealX val(roundVal);
112 return static_cast <TInt64> (val);
124 @return Represents the content of the current flat buffer field as real value.
125 If the current flat buffer field type does not refer to a real, then
126 the function will do a data conversion as described in the table which can be found
127 in SqlBufIterator.h file.
129 TReal TSqlBufRIterator::Real() const
131 __ASSERT_DEBUG(iCurrent >= iBegin && iCurrent < iEnd, __SQLPANIC(ESqlPanicInternalError));
138 return static_cast <TReal> (val);
142 TRealX val(AsInt64());
143 return static_cast <TReal> (val);
155 @return Represents the content of the current flat buffer field as binary (8 bit) descriptor.
156 If the current flat buffer field type does not refer to a binary block of data, then
157 the function will do a data conversion as described in the table which can be found
158 in SqlBufIterator.h file.
160 TPtrC8 TSqlBufRIterator::Binary() const
162 __ASSERT_DEBUG(iCurrent >= iBegin && iCurrent < iEnd, __SQLPANIC(ESqlPanicInternalError));
164 if(Type() != ESqlBinary || size == 0)
168 return TPtrC8(reinterpret_cast <const TUint8*> (iBegin) + iCurrent->iPos, size);
172 @return Represents the content of the current flat buffer field as text (16 bit) descriptor.
173 If the current flat buffer field type does not refer to a text block of data, then
174 the function will do a data conversion as described in the table which can be found
175 in SqlBufIterator.h file.
177 TPtrC16 TSqlBufRIterator::Text() const
179 __ASSERT_DEBUG(iCurrent >= iBegin && iCurrent < iEnd, __SQLPANIC(ESqlPanicInternalError));
181 if(Type() != ESqlText || size == 0)
185 return TPtrC16(reinterpret_cast <const TUint16*> (reinterpret_cast <const TUint8*> (iBegin) + iCurrent->iPos), size);
189 An instance of the class is used to get a read-only access to the content of a text or binary column
194 class HReadOnlyBuf : public TMemBuf
197 static HReadOnlyBuf* NewL(const TUint8* aFrom, TInt aLen)
199 __ASSERT_DEBUG(aLen >= 0, __SQLPANIC2(ESqlPanicBadArgument));
200 HReadOnlyBuf* self = new (ELeave) HReadOnlyBuf;
201 TUint8* p = const_cast <TUint8*> (aFrom);
202 self->Set(p, p + aLen, MStreamBuf::ERead);
207 virtual void DoRelease()
215 @return Represents the content of a text or a binary field as a stream of bytes.
217 @leave KErrNoMemory, out of memory condition has occured,
218 KErrArgument, the column type is not text, blob or null;
220 MStreamBuf* TSqlBufRIterator::StreamL() const
222 __ASSERT_DEBUG(iCurrent >= iBegin && iCurrent < iEnd, __SQLPANIC(ESqlPanicInternalError));
223 if(!::IsSequenceSqlType(Type()))
225 __SQLLEAVE(KErrArgument);
227 return HReadOnlyBuf::NewL(reinterpret_cast <const TUint8*> (iBegin) + iCurrent->iPos, iCurrent->Size());