2015-10-05 01:26:43 +00:00
|
|
|
#pragma once
|
|
|
|
|
2016-05-28 10:15:36 +00:00
|
|
|
#include <mutex>
|
|
|
|
#include <condition_variable>
|
2015-10-05 01:26:43 +00:00
|
|
|
#include <Poco/Timespan.h>
|
|
|
|
#include <boost/noncopyable.hpp>
|
|
|
|
|
|
|
|
#include <common/logger_useful.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Common/Exception.h>
|
2015-10-05 01:26:43 +00:00
|
|
|
|
2017-05-10 04:00:19 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
|
|
|
extern const int LOGICAL_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-07 20:25:26 +00:00
|
|
|
/** A class from which you can inherit and get a pool of something. Used for database connection pools.
|
2017-05-10 04:00:19 +00:00
|
|
|
* Descendant class must provide a method for creating a new object to place in the pool.
|
2015-10-05 01:26:43 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
template <typename TObject>
|
|
|
|
class PoolBase : private boost::noncopyable
|
|
|
|
{
|
|
|
|
public:
|
2017-04-01 07:20:54 +00:00
|
|
|
using Object = TObject;
|
|
|
|
using ObjectPtr = std::shared_ptr<Object>;
|
|
|
|
using Ptr = std::shared_ptr<PoolBase<TObject>>;
|
2015-10-05 01:26:43 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2017-05-07 20:25:26 +00:00
|
|
|
/** The object with the flag, whether it is currently used. */
|
2017-04-01 07:20:54 +00:00
|
|
|
struct PooledObject
|
|
|
|
{
|
|
|
|
PooledObject(ObjectPtr object_, PoolBase & pool_)
|
|
|
|
: object(object_), pool(pool_)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ObjectPtr object;
|
|
|
|
bool in_use = false;
|
|
|
|
PoolBase & pool;
|
|
|
|
};
|
|
|
|
|
|
|
|
using Objects = std::vector<std::shared_ptr<PooledObject>>;
|
|
|
|
|
2017-05-07 20:25:26 +00:00
|
|
|
/** The helper, which sets the flag for using the object, and in the destructor - removes,
|
|
|
|
* and also notifies the event using condvar.
|
2017-04-01 07:20:54 +00:00
|
|
|
*/
|
|
|
|
struct PoolEntryHelper
|
|
|
|
{
|
|
|
|
PoolEntryHelper(PooledObject & data_) : data(data_) { data.in_use = true; }
|
|
|
|
~PoolEntryHelper()
|
|
|
|
{
|
2019-01-02 06:44:36 +00:00
|
|
|
std::unique_lock lock(data.pool.mutex);
|
2017-04-01 07:20:54 +00:00
|
|
|
data.in_use = false;
|
|
|
|
data.pool.available.notify_one();
|
|
|
|
}
|
|
|
|
|
|
|
|
PooledObject & data;
|
|
|
|
};
|
2015-10-05 01:26:43 +00:00
|
|
|
|
|
|
|
public:
|
2017-05-07 20:25:26 +00:00
|
|
|
/** What is given to the user. */
|
2017-04-01 07:20:54 +00:00
|
|
|
class Entry
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
friend class PoolBase<Object>;
|
|
|
|
|
2017-05-07 20:25:26 +00:00
|
|
|
Entry() {} /// For deferred initialization.
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-05-07 20:25:26 +00:00
|
|
|
/** The `Entry` object protects the resource from being used by another thread.
|
2017-05-10 04:00:19 +00:00
|
|
|
* The following methods are forbidden for `rvalue`, so you can not write a similar to
|
|
|
|
*
|
|
|
|
* auto q = pool.Get()->query("SELECT .."); // Oops, after this line Entry was destroyed
|
|
|
|
* q.execute (); // Someone else can use this Connection
|
|
|
|
*/
|
2017-04-01 07:20:54 +00:00
|
|
|
Object * operator->() && = delete;
|
|
|
|
const Object * operator->() const && = delete;
|
|
|
|
Object & operator*() && = delete;
|
|
|
|
const Object & operator*() const && = delete;
|
|
|
|
|
2017-05-10 04:00:19 +00:00
|
|
|
Object * operator->() & { return &*data->data.object; }
|
|
|
|
const Object * operator->() const & { return &*data->data.object; }
|
|
|
|
Object & operator*() & { return *data->data.object; }
|
|
|
|
const Object & operator*() const & { return *data->data.object; }
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
bool isNull() const { return data == nullptr; }
|
|
|
|
|
|
|
|
PoolBase * getPool() const
|
|
|
|
{
|
|
|
|
if (!data)
|
2017-05-10 04:00:19 +00:00
|
|
|
throw DB::Exception("Attempt to get pool from uninitialized entry", DB::ErrorCodes::LOGICAL_ERROR);
|
2017-04-01 07:20:54 +00:00
|
|
|
return &data->data.pool;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::shared_ptr<PoolEntryHelper> data;
|
|
|
|
|
|
|
|
Entry(PooledObject & object) : data(std::make_shared<PoolEntryHelper>(object)) {}
|
|
|
|
};
|
|
|
|
|
|
|
|
virtual ~PoolBase() {}
|
|
|
|
|
2017-05-10 04:00:19 +00:00
|
|
|
/** Allocates the object. Wait for free object in pool for 'timeout'. With 'timeout' < 0, the timeout is infinite. */
|
2017-04-01 07:20:54 +00:00
|
|
|
Entry get(Poco::Timespan::TimeDiff timeout)
|
|
|
|
{
|
2019-01-02 06:44:36 +00:00
|
|
|
std::unique_lock lock(mutex);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
for (auto & item : items)
|
|
|
|
if (!item->in_use)
|
|
|
|
return Entry(*item);
|
|
|
|
|
|
|
|
if (items.size() < max_items)
|
|
|
|
{
|
|
|
|
ObjectPtr object = allocObject();
|
|
|
|
items.emplace_back(std::make_shared<PooledObject>(object, *this));
|
|
|
|
return Entry(*items.back());
|
|
|
|
}
|
|
|
|
|
|
|
|
LOG_INFO(log, "No free connections in pool. Waiting.");
|
|
|
|
|
|
|
|
if (timeout < 0)
|
|
|
|
available.wait(lock);
|
|
|
|
else
|
|
|
|
available.wait_for(lock, std::chrono::microseconds(timeout));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void reserve(size_t count)
|
|
|
|
{
|
2019-01-02 06:44:36 +00:00
|
|
|
std::lock_guard lock(mutex);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
while (items.size() < count)
|
|
|
|
items.emplace_back(std::make_shared<PooledObject>(allocObject(), *this));
|
|
|
|
}
|
2015-10-05 01:26:43 +00:00
|
|
|
|
|
|
|
private:
|
2017-05-07 20:25:26 +00:00
|
|
|
/** The maximum size of the pool. */
|
2017-04-01 07:20:54 +00:00
|
|
|
unsigned max_items;
|
2015-10-05 01:26:43 +00:00
|
|
|
|
2017-05-07 20:25:26 +00:00
|
|
|
/** Pool. */
|
2017-04-01 07:20:54 +00:00
|
|
|
Objects items;
|
2015-10-05 01:26:43 +00:00
|
|
|
|
2017-05-10 04:00:19 +00:00
|
|
|
/** Lock to access the pool. */
|
2017-04-01 07:20:54 +00:00
|
|
|
std::mutex mutex;
|
|
|
|
std::condition_variable available;
|
2015-10-05 01:26:43 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
Logger * log;
|
2015-10-05 01:26:43 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
PoolBase(unsigned max_items_, Logger * log_)
|
|
|
|
: max_items(max_items_), log(log_)
|
|
|
|
{
|
|
|
|
items.reserve(max_items);
|
|
|
|
}
|
2015-10-05 01:26:43 +00:00
|
|
|
|
2017-05-10 04:00:19 +00:00
|
|
|
/** Creates a new object to put into the pool. */
|
2017-04-01 07:20:54 +00:00
|
|
|
virtual ObjectPtr allocObject() = 0;
|
2015-10-05 01:26:43 +00:00
|
|
|
};
|
|
|
|
|