1*9b5730f6SAndrew Rist /************************************************************** 2cdf0e10cSrcweir * 3*9b5730f6SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*9b5730f6SAndrew Rist * or more contributor license agreements. See the NOTICE file 5*9b5730f6SAndrew Rist * distributed with this work for additional information 6*9b5730f6SAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*9b5730f6SAndrew Rist * to you under the Apache License, Version 2.0 (the 8*9b5730f6SAndrew Rist * "License"); you may not use this file except in compliance 9*9b5730f6SAndrew Rist * with the License. You may obtain a copy of the License at 10cdf0e10cSrcweir * 11*9b5730f6SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12cdf0e10cSrcweir * 13*9b5730f6SAndrew Rist * Unless required by applicable law or agreed to in writing, 14*9b5730f6SAndrew Rist * software distributed under the License is distributed on an 15*9b5730f6SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*9b5730f6SAndrew Rist * KIND, either express or implied. See the License for the 17*9b5730f6SAndrew Rist * specific language governing permissions and limitations 18*9b5730f6SAndrew Rist * under the License. 19cdf0e10cSrcweir * 20*9b5730f6SAndrew Rist *************************************************************/ 21*9b5730f6SAndrew Rist 22*9b5730f6SAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove 25cdf0e10cSrcweir #include "precompiled_connectivity.hxx" 26cdf0e10cSrcweir #include "calc/CDriver.hxx" 27cdf0e10cSrcweir #include "calc/CConnection.hxx" 28cdf0e10cSrcweir #include <com/sun/star/lang/DisposedException.hpp> 29cdf0e10cSrcweir #include "connectivity/dbexception.hxx" 30cdf0e10cSrcweir #include "resource/sharedresources.hxx" 31cdf0e10cSrcweir #include "resource/calc_res.hrc" 32cdf0e10cSrcweir 33cdf0e10cSrcweir using namespace connectivity::calc; 34cdf0e10cSrcweir using namespace connectivity::file; 35cdf0e10cSrcweir using namespace ::com::sun::star::uno; 36cdf0e10cSrcweir using namespace ::com::sun::star::beans; 37cdf0e10cSrcweir using namespace ::com::sun::star::sdbcx; 38cdf0e10cSrcweir using namespace ::com::sun::star::sdbc; 39cdf0e10cSrcweir using namespace ::com::sun::star::lang; 40cdf0e10cSrcweir 41cdf0e10cSrcweir 42cdf0e10cSrcweir //------------------------------------------------------------------------------ 43cdf0e10cSrcweir // static ServiceInfo 44cdf0e10cSrcweir 45cdf0e10cSrcweir rtl::OUString ODriver::getImplementationName_Static( ) throw(RuntimeException) 46cdf0e10cSrcweir { 47cdf0e10cSrcweir return rtl::OUString::createFromAscii("com.sun.star.comp.sdbc.calc.ODriver"); 48cdf0e10cSrcweir } 49cdf0e10cSrcweir 50cdf0e10cSrcweir ::rtl::OUString SAL_CALL ODriver::getImplementationName( ) throw(RuntimeException) 51cdf0e10cSrcweir { 52cdf0e10cSrcweir return getImplementationName_Static(); 53cdf0e10cSrcweir } 54cdf0e10cSrcweir 55cdf0e10cSrcweir // service names from file::OFileDriver 56cdf0e10cSrcweir 57cdf0e10cSrcweir //------------------------------------------------------------------ 58cdf0e10cSrcweir 59cdf0e10cSrcweir ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL 60cdf0e10cSrcweir connectivity::calc::ODriver_CreateInstance(const ::com::sun::star::uno::Reference< 61cdf0e10cSrcweir ::com::sun::star::lang::XMultiServiceFactory >& _rxFactory) throw( ::com::sun::star::uno::Exception ) 62cdf0e10cSrcweir { 63cdf0e10cSrcweir return *(new ODriver(_rxFactory)); 64cdf0e10cSrcweir } 65cdf0e10cSrcweir 66cdf0e10cSrcweir Reference< XConnection > SAL_CALL ODriver::connect( const ::rtl::OUString& url, 67cdf0e10cSrcweir const Sequence< PropertyValue >& info ) throw(SQLException, RuntimeException) 68cdf0e10cSrcweir { 69cdf0e10cSrcweir ::osl::MutexGuard aGuard( m_aMutex ); 70cdf0e10cSrcweir if (ODriver_BASE::rBHelper.bDisposed) 71cdf0e10cSrcweir throw DisposedException(); 72cdf0e10cSrcweir 73cdf0e10cSrcweir if ( ! acceptsURL(url) ) 74cdf0e10cSrcweir return NULL; 75cdf0e10cSrcweir 76cdf0e10cSrcweir OCalcConnection* pCon = new OCalcConnection(this); 77cdf0e10cSrcweir pCon->construct(url,info); 78cdf0e10cSrcweir Reference< XConnection > xCon = pCon; 79cdf0e10cSrcweir m_xConnections.push_back(WeakReferenceHelper(*pCon)); 80cdf0e10cSrcweir 81cdf0e10cSrcweir return xCon; 82cdf0e10cSrcweir } 83cdf0e10cSrcweir 84cdf0e10cSrcweir sal_Bool SAL_CALL ODriver::acceptsURL( const ::rtl::OUString& url ) 85cdf0e10cSrcweir throw(SQLException, RuntimeException) 86cdf0e10cSrcweir { 87cdf0e10cSrcweir return url.compareTo(::rtl::OUString::createFromAscii("sdbc:calc:"),10) == 0; 88cdf0e10cSrcweir } 89cdf0e10cSrcweir 90cdf0e10cSrcweir Sequence< DriverPropertyInfo > SAL_CALL ODriver::getPropertyInfo( const ::rtl::OUString& url, const Sequence< PropertyValue >& /*info*/ ) throw(SQLException, RuntimeException) 91cdf0e10cSrcweir { 92cdf0e10cSrcweir if ( !acceptsURL(url) ) 93cdf0e10cSrcweir { 94cdf0e10cSrcweir SharedResources aResources; 95cdf0e10cSrcweir const ::rtl::OUString sMessage = aResources.getResourceString(STR_URI_SYNTAX_ERROR); 96cdf0e10cSrcweir ::dbtools::throwGenericSQLException(sMessage ,*this); 97cdf0e10cSrcweir } 98cdf0e10cSrcweir return Sequence< DriverPropertyInfo >(); 99cdf0e10cSrcweir } 100cdf0e10cSrcweir // ----------------------------------------------------------------------------- 101cdf0e10cSrcweir 102