/* -*- 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/. */ #include "sqldataprovider.hxx" #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace css; using namespace ::com::sun::star::beans; using namespace ::com::sun::star::sdbc; using namespace ::com::sun::star::uno; namespace sc { class SQLFetchThread : public salhelper::Thread { ScDocument& mrDocument; OUString maID; const std::vector> maDataTransformations; std::function maImportFinishedHdl; public: SQLFetchThread(ScDocument& rDoc, const OUString& rID, std::function aImportFinishedHdl, const std::vector>& rTransformations); virtual void execute() override; }; SQLFetchThread::SQLFetchThread( ScDocument& rDoc, const OUString& rID, std::function aImportFinishedHdl, const std::vector>& rTransformations) : salhelper::Thread("SQL Fetch Thread") , mrDocument(rDoc) , maID(rID) , maDataTransformations(rTransformations) , maImportFinishedHdl(aImportFinishedHdl) { } void SQLFetchThread::execute() { sal_Int32 nIndex = maID.indexOf("@"); if (nIndex == -1) return; OUString aTable = maID.copy(0, nIndex); OUString aDatabase = maID.copy(nIndex + 1); try { uno::Reference xContext = sdb::DatabaseContext::create(comphelper::getProcessComponentContext()); uno::Any aSourceAny = xContext->getByName(aDatabase); uno::Reference xSource(aSourceAny, uno::UNO_QUERY); if (!xSource.is()) return; uno::Reference xHandler( task::InteractionHandler::createWithParent(comphelper::getProcessComponentContext(), nullptr), uno::UNO_QUERY_THROW); uno::Reference xConnection = xSource->connectWithCompletion(xHandler); uno::Reference xStatement = xConnection->createStatement(); uno::Reference xResult = xStatement->executeQuery("SELECT * FROM " + aTable); if (xResult.is()) { Reference xMetaDataSupplier(xResult, UNO_QUERY); Reference xMetaData = xMetaDataSupplier->getMetaData(); Reference xRow(xResult, UNO_QUERY); SCCOL nColCount = static_cast(xMetaData->getColumnCount()); while (xResult->next()) { SCROW nRow = static_cast(xResult->getRow()); for (SCCOL nCol = 0; nCol < nColCount; nCol++) { ScDatabaseDocUtil::PutData(mrDocument, nCol, nRow - 1, 0, xRow, nCol + 1, xMetaData->getColumnType(nCol + 1), false); } } } } catch (uno::Exception&) { TOOLS_WARN_EXCEPTION("sc", "exception in database"); } for (auto& itr : maDataTransformations) { itr->Transform(mrDocument); } SolarMutexGuard aGuard; maImportFinishedHdl(); } SQLDataProvider::SQLDataProvider(ScDocument* pDoc, sc::ExternalDataSource& rDataSource) : DataProvider(rDataSource) , mpDocument(pDoc) { } SQLDataProvider::~SQLDataProvider() { if (mxSQLFetchThread.is()) { SolarMutexReleaser aReleaser; mxSQLFetchThread->join(); } } void SQLDataProvider::Import() { // already importing data if (mpDoc) return; mpDoc.reset(new ScDocument(SCDOCMODE_CLIP)); mpDoc->ResetClip(mpDocument, SCTAB(0)); mxSQLFetchThread = new SQLFetchThread(*mpDoc, mrDataSource.getID(), std::bind(&SQLDataProvider::ImportFinished, this), mrDataSource.getDataTransformation()); mxSQLFetchThread->launch(); if (mbDeterministic) { SolarMutexReleaser aReleaser; mxSQLFetchThread->join(); } } void SQLDataProvider::ImportFinished() { mrDataSource.getDBManager()->WriteToDoc(*mpDoc); mxSQLFetchThread.clear(); mpDoc.reset(); } const OUString& SQLDataProvider::GetURL() const { return mrDataSource.getURL(); } } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */