Files
libreoffice/dbaccess/source/core/dataaccess/connection.cxx

769 lines
28 KiB
C++
Raw Normal View History

2000-09-18 23:16:46 +00:00
/*************************************************************************
*
* $RCSfile: connection.cxx,v $
*
* $Revision: 1.18 $
2000-09-18 23:16:46 +00:00
*
* last change: $Author: oj $ $Date: 2001-07-18 08:45:30 $
2000-09-18 23:16:46 +00:00
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
*
* - GNU Lesser General Public License Version 2.1
* - Sun Industry Standards Source License Version 1.1
*
* Sun Microsystems Inc., October, 2000
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2000 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
* This library 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 for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
*
* Sun Industry Standards Source License Version 1.1
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.1 (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.openoffice.org/license.html.
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2000 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
* Contributor(s): _______________________________________
*
*
************************************************************************/
#ifndef _DBA_CORE_CONNECTION_HXX_
#include "connection.hxx"
#endif
2000-10-25 06:42:28 +00:00
#ifndef DBACCESS_SHARED_DBASTRINGS_HRC
#include "dbastrings.hrc"
2000-09-18 23:16:46 +00:00
#endif
#ifndef _DBA_COREDATAACCESS_DATASOURCE_HXX_
#include "datasource.hxx"
#endif
#ifndef _DBA_CORE_REGISTRYHELPER_HXX_
#include "registryhelper.hxx"
#endif
#ifndef _DBA_COREAPI_STATEMENT_HXX_
#include <statement.hxx>
#endif
#ifndef _DBA_COREAPI_PREPAREDSTATEMENT_HXX_
#include <preparedstatement.hxx>
#endif
#ifndef _DBA_COREAPI_CALLABLESTATEMENT_HXX_
#include <callablestatement.hxx>
#endif
#ifndef _TOOLS_DEBUG_HXX
#include <tools/debug.hxx>
#endif
#ifndef _COM_SUN_STAR_SDB_COMMANDTYPE_HPP_
#include <com/sun/star/sdb/CommandType.hpp>
#endif
#ifndef _COM_SUN_STAR_SDBC_XDRIVERACCESS_HPP_
#include <com/sun/star/sdbc/XDriverAccess.hpp>
#endif
#ifndef _COM_SUN_STAR_SDBCX_XDATADEFINITIONSUPPLIER_HPP_
#include <com/sun/star/sdbcx/XDataDefinitionSupplier.hpp>
#endif
2000-10-11 10:21:40 +00:00
#ifndef _COMPHELPER_SEQUENCE_HXX_
#include <comphelper/sequence.hxx>
2000-09-18 23:16:46 +00:00
#endif
2000-10-11 10:21:40 +00:00
#ifndef _CONNECTIVITY_DBTOOLS_HXX_
#include <connectivity/dbtools.hxx>
2000-09-18 23:16:46 +00:00
#endif
#ifndef _CPPUHELPER_TYPEPROVIDER_HXX_
#include <cppuhelper/typeprovider.hxx>
#endif
#ifndef _COM_SUN_STAR_REGISTRY_XREGISTRYKEY_HPP_
#include <com/sun/star/registry/XRegistryKey.hpp>
#endif
#ifndef DBACCESS_CORE_API_QUERYCOMPOSER_HXX
2000-09-18 23:16:46 +00:00
#include "querycomposer.hxx"
#endif
#ifndef _COMPHELPER_EXTRACT_HXX_
#include <comphelper/extract.hxx>
2001-02-14 14:04:16 +00:00
#endif
#ifndef _DBHELPER_DBEXCEPTION_HXX_
#include <connectivity/dbexception.hxx>
#endif
2000-09-18 23:16:46 +00:00
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::lang;
using namespace ::com::sun::star::util;
using namespace ::com::sun::star::sdb;
using namespace ::com::sun::star::sdbc;
using namespace ::com::sun::star::sdbcx;
using namespace ::com::sun::star::beans;
using namespace ::com::sun::star::container;
using namespace ::com::sun::star::registry;
using namespace ::osl;
2000-10-11 10:21:40 +00:00
using namespace ::comphelper;
2000-09-18 23:16:46 +00:00
using namespace ::cppu;
using namespace ::dbtools;
using namespace ::utl;
//........................................................................
namespace dbaccess
{
//........................................................................
2000-09-18 23:16:46 +00:00
//==========================================================================
//= OConnectionRerouter
//==========================================================================
DBG_NAME(OConnectionRerouter)
//--------------------------------------------------------------------------
OConnectionRerouter::OConnectionRerouter(const Reference< XConnection >& _rxMaster)
:m_xMasterConnection(_rxMaster)
{
DBG_CTOR(OConnectionRerouter, NULL);
DBG_ASSERT(m_xMasterConnection.is(), "OConnectionRerouter::OConnectionRerouter : invalid master connection !");
if (!Reference< XWarningsSupplier >::query(m_xMasterConnection).is())
{
DBG_ERROR("OConnectionRerouter::OConnectionRerouter : the connection is assumed to be a warnings supplier ! Won't use it !");
// as we're the owner of the conn and don't want to use it -> dispose
Reference< XComponent > xConnComp(m_xMasterConnection, UNO_QUERY);
if (xConnComp.is())
xConnComp->dispose();
m_xMasterConnection = NULL;
}
}
//--------------------------------------------------------------------------
OConnectionRerouter::~OConnectionRerouter()
{
DBG_DTOR(OConnectionRerouter, NULL);
}
// XServiceInfo
//------------------------------------------------------------------------------
rtl::OUString OConnectionRerouter::getImplementationName( ) throw(RuntimeException)
{
return rtl::OUString::createFromAscii("com.sun.star.sdb.OConnectionRerouter");
}
//------------------------------------------------------------------------------
sal_Bool OConnectionRerouter::supportsService( const ::rtl::OUString& _rServiceName ) throw (RuntimeException)
{
return findValue(getSupportedServiceNames(), _rServiceName, sal_True).getLength() != 0;
}
//------------------------------------------------------------------------------
Sequence< ::rtl::OUString > OConnectionRerouter::getSupportedServiceNames( ) throw (RuntimeException)
{
Sequence< ::rtl::OUString > aSNS( 2 );
aSNS[0] = SERVICE_SDBC_CONNECTION;
aSNS[1] = SERVICE_SDB_CONNECTION;
return aSNS;
}
// XCloseable
//------------------------------------------------------------------------------
void OConnectionRerouter::close(void) throw( SQLException, RuntimeException )
{
checkDisposed();
2000-11-03 13:42:50 +00:00
disposing();
2000-09-18 23:16:46 +00:00
Reference< XComponent > xDerivedComp;
if (queryInterface(::getCppuType(&xDerivedComp)) >>= xDerivedComp)
// we ourself do not have an XComponent interface, but our derived classes do
xDerivedComp->dispose();
}
//------------------------------------------------------------------------------
sal_Bool OConnectionRerouter::isClosed(void) throw( SQLException, RuntimeException )
{
MutexGuard aGuard(m_aMutex);
return !m_xMasterConnection.is();
}
// XWarningsSupplier
//------------------------------------------------------------------------------
Any OConnectionRerouter::getWarnings(void) throw( SQLException, RuntimeException )
{
MutexGuard aGuard(m_aMutex);
checkDisposed();
Reference< XWarningsSupplier > xIFace(m_xMasterConnection, UNO_QUERY);
// assumed to be non-NULL, checked in the ctor
return xIFace->getWarnings();
}
//------------------------------------------------------------------------------
void OConnectionRerouter::clearWarnings(void) throw( SQLException, RuntimeException )
{
MutexGuard aGuard(m_aMutex);
checkDisposed();
Reference< XWarningsSupplier > xIFace(m_xMasterConnection, UNO_QUERY);
// assumed to be non-NULL, checked in the ctor
xIFace->clearWarnings();
}
// XConnection
//------------------------------------------------------------------------------
Reference< XStatement > OConnectionRerouter::createStatement(void) throw( SQLException, RuntimeException )
{
MutexGuard aGuard(m_aMutex);
checkDisposed();
Reference< XStatement > xMasterStatement = m_xMasterConnection->createStatement();
Reference< XStatement > xStatement = new OStatement(this, xMasterStatement);
m_aStatements.push_back(WeakReferenceHelper(xStatement));
return xStatement;
}
//------------------------------------------------------------------------------
Reference< XPreparedStatement > OConnectionRerouter::prepareStatement(const rtl::OUString& sql) throw( SQLException, RuntimeException )
{
MutexGuard aGuard(m_aMutex);
checkDisposed();
// TODO convert the SQL to SQL the driver understands
Reference< XPreparedStatement > xMasterStatement = m_xMasterConnection->prepareStatement(sql);
Reference< XPreparedStatement > xStatement = new OPreparedStatement(this, xMasterStatement);
m_aStatements.push_back(WeakReferenceHelper(xStatement));
return xStatement;
}
//------------------------------------------------------------------------------
Reference< XPreparedStatement > OConnectionRerouter::prepareCall(const rtl::OUString& sql) throw( SQLException, RuntimeException )
{
MutexGuard aGuard(m_aMutex);
checkDisposed();
Reference< XPreparedStatement > xMasterStatement = prepareCall(sql);
Reference< XPreparedStatement > xStatement = new OCallableStatement(this, xMasterStatement);
m_aStatements.push_back(WeakReferenceHelper(xStatement));
return xStatement;
}
//------------------------------------------------------------------------------
rtl::OUString OConnectionRerouter::nativeSQL(const rtl::OUString& sql) throw( SQLException, RuntimeException )
{
MutexGuard aGuard(m_aMutex);
checkDisposed();
return m_xMasterConnection->nativeSQL(sql);
}
//------------------------------------------------------------------------------
void OConnectionRerouter::setAutoCommit(sal_Bool autoCommit) throw( SQLException, RuntimeException )
{
MutexGuard aGuard(m_aMutex);
checkDisposed();
m_xMasterConnection->setAutoCommit(autoCommit);
}
//------------------------------------------------------------------------------
sal_Bool OConnectionRerouter::getAutoCommit(void) throw( SQLException, RuntimeException )
{
MutexGuard aGuard(m_aMutex);
checkDisposed();
return m_xMasterConnection->getAutoCommit();
}
//------------------------------------------------------------------------------
void OConnectionRerouter::commit(void) throw( SQLException, RuntimeException )
{
MutexGuard aGuard(m_aMutex);
checkDisposed();
m_xMasterConnection->commit();
}
//------------------------------------------------------------------------------
void OConnectionRerouter::rollback(void) throw( SQLException, RuntimeException )
{
MutexGuard aGuard(m_aMutex);
checkDisposed();
m_xMasterConnection->rollback();
}
//------------------------------------------------------------------------------
Reference< XDatabaseMetaData > OConnectionRerouter::getMetaData(void) throw( SQLException, RuntimeException )
{
MutexGuard aGuard(m_aMutex);
checkDisposed();
return m_xMasterConnection->getMetaData();
}
//------------------------------------------------------------------------------
void OConnectionRerouter::setReadOnly(sal_Bool readOnly) throw( SQLException, RuntimeException )
{
MutexGuard aGuard(m_aMutex);
checkDisposed();
m_xMasterConnection->setReadOnly(readOnly);
}
//------------------------------------------------------------------------------
sal_Bool OConnectionRerouter::isReadOnly(void) throw( SQLException, RuntimeException )
{
MutexGuard aGuard(m_aMutex);
checkDisposed();
return m_xMasterConnection->isReadOnly();
}
//------------------------------------------------------------------------------
void OConnectionRerouter::setCatalog(const rtl::OUString& catalog) throw( SQLException, RuntimeException )
{
MutexGuard aGuard(m_aMutex);
checkDisposed();
m_xMasterConnection->setCatalog(catalog);
}
//------------------------------------------------------------------------------
rtl::OUString OConnectionRerouter::getCatalog(void) throw( SQLException, RuntimeException )
{
MutexGuard aGuard(m_aMutex);
checkDisposed();
return m_xMasterConnection->getCatalog();
}
//------------------------------------------------------------------------------
void OConnectionRerouter::setTransactionIsolation(sal_Int32 level) throw( SQLException, RuntimeException )
{
MutexGuard aGuard(m_aMutex);
checkDisposed();
m_xMasterConnection->setTransactionIsolation(level);
}
//------------------------------------------------------------------------------
sal_Int32 OConnectionRerouter::getTransactionIsolation(void) throw( SQLException, RuntimeException )
{
MutexGuard aGuard(m_aMutex);
checkDisposed();
return m_xMasterConnection->getTransactionIsolation();
}
//------------------------------------------------------------------------------
Reference< XNameAccess > OConnectionRerouter::getTypeMap(void) throw( SQLException, RuntimeException )
{
MutexGuard aGuard(m_aMutex);
checkDisposed();
return m_xMasterConnection->getTypeMap();
}
//------------------------------------------------------------------------------
void OConnectionRerouter::setTypeMap(const Reference< XNameAccess > & typeMap) throw( SQLException, RuntimeException )
{
MutexGuard aGuard(m_aMutex);
checkDisposed();
m_xMasterConnection->setTypeMap(typeMap);
}
//------------------------------------------------------------------------------
void OConnectionRerouter::disposing()
{
MutexGuard aGuard(m_aMutex);
for (OWeakRefArrayIterator i = m_aStatements.begin(); m_aStatements.end() != i; i++)
{
Reference< XComponent > xComp(i->get(), UNO_QUERY);
if (xComp.is())
xComp->dispose();
}
m_aStatements.clear();
}
//==========================================================================
//= OConnection
//==========================================================================
DBG_NAME(OConnection)
//--------------------------------------------------------------------------
2000-12-12 11:20:31 +00:00
OConnection::OConnection(ODatabaseSource& _rDB, const OConfigurationNode& _rTablesConfig,const OConfigurationTreeRoot& _rCommitLocation,
const Reference< XConnection >& _rxMaster, const Reference< XMultiServiceFactory >& _rxORB)
2000-09-18 23:16:46 +00:00
:OConnectionRerouter(_rxMaster)
,OSubComponent(m_aMutex, static_cast< OWeakObject* >(&_rDB))
,m_aQueries(*this, m_aMutex, static_cast< XNameContainer* >(&_rDB.m_aCommandDefinitions), _rDB.m_aCommandDefinitions.getConfigLocation().cloneAsRoot(), _rxORB)
2000-09-18 23:16:46 +00:00
// as the queries reroute their refcounting to us, this m_aMutex is okey. If the queries
// container would do it's own refcounting, it would have to aquire m_pMutex
// same for tables
,m_aTableFilter(_rDB.m_aTableFilter)
,m_aTableTypeFilter(_rDB.m_aTableTypeFilter)
,m_xORB(_rxORB)
,m_pTables(NULL)
,m_pViews(NULL)
2001-04-26 08:09:55 +00:00
,m_bSupportsViews(sal_False)
2000-09-18 23:16:46 +00:00
{
DBG_CTOR(OConnection,NULL);
try
{
m_pTables = new OTableContainer(_rTablesConfig,_rCommitLocation,*this, m_aMutex, this, this);
2001-04-26 08:09:55 +00:00
// check if we supports types
Reference<XResultSet> xRes = _rxMaster->getMetaData()->getTableTypes();
if(xRes.is())
{
::rtl::OUString sView = ::rtl::OUString::createFromAscii("VIEW");
Reference<XRow> xRow(xRes,UNO_QUERY);
while(xRes->next())
{
::rtl::OUString sValue = xRow->getString(1);
if( !xRow->wasNull() && sValue == sView)
{
m_bSupportsViews = sal_True;
break;
}
}
}
2001-05-29 05:28:59 +00:00
// some dbs doesn't support this type so we should ask if a XViewsSupplier is supported
if(!m_bSupportsViews)
{
Reference< XDriverAccess> xManager(m_xORB->createInstance(SERVICE_SDBC_DRIVERMANAGER), UNO_QUERY);
Reference< XDataDefinitionSupplier > xSupp(xManager->getDriverByURL(m_xMasterConnection->getMetaData()->getURL()),UNO_QUERY);
Reference< XViewsSupplier > xMaster;
if(xSupp.is())
xMaster = Reference< XViewsSupplier >(xSupp->getDataDefinitionByConnection(m_xMasterConnection),UNO_QUERY);
if (xMaster.is() && xMaster->getViews().is())
m_bSupportsViews = sal_True;
}
2001-04-26 08:09:55 +00:00
if(m_bSupportsViews)
m_pViews = new OViewContainer(*this, m_aMutex, this, this);
}
catch(const SQLException&)
{
}
2000-09-18 23:16:46 +00:00
// initialize the queries
DBG_ASSERT(_rDB.m_aConfigurationNode.isValid(), "OConnection::OConnection : invalid configuration location of my parent !");
2000-09-18 23:16:46 +00:00
}
//--------------------------------------------------------------------------
OConnection::~OConnection()
{
2000-11-14 12:32:59 +00:00
delete m_pTables;
2001-03-29 06:07:13 +00:00
delete m_pViews;
2000-09-18 23:16:46 +00:00
DBG_DTOR(OConnection,NULL);
}
// IWarningsContainer
//------------------------------------------------------------------------------
void OConnection::appendWarning(const SQLContext& _rContext)
{
implConcatWarnings(m_aAdditionalWarnings, makeAny(_rContext));
}
//------------------------------------------------------------------------------
void OConnection::appendWarning(const SQLWarning& _rWarning)
{
implConcatWarnings(m_aAdditionalWarnings, makeAny(_rWarning));
}
// XWarningsSupplier
//--------------------------------------------------------------------------
Any SAL_CALL OConnection::getWarnings( ) throw(SQLException, RuntimeException)
{
Any aReturn = OConnectionRerouter::getWarnings();
if (!m_aAdditionalWarnings.hasValue())
return aReturn;
else
{
// copy m_aAdditionalWarnings, and append the original warnings
Any aOverallWarnings(m_aAdditionalWarnings);
implConcatWarnings(aOverallWarnings, aReturn);
return aOverallWarnings;
}
}
//--------------------------------------------------------------------------
void OConnection::implConcatWarnings(Any& _rChainLeft, const Any& _rChainRight)
{
if (!_rChainLeft.hasValue())
_rChainLeft = _rChainRight;
else
{
// to travel the chain by reference (and not by value), we need the getValue ...
// looks like a hack, but the meaning of getValue is documented, and it's the only chance for reference-traveling ....
DBG_ASSERT(SQLExceptionInfo(_rChainLeft).isValid(), "OConnection::appendWarning: invalid warnings chain (this will crash)!");
const SQLException* pChainTravel = static_cast<const SQLException*>(_rChainLeft.getValue());
SQLExceptionIteratorHelper aReferenceIterHelper(pChainTravel);
while (aReferenceIterHelper.hasMoreElements())
pChainTravel = aReferenceIterHelper.next();
// reached the end of the chain, and pChainTravel points to the last element
const_cast<SQLException*>(pChainTravel)->NextException = _rChainRight;
}
}
//--------------------------------------------------------------------------
void SAL_CALL OConnection::clearWarnings( ) throw(SQLException, RuntimeException)
{
OConnectionRerouter::clearWarnings();
m_aAdditionalWarnings.clear();
}
2000-09-18 23:16:46 +00:00
// com::sun::star::lang::XTypeProvider
//--------------------------------------------------------------------------
Sequence< Type > OConnection::getTypes() throw (RuntimeException)
{
2001-04-26 08:09:55 +00:00
if(m_bSupportsViews)
return concatSequences(OSubComponent::getTypes(), OConnectionRerouter::getTypes(), OConnection_Base::getTypes());
Sequence<Type> aTypes = concatSequences(OSubComponent::getTypes(), OConnectionRerouter::getTypes());
Sequence<Type> aConTypes = OConnection_Base::getTypes();
sal_Int32 nSize = aTypes.getLength();
aTypes.realloc(aTypes.getLength() + aConTypes.getLength() - 1);
Type* pBegin = aConTypes.getArray();
Type* pEnd = pBegin + aConTypes.getLength();
Type aTypeToHide = getCppuType( (Reference<XViewsSupplier>*)0);
for (; pBegin != pEnd; ++pBegin)
{
if(*pBegin != aTypeToHide)
aTypes.getArray()[nSize++] = *pBegin;
}
return aTypes;
2000-09-18 23:16:46 +00:00
}
//--------------------------------------------------------------------------
Sequence< sal_Int8 > OConnection::getImplementationId() throw (RuntimeException)
{
return getUnoTunnelImplementationId();
2000-09-18 23:16:46 +00:00
}
// com::sun::star::uno::XInterface
//--------------------------------------------------------------------------
Any OConnection::queryInterface( const Type & rType ) throw (RuntimeException)
{
2001-04-26 08:09:55 +00:00
if(!m_bSupportsViews && rType == getCppuType( (Reference<XViewsSupplier>*)0))
return Any();
2000-09-18 23:16:46 +00:00
Any aReturn = OSubComponent::queryInterface( rType );
if (!aReturn.hasValue())
aReturn = OConnectionRerouter::queryInterface( rType );
if (!aReturn.hasValue())
aReturn = OConnection_Base::queryInterface( rType );
return aReturn;
}
//--------------------------------------------------------------------------
void OConnection::acquire() throw (RuntimeException)
{
OSubComponent::acquire();
}
//--------------------------------------------------------------------------
void OConnection::release() throw (RuntimeException)
{
OSubComponent::release();
}
// OSubComponent
//------------------------------------------------------------------------------
void OConnection::disposing()
{
MutexGuard aGuard(m_aMutex);
OSubComponent::disposing();
OConnectionRerouter::disposing();
2001-02-14 14:04:16 +00:00
if(m_pTables)
m_pTables->disposing();
2001-03-29 06:07:13 +00:00
if(m_pViews)
m_pViews->disposing();
2000-09-18 23:16:46 +00:00
m_aQueries.dispose();
for (OWeakRefArrayIterator j = m_aComposers.begin(); m_aComposers.end() != j; j++)
{
Reference< XComponent > xComp(j->get(), UNO_QUERY);
if (xComp.is())
xComp->dispose();
}
m_aComposers.clear();
Reference< XCloseable > xMasterComp(m_xMasterConnection, UNO_QUERY);
if (xMasterComp.is())
xMasterComp->close();
m_xMasterConnection = NULL;
}
// XChild
//------------------------------------------------------------------------------
Reference< XInterface > OConnection::getParent(void) throw( RuntimeException )
{
checkDisposed();
return m_xParent;
}
//------------------------------------------------------------------------------
void OConnection::setParent(const Reference< XInterface > & Parent) throw( NoSupportException, RuntimeException )
{
throw NoSupportException();
}
// XSQLQueryComposerFactory
//------------------------------------------------------------------------------
Reference< XSQLQueryComposer > OConnection::createQueryComposer(void) throw( RuntimeException )
{
MutexGuard aGuard(m_aMutex);
checkDisposed();
// get the supplier of the database
ODatabaseSource* pParent = NULL;
2000-11-03 13:42:50 +00:00
if (!comphelper::getImplementation(pParent, m_xParent))
2000-09-18 23:16:46 +00:00
throw RuntimeException();
// Reference< XNumberFormatsSupplier > xSupplier = pParent->getNumberFormatsSupplier();
Reference< XSQLQueryComposer > xComposer(new OQueryComposer(getTables(),this, m_xORB));
m_aComposers.push_back(WeakReferenceHelper(xComposer));
return xComposer;
}
// XTablesSupplier
//------------------------------------------------------------------------------
Reference< XNameAccess > OConnection::getTables() throw( RuntimeException )
{
MutexGuard aGuard(m_aMutex);
checkDisposed();
2000-11-14 12:32:59 +00:00
if (!m_pTables->isInitialized())
2000-09-18 23:16:46 +00:00
{
// check if out "master connection" can supply tables
Reference< XDriverAccess> xManager(m_xORB->createInstance(SERVICE_SDBC_DRIVERMANAGER), UNO_QUERY);
Reference< XDataDefinitionSupplier > xSupp(xManager->getDriverByURL(m_xMasterConnection->getMetaData()->getURL()),UNO_QUERY);
Reference< XTablesSupplier > xMasterTables;
if(xSupp.is())
xMasterTables = xSupp->getDataDefinitionByConnection(m_xMasterConnection);
if (xMasterTables.is() && xMasterTables->getTables().is())
{ // yes -> wrap them
2000-11-14 12:32:59 +00:00
m_pTables->construct(xMasterTables->getTables(),m_aTableFilter, m_aTableTypeFilter);
2000-09-18 23:16:46 +00:00
}
else
{ // no -> use an own container
2000-11-14 12:32:59 +00:00
m_pTables->construct(m_aTableFilter, m_aTableTypeFilter);
2000-09-18 23:16:46 +00:00
}
}
2000-11-14 12:32:59 +00:00
return m_pTables;
2000-09-18 23:16:46 +00:00
}
2001-03-29 06:07:13 +00:00
// -----------------------------------------------------------------------------
Reference< XNameAccess > SAL_CALL OConnection::getViews( ) throw(RuntimeException)
{
MutexGuard aGuard(m_aMutex);
checkDisposed();
if (!m_pViews->isInitialized())
{
// check if out "master connection" can supply tables
Reference< XDriverAccess> xManager(m_xORB->createInstance(SERVICE_SDBC_DRIVERMANAGER), UNO_QUERY);
Reference< XDataDefinitionSupplier > xSupp(xManager->getDriverByURL(m_xMasterConnection->getMetaData()->getURL()),UNO_QUERY);
Reference< XViewsSupplier > xMaster;
if(xSupp.is())
xMaster = Reference< XViewsSupplier >(xSupp->getDataDefinitionByConnection(m_xMasterConnection),UNO_QUERY);
2000-09-18 23:16:46 +00:00
2001-03-29 06:07:13 +00:00
if (xMaster.is() && xMaster->getViews().is())
{ // yes -> wrap them
m_pViews->construct(xMaster->getViews(),m_aTableFilter, m_aTableTypeFilter);
}
}
return m_pViews;
}
2000-09-18 23:16:46 +00:00
// XQueriesSupplier
//------------------------------------------------------------------------------
Reference< XNameAccess > OConnection::getQueries(void) throw( RuntimeException )
{
MutexGuard aGuard(m_aMutex);
checkDisposed();
return static_cast<XNameAccess*>(&m_aQueries);
}
// ::com::sun::star::sdb::XCommandPreparation
//------------------------------------------------------------------------------
2001-03-29 06:07:13 +00:00
Reference< XPreparedStatement > SAL_CALL OConnection::prepareCommand( const ::rtl::OUString& command, sal_Int32 commandType ) throw(::com::sun::star::sdbc::SQLException, RuntimeException)
2000-09-18 23:16:46 +00:00
{
MutexGuard aGuard(m_aMutex);
checkDisposed();
rtl::OUString aStatement;
switch (commandType)
{
case CommandType::TABLE:
aStatement = rtl::OUString::createFromAscii("SELECT * FROM ");
2000-10-11 10:21:40 +00:00
aStatement += ::dbtools::quoteTableName(getMetaData(), command);
2000-09-18 23:16:46 +00:00
break;
case CommandType::QUERY:
if (m_aQueries.hasByName(command))
{
Reference< XPropertySet > xQuery;
2001-02-14 14:04:16 +00:00
::cppu::extractInterface(xQuery,m_aQueries.getByName(command));
2000-09-18 23:16:46 +00:00
xQuery->getPropertyValue(PROPERTY_COMMAND) >>= aStatement;
}
break;
default:
aStatement = command;
}
// TODO EscapeProcessing
return prepareStatement(aStatement);
}
//--------------------------------------------------------------------------
Sequence< sal_Int8 > OConnection::getUnoTunnelImplementationId()
{
static ::cppu::OImplementationId * pId = 0;
if (! pId)
{
::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() );
if (! pId)
{
static ::cppu::OImplementationId aId;
pId = &aId;
}
}
return pId->getImplementationId();
}
// -----------------------------------------------------------------------------
// com::sun::star::XUnoTunnel
sal_Int64 SAL_CALL OConnection::getSomething( const Sequence< sal_Int8 >& rId ) throw(RuntimeException)
{
if (rId.getLength() == 16 && 0 == rtl_compareMemory(getUnoTunnelImplementationId().getConstArray(), rId.getConstArray(), 16 ) )
return (sal_Int64)this;
2000-09-18 23:16:46 +00:00
return 0;
}
// -----------------------------------------------------------------------------
void OConnection::flushMembers()
{
if(m_pTables)
m_pTables->flush();
m_aQueries.flush();
}
// -----------------------------------------------------------------------------
void OConnection::setNewConfigNode(const ::utl::OConfigurationTreeRoot& _aConfigTreeNode)
{
if(m_pTables)
m_pTables->setNewConfigNode(_aConfigTreeNode);
m_aQueries.setNewConfigNode(_aConfigTreeNode.openNode(CONFIGKEY_DBLINK_QUERYDOCUMENTS).cloneAsRoot());
}
//........................................................................
} // namespace dbaccess
//........................................................................
2000-09-18 23:16:46 +00:00