sptk2 logo
SPTK Home Page
DatabaseConnectionPool.h
1/*
2╔══════════════════════════════════════════════════════════════════════════════╗
3║ SIMPLY POWERFUL TOOLKIT (SPTK) ║
4╟──────────────────────────────────────────────────────────────────────────────╢
5║ copyright © 1999-2022 Alexey Parshin. All rights reserved. ║
6║ email alexeyp@gmail.com ║
7╚══════════════════════════════════════════════════════════════════════════════╝
8┌──────────────────────────────────────────────────────────────────────────────┐
9│ This library is free software; you can redistribute it and/or modify it │
10│ under the terms of the GNU Library General Public License as published by │
11│ the Free Software Foundation; either version 2 of the License, or (at your │
12│ option) any later version. │
13│ │
14│ This library is distributed in the hope that it will be useful, but │
15│ WITHOUT ANY WARRANTY; without even the implied warranty of │
16│ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library │
17│ General Public License for more details. │
18│ │
19│ You should have received a copy of the GNU Library General Public License │
20│ along with this library; if not, write to the Free Software Foundation, │
21│ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. │
22│ │
23│ Please report all bugs and problems to alexeyp@gmail.com. │
24└──────────────────────────────────────────────────────────────────────────────┘
25*/
26
27#pragma once
28
29#include <sptk5/CaseInsensitiveCompare.h>
30#include <sptk5/db/AutoDatabaseConnection.h>
31#include <sptk5/db/DatabaseConnectionString.h>
32#include <sptk5/db/PoolDatabaseConnection.h>
33#include <sptk5/threads/SynchronizedList.h>
34#include <sptk5/threads/SynchronizedQueue.h>
35
36namespace sptk {
37
46using CreateDriverInstance = PoolDatabaseConnection*(const char* connectString, size_t connectTimeoutSeconds);
47
52
53#ifdef WIN32
57using DriverHandle = HMODULE;
58
59#else
63using DriverHandle = uint8_t*;
64
65#endif
66
70struct SP_EXPORT DatabaseDriver {
75
80
85};
86
95 , public std::mutex
96{
97 friend class AutoDatabaseConnection;
98
99public:
108 DatabaseConnectionPool(const String& connectionString, unsigned maxConnections = 100, std::chrono::seconds connectionTimeout = std::chrono::seconds(60));
109
110 [[nodiscard]] DatabaseConnection getConnection();
111
112 std::chrono::seconds connectionTimeout() const
113 {
114 return m_connectionTimeout;
115 }
116
117protected:
123 void load();
124
128 [[nodiscard]] SPoolDatabaseConnection createConnection();
129
134 void releaseConnection(const SPoolDatabaseConnection& connection);
135
136private:
140 DatabaseDriver* m_driver {nullptr};
141
145 CreateDriverInstance* m_createConnection {nullptr};
146
150 DestroyDriverInstance* m_destroyConnection {nullptr};
151
155 size_t m_maxConnections;
156 SynchronizedQueue<SPoolDatabaseConnection> m_pool;
157 SynchronizedList<SPoolDatabaseConnection> m_connections;
158 std::chrono::seconds m_connectionTimeout;
159};
160
164} // namespace sptk
Definition: AutoDatabaseConnection.h:44
Definition: DatabaseConnectionPool.h:96
SPoolDatabaseConnection createConnection()
void releaseConnection(const SPoolDatabaseConnection &connection)
DatabaseConnectionPool(const String &connectionString, unsigned maxConnections=100, std::chrono::seconds connectionTimeout=std::chrono::seconds(60))
Definition: DatabaseConnectionString.h:56
Definition: PoolDatabaseConnection.h:231
Definition: String.h:49
void(PoolDatabaseConnection *) DestroyDriverInstance
Definition: DatabaseConnectionPool.h:51
PoolDatabaseConnection *(const char *connectString, size_t connectTimeoutSeconds) CreateDriverInstance
Definition: DatabaseConnectionPool.h:46
uint8_t * DriverHandle
Definition: DatabaseConnectionPool.h:63
Definition: DatabaseConnectionPool.h:70
CreateDriverInstance * m_createConnection
Definition: DatabaseConnectionPool.h:79
DriverHandle m_handle
Definition: DatabaseConnectionPool.h:74
DestroyDriverInstance * m_destroyConnection
Definition: DatabaseConnectionPool.h:84

Fri Oct 14 2022 09:58:31: SPTK 5.4.1