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 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include "UT_STD.H"
|
sl@0
|
17 |
|
sl@0
|
18 |
// Class HDbColumnMap
|
sl@0
|
19 |
|
sl@0
|
20 |
class HDbColumnMap
|
sl@0
|
21 |
{
|
sl@0
|
22 |
public:
|
sl@0
|
23 |
static HDbColumnMap* NewL(const RSqlColumnList& aSelect,const HDbColumnSet& aColumns);
|
sl@0
|
24 |
inline const TDbColNo& operator[](TDbColNo aCol) const
|
sl@0
|
25 |
{__ASSERT(aCol>0&&aCol<=iCount);return iMap[aCol-1];}
|
sl@0
|
26 |
inline TInt Count() const
|
sl@0
|
27 |
{return iCount;}
|
sl@0
|
28 |
private:
|
sl@0
|
29 |
TInt iCount;
|
sl@0
|
30 |
TDbColNo iMap[1]; // at least one
|
sl@0
|
31 |
};
|
sl@0
|
32 |
|
sl@0
|
33 |
HDbColumnMap* HDbColumnMap::NewL(const RSqlColumnList& aSelect,const HDbColumnSet& aColumns)
|
sl@0
|
34 |
{
|
sl@0
|
35 |
TInt count=aSelect.Count();
|
sl@0
|
36 |
HDbColumnMap* self=(HDbColumnMap*)User::AllocLC(_FOFF(HDbColumnMap,iMap[count]));
|
sl@0
|
37 |
self->iCount=count;
|
sl@0
|
38 |
TDbColNo* pCol=&self->iMap[0];
|
sl@0
|
39 |
for (TInt ii=0;ii<count;++ii)
|
sl@0
|
40 |
{
|
sl@0
|
41 |
TDbColNo col=aColumns.ColNoL(aSelect[ii]);
|
sl@0
|
42 |
if (col==KDbNullColNo)
|
sl@0
|
43 |
__LEAVE(KErrNotFound);
|
sl@0
|
44 |
*pCol++=col;
|
sl@0
|
45 |
}
|
sl@0
|
46 |
CleanupStack::Pop();
|
sl@0
|
47 |
return self;
|
sl@0
|
48 |
}
|
sl@0
|
49 |
|
sl@0
|
50 |
// Class CDbProjectStage
|
sl@0
|
51 |
|
sl@0
|
52 |
CDbProjectStage::CDbProjectStage()
|
sl@0
|
53 |
{}
|
sl@0
|
54 |
|
sl@0
|
55 |
CDbProjectStage::~CDbProjectStage()
|
sl@0
|
56 |
{
|
sl@0
|
57 |
delete iMap;
|
sl@0
|
58 |
}
|
sl@0
|
59 |
|
sl@0
|
60 |
void CDbProjectStage::ConstructL(const RSqlColumnList& aSelect,const HDbColumnSet& aColumns)
|
sl@0
|
61 |
//
|
sl@0
|
62 |
// Build the column map and allocate a row buffer
|
sl@0
|
63 |
//
|
sl@0
|
64 |
{
|
sl@0
|
65 |
iMap=HDbColumnMap::NewL(aSelect,aColumns);
|
sl@0
|
66 |
}
|
sl@0
|
67 |
|
sl@0
|
68 |
RDbRow* CDbProjectStage::RowBuffer()
|
sl@0
|
69 |
//
|
sl@0
|
70 |
// whole-row access cannot be done through a projection
|
sl@0
|
71 |
//
|
sl@0
|
72 |
{
|
sl@0
|
73 |
return 0;
|
sl@0
|
74 |
}
|
sl@0
|
75 |
|
sl@0
|
76 |
TDbColumn CDbProjectStage::Column(TDbColNo aColNo)
|
sl@0
|
77 |
{
|
sl@0
|
78 |
return CDbDataStage::Column((*iMap)[aColNo]);
|
sl@0
|
79 |
}
|
sl@0
|
80 |
|
sl@0
|
81 |
TInt CDbProjectStage::ColumnCount() const
|
sl@0
|
82 |
{
|
sl@0
|
83 |
return iMap->Count();
|
sl@0
|
84 |
}
|
sl@0
|
85 |
|
sl@0
|
86 |
const TDbColumnDef& CDbProjectStage::ColumnDef(TDbColNo aCol) const
|
sl@0
|
87 |
{
|
sl@0
|
88 |
return CDbDataStage::ColumnDef((*iMap)[aCol]);
|
sl@0
|
89 |
}
|