summaryrefslogtreecommitdiff
path: root/mysqlc/source/mysqlc_resultset.hxx
blob: 9a03ebe0cc6812c1cefa99c3fd1aa050dd22211b (plain)
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
/*************************************************************************
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2008 by Sun Microsystems, Inc.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: mysqlc_resultset.hxx,v $
*
* $Revision: 1.1.2.4 $
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org 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 Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org.  If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
************************************************************************/

#ifndef MYSQLC_SRESULTSET_HXX
#define MYSQLC_SRESULTSET_HXX

#include "mysqlc_preparedstatement.hxx"
#include "mysqlc_statement.hxx"
#include "mysqlc_subcomponent.hxx"

#include <com/sun/star/sdbc/XCloseable.hpp>
#include <com/sun/star/sdbc/XColumnLocate.hpp>
#include <com/sun/star/sdbc/XResultSet.hpp>
#include <com/sun/star/sdbc/XResultSetMetaDataSupplier.hpp>
#include <com/sun/star/sdbc/XResultSetUpdate.hpp>
#include <com/sun/star/sdbc/XRow.hpp>
#include <com/sun/star/sdbc/XRowUpdate.hpp>
#include <com/sun/star/sdbc/XWarningsSupplier.hpp>
#include <com/sun/star/sdbcx/XDeleteRows.hpp>
#include <com/sun/star/sdbcx/XRowLocate.hpp>
#include <com/sun/star/util/XCancellable.hpp>

#include <cppuhelper/compbase12.hxx>


namespace connectivity
{
    namespace mysqlc
    {
        using ::rtl::OUString;
        using ::com::sun::star::sdbc::SQLException;
        using ::com::sun::star::uno::RuntimeException;
        using ::com::sun::star::uno::Any;
        typedef ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream > my_XInputStreamRef;
        typedef my_XNameAccessRef my_XNameAccessRef;

        /*
        **  OResultSet
        */
        typedef ::cppu::WeakComponentImplHelper12<  ::com::sun::star::sdbc::XResultSet,
                                                    ::com::sun::star::sdbc::XRow,
                                                    ::com::sun::star::sdbc::XResultSetMetaDataSupplier,
                                                    ::com::sun::star::util::XCancellable,
                                                    ::com::sun::star::sdbc::XWarningsSupplier,
                                                    ::com::sun::star::sdbc::XResultSetUpdate,
                                                    ::com::sun::star::sdbc::XRowUpdate,
                                                    ::com::sun::star::sdbcx::XRowLocate,
                                                    ::com::sun::star::sdbcx::XDeleteRows,
                                                    ::com::sun::star::sdbc::XCloseable,
                                                    ::com::sun::star::sdbc::XColumnLocate,
                                                    ::com::sun::star::lang::XServiceInfo> OResultSet_BASE;

        class OResultSet :  public  OBase_Mutex,
                            public  OResultSet_BASE,
                            public  ::cppu::OPropertySetHelper,
                            public  OPropertyArrayUsageHelper<OResultSet>
        {
        protected:
            ::com::sun::star::uno::WeakReferenceHelper  m_aStatement;
            ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XResultSetMetaData> m_xMetaData;
            sql::ResultSet      *m_result;
            unsigned int        fieldCount;
            rtl_TextEncoding    m_encoding;
            // OPropertyArrayUsageHelper
            ::cppu::IPropertyArrayHelper* createArrayHelper() const;
            // OPropertySetHelper
            ::cppu::IPropertyArrayHelper & SAL_CALL getInfoHelper();

            sal_Bool SAL_CALL convertFastPropertyValue(Any & rConvertedValue, Any & rOldValue, sal_Int32 nHandle, const Any& rValue)
                        throw (::com::sun::star::lang::IllegalArgumentException);

            void SAL_CALL setFastPropertyValue_NoBroadcast(sal_Int32 nHandle, const Any& rValue)
                        throw (::com::sun::star::uno::Exception);

            void SAL_CALL getFastPropertyValue(Any& rValue, sal_Int32 nHandle) const;

            // you can't delete objects of this type
            virtual ~OResultSet();

        public:
            DECLARE_SERVICE_INFO();

            OResultSet( OCommonStatement* pStmt, sql::ResultSet *result, rtl_TextEncoding _encoding );

            ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > operator *()
            {
                return ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >(*(OResultSet_BASE*)this);
            }

            // ::cppu::OComponentHelper
            void SAL_CALL disposing();

            // XInterface
            Any SAL_CALL queryInterface(const ::com::sun::star::uno::Type & rType)
                                                                        throw(RuntimeException);

            void SAL_CALL acquire()                                     throw();

            void SAL_CALL release()                                     throw();

            //XTypeProvider
            ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes()
                                                                        throw(RuntimeException);

            // XPropertySet
            ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo()
                                                                        throw(RuntimeException);

            // XResultSet
            sal_Bool SAL_CALL next()                                    throw(SQLException, RuntimeException);

            sal_Bool SAL_CALL isBeforeFirst()                           throw(SQLException, RuntimeException);

            sal_Bool SAL_CALL isAfterLast()                             throw(SQLException, RuntimeException);

            sal_Bool SAL_CALL isFirst()                                 throw(SQLException, RuntimeException);

            sal_Bool SAL_CALL isLast()                                  throw(SQLException, RuntimeException);

            void SAL_CALL beforeFirst()                                 throw(SQLException, RuntimeException);

            void SAL_CALL afterLast()                                   throw(SQLException, RuntimeException);

            sal_Bool SAL_CALL first()                                   throw(SQLException, RuntimeException);

            sal_Bool SAL_CALL last()                                    throw(SQLException, RuntimeException);

            sal_Int32 SAL_CALL getRow()                                 throw(SQLException, RuntimeException);

            sal_Bool SAL_CALL absolute(sal_Int32 row)                   throw(SQLException, RuntimeException);

            sal_Bool SAL_CALL relative(sal_Int32 rows)                  throw(SQLException, RuntimeException);

            sal_Bool SAL_CALL previous()                                throw(SQLException, RuntimeException);

            void SAL_CALL refreshRow()                                  throw(SQLException, RuntimeException);

            sal_Bool SAL_CALL rowUpdated()                              throw(SQLException, RuntimeException);

            sal_Bool SAL_CALL rowInserted()                             throw(SQLException, RuntimeException);

            sal_Bool SAL_CALL rowDeleted()                              throw(SQLException, RuntimeException);

            ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL getStatement()
                                                                        throw(SQLException, RuntimeException);
            // XRow
            sal_Bool SAL_CALL wasNull() throw(SQLException, RuntimeException);

            OUString SAL_CALL getString(sal_Int32 column)       throw(SQLException, RuntimeException);

            sal_Bool SAL_CALL getBoolean(sal_Int32 column)              throw(SQLException, RuntimeException);

            sal_Int8 SAL_CALL getByte(sal_Int32 column)                 throw(SQLException, RuntimeException);

            sal_Int16 SAL_CALL getShort(sal_Int32 column)               throw(SQLException, RuntimeException);

            sal_Int32 SAL_CALL getInt(sal_Int32 column)                 throw(SQLException, RuntimeException);

            sal_Int64 SAL_CALL getLong(sal_Int32 column)                throw(SQLException, RuntimeException);

            float SAL_CALL getFloat(sal_Int32 column)                   throw(SQLException, RuntimeException);

            double SAL_CALL getDouble(sal_Int32 column)                 throw(SQLException, RuntimeException);

            ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getBytes(sal_Int32 column)
                                                                        throw(SQLException, RuntimeException);

            ::com::sun::star::util::Date SAL_CALL getDate(sal_Int32 column)
                                                                        throw(SQLException, RuntimeException);

            ::com::sun::star::util::Time SAL_CALL getTime(sal_Int32 column)
                                                                        throw(SQLException, RuntimeException);

            ::com::sun::star::util::DateTime SAL_CALL getTimestamp(sal_Int32 column)
                                                                        throw(SQLException, RuntimeException);

            my_XInputStreamRef SAL_CALL getBinaryStream(sal_Int32 column)
                                                                        throw(SQLException, RuntimeException);

            my_XInputStreamRef SAL_CALL getCharacterStream(sal_Int32 column)
                                                                        throw(SQLException, RuntimeException);

            Any SAL_CALL getObject(sal_Int32 column, const my_XNameAccessRef& typeMap)
                                                                        throw(SQLException, RuntimeException);

            ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XRef > SAL_CALL getRef(sal_Int32 column)
                                                                        throw(SQLException, RuntimeException);

            ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XBlob > SAL_CALL getBlob(sal_Int32 column)
                                                                        throw(SQLException, RuntimeException);

            ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XClob > SAL_CALL getClob(sal_Int32 column)
                                                                        throw(SQLException, RuntimeException);

            ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XArray > SAL_CALL getArray(sal_Int32 column)
                                                                        throw(SQLException, RuntimeException);

            // XResultSetMetaDataSupplier
            ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XResultSetMetaData > SAL_CALL getMetaData()
                                                                        throw(SQLException, RuntimeException);

            // XCancellable
            void SAL_CALL cancel()                                      throw(RuntimeException);

            // XCloseable
            void SAL_CALL close()                                       throw(SQLException, RuntimeException);

            // XWarningsSupplier
            Any SAL_CALL getWarnings()                                  throw(SQLException, RuntimeException);

            void SAL_CALL clearWarnings()                               throw(SQLException, RuntimeException);

            // XResultSetUpdate
            void SAL_CALL insertRow()                                   throw(SQLException, RuntimeException);

            void SAL_CALL updateRow()                                   throw(SQLException, RuntimeException);

            void SAL_CALL deleteRow()                                   throw(SQLException, RuntimeException);

            void SAL_CALL cancelRowUpdates()                            throw(SQLException, RuntimeException);

            void SAL_CALL moveToInsertRow()                             throw(SQLException, RuntimeException);

            void SAL_CALL moveToCurrentRow()                            throw(SQLException, RuntimeException);

            // XRowUpdate
            void SAL_CALL updateNull(sal_Int32 column)                  throw(SQLException, RuntimeException);

            void SAL_CALL updateBoolean(sal_Int32 column, sal_Bool x)   throw(SQLException, RuntimeException);

            void SAL_CALL updateByte(sal_Int32 column, sal_Int8 x)      throw(SQLException, RuntimeException);

            void SAL_CALL updateShort(sal_Int32 column, sal_Int16 x)    throw(SQLException, RuntimeException);

            void SAL_CALL updateInt(sal_Int32 column, sal_Int32 x)      throw(SQLException, RuntimeException);

            void SAL_CALL updateLong(sal_Int32 column, sal_Int64 x)     throw(SQLException, RuntimeException);

            void SAL_CALL updateFloat(sal_Int32 column, float x)        throw(SQLException, RuntimeException);

            void SAL_CALL updateDouble(sal_Int32 column, double x)      throw(SQLException, RuntimeException);

            void SAL_CALL updateString(sal_Int32 column, const OUString& x)
                                                                        throw(SQLException, RuntimeException);

            void SAL_CALL updateBytes(sal_Int32 column, const ::com::sun::star::uno::Sequence< sal_Int8 >& x)
                                                                        throw(SQLException, RuntimeException);

            void SAL_CALL updateDate(sal_Int32 column, const ::com::sun::star::util::Date& x)
                                                                        throw(SQLException, RuntimeException);

            void SAL_CALL updateTime(sal_Int32 column, const ::com::sun::star::util::Time& x)
                                                                        throw(SQLException, RuntimeException);

            void SAL_CALL updateTimestamp(sal_Int32 column, const ::com::sun::star::util::DateTime& x)
                                                                        throw(SQLException, RuntimeException);

            void SAL_CALL updateBinaryStream(sal_Int32 column, const my_XInputStreamRef& x, sal_Int32 length)
                                                                        throw(SQLException, RuntimeException);

            void SAL_CALL updateCharacterStream(sal_Int32 column, const my_XInputStreamRef& x, sal_Int32 length)
                                                                        throw(SQLException, RuntimeException);

            void SAL_CALL updateObject(sal_Int32 column, const Any& x)
                                                                        throw(SQLException, RuntimeException);

            void SAL_CALL updateNumericObject(sal_Int32 column, const Any& x, sal_Int32 scale)
                                                                        throw(SQLException, RuntimeException);

            // XColumnLocate
            sal_Int32 SAL_CALL findColumn(const OUString& columnName)
                                                                        throw(SQLException, RuntimeException);

            // XRowLocate
            Any SAL_CALL getBookmark()                                  throw(SQLException, RuntimeException);

            sal_Bool SAL_CALL moveToBookmark(const Any& bookmark)
                                                                        throw(SQLException, RuntimeException);

            sal_Bool SAL_CALL moveRelativeToBookmark(const Any& bookmark, sal_Int32 rows)
                                                                        throw(SQLException, RuntimeException);

            sal_Int32 SAL_CALL compareBookmarks(const Any& first, const Any& second)
                                                                        throw(SQLException, RuntimeException);

            sal_Bool SAL_CALL hasOrderedBookmarks()                     throw(SQLException, RuntimeException);

            sal_Int32 SAL_CALL hashBookmark(const Any& bookmark)
                                                                        throw(SQLException, RuntimeException);

            // XDeleteRows
            ::com::sun::star::uno::Sequence< sal_Int32 > SAL_CALL deleteRows(const ::com::sun::star::uno::Sequence< Any >& rows)
                                                                        throw(SQLException, RuntimeException);

            void checkColumnIndex(sal_Int32 index) throw(SQLException, RuntimeException);

        private:
            using ::cppu::OPropertySetHelper::getFastPropertyValue;
        };
    } /* mysqlc */
} /* connectivity */
#endif // CONNECTIVITY_SRESULTSET_HXX

/*
 * Local variables:
 * tab-width: 4
 * c-basic-offset: 4
 * End:
 * vim600: noet sw=4 ts=4 fdm=marker
 * vim<600: noet sw=4 ts=4
 */