/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */ /* * 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 . */ #include "mysqlc_driver.hxx" #include "mysqlc_connection.hxx" using namespace css::uno; using namespace css::lang; using namespace css::beans; using namespace css::sdbc; using namespace css::sdbcx; using namespace connectivity::mysqlc; #include #include MysqlCDriver::MysqlCDriver(const Reference& _rxFactory) : ODriver_BASE(m_aMutex) , m_xFactory(_rxFactory) { } void MysqlCDriver::disposing() { ::osl::MutexGuard aGuard(m_aMutex); // when driver will be destroyed so all our connections have to be destroyed as well for (auto const& connection : m_xConnections) { Reference xComp(connection.get(), UNO_QUERY); if (xComp.is()) { xComp->dispose(); } } m_xConnections.clear(); ODriver_BASE::disposing(); } // static ServiceInfo OUString MysqlCDriver::getImplementationName_Static() { return "com.sun.star.comp.sdbc.mysqlc.MysqlCDriver"; } Sequence MysqlCDriver::getSupportedServiceNames_Static() { return { "com.sun.star.sdbc.Driver", "com.sun.star.sdbcx.Driver" }; } OUString SAL_CALL MysqlCDriver::getImplementationName() { return getImplementationName_Static(); } sal_Bool SAL_CALL MysqlCDriver::supportsService(const OUString& _rServiceName) { return cppu::supportsService(this, _rServiceName); } Sequence SAL_CALL MysqlCDriver::getSupportedServiceNames() { return getSupportedServiceNames_Static(); } Reference SAL_CALL MysqlCDriver::connect(const OUString& url, const Sequence& info) { ::osl::MutexGuard aGuard(m_aMutex); if (!acceptsURL(url)) { return nullptr; } // create a new connection with the given properties and append it to our vector rtl::Reference pCon = new OConnection(*this); pCon->construct(url, info); m_xConnections.push_back(WeakReferenceHelper(*pCon)); return pCon; } sal_Bool SAL_CALL MysqlCDriver::acceptsURL(const OUString& url) { return url.startsWith("sdbc:mysqlc:") || url.startsWith("sdbc:mysql:mysqlc:"); } Sequence SAL_CALL MysqlCDriver::getPropertyInfo(const OUString& url, const Sequence& /* info */) { if (acceptsURL(url)) { return { { "Hostname", "Name of host", true, "localhost", {} }, { "Port", "Port", true, "3306", {} } }; } return Sequence(); } sal_Int32 SAL_CALL MysqlCDriver::getMajorVersion() { return MARIADBC_VERSION_MAJOR; } sal_Int32 SAL_CALL MysqlCDriver::getMinorVersion() { return MARIADBC_VERSION_MINOR; } Reference SAL_CALL MysqlCDriver::getDataDefinitionByConnection(const Reference& rConnection) { if (OConnection* pConnection = comphelper::getFromUnoTunnel(rConnection)) return pConnection->createCatalog(); return {}; } Reference SAL_CALL MysqlCDriver::getDataDefinitionByURL(const OUString& rURL, const Sequence& rInfo) { Reference xConnection = connect(rURL, rInfo); return getDataDefinitionByConnection(xConnection); } namespace connectivity::mysqlc { Reference MysqlCDriver_CreateInstance(const Reference& _rxFactory) { return (*(new MysqlCDriver(_rxFactory))); } void checkDisposed(bool _bThrow) { if (_bThrow) { throw DisposedException(); } } } /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */