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
10*9b5730f6SAndrew Rist  *
11*9b5730f6SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*9b5730f6SAndrew Rist  *
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.
19*9b5730f6SAndrew Rist  *
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 "TConnection.hxx"
27cdf0e10cSrcweir #include <cppuhelper/typeprovider.hxx>
28cdf0e10cSrcweir #include <comphelper/types.hxx>
29cdf0e10cSrcweir #include <comphelper/officeresourcebundle.hxx>
30cdf0e10cSrcweir #include <connectivity/dbexception.hxx>
31cdf0e10cSrcweir 
32cdf0e10cSrcweir using namespace connectivity;
33cdf0e10cSrcweir using namespace com::sun::star::uno;
34cdf0e10cSrcweir using namespace com::sun::star::lang;
35cdf0e10cSrcweir using namespace com::sun::star::sdbc;
36cdf0e10cSrcweir using namespace com::sun::star::beans;
37cdf0e10cSrcweir using namespace ::osl;
38cdf0e10cSrcweir 
39cdf0e10cSrcweir //------------------------------------------------------------------------------
OMetaConnection()40cdf0e10cSrcweir OMetaConnection::OMetaConnection()
41cdf0e10cSrcweir     : OMetaConnection_BASE(m_aMutex)
42cdf0e10cSrcweir     , m_nTextEncoding(RTL_TEXTENCODING_MS_1252)
43cdf0e10cSrcweir {
44cdf0e10cSrcweir }
45cdf0e10cSrcweir //------------------------------------------------------------------------------
disposing()46cdf0e10cSrcweir void OMetaConnection::disposing()
47cdf0e10cSrcweir {
48cdf0e10cSrcweir 	::osl::MutexGuard aGuard(m_aMutex);
49cdf0e10cSrcweir     m_xMetaData = WeakReference< XDatabaseMetaData>();
50cdf0e10cSrcweir     for (OWeakRefArray::iterator i = m_aStatements.begin(); m_aStatements.end() != i; ++i)
51cdf0e10cSrcweir     {
52cdf0e10cSrcweir         try
53cdf0e10cSrcweir         {
54cdf0e10cSrcweir             Reference< XInterface > xStatement( i->get() );
55cdf0e10cSrcweir             ::comphelper::disposeComponent( xStatement );
56cdf0e10cSrcweir         }
57cdf0e10cSrcweir 		catch (DisposedException)
58cdf0e10cSrcweir         {
59cdf0e10cSrcweir 		}
60cdf0e10cSrcweir     }
61cdf0e10cSrcweir 	m_aStatements.clear();
62cdf0e10cSrcweir }
63cdf0e10cSrcweir //XUnoTunnel
getSomething(const::com::sun::star::uno::Sequence<sal_Int8> & rId)64cdf0e10cSrcweir sal_Int64 SAL_CALL OMetaConnection::getSomething( const ::com::sun::star::uno::Sequence< sal_Int8 >& rId ) throw (::com::sun::star::uno::RuntimeException)
65cdf0e10cSrcweir {
66cdf0e10cSrcweir 	return (rId.getLength() == 16 && 0 == rtl_compareMemory(getUnoTunnelImplementationId().getConstArray(),  rId.getConstArray(), 16 ) )
67cdf0e10cSrcweir 		? reinterpret_cast< sal_Int64 >( this )
68cdf0e10cSrcweir 		: (sal_Int64)0;
69cdf0e10cSrcweir }
70cdf0e10cSrcweir // -----------------------------------------------------------------------------
getUnoTunnelImplementationId()71cdf0e10cSrcweir Sequence< sal_Int8 > OMetaConnection::getUnoTunnelImplementationId()
72cdf0e10cSrcweir {
73cdf0e10cSrcweir 	static ::cppu::OImplementationId * pId = 0;
74cdf0e10cSrcweir 	if (! pId)
75cdf0e10cSrcweir 	{
76cdf0e10cSrcweir 		::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() );
77cdf0e10cSrcweir 		if (! pId)
78cdf0e10cSrcweir 		{
79cdf0e10cSrcweir 			static ::cppu::OImplementationId aId;
80cdf0e10cSrcweir 			pId = &aId;
81cdf0e10cSrcweir 		}
82cdf0e10cSrcweir 	}
83cdf0e10cSrcweir 	return pId->getImplementationId();
84cdf0e10cSrcweir }
85cdf0e10cSrcweir // -----------------------------------------------------------------------------
getPropMap()86cdf0e10cSrcweir ::dbtools::OPropertyMap& OMetaConnection::getPropMap()
87cdf0e10cSrcweir {
88cdf0e10cSrcweir 	static ::dbtools::OPropertyMap s_aPropertyNameMap;
89cdf0e10cSrcweir 	return s_aPropertyNameMap;
90cdf0e10cSrcweir }
91cdf0e10cSrcweir // -----------------------------------------------------------------------------
throwGenericSQLException(sal_uInt16 _nErrorResourceId,const Reference<XInterface> & _xContext)92cdf0e10cSrcweir void OMetaConnection::throwGenericSQLException( sal_uInt16 _nErrorResourceId,const Reference< XInterface>& _xContext )
93cdf0e10cSrcweir {
94cdf0e10cSrcweir     ::rtl::OUString sErrorMessage;
95cdf0e10cSrcweir     if ( _nErrorResourceId )
96cdf0e10cSrcweir         sErrorMessage = m_aResources.getResourceString( _nErrorResourceId );
97cdf0e10cSrcweir     Reference< XInterface> xContext = _xContext;
98cdf0e10cSrcweir     if ( !xContext.is() )
99cdf0e10cSrcweir         xContext = *this;
100cdf0e10cSrcweir     ::dbtools::throwGenericSQLException( sErrorMessage, xContext);
101cdf0e10cSrcweir }
102cdf0e10cSrcweir 
103