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
|
|
|
*
|
2011-10-23 21:23:04 +02:00
|
|
|
* Copyright (C) 2011 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
|
|
|
|
2011-05-10 16:22:47 +02:00
|
|
|
#ifndef POSTGIS_DATASOURCE_HPP
|
|
|
|
#define POSTGIS_DATASOURCE_HPP
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2011-05-10 16:22:47 +02:00
|
|
|
// mapnik
|
2006-10-05 11:00:36 +02:00
|
|
|
#include <mapnik/datasource.hpp>
|
2012-07-25 04:21:55 +02:00
|
|
|
#include <mapnik/params.hpp>
|
|
|
|
#include <mapnik/query.hpp>
|
|
|
|
#include <mapnik/feature.hpp>
|
2009-12-16 21:02:06 +01:00
|
|
|
#include <mapnik/box2d.hpp>
|
2012-07-25 04:21:55 +02:00
|
|
|
#include <mapnik/coord.hpp>
|
2007-03-16 11:11:37 +01:00
|
|
|
#include <mapnik/feature_layer_desc.hpp>
|
2013-01-04 18:23:06 +01:00
|
|
|
#include <mapnik/unicode.hpp>
|
2013-01-08 23:17:31 +01:00
|
|
|
#include <mapnik/value_types.hpp>
|
2011-05-10 16:22:47 +02:00
|
|
|
|
|
|
|
// boost
|
2012-07-25 04:21:55 +02:00
|
|
|
#include <boost/optional.hpp>
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2012-07-25 04:21:55 +02:00
|
|
|
// stl
|
2013-09-25 07:57:01 +02:00
|
|
|
#include <memory>
|
2012-07-25 04:21:55 +02:00
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
|
2007-02-14 20:54:39 +01:00
|
|
|
#include "connection_manager.hpp"
|
2009-02-05 18:41:44 +01:00
|
|
|
#include "resultset.hpp"
|
|
|
|
#include "cursorresultset.hpp"
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2007-03-16 11:11:37 +01:00
|
|
|
using mapnik::transcoder;
|
|
|
|
using mapnik::datasource;
|
2013-05-16 17:08:42 +02:00
|
|
|
using mapnik::feature_style_context_map;
|
|
|
|
using mapnik::processor_context_ptr;
|
2009-12-16 21:02:06 +01:00
|
|
|
using mapnik::box2d;
|
2007-03-16 11:11:37 +01:00
|
|
|
using mapnik::layer_descriptor;
|
|
|
|
using mapnik::featureset_ptr;
|
|
|
|
using mapnik::feature_ptr;
|
|
|
|
using mapnik::query;
|
|
|
|
using mapnik::parameters;
|
|
|
|
using mapnik::coord2d;
|
|
|
|
|
2013-09-25 07:57:01 +02:00
|
|
|
typedef std::shared_ptr< ConnectionManager::PoolType> CnxPool_ptr;
|
2013-05-16 17:08:42 +02:00
|
|
|
|
2005-09-08 15:09:04 +02:00
|
|
|
class postgis_datasource : public datasource
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2012-03-28 22:10:48 +02:00
|
|
|
public:
|
2012-12-17 19:03:07 +01:00
|
|
|
postgis_datasource(const parameters ¶ms);
|
2012-03-28 22:10:48 +02:00
|
|
|
~postgis_datasource();
|
|
|
|
mapnik::datasource::datasource_t type() const;
|
2012-07-21 03:34:41 +02:00
|
|
|
static const char * name();
|
2013-05-16 17:08:42 +02:00
|
|
|
processor_context_ptr get_context(feature_style_context_map &) const;
|
2013-11-04 07:21:57 +01:00
|
|
|
featureset_ptr features_with_context(query const& q, processor_context_ptr ctx) const;
|
2013-09-24 02:37:46 +02:00
|
|
|
featureset_ptr features(query const& q) const;
|
2012-09-28 15:12:10 +02:00
|
|
|
featureset_ptr features_at_point(coord2d const& pt, double tol = 0) const;
|
2012-03-28 22:10:48 +02:00
|
|
|
mapnik::box2d<double> envelope() const;
|
|
|
|
boost::optional<mapnik::datasource::geometry_t> get_geometry_type() const;
|
|
|
|
layer_descriptor get_descriptor() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::string sql_bbox(box2d<double> const& env) const;
|
2012-09-03 19:27:48 +02:00
|
|
|
std::string populate_tokens(std::string const& sql, double scale_denom, box2d<double> const& env, double pixel_width, double pixel_height) const;
|
|
|
|
std::string populate_tokens(std::string const& sql) const;
|
2013-09-25 07:57:01 +02:00
|
|
|
std::shared_ptr<IResultSet> get_resultset(std::shared_ptr<Connection> &conn, std::string const& sql, CnxPool_ptr const& pool, processor_context_ptr ctx= processor_context_ptr()) const;
|
2011-11-14 04:37:50 +01:00
|
|
|
static const std::string GEOMETRY_COLUMNS;
|
|
|
|
static const std::string SPATIAL_REF_SYS;
|
2012-03-28 22:10:48 +02:00
|
|
|
static const double FMAX;
|
2012-04-08 02:20:56 +02:00
|
|
|
|
2011-11-14 04:37:50 +01:00
|
|
|
const std::string uri_;
|
|
|
|
const std::string username_;
|
|
|
|
const std::string password_;
|
|
|
|
const std::string table_;
|
2012-12-17 21:59:15 +01:00
|
|
|
std::string schema_;
|
|
|
|
std::string geometry_table_;
|
2011-11-14 04:37:50 +01:00
|
|
|
const std::string geometry_field_;
|
2012-12-17 21:59:15 +01:00
|
|
|
std::string key_field_;
|
2013-01-04 18:23:06 +01:00
|
|
|
mapnik::value_integer cursor_fetch_size_;
|
|
|
|
mapnik::value_integer row_limit_;
|
2012-12-17 21:59:15 +01:00
|
|
|
std::string geometryColumn_;
|
2012-01-17 07:09:46 +01:00
|
|
|
mapnik::datasource::datasource_t type_;
|
2012-12-17 21:59:15 +01:00
|
|
|
int srid_;
|
2011-11-14 04:37:50 +01:00
|
|
|
mutable bool extent_initialized_;
|
|
|
|
mutable mapnik::box2d<double> extent_;
|
2012-12-17 21:59:15 +01:00
|
|
|
bool simplify_geometries_;
|
|
|
|
layer_descriptor desc_;
|
2011-11-14 04:37:50 +01:00
|
|
|
ConnectionCreator<Connection> creator_;
|
|
|
|
const std::string bbox_token_;
|
|
|
|
const std::string scale_denom_token_;
|
2012-04-24 12:51:20 +02:00
|
|
|
const std::string pixel_width_token_;
|
|
|
|
const std::string pixel_height_token_;
|
2013-05-16 17:08:42 +02:00
|
|
|
int pool_max_size_;
|
2011-11-14 04:37:50 +01:00
|
|
|
bool persist_connection_;
|
|
|
|
bool extent_from_subquery_;
|
2012-12-17 19:03:07 +01:00
|
|
|
bool estimate_extent_;
|
2013-05-16 17:08:42 +02:00
|
|
|
int max_async_connections_;
|
|
|
|
bool asynchronous_request_;
|
2011-11-14 04:37:50 +01:00
|
|
|
int intersect_min_scale_;
|
|
|
|
int intersect_max_scale_;
|
2005-06-14 17:06:59 +02:00
|
|
|
};
|
|
|
|
|
2012-04-08 02:20:56 +02:00
|
|
|
#endif // POSTGIS_DATASOURCE_HPP
|