forked from zhifac/xmlaconnect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrowset.cpp
155 lines (124 loc) · 4.29 KB
/
rowset.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/*
ODBO provider for XMLA data stores
Copyright (C) 2014 Yalos Software Labs
http://www.arquery.com
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
@description
rowset methods and the instantiation of the data_source
*/
#include "stdafx.h"
#include "rowset.h"
#include "data_source.h"
#include "XMLAMamespaces.nsmap"
HRESULT rowset::Execute(DBPARAMS * /*pParams*/, DBROWCOUNT* pcRowsAffected)
{
IExtendCommand* pIExtCommand = NULL;
HRESULT hr = m_spUnkSite->QueryInterface( __uuidof( IExtendCommand ), ( void**) &pIExtCommand );
if FAILED( hr ) return hr;
pIExtCommand->GetConnectionHandler( (void**)&mConnectionHandler );
pIExtCommand->Release();
if ( (NULL != pcRowsAffected) && (NULL != mConnectionHandler) )
{
*pcRowsAffected = mConnectionHandler->row_count();
}
return S_OK;
}
STDMETHODIMP rowset::GetCellData(
HACCESSOR hAccessor,
DBORDINAL ulStartCell,
DBORDINAL ulEndCell,
VOID *pData )
{
ATLBINDINGS* bind = ( ATLBINDINGS* ) hAccessor;
DBSTATUS status;
DBLENGTH rowSize = GetRowSize(hAccessor);
HRESULT result = S_OK;
for ( DBORDINAL crtCell = ulStartCell; crtCell <= ulEndCell; crtCell++ )
{
for (DBCOUNTITEM i = 0; i < bind->cBindings; i++ )
{
status = DBSTATUS_E_CANTCONVERTVALUE;
if ( DBPART_LENGTH == ( DBPART_LENGTH & bind->pBindings[i].dwPart ) )
{
*(( DWORD* )((( char* ) pData ) + bind->pBindings[i].obLength + rowSize*(crtCell - ulStartCell) ) ) = sizeof(VARIANT*);
}
if ( DBPART_VALUE == ( DBPART_VALUE & bind->pBindings[i].dwPart ) )
{
if ( DBTYPE_VARIANT == bind->pBindings[i].wType )
{
switch ( bind->pBindings[i].iOrdinal )
{
case row_data::POSITION_VALUE:
try
{
VARIANT cell_data = mConnectionHandler->at( crtCell );
*(( VARIANT* )((( char* ) pData ) + bind->pBindings[i].obValue + rowSize*(crtCell - ulStartCell) ) ) = cell_data;
status = DBSTATUS_S_OK;
}
catch( connection_handler::out_of_bound& )
{
status = DB_S_ENDOFROWSET;
result = DB_S_ENDOFROWSET;
}
break;
case row_data::CELL_ORDINAL:
(( VARIANT* )((( char* ) pData ) + bind->pBindings[i].obValue + rowSize*(crtCell - ulStartCell) ) )->vt = VT_I4;
(( VARIANT* )((( char* ) pData ) + bind->pBindings[i].obValue + rowSize*(crtCell - ulStartCell) ) )->ulVal = (ULONG) crtCell;
status = DBSTATUS_S_OK;
break;
default:
status = DBSTATUS_E_BADACCESSOR;
result = DBSTATUS_E_BADACCESSOR;
break;
}
}
}
else
{
status = DBSTATUS_S_OK;
}
if ( DBPART_STATUS == ( DBPART_STATUS & bind->pBindings[i].dwPart ) )
{
*(( DBSTATUS* )((( char* ) pData ) + bind->pBindings[i].obStatus + rowSize*(crtCell - ulStartCell) ) ) = status;
}
if ( DB_S_ENDOFROWSET == result ) {
break;
}
}
}
return result;
}
STDMETHODIMP rowset::GetAxisInfo( DBCOUNTITEM *pcAxes, MDAXISINFO **prgAxisInfo )
{
mConnectionHandler->get_axis_info( pcAxes, prgAxisInfo );
return S_OK;
}
STDMETHODIMP rowset::FreeAxisInfo( DBCOUNTITEM cAxes, MDAXISINFO *rgAxisInfo )
{
mConnectionHandler->free_axis_info( cAxes, rgAxisInfo );
return S_OK;
}
STDMETHODIMP rowset::GetAxisRowset (
IUnknown *pUnkOuter,
DBCOUNTITEM iAxis,
REFIID riid,
ULONG cPropertySets,
DBPROPSET rgPropertySets[],
IUnknown **ppRowset )
{
IExtendCommand* pIExtCommand = NULL;
HRESULT hr = m_spUnkSite->QueryInterface( __uuidof( IExtendCommand ), ( void**) &pIExtCommand );
if FAILED( hr ) return hr;
hr = pIExtCommand->GetAxisRowset( pUnkOuter, riid, NULL, (DBROWCOUNT*) &iAxis, ppRowset );
pIExtCommand->Release();
return hr;
}