2006-03-31 12:32:02 +02:00
|
|
|
/*****************************************************************************
|
2011-11-14 04:37:50 +01:00
|
|
|
*
|
2006-03-31 12:32:02 +02:00
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
2005-06-14 17:06:59 +02:00
|
|
|
*
|
2015-06-16 12:49:16 +02:00
|
|
|
* Copyright (C) 2015 Artem Pavlenko
|
2005-06-14 17:06:59 +02:00
|
|
|
*
|
2006-03-31 12:32:02 +02:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
2005-06-14 17:06:59 +02:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2006-03-31 12:32:02 +02:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
2005-06-14 17:06:59 +02:00
|
|
|
*
|
2006-03-31 12:32:02 +02:00
|
|
|
*****************************************************************************/
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2012-04-08 02:20:56 +02:00
|
|
|
#ifndef POSTGIS_CONNECTION_MANAGER_HPP
|
|
|
|
#define POSTGIS_CONNECTION_MANAGER_HPP
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2012-04-08 02:20:56 +02:00
|
|
|
#include "connection.hpp"
|
|
|
|
|
|
|
|
// mapnik
|
2006-10-05 11:00:36 +02:00
|
|
|
#include <mapnik/pool.hpp>
|
2015-06-02 12:10:41 +02:00
|
|
|
#include <mapnik/util/singleton.hpp>
|
2012-04-08 02:20:56 +02:00
|
|
|
|
|
|
|
// boost
|
2013-09-20 15:13:23 +02:00
|
|
|
#include <memory>
|
2007-06-12 10:59:54 +02:00
|
|
|
#include <boost/optional.hpp>
|
2008-02-04 17:12:13 +01:00
|
|
|
|
2012-04-08 02:20:56 +02:00
|
|
|
// stl
|
|
|
|
#include <string>
|
|
|
|
#include <sstream>
|
2013-09-25 07:57:01 +02:00
|
|
|
#include <memory>
|
2012-04-08 02:20:56 +02:00
|
|
|
|
2007-03-16 11:11:37 +01:00
|
|
|
using mapnik::Pool;
|
|
|
|
using mapnik::singleton;
|
|
|
|
using mapnik::CreateStatic;
|
2005-06-14 17:06:59 +02:00
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
class ConnectionCreator
|
|
|
|
{
|
2007-01-16 16:22:49 +01:00
|
|
|
|
2005-06-14 17:06:59 +02:00
|
|
|
public:
|
2011-11-19 20:35:07 +01:00
|
|
|
ConnectionCreator(boost::optional<std::string> const& host,
|
|
|
|
boost::optional<std::string> const& port,
|
|
|
|
boost::optional<std::string> const& dbname,
|
|
|
|
boost::optional<std::string> const& user,
|
|
|
|
boost::optional<std::string> const& pass,
|
|
|
|
boost::optional<std::string> const& connect_timeout)
|
2010-06-25 17:23:09 +02:00
|
|
|
: host_(host),
|
|
|
|
port_(port),
|
|
|
|
dbname_(dbname),
|
|
|
|
user_(user),
|
2010-07-02 13:42:35 +02:00
|
|
|
pass_(pass),
|
|
|
|
connect_timeout_(connect_timeout) {}
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2010-06-25 17:23:09 +02:00
|
|
|
T* operator()() const
|
|
|
|
{
|
2012-11-28 03:37:22 +01:00
|
|
|
return new T(connection_string_safe(),pass_);
|
2010-06-25 17:23:09 +02:00
|
|
|
}
|
2011-11-14 04:37:50 +01:00
|
|
|
|
|
|
|
inline std::string id() const
|
2010-06-25 17:23:09 +02:00
|
|
|
{
|
|
|
|
return connection_string();
|
|
|
|
}
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2010-06-25 17:23:09 +02:00
|
|
|
inline std::string connection_string() const
|
2012-11-28 03:37:22 +01:00
|
|
|
{
|
|
|
|
std::string connect_str = connection_string_safe();
|
|
|
|
if (pass_ && !pass_->empty()) connect_str += " password=" + *pass_;
|
|
|
|
return connect_str;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline std::string connection_string_safe() const
|
2010-06-25 17:23:09 +02:00
|
|
|
{
|
|
|
|
std::string connect_str;
|
2012-11-28 03:37:22 +01:00
|
|
|
if (host_ && !host_->empty()) connect_str += "host=" + *host_;
|
|
|
|
if (port_ && !port_->empty()) connect_str += " port=" + *port_;
|
|
|
|
if (dbname_ && !dbname_->empty()) connect_str += " dbname=" + *dbname_;
|
|
|
|
if (user_ && !user_->empty()) connect_str += " user=" + *user_;
|
|
|
|
if (connect_timeout_ && !connect_timeout_->empty())
|
2010-07-02 13:52:11 +02:00
|
|
|
connect_str +=" connect_timeout=" + *connect_timeout_;
|
2010-06-25 17:23:09 +02:00
|
|
|
return connect_str;
|
|
|
|
}
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2007-01-16 16:22:49 +01:00
|
|
|
private:
|
2011-11-19 20:35:07 +01:00
|
|
|
boost::optional<std::string> host_;
|
|
|
|
boost::optional<std::string> port_;
|
|
|
|
boost::optional<std::string> dbname_;
|
|
|
|
boost::optional<std::string> user_;
|
|
|
|
boost::optional<std::string> pass_;
|
|
|
|
boost::optional<std::string> connect_timeout_;
|
2005-06-14 17:06:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
class ConnectionManager : public singleton <ConnectionManager,CreateStatic>
|
|
|
|
{
|
|
|
|
|
2013-05-16 17:08:42 +02:00
|
|
|
public:
|
2014-07-07 19:23:15 +02:00
|
|
|
using PoolType = Pool<Connection,ConnectionCreator>;
|
2013-05-16 17:08:42 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
friend class CreateStatic<ConnectionManager>;
|
|
|
|
|
2014-07-07 19:23:15 +02:00
|
|
|
using ContType = std::map<std::string,std::shared_ptr<PoolType> >;
|
|
|
|
using HolderType = std::shared_ptr<Connection>;
|
2005-06-14 17:06:59 +02:00
|
|
|
ContType pools_;
|
|
|
|
|
|
|
|
public:
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2015-11-18 15:42:29 +01:00
|
|
|
bool registerPool(ConnectionCreator<Connection> const& creator,unsigned initialSize,unsigned maxSize)
|
2011-11-14 04:37:50 +01:00
|
|
|
{
|
2012-11-28 18:04:53 +01:00
|
|
|
ContType::const_iterator itr = pools_.find(creator.id());
|
|
|
|
|
|
|
|
if (itr != pools_.end())
|
2006-11-17 22:10:28 +01:00
|
|
|
{
|
2012-11-28 20:16:10 +01:00
|
|
|
itr->second->set_initial_size(initialSize);
|
2012-11-28 18:38:18 +01:00
|
|
|
itr->second->set_max_size(maxSize);
|
2012-11-28 18:04:53 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return pools_.insert(
|
|
|
|
std::make_pair(creator.id(),
|
2013-09-20 15:00:11 +02:00
|
|
|
std::make_shared<PoolType>(creator,initialSize,maxSize))).second;
|
2006-11-17 22:10:28 +01:00
|
|
|
}
|
|
|
|
return false;
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2013-09-20 15:00:11 +02:00
|
|
|
std::shared_ptr<PoolType> getPool(std::string const& key)
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2006-11-17 22:10:28 +01:00
|
|
|
ContType::const_iterator itr=pools_.find(key);
|
|
|
|
if (itr!=pools_.end())
|
|
|
|
{
|
|
|
|
return itr->second;
|
|
|
|
}
|
2013-09-20 15:00:11 +02:00
|
|
|
static const std::shared_ptr<PoolType> emptyPool;
|
2006-11-17 22:10:28 +01:00
|
|
|
return emptyPool;
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2005-06-14 17:06:59 +02:00
|
|
|
ConnectionManager() {}
|
2007-11-08 22:15:45 +01:00
|
|
|
private:
|
2005-06-14 17:06:59 +02:00
|
|
|
ConnectionManager(const ConnectionManager&);
|
|
|
|
ConnectionManager& operator=(const ConnectionManager);
|
2011-11-14 04:37:50 +01:00
|
|
|
};
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2012-04-08 02:20:56 +02:00
|
|
|
#endif // POSTGIS_CONNECTION_MANAGER_HPP
|