mapnik/plugins/input/postgis/connection_manager.hpp

159 lines
4.7 KiB
C++
Raw Normal View History

2006-03-31 12:32:02 +02: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
*
2017-05-05 13:02:01 +02:00
* Copyright (C) 2017 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
#include <mapnik/pool.hpp>
#include <mapnik/util/singleton.hpp>
2012-04-08 02:20:56 +02:00
// boost
#include <memory>
#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
using mapnik::Pool;
using mapnik::singleton;
using mapnik::CreateStatic;
2005-06-14 17:06:59 +02:00
template <typename T>
class ConnectionCreator
{
2005-06-14 17:06:59 +02:00
public:
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),
pass_(pass),
connect_timeout_(connect_timeout) {}
2010-06-25 17:23:09 +02:00
T* operator()() const
{
return new T(connection_string_safe(),pass_);
2010-06-25 17:23:09 +02:00
}
inline std::string id() const
2010-06-25 17:23:09 +02:00
{
return connection_string();
}
2010-06-25 17:23:09 +02:00
inline std::string connection_string() const
{
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;
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;
}
private:
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>
{
public:
using PoolType = Pool<Connection,ConnectionCreator>;
private:
friend class CreateStatic<ConnectionManager>;
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:
2015-11-18 15:42:29 +01:00
bool registerPool(ConnectionCreator<Connection> const& creator,unsigned initialSize,unsigned maxSize)
{
2018-02-28 10:35:19 +01:00
#ifdef MAPNIK_THREADSAFE
std::lock_guard<std::mutex> lock(mutex_);
#endif
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);
itr->second->set_max_size(maxSize);
}
else
{
return pools_.insert(
std::make_pair(creator.id(),
std::make_shared<PoolType>(creator,initialSize,maxSize))).second;
2006-11-17 22:10:28 +01:00
}
return false;
2005-06-14 17:06:59 +02:00
}
std::shared_ptr<PoolType> getPool(std::string const& key)
2005-06-14 17:06:59 +02:00
{
2018-02-28 10:35:19 +01:00
#ifdef MAPNIK_THREADSAFE
std::lock_guard<std::mutex> lock(mutex_);
#endif
2006-11-17 22:10:28 +01:00
ContType::const_iterator itr=pools_.find(key);
if (itr!=pools_.end())
{
return itr->second;
}
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
}
2005-06-14 17:06:59 +02:00
ConnectionManager() {}
private:
2005-06-14 17:06:59 +02:00
ConnectionManager(const ConnectionManager&);
ConnectionManager& operator=(const ConnectionManager);
};
2005-06-14 17:06:59 +02:00
2012-04-08 02:20:56 +02:00
#endif // POSTGIS_CONNECTION_MANAGER_HPP