2006-03-31 10:32:02 +00:00
|
|
|
/*****************************************************************************
|
2011-11-14 03:37:50 +00:00
|
|
|
*
|
2006-03-31 10:32:02 +00:00
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
2005-06-14 15:06:59 +00:00
|
|
|
*
|
2021-01-05 14:39:07 +00:00
|
|
|
* Copyright (C) 2021 Artem Pavlenko
|
2005-06-14 15:06:59 +00:00
|
|
|
*
|
2006-03-31 10:32:02 +00: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 15:06:59 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2006-03-31 10:32:02 +00: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 15:06:59 +00:00
|
|
|
*
|
2006-03-31 10:32:02 +00:00
|
|
|
*****************************************************************************/
|
2005-06-14 15:06:59 +00:00
|
|
|
|
2011-05-10 14:22:47 +00:00
|
|
|
#ifndef POSTGIS_DATASOURCE_HPP
|
|
|
|
#define POSTGIS_DATASOURCE_HPP
|
2005-06-14 15:06:59 +00:00
|
|
|
|
2011-05-10 14:22:47 +00:00
|
|
|
// mapnik
|
2006-10-05 09:00:36 +00:00
|
|
|
#include <mapnik/datasource.hpp>
|
2012-07-25 02:21:55 +00:00
|
|
|
#include <mapnik/params.hpp>
|
|
|
|
#include <mapnik/query.hpp>
|
|
|
|
#include <mapnik/feature.hpp>
|
2017-01-26 08:51:37 +00:00
|
|
|
#include <mapnik/geometry/box2d.hpp>
|
2012-07-25 02:21:55 +00:00
|
|
|
#include <mapnik/coord.hpp>
|
2007-03-16 10:11:37 +00:00
|
|
|
#include <mapnik/feature_layer_desc.hpp>
|
2013-01-04 17:23:06 +00:00
|
|
|
#include <mapnik/unicode.hpp>
|
2016-08-02 14:34:59 +00:00
|
|
|
#include <mapnik/value/types.hpp>
|
2014-05-14 03:47:22 +00:00
|
|
|
#include <mapnik/attribute.hpp>
|
2011-05-10 14:22:47 +00:00
|
|
|
|
|
|
|
// boost
|
2012-07-25 02:21:55 +00:00
|
|
|
#include <boost/optional.hpp>
|
2005-06-14 15:06:59 +00:00
|
|
|
|
2012-07-25 02:21:55 +00:00
|
|
|
// stl
|
2013-09-25 05:57:01 +00:00
|
|
|
#include <memory>
|
2017-02-02 21:37:01 +00:00
|
|
|
#include <regex>
|
2012-07-25 02:21:55 +00:00
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
|
2007-02-14 19:54:39 +00:00
|
|
|
#include "connection_manager.hpp"
|
2009-02-05 17:41:44 +00:00
|
|
|
#include "resultset.hpp"
|
|
|
|
#include "cursorresultset.hpp"
|
2005-06-14 15:06:59 +00:00
|
|
|
|
2007-03-16 10:11:37 +00:00
|
|
|
using mapnik::transcoder;
|
|
|
|
using mapnik::datasource;
|
2013-05-16 15:08:42 +00:00
|
|
|
using mapnik::feature_style_context_map;
|
|
|
|
using mapnik::processor_context_ptr;
|
2009-12-16 20:02:06 +00:00
|
|
|
using mapnik::box2d;
|
2007-03-16 10:11:37 +00:00
|
|
|
using mapnik::layer_descriptor;
|
|
|
|
using mapnik::featureset_ptr;
|
|
|
|
using mapnik::feature_ptr;
|
|
|
|
using mapnik::query;
|
|
|
|
using mapnik::parameters;
|
|
|
|
using mapnik::coord2d;
|
|
|
|
|
2014-07-07 17:23:15 +00:00
|
|
|
using CnxPool_ptr = std::shared_ptr< ConnectionManager::PoolType>;
|
2013-05-16 15:08:42 +00:00
|
|
|
|
2005-09-08 13:09:04 +00:00
|
|
|
class postgis_datasource : public datasource
|
2005-06-14 15:06:59 +00:00
|
|
|
{
|
2012-03-28 20:10:48 +00:00
|
|
|
public:
|
2012-12-17 18:03:07 +00:00
|
|
|
postgis_datasource(const parameters ¶ms);
|
2012-03-28 20:10:48 +00:00
|
|
|
~postgis_datasource();
|
|
|
|
mapnik::datasource::datasource_t type() const;
|
2012-07-21 01:34:41 +00:00
|
|
|
static const char * name();
|
2013-05-16 15:08:42 +00:00
|
|
|
processor_context_ptr get_context(feature_style_context_map &) const;
|
2013-11-04 06:21:57 +00:00
|
|
|
featureset_ptr features_with_context(query const& q, processor_context_ptr ctx) const;
|
2013-09-24 00:37:46 +00:00
|
|
|
featureset_ptr features(query const& q) const;
|
2012-09-28 13:12:10 +00:00
|
|
|
featureset_ptr features_at_point(coord2d const& pt, double tol = 0) const;
|
2012-03-28 20:10:48 +00:00
|
|
|
mapnik::box2d<double> envelope() const;
|
2015-03-24 11:13:31 +00:00
|
|
|
boost::optional<mapnik::datasource_geometry_t> get_geometry_type() const;
|
2012-03-28 20:10:48 +00:00
|
|
|
layer_descriptor get_descriptor() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::string sql_bbox(box2d<double> const& env) const;
|
2014-05-14 03:47:22 +00:00
|
|
|
std::string populate_tokens(std::string const& sql,
|
|
|
|
double scale_denom,
|
|
|
|
box2d<double> const& env,
|
|
|
|
double pixel_width,
|
|
|
|
double pixel_height,
|
2017-02-02 21:37:01 +00:00
|
|
|
mapnik::attributes const& vars,
|
|
|
|
bool intersect = true) const;
|
2012-09-03 17:27:48 +00:00
|
|
|
std::string populate_tokens(std::string const& sql) const;
|
2017-02-08 16:30:25 +00:00
|
|
|
void append_geometry_table(std::ostream & os) const;
|
2013-09-25 05:57:01 +00: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 03:37:50 +00:00
|
|
|
static const std::string GEOMETRY_COLUMNS;
|
|
|
|
static const std::string SPATIAL_REF_SYS;
|
2012-04-08 00:20:56 +00:00
|
|
|
|
2011-11-14 03:37:50 +00:00
|
|
|
const std::string uri_;
|
|
|
|
const std::string username_;
|
|
|
|
const std::string password_;
|
|
|
|
const std::string table_;
|
2017-02-08 16:30:25 +00:00
|
|
|
const std::string geometry_table_;
|
2011-11-14 03:37:50 +00:00
|
|
|
const std::string geometry_field_;
|
2017-02-08 16:30:25 +00:00
|
|
|
std::string parsed_schema_;
|
|
|
|
std::string parsed_table_;
|
2012-12-17 20:59:15 +00:00
|
|
|
std::string key_field_;
|
2013-01-04 17:23:06 +00:00
|
|
|
mapnik::value_integer cursor_fetch_size_;
|
|
|
|
mapnik::value_integer row_limit_;
|
2012-12-17 20:59:15 +00:00
|
|
|
std::string geometryColumn_;
|
2012-01-17 06:09:46 +00:00
|
|
|
mapnik::datasource::datasource_t type_;
|
2012-12-17 20:59:15 +00:00
|
|
|
int srid_;
|
2011-11-14 03:37:50 +00:00
|
|
|
mutable bool extent_initialized_;
|
|
|
|
mutable mapnik::box2d<double> extent_;
|
2012-12-17 20:59:15 +00:00
|
|
|
bool simplify_geometries_;
|
|
|
|
layer_descriptor desc_;
|
2011-11-14 03:37:50 +00:00
|
|
|
ConnectionCreator<Connection> creator_;
|
2013-05-16 15:08:42 +00:00
|
|
|
int pool_max_size_;
|
2011-11-14 03:37:50 +00:00
|
|
|
bool persist_connection_;
|
|
|
|
bool extent_from_subquery_;
|
2012-12-17 18:03:07 +00:00
|
|
|
bool estimate_extent_;
|
2013-05-16 15:08:42 +00:00
|
|
|
int max_async_connections_;
|
|
|
|
bool asynchronous_request_;
|
2016-03-14 11:12:54 +00:00
|
|
|
bool twkb_encoding_;
|
|
|
|
mapnik::value_double twkb_rounding_adjustment_;
|
|
|
|
mapnik::value_double simplify_snap_ratio_;
|
|
|
|
mapnik::value_double simplify_dp_ratio_;
|
|
|
|
mapnik::value_double simplify_prefilter_;
|
|
|
|
bool simplify_dp_preserve_;
|
|
|
|
mapnik::value_double simplify_clip_resolution_;
|
2017-02-02 21:37:01 +00:00
|
|
|
std::regex re_tokens_;
|
2011-11-14 03:37:50 +00:00
|
|
|
int intersect_min_scale_;
|
|
|
|
int intersect_max_scale_;
|
2015-10-07 19:59:45 +00:00
|
|
|
bool key_field_as_attribute_;
|
2005-06-14 15:06:59 +00:00
|
|
|
};
|
|
|
|
|
2012-04-08 00:20:56 +00:00
|
|
|
#endif // POSTGIS_DATASOURCE_HPP
|