mapnik/plugins/input/postgis/connection_manager.hpp

169 lines
5.2 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
*
2021-01-05 15:39:07 +01:00
* Copyright (C) 2021 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/params.hpp>
#include <mapnik/pool.hpp>
#include <mapnik/util/singleton.hpp>
2012-04-08 02:20:56 +02:00
// boost
#include <boost/optional.hpp>
2008-02-04 17:12:13 +01:00
2012-04-08 02:20:56 +02:00
// stl
#include <string>
2013-09-25 07:57:01 +02:00
#include <memory>
2012-04-08 02:20:56 +02:00
using mapnik::Pool;
using mapnik::singleton_cxx11;
2005-06-14 17:06:59 +02:00
template<typename T>
2005-06-14 17:06:59 +02:00
class ConnectionCreator
{
public:
ConnectionCreator(mapnik::parameters const& params)
: host_{params.get<std::string>("host")}
, port_{params.get<std::string>("port")}
, dbname_{params.get<std::string>("dbname")}
, user_{params.get<std::string>("user")}
, password_{params.get<std::string>("password")}
, connect_timeout_{params.get<std::string>("connect_timeout", "4")}
, application_name_{params.get<std::string>("application_name")}
{}
T* operator()() const { return new T(connection_string_safe(), password_); }
inline std::string id() const { return connection_string_safe(); }
2010-06-25 17:23:09 +02:00
inline std::string connection_string() const
{
std::string connect_str = connection_string_safe();
append_param(connect_str, "password=", password_);
return connect_str;
}
inline std::string connection_string_safe() const
2010-06-25 17:23:09 +02:00
{
std::string connect_str;
append_param(connect_str, "host=", host_);
append_param(connect_str, "port=", port_);
append_param(connect_str, "dbname=", dbname_);
append_param(connect_str, "user=", user_);
append_param(connect_str, "connect_timeout=", connect_timeout_);
if (!append_param(connect_str, "application_name=", application_name_))
{
// only set fallback_application_name, so that application_name
// can still be overriden with PGAPPNAME environment variable
append_param(connect_str, "fallback_application_name=", "mapnik");
}
2010-06-25 17:23:09 +02:00
return connect_str;
}
private:
static bool append_param(std::string& dest, char const* key, std::string const& val)
{
if (val.empty())
return false;
if (!dest.empty())
dest += ' ';
dest += key;
dest += val;
return true;
}
static bool append_param(std::string& dest, char const* key, boost::optional<std::string> const& opt)
{
return opt && append_param(dest, key, *opt);
}
boost::optional<std::string> host_;
boost::optional<std::string> port_;
boost::optional<std::string> dbname_;
boost::optional<std::string> user_;
boost::optional<std::string> password_;
boost::optional<std::string> connect_timeout_;
boost::optional<std::string> application_name_;
2005-06-14 17:06:59 +02:00
};
class ConnectionManager : public singleton_cxx11<ConnectionManager>
2005-06-14 17:06:59 +02:00
{
public:
using PoolType = Pool<Connection, ConnectionCreator>;
2005-06-14 17:06:59 +02:00
private:
friend class singleton_cxx11<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:
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
ContType::const_iterator itr = pools_.find(key);
if (itr != pools_.end())
2006-11-17 22:10:28 +01:00
{
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