/usr/include/qgis/qgsconnectionpool.h is in libqgis-dev 2.8.6+dfsg-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 | /***************************************************************************
qgsconnectionpool.h
---------------------
begin : February 2014
copyright : (C) 2014 by Martin Dobias
email : wonder dot sk at gmail dot com
***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef QGSCONNECTIONPOOL_H
#define QGSCONNECTIONPOOL_H
#include <QCoreApplication>
#include <QMap>
#include <QMutex>
#include <QSemaphore>
#include <QStack>
#include <QTime>
#include <QTimer>
#include <QThread>
#include "qgslogger.h"
#define CONN_POOL_MAX_CONCURRENT_CONNS 4
#define CONN_POOL_EXPIRATION_TIME 60 // in seconds
/*! Template that stores data related to one server.
*
* It is assumed that following functions exist:
* - void qgsConnectionPool_ConnectionCreate(QString name, T& c) ... create a new connection
* - void qgsConnectionPool_ConnectionDestroy(T c) ... destroy the connection
* - QString qgsConnectionPool_ConnectionToName(T c) ... lookup connection's name (path)
*
* Because of issues with templates and QObject's signals and slots, this class only provides helper functions for QObject-related
* functionality - the place which uses the template is resonsible for:
* - being derived from QObject
* - calling initTimer( this ) in constructor
* - having handleConnectionExpired() slot that calls onConnectionExpired()
* - having startExpirationTimer(), stopExpirationTimer() slots to start/stop the expiration timer
*
* For an example on how to use the template class, have a look at the implementation in postgres/spatialite providers.
*/
template <typename T>
class QgsConnectionPoolGroup
{
public:
static const int maxConcurrentConnections;
struct Item
{
T c;
QTime lastUsedTime;
};
QgsConnectionPoolGroup( const QString& ci )
: connInfo( ci )
, sem( CONN_POOL_MAX_CONCURRENT_CONNS )
, expirationTimer( 0 )
{
}
~QgsConnectionPoolGroup()
{
foreach ( Item item, conns )
{
qgsConnectionPool_ConnectionDestroy( item.c );
}
}
T acquire()
{
// we are going to acquire a resource - if no resource is available, we will block here
sem.acquire();
// quick (preferred) way - use cached connection
{
QMutexLocker locker( &connMutex );
if ( !conns.isEmpty() )
{
Item i = conns.pop();
// no need to run if nothing can expire
if ( conns.isEmpty() )
{
// will call the slot directly or queue the call (if the object lives in a different thread)
QMetaObject::invokeMethod( expirationTimer->parent(), "stopExpirationTimer" );
}
return i.c;
}
}
T c;
qgsConnectionPool_ConnectionCreate( connInfo, c );
if ( !c )
{
// we didn't get connection for some reason, so release the lock
sem.release();
return 0;
}
return c;
}
void release( T conn )
{
connMutex.lock();
Item i;
i.c = conn;
i.lastUsedTime = QTime::currentTime();
conns.push( i );
if ( !expirationTimer->isActive() )
{
// will call the slot directly or queue the call (if the object lives in a different thread)
QMetaObject::invokeMethod( expirationTimer->parent(), "startExpirationTimer" );
}
connMutex.unlock();
sem.release(); // this can unlock a thread waiting in acquire()
}
protected:
void initTimer( QObject* parent )
{
expirationTimer = new QTimer( parent );
expirationTimer->setInterval( CONN_POOL_EXPIRATION_TIME * 1000 );
QObject::connect( expirationTimer, SIGNAL( timeout() ), parent, SLOT( handleConnectionExpired() ) );
// just to make sure the object belongs to main thread and thus will get events
parent->moveToThread( qApp->thread() );
}
void onConnectionExpired()
{
connMutex.lock();
QTime now = QTime::currentTime();
// what connections have expired?
QList<int> toDelete;
for ( int i = 0; i < conns.count(); ++i )
{
if ( conns.at( i ).lastUsedTime.secsTo( now ) >= CONN_POOL_EXPIRATION_TIME )
toDelete.append( i );
}
// delete expired connections
for ( int j = toDelete.count() - 1; j >= 0; --j )
{
int index = toDelete[j];
qgsConnectionPool_ConnectionDestroy( conns[index].c );
conns.remove( index );
}
if ( conns.isEmpty() )
expirationTimer->stop();
connMutex.unlock();
}
protected:
QString connInfo;
QStack<Item> conns;
QMutex connMutex;
QSemaphore sem;
QTimer* expirationTimer;
};
/**
* Template class responsible for keeping a pool of open connections.
* This is desired to avoid the overhead of creation of new connection everytime.
*
* The methods are thread safe.
*
* The connection pool has a limit on maximum number of concurrent connections
* (per server), once the limit is reached, the acquireConnection() function
* will block. All connections that have been acquired must be then released
* with releaseConnection() function.
*
* When the connections are not used for some time, they will get closed automatically
* to save resources.
*
*/
template <typename T, typename T_Group>
class QgsConnectionPool
{
public:
typedef QMap<QString, T_Group*> T_Groups;
//! Try to acquire a connection: if no connections are available, the thread will get blocked.
//! @return initialized connection or null on error
T acquireConnection( const QString& connInfo )
{
mMutex.lock();
typename T_Groups::iterator it = mGroups.find( connInfo );
if ( it == mGroups.end() )
{
it = mGroups.insert( connInfo, new T_Group( connInfo ) );
}
T_Group* group = *it;
mMutex.unlock();
return group->acquire();
}
//! Release an existing connection so it will get back into the pool and can be reused
void releaseConnection( T conn )
{
mMutex.lock();
typename T_Groups::iterator it = mGroups.find( qgsConnectionPool_ConnectionToName( conn ) );
Q_ASSERT( it != mGroups.end() );
T_Group* group = *it;
mMutex.unlock();
group->release( conn );
}
protected:
T_Groups mGroups;
private:
QMutex mMutex;
};
#endif // QGSCONNECTIONPOOL_H
|