From 940b4d1848e8c70ab7642901a68594e8016caffc Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 27 Apr 2024 18:51:28 +0200 Subject: Adding upstream version 1:7.0.4. Signed-off-by: Daniel Baumann --- .../drivers/mysqlc/mysqlc_prepared_resultset.hxx | 257 +++++++++++++++++++++ 1 file changed, 257 insertions(+) create mode 100644 connectivity/source/drivers/mysqlc/mysqlc_prepared_resultset.hxx (limited to 'connectivity/source/drivers/mysqlc/mysqlc_prepared_resultset.hxx') diff --git a/connectivity/source/drivers/mysqlc/mysqlc_prepared_resultset.hxx b/connectivity/source/drivers/mysqlc/mysqlc_prepared_resultset.hxx new file mode 100644 index 000000000..4ff64d5b4 --- /dev/null +++ b/connectivity/source/drivers/mysqlc/mysqlc_prepared_resultset.hxx @@ -0,0 +1,257 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (the "License"); you may not use this file + * except in compliance with the License. You may obtain a copy of + * the License at http://www.apache.org/licenses/LICENSE-2.0 . + */ + +#ifndef INCLUDED_MYSQLC_SOURCE_MYSQLC_RESULTSET_HXX +#define INCLUDED_MYSQLC_SOURCE_MYSQLC_RESULTSET_HXX + +#include "mysqlc_preparedstatement.hxx" +#include "mysqlc_statement.hxx" +#include "mysqlc_subcomponent.hxx" +#include "mysqlc_connection.hxx" + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include + +namespace connectivity +{ +namespace mysqlc +{ +using ::com::sun::star::sdbc::SQLException; +using ::com::sun::star::uno::Any; +using ::com::sun::star::uno::RuntimeException; + +typedef ::cppu::WeakComponentImplHelper12< + css::sdbc::XResultSet, css::sdbc::XRow, css::sdbc::XResultSetMetaDataSupplier, + css::util::XCancellable, css::sdbc::XWarningsSupplier, css::sdbc::XResultSetUpdate, + css::sdbc::XRowUpdate, css::sdbcx::XRowLocate, css::sdbcx::XDeleteRows, css::sdbc::XCloseable, + css::sdbc::XColumnLocate, css::lang::XServiceInfo> + OPreparedResultSet_BASE; + +class OPreparedResultSet final : public OBase_Mutex, + public OPreparedResultSet_BASE, + public ::cppu::OPropertySetHelper, + public OPropertyArrayUsageHelper +{ + OConnection& m_rConnection; + css::uno::WeakReferenceHelper m_aStatement; + css::uno::Reference m_xMetaData; + + // non-owning pointers + MYSQL_RES* m_pResult; + MYSQL_STMT* m_pStmt; + MYSQL_FIELD* m_aFields; + + rtl_TextEncoding m_encoding; + sal_Int32 m_nCurrentRow = 0; + sal_Int32 m_nColumnCount; + sal_Int32 m_nRowCount; + + // Use c style arrays, because we have to work with pointers + // on these. + std::unique_ptr m_aData; + std::unique_ptr m_aMetaData; + + bool m_bWasNull = false; + + // OPropertyArrayUsageHelper + ::cppu::IPropertyArrayHelper* createArrayHelper() const override; + // OPropertySetHelper + ::cppu::IPropertyArrayHelper& SAL_CALL getInfoHelper() override; + + sal_Bool SAL_CALL convertFastPropertyValue(Any& rConvertedValue, Any& rOldValue, + sal_Int32 nHandle, const Any& rValue) override; + + void SAL_CALL setFastPropertyValue_NoBroadcast(sal_Int32 nHandle, const Any& rValue) override; + + void SAL_CALL getFastPropertyValue(Any& rValue, sal_Int32 nHandle) const override; + + template T safelyRetrieveValue(const sal_Int32 nColumnIndex); + template T retrieveValue(const sal_Int32 nColumnIndex); + connectivity::ORowSetValue getRowSetValue(sal_Int32 nColumnIndex); + + bool fetchResult(); + + // you can't delete objects of this type + virtual ~OPreparedResultSet() override = default; + +public: + virtual OUString SAL_CALL getImplementationName() override; + + virtual sal_Bool SAL_CALL supportsService(OUString const& ServiceName) override; + + virtual css::uno::Sequence SAL_CALL getSupportedServiceNames() override; + + OPreparedResultSet(OConnection& rConn, OPreparedStatement* pStmt, MYSQL_STMT* pMyStmt); + + // ::cppu::OComponentHelper + void SAL_CALL disposing() override; + + // XInterface + Any SAL_CALL queryInterface(const css::uno::Type& rType) override; + + void SAL_CALL acquire() throw() override; + void SAL_CALL release() throw() override; + + //XTypeProvider + css::uno::Sequence SAL_CALL getTypes() override; + + // XPropertySet + css::uno::Reference SAL_CALL getPropertySetInfo() override; + + // XResultSet + sal_Bool SAL_CALL next() override; + sal_Bool SAL_CALL isBeforeFirst() override; + sal_Bool SAL_CALL isAfterLast() override; + sal_Bool SAL_CALL isFirst() override; + sal_Bool SAL_CALL isLast() override; + + void SAL_CALL beforeFirst() override; + void SAL_CALL afterLast() override; + + sal_Bool SAL_CALL first() override; + sal_Bool SAL_CALL last() override; + + sal_Int32 SAL_CALL getRow() override; + + sal_Bool SAL_CALL absolute(sal_Int32 row) override; + sal_Bool SAL_CALL relative(sal_Int32 rows) override; + sal_Bool SAL_CALL previous() override; + + void SAL_CALL refreshRow() override; + + sal_Bool SAL_CALL rowUpdated() override; + sal_Bool SAL_CALL rowInserted() override; + sal_Bool SAL_CALL rowDeleted() override; + + css::uno::Reference SAL_CALL getStatement() override; + // XRow + sal_Bool SAL_CALL wasNull() override; + + OUString SAL_CALL getString(sal_Int32 column) override; + + sal_Bool SAL_CALL getBoolean(sal_Int32 column) override; + sal_Int8 SAL_CALL getByte(sal_Int32 column) override; + sal_Int16 SAL_CALL getShort(sal_Int32 column) override; + sal_Int32 SAL_CALL getInt(sal_Int32 column) override; + sal_Int64 SAL_CALL getLong(sal_Int32 column) override; + + float SAL_CALL getFloat(sal_Int32 column) override; + double SAL_CALL getDouble(sal_Int32 column) override; + + css::uno::Sequence SAL_CALL getBytes(sal_Int32 column) override; + css::util::Date SAL_CALL getDate(sal_Int32 column) override; + css::util::Time SAL_CALL getTime(sal_Int32 column) override; + css::util::DateTime SAL_CALL getTimestamp(sal_Int32 column) override; + + css::uno::Reference SAL_CALL getBinaryStream(sal_Int32 column) override; + css::uno::Reference + SAL_CALL getCharacterStream(sal_Int32 column) override; + + Any SAL_CALL getObject( + sal_Int32 column, const css::uno::Reference& typeMap) override; + + css::uno::Reference SAL_CALL getRef(sal_Int32 column) override; + css::uno::Reference SAL_CALL getBlob(sal_Int32 column) override; + css::uno::Reference SAL_CALL getClob(sal_Int32 column) override; + css::uno::Reference SAL_CALL getArray(sal_Int32 column) override; + + // XResultSetMetaDataSupplier + css::uno::Reference SAL_CALL getMetaData() override; + + // XCancellable + void SAL_CALL cancel() override; + + // XCloseable + void SAL_CALL close() override; + + // XWarningsSupplier + Any SAL_CALL getWarnings() override; + + void SAL_CALL clearWarnings() override; + + // XResultSetUpdate + void SAL_CALL insertRow() override; + void SAL_CALL updateRow() override; + void SAL_CALL deleteRow() override; + void SAL_CALL cancelRowUpdates() override; + void SAL_CALL moveToInsertRow() override; + void SAL_CALL moveToCurrentRow() override; + + // XRowUpdate + void SAL_CALL updateNull(sal_Int32 column) override; + void SAL_CALL updateBoolean(sal_Int32 column, sal_Bool x) override; + void SAL_CALL updateByte(sal_Int32 column, sal_Int8 x) override; + void SAL_CALL updateShort(sal_Int32 column, sal_Int16 x) override; + void SAL_CALL updateInt(sal_Int32 column, sal_Int32 x) override; + void SAL_CALL updateLong(sal_Int32 column, sal_Int64 x) override; + void SAL_CALL updateFloat(sal_Int32 column, float x) override; + void SAL_CALL updateDouble(sal_Int32 column, double x) override; + void SAL_CALL updateString(sal_Int32 column, const OUString& x) override; + void SAL_CALL updateBytes(sal_Int32 column, const css::uno::Sequence& x) override; + void SAL_CALL updateDate(sal_Int32 column, const css::util::Date& x) override; + void SAL_CALL updateTime(sal_Int32 column, const css::util::Time& x) override; + void SAL_CALL updateTimestamp(sal_Int32 column, const css::util::DateTime& x) override; + void SAL_CALL updateBinaryStream(sal_Int32 column, + const css::uno::Reference& x, + sal_Int32 length) override; + void SAL_CALL updateCharacterStream(sal_Int32 column, + const css::uno::Reference& x, + sal_Int32 length) override; + void SAL_CALL updateObject(sal_Int32 column, const Any& x) override; + void SAL_CALL updateNumericObject(sal_Int32 column, const Any& x, sal_Int32 scale) override; + + // XColumnLocate + sal_Int32 SAL_CALL findColumn(const OUString& columnName) override; + + // XRowLocate + Any SAL_CALL getBookmark() override; + + sal_Bool SAL_CALL moveToBookmark(const Any& bookmark) override; + sal_Bool SAL_CALL moveRelativeToBookmark(const Any& bookmark, sal_Int32 rows) override; + sal_Int32 SAL_CALL compareBookmarks(const Any& first, const Any& second) override; + sal_Bool SAL_CALL hasOrderedBookmarks() override; + sal_Int32 SAL_CALL hashBookmark(const Any& bookmark) override; + + // XDeleteRows + css::uno::Sequence SAL_CALL deleteRows(const css::uno::Sequence& rows) override; + + /// @throws SQLException + /// @throws RuntimeException + void checkColumnIndex(sal_Int32 index); + +private: + using ::cppu::OPropertySetHelper::getFastPropertyValue; +}; +} /* mysqlc */ +} /* connectivity */ +#endif // CONNECTIVITY_SRESULTSET_HXX + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit v1.2.3