1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
21 #include "ZConnectionPool.hxx"
22 #include <com/sun/star/lang/XComponent.hpp>
23 #include "ZPooledConnection.hxx"
24 #include "ZPoolCollection.hxx"
25 #include <connectivity/ConnectionWrapper.hxx>
26 #include <com/sun/star/beans/XPropertySet.hpp>
29 using namespace ::com::sun::star::uno
;
30 using namespace ::com::sun::star::lang
;
31 using namespace ::com::sun::star::sdbc
;
32 using namespace ::com::sun::star::beans
;
33 using namespace ::com::sun::star::container
;
34 using namespace ::osl
;
35 using namespace connectivity
;
39 void SAL_CALL
OPoolTimer::onShot()
41 m_pPool
->invalidatePooledConnections();
44 constexpr OUStringLiteral TIMEOUT_NODENAME
= u
"Timeout";
46 OConnectionPool::OConnectionPool(const Reference
< XDriver
>& _xDriver
,
47 const Reference
< XInterface
>& _xDriverNode
,
48 const Reference
< css::reflection::XProxyFactory
>& _rxProxyFactory
)
50 ,m_xDriverNode(_xDriverNode
)
51 ,m_xProxyFactory(_rxProxyFactory
)
55 OSL_ENSURE(m_xDriverNode
.is(),"NO valid Driver node set!");
56 Reference
< XComponent
> xComponent(m_xDriverNode
, UNO_QUERY
);
58 xComponent
->addEventListener(this);
60 Reference
<XPropertySet
> xProp(m_xDriverNode
,UNO_QUERY
);
62 xProp
->addPropertyChangeListener(TIMEOUT_NODENAME
,this);
64 OPoolCollection::getNodeValue(TIMEOUT_NODENAME
, m_xDriverNode
) >>= m_nALiveCount
;
67 m_xInvalidator
= new OPoolTimer(this,::salhelper::TTimeValue(m_nTimeOut
,0));
68 m_xInvalidator
->start();
71 OConnectionPool::~OConnectionPool()
78 struct TRemoveEventListenerFunctor
80 OConnectionPool
* m_pConnectionPool
;
83 TRemoveEventListenerFunctor(OConnectionPool
* _pConnectionPool
, bool _bDispose
)
84 : m_pConnectionPool(_pConnectionPool
)
85 ,m_bDispose(_bDispose
)
87 OSL_ENSURE(m_pConnectionPool
,"No connection pool!");
90 void dispose(const Reference
<XInterface
>& _xComponent
)
92 Reference
< XComponent
> xComponent(_xComponent
, UNO_QUERY
);
94 if ( xComponent
.is() )
96 xComponent
->removeEventListener(m_pConnectionPool
);
98 xComponent
->dispose();
102 void operator()(const TPooledConnections::value_type
& _aValue
)
107 void operator()(const TActiveConnectionMap::value_type
& _aValue
)
109 dispose(_aValue
.first
);
113 struct TConnectionPoolFunctor
115 OConnectionPool
* m_pConnectionPool
;
117 explicit TConnectionPoolFunctor(OConnectionPool
* _pConnectionPool
)
118 : m_pConnectionPool(_pConnectionPool
)
120 OSL_ENSURE(m_pConnectionPool
,"No connection pool!");
122 void operator()(const TConnectionMap::value_type
& _aValue
)
124 std::for_each(_aValue
.second
.aConnections
.begin(),_aValue
.second
.aConnections
.end(),TRemoveEventListenerFunctor(m_pConnectionPool
,true));
130 void OConnectionPool::clear(bool _bDispose
)
132 std::unique_lock
aGuard(m_aMutex
);
134 if(m_xInvalidator
->isTicking())
135 m_xInvalidator
->stop();
137 std::for_each(m_aPool
.begin(),m_aPool
.end(),TConnectionPoolFunctor(this));
140 std::for_each(m_aActiveConnections
.begin(),m_aActiveConnections
.end(),TRemoveEventListenerFunctor(this,_bDispose
));
141 m_aActiveConnections
.clear();
143 Reference
< XComponent
> xComponent(m_xDriverNode
, UNO_QUERY
);
145 xComponent
->removeEventListener(this);
146 Reference
< XPropertySet
> xProp(m_xDriverNode
, UNO_QUERY
);
148 xProp
->removePropertyChangeListener(TIMEOUT_NODENAME
, this);
150 m_xDriverNode
.clear();
154 Reference
< XConnection
> OConnectionPool::getConnectionWithInfo( const OUString
& _rURL
, const Sequence
< PropertyValue
>& _rInfo
)
156 std::unique_lock
aGuard(m_aMutex
);
158 Reference
<XConnection
> xConnection
;
160 // create a unique id and look for it in our map
161 Sequence
< PropertyValue
> aInfo(_rInfo
);
162 TConnectionMap::key_type nId
;
163 OConnectionWrapper::createUniqueId(_rURL
,aInfo
,nId
.m_pBuffer
);
164 TConnectionMap::iterator aIter
= m_aPool
.find(nId
);
166 if ( m_aPool
.end() != aIter
)
167 xConnection
= getPooledConnection(aIter
);
169 if ( !xConnection
.is() )
170 xConnection
= createNewConnection(_rURL
,_rInfo
);
175 void SAL_CALL
OConnectionPool::disposing( const css::lang::EventObject
& Source
)
177 Reference
<XConnection
> xConnection(Source
.Source
,UNO_QUERY
);
180 std::unique_lock
aGuard(m_aMutex
);
181 TActiveConnectionMap::iterator aIter
= m_aActiveConnections
.find(xConnection
);
182 OSL_ENSURE(aIter
!= m_aActiveConnections
.end(),"OConnectionPool::disposing: Connection wasn't in pool");
183 if(aIter
!= m_aActiveConnections
.end())
184 { // move the pooled connection back to the pool
185 aIter
->second
.aPos
->second
.nALiveCount
= m_nALiveCount
;
186 aIter
->second
.aPos
->second
.aConnections
.push_back(aIter
->second
.xPooledConnection
);
187 m_aActiveConnections
.erase(aIter
);
192 m_xDriverNode
.clear();
196 Reference
< XConnection
> OConnectionPool::createNewConnection(const OUString
& _rURL
,const Sequence
< PropertyValue
>& _rInfo
)
198 // create new pooled connection
199 Reference
< XPooledConnection
> xPooledConnection
= new ::connectivity::OPooledConnection(m_xDriver
->connect(_rURL
,_rInfo
),m_xProxyFactory
);
200 // get the new connection from the pooled connection
201 Reference
<XConnection
> xConnection
= xPooledConnection
->getConnection();
204 // add our own as dispose listener to know when we should put the connection back to the pool
205 Reference
< XComponent
> xComponent(xConnection
, UNO_QUERY
);
207 xComponent
->addEventListener(this);
209 // save some information to find the right pool later on
210 Sequence
< PropertyValue
> aInfo(_rInfo
);
211 TConnectionMap::key_type nId
;
212 OConnectionWrapper::createUniqueId(_rURL
,aInfo
,nId
.m_pBuffer
);
213 TConnectionPool aPack
;
215 // insert the new connection and struct into the active connection map
216 aPack
.nALiveCount
= m_nALiveCount
;
217 TActiveConnectionInfo aActiveInfo
;
218 aActiveInfo
.aPos
= m_aPool
.emplace(nId
,aPack
).first
;
219 aActiveInfo
.xPooledConnection
= xPooledConnection
;
220 m_aActiveConnections
.emplace(xConnection
,aActiveInfo
);
222 if(m_xInvalidator
->isExpired())
223 m_xInvalidator
->start();
229 void OConnectionPool::invalidatePooledConnections()
231 std::unique_lock
aGuard(m_aMutex
);
232 TConnectionMap::iterator aIter
= m_aPool
.begin();
233 for (; aIter
!= m_aPool
.end(); )
235 if(!(--(aIter
->second
.nALiveCount
))) // connections are invalid
237 std::for_each(aIter
->second
.aConnections
.begin(),aIter
->second
.aConnections
.end(),TRemoveEventListenerFunctor(this,true));
239 aIter
->second
.aConnections
.clear();
241 // look if the iterator aIter is still present in the active connection map
242 bool isPresent
= std::any_of(m_aActiveConnections
.begin(), m_aActiveConnections
.end(),
243 [&aIter
](const TActiveConnectionMap::value_type
& rEntry
) { return rEntry
.second
.aPos
== aIter
; });
245 {// he isn't so we can delete him
246 aIter
= m_aPool
.erase(aIter
);
255 m_xInvalidator
->start();
258 Reference
< XConnection
> OConnectionPool::getPooledConnection(TConnectionMap::iterator
const & _rIter
)
260 Reference
<XConnection
> xConnection
;
262 if(!_rIter
->second
.aConnections
.empty())
264 Reference
< XPooledConnection
> xPooledConnection
= _rIter
->second
.aConnections
.back();
265 _rIter
->second
.aConnections
.pop_back();
267 OSL_ENSURE(xPooledConnection
.is(),"Can not be null here!");
268 xConnection
= xPooledConnection
->getConnection();
269 Reference
< XComponent
> xComponent(xConnection
, UNO_QUERY
);
271 xComponent
->addEventListener(this);
273 TActiveConnectionInfo aActiveInfo
;
274 aActiveInfo
.aPos
= _rIter
;
275 aActiveInfo
.xPooledConnection
= xPooledConnection
;
276 m_aActiveConnections
[xConnection
] = aActiveInfo
;
281 void SAL_CALL
OConnectionPool::propertyChange( const PropertyChangeEvent
& evt
)
283 if(TIMEOUT_NODENAME
== evt
.PropertyName
)
285 OPoolCollection::getNodeValue(TIMEOUT_NODENAME
, m_xDriverNode
) >>= m_nALiveCount
;
290 void OConnectionPool::calculateTimeOuts()
292 sal_Int32 nTimeOutCorrection
= 10;
293 if(m_nALiveCount
< 100)
294 nTimeOutCorrection
= 20;
296 m_nTimeOut
= m_nALiveCount
/ nTimeOutCorrection
;
297 m_nALiveCount
= m_nALiveCount
/ m_nTimeOut
;
301 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */