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.
14 // ///////////////////// TSqlBufRIterator class /////////////////////////////////////////
20 Initializes the iterator.
21 After the initialization the iterator points to the first flat buffer field - 1.
23 @param aBuf A reference to the buffer which will be iterated.
25 inline void TSqlBufRIterator::Set(const RSqlBufFlat& aBuf)
27 iBegin = aBuf.Header();
28 iCurrent = iBegin - 1;
29 iEnd = iBegin + aBuf.Count();
33 Moves to the next flat buffer field
35 @return False if there are no more fields to be iterated.
37 inline TBool TSqlBufRIterator::Next()
39 return ++iCurrent < iEnd;
43 Moves to the specified field in the flat buffer.
45 @param aIndex Field index
47 inline void TSqlBufRIterator::MoveTo(TInt aIndex)
49 __ASSERT_DEBUG((iBegin + (TUint)aIndex) < iEnd, __SQLPANIC(ESqlPanicBadArgument));
50 iCurrent = iBegin + aIndex;
54 @return True if the current flat buffer field is "Present"
56 inline TBool TSqlBufRIterator::IsPresent() const
58 __ASSERT_DEBUG(iCurrent >= iBegin && iCurrent < iEnd, __SQLPANIC(ESqlPanicInternalError));
59 return iCurrent->iPos > 0;
63 @return Current flat buffer field type. One of TSqlColumnType enum item values or ESqlText8.
65 inline TInt TSqlBufRIterator::Type() const
67 __ASSERT_DEBUG(iCurrent >= iBegin && iCurrent < iEnd, __SQLPANIC(ESqlPanicInternalError));
68 return iCurrent->Type();
72 @return Current flat buffer field size
74 inline TInt TSqlBufRIterator::Size() const
76 __ASSERT_DEBUG(iCurrent >= iBegin && iCurrent < iEnd, __SQLPANIC(ESqlPanicInternalError));
77 return Type() == ESqlText ? iCurrent->Size() / sizeof(TUint16) : iCurrent->Size();
81 ///////////////////////////////////////////////////////////////////////////////////////////////////////////
82 //////////////////////// TSqlBufWIterator class //////////////////////////////////
83 ///////////////////////////////////////////////////////////////////////////////////////////////////////////
86 Initializes the iterator.
87 After the initialization the iterator points to the first flat buffer field - 1.
89 @param aBuf A reference to the buffer which will be iterated.
91 inline void TSqlBufWIterator::Set(RSqlBufFlat& aBuf)
98 Moves to the next flat buffer field
100 @return False if there are no more fields to be iterated.
102 inline TBool TSqlBufWIterator::Next()
104 __ASSERT_DEBUG(iBuf != NULL, __SQLPANIC(ESqlPanicInternalError));
105 return ++iIndex < iBuf->Count();
109 Moves to the specified field in the flat buffer.
111 @param aIndex Field index
113 inline void TSqlBufWIterator::MoveTo(TInt aIndex)
115 __ASSERT_DEBUG(iBuf != NULL, __SQLPANIC(ESqlPanicInternalError));
116 __ASSERT_DEBUG((TUint)aIndex < iBuf->Count(), __SQLPANIC(ESqlPanicInternalError));
121 Sets the current flat buffer field to NULL.
123 inline void TSqlBufWIterator::SetNull()
125 __ASSERT_DEBUG(iBuf != NULL, __SQLPANIC(ESqlPanicInternalError));
126 __ASSERT_DEBUG((TUint)iIndex < iBuf->Count(), __SQLPANIC(ESqlPanicInternalError));
127 (void)iBuf->SetField(iIndex, ESqlNull, NULL, 0);
131 Sets the current flat buffer field as "Not present".
133 @param aType Field type. One of TSqlColumnType enum item values or ESqlText8.
134 @param aLength Field length in bytes
136 inline void TSqlBufWIterator::SetAsNotPresent(TInt aType, TInt aLength)
138 __ASSERT_DEBUG(::IsSequenceSqlType(aType), __SQLPANIC(ESqlPanicBadArgument));
139 __ASSERT_DEBUG(aLength >= 0, __SQLPANIC(ESqlPanicBadArgument));
140 __ASSERT_DEBUG(iBuf != NULL, __SQLPANIC(ESqlPanicInternalError));
141 __ASSERT_DEBUG((TUint)iIndex < iBuf->Count(), __SQLPANIC(ESqlPanicInternalError));
142 iBuf->SetField(iIndex, aType, NULL, aType == ESqlText ? aLength * sizeof(TUint16) : aLength);
146 Initializes current flat buffer field with an integer value.
148 @param aValue An integer value to be set as a field content
150 @return KErrNone, The operation has completed successfully;
151 KErrNoMemory, Out of memory condition has occured.
153 inline TInt TSqlBufWIterator::SetInt(TInt aValue)
155 __ASSERT_DEBUG(iBuf != NULL, __SQLPANIC(ESqlPanicInternalError));
156 __ASSERT_DEBUG((TUint)iIndex < iBuf->Count(), __SQLPANIC(ESqlPanicInternalError));
157 return iBuf->SetField(iIndex, ESqlInt, &aValue, sizeof(TInt));
161 Initializes current flat buffer field with an 64 bit integer value.
163 @param aValue A 64 bit integer value to be set as a field content
165 @return KErrNone, The operation has completed successfully;
166 KErrNoMemory, Out of memory condition has occured.
168 inline TInt TSqlBufWIterator::SetInt64(TInt64 aValue)
170 __ASSERT_DEBUG(iBuf != NULL, __SQLPANIC(ESqlPanicInternalError));
171 __ASSERT_DEBUG((TUint)iIndex < iBuf->Count(), __SQLPANIC(ESqlPanicInternalError));
172 return iBuf->SetField(iIndex, ESqlInt64, &aValue, sizeof(TInt64));
176 Initializes current flat buffer field with a real value.
178 @param aValue A real value to be set as a field content
180 @return KErrNone, The operation has completed successfully;
181 KErrNoMemory, Out of memory condition has occured.
183 inline TInt TSqlBufWIterator::SetReal(TReal aValue)
185 __ASSERT_DEBUG(iBuf != NULL, __SQLPANIC(ESqlPanicInternalError));
186 __ASSERT_DEBUG((TUint)iIndex < iBuf->Count(), __SQLPANIC(ESqlPanicInternalError));
187 return iBuf->SetField(iIndex, ESqlReal, &aValue, sizeof(TReal));
191 Initializes current flat buffer field with a block of binary data.
193 @param aValue An 8 bit descriptor pointing to the block of data to be set as a field content.
195 @return KErrNone, The operation has completed successfully;
196 KErrNoMemory, Out of memory condition has occured.
198 inline TInt TSqlBufWIterator::SetBinary(const TDesC8& aValue)
200 __ASSERT_DEBUG(iBuf != NULL, __SQLPANIC(ESqlPanicInternalError));
201 __ASSERT_DEBUG((TUint)iIndex < iBuf->Count(), __SQLPANIC(ESqlPanicInternalError));
202 return iBuf->SetField(iIndex, ESqlBinary, aValue.Ptr(), aValue.Length());
206 Initializes current flat buffer field with a block of 16 bit text.
208 @param aValue A 16 bit descriptor pointing to the block of text to be set as a field content.
210 @return KErrNone, The operation has completed successfully;
211 KErrNoMemory, Out of memory condition has occured.
213 inline TInt TSqlBufWIterator::SetText(const TDesC16& aValue)
215 __ASSERT_DEBUG(iBuf != NULL, __SQLPANIC(ESqlPanicInternalError));
216 __ASSERT_DEBUG((TUint)iIndex < iBuf->Count(), __SQLPANIC(ESqlPanicInternalError));
217 return iBuf->SetField(iIndex, ESqlText, aValue.Ptr(), aValue.Length() * sizeof(TUint16));
222 Initializes current flat buffer field with a zeroblob of the specified size.
224 @param aSize The size, in bytes, of the zeroblob to be set as the field content.
226 @return KErrNone, The operation has completed successfully;
227 KErrNoMemory, Out of memory condition has occured.
229 inline TInt TSqlBufWIterator::SetZeroBlob(TInt aSize)
231 __ASSERT_DEBUG(iBuf != NULL, __SQLPANIC(ESqlPanicInternalError));
232 __ASSERT_DEBUG((TUint)iIndex < iBuf->Count(), __SQLPANIC(ESqlPanicInternalError));
233 return iBuf->SetField(iIndex, ESqlZeroBlob, &aSize, sizeof(TInt));