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 |
#ifndef __SQLBUFITERATOR_H__
|
sl@0
|
17 |
#define __SQLBUFITERATOR_H__
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <sqldb.h> //TSqlColumnType
|
sl@0
|
20 |
#include "SqlBufFlat.h" //RSqlBufFlat
|
sl@0
|
21 |
#include "SqlAssert.h"
|
sl@0
|
22 |
|
sl@0
|
23 |
//Forward declarations
|
sl@0
|
24 |
class MStreamBuf;
|
sl@0
|
25 |
|
sl@0
|
26 |
/**
|
sl@0
|
27 |
ZeroBlob column type. Used internally.
|
sl@0
|
28 |
@internalComponent
|
sl@0
|
29 |
*/
|
sl@0
|
30 |
enum {ESqlZeroBlob = ESqlBinary + 1};
|
sl@0
|
31 |
|
sl@0
|
32 |
inline TBool IsSequenceSqlType(TInt aType)
|
sl@0
|
33 |
{
|
sl@0
|
34 |
return aType == ESqlNull || aType == ESqlText || aType == ESqlBinary;
|
sl@0
|
35 |
}
|
sl@0
|
36 |
|
sl@0
|
37 |
//////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
38 |
///////////////////// Column type conversion table /////////////////////////////////
|
sl@0
|
39 |
//////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
40 |
//|--------------------------------------------------------------------------------|//
|
sl@0
|
41 |
//|Column type | ColumnInt() ColumnInt64() ColumnReal() ColumnText() ColumnBinary()|//
|
sl@0
|
42 |
//|--------------------------------------------------------------------------------|//
|
sl@0
|
43 |
//|Null........|.0...........0.............0.0..........KNullDesC....KNullDesC8....|//
|
sl@0
|
44 |
//|Int.........|.Int.........Int64.........Real.........KNullDesC....KNullDesC8....|//
|
sl@0
|
45 |
//|Int64.......|.clamp.......Int64.........Real.........KNullDesC....KNullDesC8....|//
|
sl@0
|
46 |
//|Real........|.round.......round.........Real.........KNullDesC....KNullDesC8....|//
|
sl@0
|
47 |
//|Text........|.0...........0.............0.0..........Text.........KNullDesC8....|//
|
sl@0
|
48 |
//|Binary......|.0...........0.............0.0..........KNullDesC....Binary........|//
|
sl@0
|
49 |
//|--------------------------------------------------------------------------------|//
|
sl@0
|
50 |
//- "clamp": return KMinTInt or KMaxTInt if the value is outside the range that can //
|
sl@0
|
51 |
// be represented by the type returned by the accessor function. //
|
sl@0
|
52 |
//- "round": the floating point value will be rounded up to the nearest integer. //
|
sl@0
|
53 |
// If the result is outside the range that can be represented by the type returned //
|
sl@0
|
54 |
// by the accessor function, then it will be clamped. //
|
sl@0
|
55 |
//////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
56 |
|
sl@0
|
57 |
/**
|
sl@0
|
58 |
TSqlBufRIterator iterator gives read-only access to the flat buffer content (RSqlBufFlat class).
|
sl@0
|
59 |
For convenience TSqlBufRIterator can represent the flat buffer fields content as one of the basic
|
sl@0
|
60 |
SQL types: TInt, TInt64, TReal, 16-bit text, 8-bit binary block.
|
sl@0
|
61 |
The text and binary fields may be accessed also as a byte stream.
|
sl@0
|
62 |
|
sl@0
|
63 |
@see RSqlBufFlat
|
sl@0
|
64 |
|
sl@0
|
65 |
@internalComponent
|
sl@0
|
66 |
*/
|
sl@0
|
67 |
class TSqlBufRIterator
|
sl@0
|
68 |
{
|
sl@0
|
69 |
public:
|
sl@0
|
70 |
inline void Set(const RSqlBufFlat& aBuf);
|
sl@0
|
71 |
inline TBool Next();
|
sl@0
|
72 |
inline void MoveTo(TInt aIndex);
|
sl@0
|
73 |
|
sl@0
|
74 |
inline TBool IsPresent() const;
|
sl@0
|
75 |
inline TInt Type() const;
|
sl@0
|
76 |
inline TInt Size() const;
|
sl@0
|
77 |
|
sl@0
|
78 |
TInt Int() const;
|
sl@0
|
79 |
TInt64 Int64() const;
|
sl@0
|
80 |
TReal Real() const;
|
sl@0
|
81 |
TPtrC8 Binary() const;
|
sl@0
|
82 |
TPtrC16 Text() const;
|
sl@0
|
83 |
|
sl@0
|
84 |
MStreamBuf* StreamL() const;
|
sl@0
|
85 |
|
sl@0
|
86 |
private:
|
sl@0
|
87 |
inline TInt AsInt() const;
|
sl@0
|
88 |
inline TInt64 AsInt64() const;
|
sl@0
|
89 |
inline TReal AsReal() const;
|
sl@0
|
90 |
|
sl@0
|
91 |
private:
|
sl@0
|
92 |
const RSqlBufFlat::TCell* iCurrent;
|
sl@0
|
93 |
const RSqlBufFlat::TCell* iBegin;
|
sl@0
|
94 |
const RSqlBufFlat::TCell* iEnd;
|
sl@0
|
95 |
|
sl@0
|
96 |
};
|
sl@0
|
97 |
|
sl@0
|
98 |
/**
|
sl@0
|
99 |
TSqlBufWIterator iterator gives write-only access to the flat buffer content (RSqlBufFlat class).
|
sl@0
|
100 |
For convenience, with TSqlBufWIterator flat buffer fields can be set as:
|
sl@0
|
101 |
TInt, TInt64, TReal, 16-bit text, 8-bit binary block.
|
sl@0
|
102 |
|
sl@0
|
103 |
@see RSqlBufFlat
|
sl@0
|
104 |
|
sl@0
|
105 |
@internalComponent
|
sl@0
|
106 |
*/
|
sl@0
|
107 |
class TSqlBufWIterator
|
sl@0
|
108 |
{
|
sl@0
|
109 |
public:
|
sl@0
|
110 |
inline void Set(RSqlBufFlat& aBuf);
|
sl@0
|
111 |
inline TBool Next();
|
sl@0
|
112 |
inline void MoveTo(TInt aIndex);
|
sl@0
|
113 |
|
sl@0
|
114 |
inline void SetNull();
|
sl@0
|
115 |
inline void SetAsNotPresent(TInt aType, TInt aLength);
|
sl@0
|
116 |
inline TInt SetInt(TInt aValue);
|
sl@0
|
117 |
inline TInt SetInt64(TInt64 aValue);
|
sl@0
|
118 |
inline TInt SetReal(TReal aValue);
|
sl@0
|
119 |
inline TInt SetBinary(const TDesC8& aValue);
|
sl@0
|
120 |
inline TInt SetText(const TDesC16& aValue);
|
sl@0
|
121 |
inline TInt SetZeroBlob(TInt aSize);
|
sl@0
|
122 |
|
sl@0
|
123 |
private:
|
sl@0
|
124 |
RSqlBufFlat* iBuf;
|
sl@0
|
125 |
TInt iIndex;
|
sl@0
|
126 |
|
sl@0
|
127 |
};
|
sl@0
|
128 |
|
sl@0
|
129 |
#include "SqlBufIterator.inl"
|
sl@0
|
130 |
|
sl@0
|
131 |
#endif //__SQLBUFITERATOR_H__
|