mapnik/plugins/input/postgis/postgis_datasource.cpp

1028 lines
36 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
*
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-10-23 21:23:04 +02:00
#include "connection_manager.hpp"
#include "postgis_datasource.hpp"
#include "postgis_featureset.hpp"
2005-06-14 17:06:59 +02:00
// mapnik
2012-04-08 02:20:56 +02:00
#include <mapnik/debug.hpp>
#include <mapnik/global.hpp>
2012-03-07 19:16:41 +01:00
#include <mapnik/boolean.hpp>
#include <mapnik/sql_utils.hpp>
#include <mapnik/util/conversions.hpp>
2012-04-08 02:20:56 +02:00
#include <mapnik/timer.hpp>
// boost
#include <boost/algorithm/string.hpp>
#include <boost/tokenizer.hpp>
#include <boost/format.hpp>
#include <boost/make_shared.hpp>
// stl
2005-06-14 17:06:59 +02:00
#include <string>
#include <algorithm>
#include <set>
#include <sstream>
#include <iomanip>
DATASOURCE_PLUGIN(postgis_datasource)
2005-06-14 17:06:59 +02:00
2012-03-28 22:10:48 +02:00
const double postgis_datasource::FMAX = std::numeric_limits<double>::max();
const std::string postgis_datasource::GEOMETRY_COLUMNS = "geometry_columns";
const std::string postgis_datasource::SPATIAL_REF_SYS = "spatial_ref_system";
2005-06-14 17:06:59 +02:00
using boost::shared_ptr;
using mapnik::PoolGuard;
using mapnik::attribute_descriptor;
postgis_datasource::postgis_datasource(parameters const& params, bool bind)
2010-06-25 17:23:09 +02:00
: datasource(params),
2012-03-28 22:10:48 +02:00
table_(*params_.get<std::string>("table", "")),
2010-06-25 17:23:09 +02:00
schema_(""),
2012-03-28 22:10:48 +02:00
geometry_table_(*params_.get<std::string>("geometry_table", "")),
geometry_field_(*params_.get<std::string>("geometry_field", "")),
key_field_(*params_.get<std::string>("key_field", "")),
cursor_fetch_size_(*params_.get<int>("cursor_size", 0)),
row_limit_(*params_.get<int>("row_limit", 0)),
2010-06-25 17:23:09 +02:00
type_(datasource::Vector),
2012-03-28 22:10:48 +02:00
srid_(*params_.get<int>("srid", 0)),
2010-06-25 17:23:09 +02:00
extent_initialized_(false),
simplify_geometries_(false),
2012-03-28 22:10:48 +02:00
desc_(*params_.get<std::string>("type"), "utf-8"),
2010-06-25 17:23:09 +02:00
creator_(params.get<std::string>("host"),
params.get<std::string>("port"),
params.get<std::string>("dbname"),
params.get<std::string>("user"),
params.get<std::string>("password"),
2012-03-28 22:10:48 +02:00
params.get<std::string>("connect_timeout", "4")),
2010-06-25 17:23:09 +02:00
bbox_token_("!bbox!"),
scale_denom_token_("!scale_denominator!"),
pixel_width_token_("!pixel_width!"),
pixel_height_token_("!pixel_height!"),
2012-03-28 22:10:48 +02:00
persist_connection_(*params_.get<mapnik::boolean>("persist_connection", true)),
extent_from_subquery_(*params_.get<mapnik::boolean>("extent_from_subquery", false)),
// params below are for testing purposes only (will likely be removed at any time)
2012-03-28 22:10:48 +02:00
intersect_min_scale_(*params_.get<int>("intersect_min_scale", 0)),
intersect_max_scale_(*params_.get<int>("intersect_max_scale", 0))
{
2012-03-28 22:10:48 +02:00
if (table_.empty())
{
throw mapnik::datasource_exception("Postgis Plugin: missing <table> parameter");
}
2012-03-28 22:10:48 +02:00
boost::optional<std::string> ext = params_.get<std::string>("extent");
if (ext)
{
extent_initialized_ = extent_.from_string(*ext);
}
2010-06-25 17:23:09 +02:00
if (bind)
{
this->bind();
}
}
void postgis_datasource::bind() const
{
2012-03-28 22:10:48 +02:00
if (is_bound_)
{
return;
}
2012-04-08 02:20:56 +02:00
#ifdef MAPNIK_STATS
mapnik::progress_timer __stats__(std::clog, "postgis_datasource::bind");
#endif
2012-03-28 22:10:48 +02:00
boost::optional<int> initial_size = params_.get<int>("initial_size", 1);
boost::optional<int> max_size = params_.get<int>("max_size", 10);
boost::optional<mapnik::boolean> autodetect_key_field = params_.get<mapnik::boolean>("autodetect_key_field", false);
boost::optional<mapnik::boolean> simplify_opt = params_.get<mapnik::boolean>("simplify_geometries", false);
simplify_geometries_ = simplify_opt && *simplify_opt;
2012-03-28 22:10:48 +02:00
ConnectionManager* mgr = ConnectionManager::instance();
2010-06-25 17:23:09 +02:00
mgr->registerPool(creator_, *initial_size, *max_size);
2012-03-28 22:10:48 +02:00
shared_ptr< Pool<Connection,ConnectionCreator> > pool = mgr->getPool(creator_.id());
2010-06-25 17:23:09 +02:00
if (pool)
{
2010-06-25 17:23:09 +02:00
shared_ptr<Connection> conn = pool->borrowObject();
if (conn && conn->isOK())
{
PoolGuard<shared_ptr<Connection>,
2012-03-28 22:10:48 +02:00
shared_ptr< Pool<Connection,ConnectionCreator> > > guard(conn, pool);
2010-06-25 17:23:09 +02:00
desc_.set_encoding(conn->client_encoding());
2012-03-28 22:10:48 +02:00
if (geometry_table_.empty())
2010-06-25 17:23:09 +02:00
{
geometry_table_ = mapnik::sql_utils::table_from_sql(table_);
2010-06-25 17:23:09 +02:00
}
2012-03-28 22:10:48 +02:00
2010-06-25 17:23:09 +02:00
std::string::size_type idx = geometry_table_.find_last_of('.');
2012-03-28 22:10:48 +02:00
if (idx != std::string::npos)
2010-06-25 17:23:09 +02:00
{
2012-03-28 22:10:48 +02:00
schema_ = geometry_table_.substr(0, idx);
geometry_table_ = geometry_table_.substr(idx + 1);
2010-06-25 17:23:09 +02:00
}
else
{
geometry_table_ = geometry_table_.substr(0);
}
// If we do not know both the geometry_field and the srid
// then first attempt to fetch the geometry name from a geometry_columns entry.
// This will return no records if we are querying a bogus table returned
// from the simplistic table parsing in table_from_sql() or if
// the table parameter references a table, view, or subselect not
// registered in the geometry columns.
geometryColumn_ = geometry_field_;
2012-03-28 22:10:48 +02:00
if (geometryColumn_.empty() || srid_ == 0)
2010-06-25 17:23:09 +02:00
{
2012-04-08 02:20:56 +02:00
#ifdef MAPNIK_STATS
mapnik::progress_timer __stats2__(std::clog, "postgis_datasource::bind(get_srid_and_geometry_column)");
#endif
2010-06-25 17:23:09 +02:00
std::ostringstream s;
s << "SELECT f_geometry_column, srid FROM "
<< GEOMETRY_COLUMNS <<" WHERE f_table_name='"
<< mapnik::sql_utils::unquote_double(geometry_table_)
<< "'";
2012-03-28 22:10:48 +02:00
if (! schema_.empty())
{
s << " AND f_table_schema='"
<< mapnik::sql_utils::unquote_double(schema_)
<< "'";
2012-03-28 22:10:48 +02:00
}
2012-03-28 22:10:48 +02:00
if (! geometry_field_.empty())
{
s << " AND f_geometry_column='"
<< mapnik::sql_utils::unquote_double(geometry_field_)
<< "'";
2012-03-28 22:10:48 +02:00
}
shared_ptr<ResultSet> rs = conn->executeQuery(s.str());
2010-06-25 17:23:09 +02:00
if (rs->next())
{
2010-06-25 17:23:09 +02:00
geometryColumn_ = rs->getValue("f_geometry_column");
if (srid_ == 0)
{
2012-03-28 22:10:48 +02:00
const char* srid_c = rs->getValue("srid");
if (srid_c != NULL)
2010-06-25 17:23:09 +02:00
{
2012-03-28 22:10:48 +02:00
int result = 0;
if (mapnik::util::string2int(srid_c, result))
{
srid_ = result;
2012-03-28 22:10:48 +02:00
}
2010-06-25 17:23:09 +02:00
}
}
}
2010-06-25 17:23:09 +02:00
rs->close();
2010-06-25 17:23:09 +02:00
// If we still do not know the srid then we can try to fetch
// it from the 'table_' parameter, which should work even if it is
// a subselect as long as we know the geometry_field to query
2012-03-28 22:10:48 +02:00
if (! geometryColumn_.empty() && srid_ <= 0)
{
2010-06-25 17:23:09 +02:00
s.str("");
2012-03-28 22:10:48 +02:00
s << "SELECT ST_SRID(\"" << geometryColumn_ << "\") AS srid FROM "
<< populate_tokens(table_) << " WHERE \"" << geometryColumn_ << "\" IS NOT NULL LIMIT 1;";
shared_ptr<ResultSet> rs = conn->executeQuery(s.str());
2010-06-25 17:23:09 +02:00
if (rs->next())
{
2012-03-28 22:10:48 +02:00
const char* srid_c = rs->getValue("srid");
if (srid_c != NULL)
2010-06-25 17:23:09 +02:00
{
2012-03-28 22:10:48 +02:00
int result = 0;
if (mapnik::util::string2int(srid_c, result))
{
srid_ = result;
2012-03-28 22:10:48 +02:00
}
2010-06-25 17:23:09 +02:00
}
}
2010-06-25 17:23:09 +02:00
rs->close();
}
2006-07-24 22:06:09 +02:00
}
// detect primary key
if (*autodetect_key_field && key_field_.empty())
{
2012-04-08 02:20:56 +02:00
#ifdef MAPNIK_STATS
mapnik::progress_timer __stats2__(std::clog, "postgis_datasource::bind(get_primary_key)");
#endif
std::ostringstream s;
s << "SELECT a.attname, a.attnum, t.typname, t.typname in ('int2','int4','int8') "
2012-04-17 07:23:05 +02:00
"AS is_int FROM pg_class c, pg_attribute a, pg_type t, pg_namespace n, pg_index i "
"WHERE a.attnum > 0 AND a.attrelid = c.oid "
"AND a.atttypid = t.oid AND c.relnamespace = n.oid "
"AND c.oid = i.indrelid AND i.indisprimary = 't' "
"AND t.typname !~ '^geom' AND c.relname ="
<< " '" << mapnik::sql_utils::unquote_double(geometry_table_) << "' "
2012-04-17 07:23:05 +02:00
//"AND a.attnum = ANY (i.indkey) " // postgres >= 8.1
<< "AND (i.indkey[0]=a.attnum OR i.indkey[1]=a.attnum OR i.indkey[2]=a.attnum "
2012-04-17 07:23:05 +02:00
"OR i.indkey[3]=a.attnum OR i.indkey[4]=a.attnum OR i.indkey[5]=a.attnum "
"OR i.indkey[6]=a.attnum OR i.indkey[7]=a.attnum OR i.indkey[8]=a.attnum "
"OR i.indkey[9]=a.attnum) ";
if (! schema_.empty())
{
s << "AND n.nspname='"
<< mapnik::sql_utils::unquote_double(schema_)
<< "' ";
}
s << "ORDER BY a.attnum";
shared_ptr<ResultSet> rs_key = conn->executeQuery(s.str());
if (rs_key->next())
{
unsigned int result_rows = rs_key->size();
if (result_rows == 1)
{
bool is_int = (std::string(rs_key->getValue(3)) == "t");
if (is_int)
{
const char* key_field_string = rs_key->getValue(0);
if (key_field_string)
{
key_field_ = std::string(key_field_string);
MAPNIK_LOG_DEBUG(postgis) << "postgis_datasource: auto-detected key field of '"
<< key_field_ << "' on table '" << geometry_table_ << "'";
}
}
else
{
// throw for cases like a numeric primary key, which is invalid
// as it should be floating point (int numerics are useless)
std::ostringstream err;
err << "PostGIS Plugin: Error: '"
<< rs_key->getValue(0)
<< "' on table '"
<< geometry_table_
<< "' is not a valid integer primary key field\n";
throw mapnik::datasource_exception(err.str());
}
}
else if (result_rows > 1)
{
std::ostringstream err;
err << "PostGIS Plugin: Error: '"
<< "multi column primary key detected but is not supported";
throw mapnik::datasource_exception(err.str());
}
}
rs_key->close();
}
// if a globally unique key field/primary key is required
// but still not known at this point, then throw
if (*autodetect_key_field && key_field_.empty())
{
throw mapnik::datasource_exception(std::string("PostGIS Plugin: Error: primary key required")
2012-04-17 07:23:05 +02:00
+ " but could not be detected for table '" +
geometry_table_ + "', please supply 'key_field' option to specify field to use for primary key");
}
2010-06-25 17:23:09 +02:00
if (srid_ == 0)
{
srid_ = -1;
2012-03-28 22:10:48 +02:00
MAPNIK_LOG_DEBUG(postgis) << "postgis_datasource: Table " << table_ << " is using SRID=" << srid_;
2010-06-25 17:23:09 +02:00
}
// At this point the geometry_field may still not be known
// but we'll catch that where more useful...
MAPNIK_LOG_DEBUG(postgis) << "postgis_datasource: Using SRID=" << srid_;
MAPNIK_LOG_DEBUG(postgis) << "postgis_datasource: Using geometry_column=" << geometryColumn_;
// collect attribute desc
2012-04-08 02:20:56 +02:00
#ifdef MAPNIK_STATS
mapnik::progress_timer __stats2__(std::clog, "postgis_datasource::bind(get_column_description)");
#endif
2010-06-25 17:23:09 +02:00
std::ostringstream s;
s << "SELECT * FROM " << populate_tokens(table_) << " LIMIT 0";
shared_ptr<ResultSet> rs = conn->executeQuery(s.str());
2010-06-25 17:23:09 +02:00
int count = rs->getNumFields();
bool found_key_field = false;
2012-03-28 22:10:48 +02:00
for (int i = 0; i < count; ++i)
2006-07-24 22:06:09 +02:00
{
2012-03-28 22:10:48 +02:00
std::string fld_name = rs->getFieldName(i);
2010-06-25 17:23:09 +02:00
int type_oid = rs->getTypeOID(i);
// validate type of key_field
2012-03-28 22:10:48 +02:00
if (! found_key_field && ! key_field_.empty() && fld_name == key_field_)
{
if (type_oid == 20 || type_oid == 21 || type_oid == 23)
2010-11-19 00:42:33 +01:00
{
found_key_field = true;
2012-03-28 22:10:48 +02:00
desc_.add_descriptor(attribute_descriptor(fld_name, mapnik::Integer));
2010-11-19 00:42:33 +01:00
}
else
2010-06-25 17:23:09 +02:00
{
std::ostringstream error_s;
error_s << "invalid type '";
2012-03-28 22:10:48 +02:00
std::ostringstream type_s;
type_s << "SELECT oid, typname FROM pg_type WHERE oid = " << type_oid;
2012-03-28 22:10:48 +02:00
shared_ptr<ResultSet> rs_oid = conn->executeQuery(type_s.str());
if (rs_oid->next())
{
error_s << rs_oid->getValue("typname")
<< "' (oid:" << rs_oid->getValue("oid") << ")";
}
else
{
error_s << "oid:" << type_oid << "'";
}
2012-03-28 22:10:48 +02:00
rs_oid->close();
error_s << " for key_field '" << fld_name << "' - "
<< "must be an integer primary key";
2012-03-28 22:10:48 +02:00
rs->close();
2012-03-28 22:10:48 +02:00
throw mapnik::datasource_exception(error_s.str());
2010-06-25 17:23:09 +02:00
}
}
else
{
switch (type_oid)
2010-06-25 17:23:09 +02:00
{
case 16: // bool
2012-03-28 22:10:48 +02:00
desc_.add_descriptor(attribute_descriptor(fld_name, mapnik::Boolean));
break;
case 20: // int8
case 21: // int2
case 23: // int4
2012-03-28 22:10:48 +02:00
desc_.add_descriptor(attribute_descriptor(fld_name, mapnik::Integer));
break;
case 700: // float4
case 701: // float8
case 1700: // numeric
2012-03-28 22:10:48 +02:00
desc_.add_descriptor(attribute_descriptor(fld_name, mapnik::Double));
case 1042: // bpchar
case 1043: // varchar
case 25: // text
2012-03-28 22:10:48 +02:00
desc_.add_descriptor(attribute_descriptor(fld_name, mapnik::String));
break;
default: // should not get here
2012-04-08 02:20:56 +02:00
#ifdef MAPNIK_LOG
s.str("");
s << "SELECT oid, typname FROM pg_type WHERE oid = " << type_oid;
2012-04-08 02:20:56 +02:00
shared_ptr<ResultSet> rs_oid = conn->executeQuery(s.str());
if (rs_oid->next())
{
MAPNIK_LOG_WARN(postgis) << "postgis_datasource: Unknown type=" << rs_oid->getValue("typname")
<< " (oid:" << rs_oid->getValue("oid") << ")";
}
else
{
MAPNIK_LOG_WARN(postgis) << "postgis_datasource: Unknown type_oid=" << type_oid;
}
rs_oid->close();
#endif
break;
2010-06-25 17:23:09 +02:00
}
}
}
2010-06-25 17:23:09 +02:00
rs->close();
is_bound_ = true;
2010-06-25 17:23:09 +02:00
}
}
2005-06-14 17:06:59 +02:00
}
2012-04-08 02:20:56 +02:00
postgis_datasource::~postgis_datasource()
{
if (is_bound_ && ! persist_connection_)
{
ConnectionManager* mgr = ConnectionManager::instance();
shared_ptr< Pool<Connection,ConnectionCreator> > pool = mgr->getPool(creator_.id());
if (pool)
{
shared_ptr<Connection> conn = pool->borrowObject();
if (conn)
{
conn->close();
}
}
}
}
const char * postgis_datasource::name()
2005-06-14 17:06:59 +02:00
{
return "postgis";
2005-06-14 17:06:59 +02:00
}
mapnik::datasource::datasource_t postgis_datasource::type() const
2005-06-14 17:06:59 +02:00
{
2010-06-25 17:23:09 +02:00
return type_;
2005-06-14 17:06:59 +02:00
}
layer_descriptor postgis_datasource::get_descriptor() const
2005-06-14 17:06:59 +02:00
{
2012-03-28 22:10:48 +02:00
if (! is_bound_)
{
bind();
}
2010-06-25 17:23:09 +02:00
return desc_;
2005-06-14 17:06:59 +02:00
}
2009-12-16 21:02:06 +01:00
std::string postgis_datasource::sql_bbox(box2d<double> const& env) const
{
std::ostringstream b;
2012-03-28 22:10:48 +02:00
if (srid_ > 0)
2012-03-28 22:10:48 +02:00
{
b << "ST_SetSRID(";
2012-03-28 22:10:48 +02:00
}
b << "'BOX3D(";
b << std::setprecision(16);
b << env.minx() << " " << env.miny() << ",";
b << env.maxx() << " " << env.maxy() << ")'::box3d";
2012-03-28 22:10:48 +02:00
if (srid_ > 0)
2012-03-28 22:10:48 +02:00
{
b << ", " << srid_ << ")";
2012-03-28 22:10:48 +02:00
}
return b.str();
}
std::string postgis_datasource::populate_tokens(const std::string& sql) const
{
std::string populated_sql = sql;
2012-03-28 22:10:48 +02:00
if (boost::algorithm::icontains(sql, bbox_token_))
{
2012-03-28 22:10:48 +02:00
box2d<double> max_env(-1.0 * FMAX, -1.0 * FMAX, FMAX, FMAX);
const std::string max_box = sql_bbox(max_env);
boost::algorithm::replace_all(populated_sql, bbox_token_, max_box);
}
2012-03-28 22:10:48 +02:00
if (boost::algorithm::icontains(sql, scale_denom_token_))
{
std::ostringstream ss;
ss << FMAX;
2012-03-28 22:10:48 +02:00
boost::algorithm::replace_all(populated_sql, scale_denom_token_, ss.str());
}
2012-03-28 22:10:48 +02:00
if (boost::algorithm::icontains(sql, pixel_width_token_))
{
std::ostringstream ss;
ss << 0;
boost::algorithm::replace_all(populated_sql, pixel_width_token_, ss.str());
}
if (boost::algorithm::icontains(sql, pixel_height_token_))
{
std::ostringstream ss;
ss << 0;
boost::algorithm::replace_all(populated_sql, pixel_height_token_, ss.str());
}
return populated_sql;
}
std::string postgis_datasource::populate_tokens(const std::string& sql, double scale_denom, box2d<double> const& env, double pixel_width, double pixel_height) const
{
std::string populated_sql = sql;
std::string box = sql_bbox(env);
2012-03-28 22:10:48 +02:00
if (boost::algorithm::icontains(populated_sql, scale_denom_token_))
{
std::ostringstream ss;
ss << scale_denom;
2012-03-28 22:10:48 +02:00
boost::algorithm::replace_all(populated_sql, scale_denom_token_, ss.str());
}
if (boost::algorithm::icontains(sql, pixel_width_token_))
{
std::ostringstream ss;
ss << pixel_width;
boost::algorithm::replace_all(populated_sql, pixel_width_token_, ss.str());
}
if (boost::algorithm::icontains(sql, pixel_height_token_))
{
std::ostringstream ss;
ss << pixel_height;
boost::algorithm::replace_all(populated_sql, pixel_height_token_, ss.str());
}
2012-03-28 22:10:48 +02:00
if (boost::algorithm::icontains(populated_sql, bbox_token_))
{
2012-03-28 22:10:48 +02:00
boost::algorithm::replace_all(populated_sql, bbox_token_, box);
return populated_sql;
}
else
{
std::ostringstream s;
2012-03-28 22:10:48 +02:00
if (intersect_min_scale_ > 0 && (scale_denom <= intersect_min_scale_))
{
s << " WHERE ST_Intersects(\"" << geometryColumn_ << "\"," << box << ")";
}
2012-03-28 22:10:48 +02:00
else if (intersect_max_scale_ > 0 && (scale_denom >= intersect_max_scale_))
{
// do no bbox restriction
}
else
{
s << " WHERE \"" << geometryColumn_ << "\" && " << box;
}
2012-03-28 22:10:48 +02:00
return populated_sql + s.str();
}
}
boost::shared_ptr<IResultSet> postgis_datasource::get_resultset(boost::shared_ptr<Connection> const &conn, std::string const& sql) const
{
2010-11-19 00:42:33 +01:00
if (cursor_fetch_size_ > 0)
{
2010-06-25 17:23:09 +02:00
// cursor
std::ostringstream csql;
std::string cursor_name = conn->new_cursor_name();
2010-06-25 17:23:09 +02:00
csql << "DECLARE " << cursor_name << " BINARY INSENSITIVE NO SCROLL CURSOR WITH HOLD FOR " << sql << " FOR READ ONLY";
2012-03-28 22:10:48 +02:00
if (! conn->execute(csql.str()))
{
2012-02-02 01:17:59 +01:00
// TODO - better error
2010-11-19 00:42:33 +01:00
throw mapnik::datasource_exception("Postgis Plugin: error creating cursor for data select." );
2012-03-28 22:10:48 +02:00
}
2010-11-19 00:42:33 +01:00
return boost::make_shared<CursorResultSet>(conn, cursor_name, cursor_fetch_size_);
2010-11-19 00:42:33 +01:00
}
else
{
2010-06-25 17:23:09 +02:00
// no cursor
2012-03-28 22:10:48 +02:00
return conn->executeQuery(sql, 1);
2010-06-25 17:23:09 +02:00
}
}
featureset_ptr postgis_datasource::features(const query& q) const
2005-06-14 17:06:59 +02:00
{
2012-03-28 22:10:48 +02:00
if (! is_bound_)
{
bind();
}
2012-04-08 02:20:56 +02:00
#ifdef MAPNIK_STATS
mapnik::progress_timer __stats__(std::clog, "postgis_datasource::features");
#endif
2010-06-25 17:23:09 +02:00
box2d<double> const& box = q.get_bbox();
double scale_denom = q.scale_denominator();
2012-03-28 22:10:48 +02:00
ConnectionManager* mgr = ConnectionManager::instance();
shared_ptr< Pool<Connection,ConnectionCreator> > pool = mgr->getPool(creator_.id());
2010-06-25 17:23:09 +02:00
if (pool)
{
shared_ptr<Connection> conn = pool->borrowObject();
if (conn && conn->isOK())
{
2012-03-28 22:10:48 +02:00
PoolGuard<shared_ptr<Connection>, shared_ptr< Pool<Connection,ConnectionCreator> > > guard(conn ,pool);
2010-06-25 17:23:09 +02:00
2012-03-28 22:10:48 +02:00
if (geometryColumn_.empty())
2010-06-25 17:23:09 +02:00
{
std::ostringstream s_error;
s_error << "PostGIS: geometry name lookup failed for table '";
2012-03-28 22:10:48 +02:00
if (! schema_.empty())
{
s_error << schema_ << ".";
}
s_error << geometry_table_
2010-06-25 17:23:09 +02:00
<< "'. Please manually provide the 'geometry_field' parameter or add an entry "
<< "in the geometry_columns for '";
2012-03-28 22:10:48 +02:00
if (! schema_.empty())
{
s_error << schema_ << ".";
}
s_error << geometry_table_ << "'.";
2012-03-28 22:10:48 +02:00
throw mapnik::datasource_exception(s_error.str());
2010-06-25 17:23:09 +02:00
}
2012-02-02 02:37:35 +01:00
2010-06-25 17:23:09 +02:00
std::ostringstream s;
const double px_gw = 1.0 / boost::get<0>(q.resolution());
const double px_gh = 1.0 / boost::get<1>(q.resolution());
s << "SELECT ST_AsBinary(";
if (simplify_geometries_) {
s << "ST_Simplify(";
}
s << "\"" << geometryColumn_ << "\"";
if (simplify_geometries_) {
const double tolerance = std::min(px_gw, px_gh) / 2.0;
s << ", " << tolerance << ")";
}
s << ") AS geom";
mapnik::context_ptr ctx = boost::make_shared<mapnik::context_type>();
std::set<std::string> const& props = q.property_names();
std::set<std::string>::const_iterator pos = props.begin();
std::set<std::string>::const_iterator end = props.end();
2012-03-28 22:10:48 +02:00
if (! key_field_.empty())
{
2012-03-28 22:10:48 +02:00
mapnik::sql_utils::quote_attr(s, key_field_);
ctx->push(key_field_);
for (; pos != end; ++pos)
{
if (*pos != key_field_)
{
mapnik::sql_utils::quote_attr(s, *pos);
ctx->push(*pos);
}
}
}
else
2010-06-25 17:23:09 +02:00
{
for (; pos != end; ++pos)
{
mapnik::sql_utils::quote_attr(s, *pos);
ctx->push(*pos);
}
}
2010-06-25 17:23:09 +02:00
std::string table_with_bbox = populate_tokens(table_, scale_denom, box, px_gw, px_gh);
2010-06-25 17:23:09 +02:00
2012-03-28 22:10:48 +02:00
s << " FROM " << table_with_bbox;
2010-06-25 17:23:09 +02:00
2012-03-28 22:10:48 +02:00
if (row_limit_ > 0)
{
2010-06-25 17:23:09 +02:00
s << " LIMIT " << row_limit_;
}
2010-06-25 17:23:09 +02:00
boost::shared_ptr<IResultSet> rs = get_resultset(conn, s.str());
return boost::make_shared<postgis_featureset>(rs, ctx, desc_.get_encoding(), !key_field_.empty());
2010-06-25 17:23:09 +02:00
}
else
{
2010-11-19 00:42:33 +01:00
throw mapnik::datasource_exception("Postgis Plugin: bad connection");
}
2010-06-25 17:23:09 +02:00
}
2012-03-28 22:10:48 +02:00
2010-06-25 17:23:09 +02:00
return featureset_ptr();
2005-06-14 17:06:59 +02:00
}
featureset_ptr postgis_datasource::features_at_point(coord2d const& pt) const
{
2012-03-28 22:10:48 +02:00
if (! is_bound_)
{
bind();
}
2012-04-08 02:20:56 +02:00
#ifdef MAPNIK_STATS
mapnik::progress_timer __stats__(std::clog, "postgis_datasource::features_at_point");
#endif
2012-03-28 22:10:48 +02:00
ConnectionManager* mgr = ConnectionManager::instance();
shared_ptr< Pool<Connection,ConnectionCreator> > pool = mgr->getPool(creator_.id());
2010-06-25 17:23:09 +02:00
if (pool)
{
shared_ptr<Connection> conn = pool->borrowObject();
if (conn && conn->isOK())
{
2012-03-28 22:10:48 +02:00
PoolGuard<shared_ptr<Connection>, shared_ptr< Pool<Connection,ConnectionCreator> > > guard(conn, pool);
2010-06-25 17:23:09 +02:00
2012-03-28 22:10:48 +02:00
if (geometryColumn_.empty())
2010-06-25 17:23:09 +02:00
{
std::ostringstream s_error;
s_error << "PostGIS: geometry name lookup failed for table '";
2012-03-28 22:10:48 +02:00
if (! schema_.empty())
{
s_error << schema_ << ".";
}
s_error << geometry_table_
2010-06-25 17:23:09 +02:00
<< "'. Please manually provide the 'geometry_field' parameter or add an entry "
<< "in the geometry_columns for '";
2012-03-28 22:10:48 +02:00
if (! schema_.empty())
{
s_error << schema_ << ".";
}
s_error << geometry_table_ << "'.";
2012-03-28 22:10:48 +02:00
2010-06-25 17:23:09 +02:00
throw mapnik::datasource_exception(s_error.str());
}
std::ostringstream s;
s << "SELECT ST_AsBinary(\"" << geometryColumn_ << "\") AS geom";
mapnik::context_ptr ctx = boost::make_shared<mapnik::context_type>();
std::vector<attribute_descriptor>::const_iterator itr = desc_.get_descriptors().begin();
std::vector<attribute_descriptor>::const_iterator end = desc_.get_descriptors().end();
2012-03-28 22:10:48 +02:00
if (! key_field_.empty())
{
2012-03-28 22:10:48 +02:00
mapnik::sql_utils::quote_attr(s, key_field_);
ctx->push(key_field_);
for (; itr != end; ++itr)
{
if (itr->get_name() != key_field_)
{
mapnik::sql_utils::quote_attr(s, itr->get_name());
ctx->push(itr->get_name());
}
}
}
else
2010-06-25 17:23:09 +02:00
{
for (; itr != end; ++itr)
{
mapnik::sql_utils::quote_attr(s, itr->get_name());
ctx->push(itr->get_name());
}
2010-06-25 17:23:09 +02:00
}
2012-03-28 22:10:48 +02:00
box2d<double> box(pt.x, pt.y, pt.x, pt.y);
std::string table_with_bbox = populate_tokens(table_, FMAX, box, 0, 0);
2010-06-25 17:23:09 +02:00
2012-03-28 22:10:48 +02:00
s << " FROM " << table_with_bbox;
2012-03-28 22:10:48 +02:00
if (row_limit_ > 0)
{
2010-06-25 17:23:09 +02:00
s << " LIMIT " << row_limit_;
}
2010-06-25 17:23:09 +02:00
boost::shared_ptr<IResultSet> rs = get_resultset(conn, s.str());
return boost::make_shared<postgis_featureset>(rs, ctx, desc_.get_encoding(), !key_field_.empty());
2010-06-25 17:23:09 +02:00
}
}
2012-03-28 22:10:48 +02:00
2010-06-25 17:23:09 +02:00
return featureset_ptr();
}
2009-12-16 21:02:06 +01:00
box2d<double> postgis_datasource::envelope() const
2005-06-14 17:06:59 +02:00
{
2012-03-28 22:10:48 +02:00
if (extent_initialized_)
{
return extent_;
}
2012-03-28 22:10:48 +02:00
if (! is_bound_)
{
bind();
}
ConnectionManager* mgr = ConnectionManager::instance();
shared_ptr< Pool<Connection,ConnectionCreator> > pool = mgr->getPool(creator_.id());
2010-06-25 17:23:09 +02:00
if (pool)
{
shared_ptr<Connection> conn = pool->borrowObject();
if (conn && conn->isOK())
{
2012-03-28 22:10:48 +02:00
PoolGuard<shared_ptr<Connection>, shared_ptr< Pool<Connection,ConnectionCreator> > > guard(conn, pool);
2010-06-25 17:23:09 +02:00
std::ostringstream s;
2012-03-28 22:10:48 +02:00
boost::optional<mapnik::boolean> estimate_extent =
params_.get<mapnik::boolean>("estimate_extent", false);
if (geometryColumn_.empty())
2006-11-29 13:12:23 +01:00
{
2010-06-25 17:23:09 +02:00
std::ostringstream s_error;
s_error << "PostGIS: unable to query the layer extent of table '";
2012-03-28 22:10:48 +02:00
if (! schema_.empty())
{
s_error << schema_ << ".";
}
s_error << geometry_table_ << "' because we cannot determine the geometry field name."
<< "\nPlease provide either an 'extent' parameter to skip this query, "
<< "a 'geometry_field' and/or 'geometry_table' parameter, or add a "
2010-06-25 17:23:09 +02:00
<< "record to the 'geometry_columns' for your table.";
2012-03-28 22:10:48 +02:00
2010-11-19 00:42:33 +01:00
throw mapnik::datasource_exception("Postgis Plugin: " + s_error.str());
2006-11-29 13:12:23 +01:00
}
2010-06-25 17:23:09 +02:00
if (estimate_extent && *estimate_extent)
2006-11-29 13:12:23 +01:00
{
2010-06-25 17:23:09 +02:00
s << "SELECT ST_XMin(ext),ST_YMin(ext),ST_XMax(ext),ST_YMax(ext)"
<< " FROM (SELECT ST_Estimated_Extent('";
2012-03-28 22:10:48 +02:00
if (! schema_.empty())
2010-06-25 17:23:09 +02:00
{
s << mapnik::sql_utils::unquote_double(schema_) << "','";
2010-06-25 17:23:09 +02:00
}
s << mapnik::sql_utils::unquote_double(geometry_table_) << "','"
<< mapnik::sql_utils::unquote_double(geometryColumn_) << "') as ext) as tmp";
2006-11-29 13:12:23 +01:00
}
2010-06-25 17:23:09 +02:00
else
{
s << "SELECT ST_XMin(ext),ST_YMin(ext),ST_XMax(ext),ST_YMax(ext)"
<< " FROM (SELECT ST_Extent(" <<geometryColumn_<< ") as ext from ";
2012-03-28 22:10:48 +02:00
2010-06-25 17:23:09 +02:00
if (extent_from_subquery_)
{
// if a subselect limits records then calculating the extent upon the
// subquery will be faster and the bounds will be more accurate
s << populate_tokens(table_) << ") as tmp";
}
else
{
2012-03-28 22:10:48 +02:00
if (! schema_.empty())
2010-06-25 17:23:09 +02:00
{
s << schema_ << ".";
}
// but if the subquery does not limit records then querying the
// actual table will be faster as indexes can be used
s << geometry_table_ << ") as tmp";
}
}
shared_ptr<ResultSet> rs = conn->executeQuery(s.str());
2012-03-28 22:10:48 +02:00
if (rs->next() && ! rs->isNull(0))
2010-06-25 17:23:09 +02:00
{
2012-03-28 22:10:48 +02:00
double lox, loy, hix, hiy;
if (mapnik::util::string2double(rs->getValue(0), lox) &&
mapnik::util::string2double(rs->getValue(1), loy) &&
mapnik::util::string2double(rs->getValue(2), hix) &&
mapnik::util::string2double(rs->getValue(3), hiy))
2012-03-13 15:59:22 +01:00
{
2012-03-28 22:10:48 +02:00
extent_.init(lox, loy, hix, hiy);
2012-03-13 15:59:22 +01:00
extent_initialized_ = true;
}
else
{
MAPNIK_LOG_DEBUG(postgis) << "postgis_datasource: Could not determine extent from query: " << s.str();
2012-03-13 15:59:22 +01:00
}
2010-06-25 17:23:09 +02:00
}
rs->close();
}
}
2012-03-28 22:10:48 +02:00
2010-06-25 17:23:09 +02:00
return extent_;
2005-06-14 17:06:59 +02:00
}
boost::optional<mapnik::datasource::geometry_t> postgis_datasource::get_geometry_type() const
{
2012-03-28 22:10:48 +02:00
if (! is_bound_)
{
bind();
}
boost::optional<mapnik::datasource::geometry_t> result;
2012-03-28 22:10:48 +02:00
ConnectionManager* mgr = ConnectionManager::instance();
shared_ptr< Pool<Connection,ConnectionCreator> > pool = mgr->getPool(creator_.id());
if (pool)
{
shared_ptr<Connection> conn = pool->borrowObject();
if (conn && conn->isOK())
{
2012-03-28 22:10:48 +02:00
PoolGuard<shared_ptr<Connection>, shared_ptr< Pool<Connection,ConnectionCreator> > > guard(conn, pool);
std::ostringstream s;
std::string g_type;
s << "SELECT lower(type) as type FROM "
<< GEOMETRY_COLUMNS <<" WHERE f_table_name='"
<< mapnik::sql_utils::unquote_double(geometry_table_)
<< "'";
2012-03-28 22:10:48 +02:00
if (! schema_.empty())
{
s << " AND f_table_schema='"
<< mapnik::sql_utils::unquote_double(schema_)
<< "'";
2012-03-28 22:10:48 +02:00
}
2012-03-28 22:10:48 +02:00
if (! geometry_field_.empty())
{
s << " AND f_geometry_column='"
<< mapnik::sql_utils::unquote_double(geometry_field_)
<< "'";
2012-03-28 22:10:48 +02:00
}
shared_ptr<ResultSet> rs = conn->executeQuery(s.str());
if (rs->next())
{
g_type = rs->getValue("type");
2012-03-28 22:10:48 +02:00
if (boost::algorithm::contains(g_type, "line"))
{
result.reset(mapnik::datasource::LineString);
return result;
}
2012-03-28 22:10:48 +02:00
else if (boost::algorithm::contains(g_type, "point"))
{
result.reset(mapnik::datasource::Point);
return result;
}
2012-03-28 22:10:48 +02:00
else if (boost::algorithm::contains(g_type, "polygon"))
{
result.reset(mapnik::datasource::Polygon);
return result;
}
else // geometry
{
result.reset(mapnik::datasource::Collection);
return result;
}
}
// fallback to querying first several features
2012-03-28 22:10:48 +02:00
if (g_type.empty() && ! geometryColumn_.empty())
{
s.str("");
2012-03-28 22:10:48 +02:00
std::string prev_type("");
2012-03-28 22:10:48 +02:00
s << "SELECT ST_GeometryType(\""
<< geometryColumn_ << "\") AS geom"
<< " FROM " << populate_tokens(table_);
2012-03-28 22:10:48 +02:00
if (row_limit_ > 0 && row_limit_ < 5)
{
s << " LIMIT " << row_limit_;
}
else
{
s << " LIMIT 5";
}
2012-03-28 22:10:48 +02:00
shared_ptr<ResultSet> rs = conn->executeQuery(s.str());
2012-03-28 22:10:48 +02:00
while (rs->next() && ! rs->isNull(0))
{
const char* data = rs->getValue(0);
2012-03-28 22:10:48 +02:00
if (boost::algorithm::icontains(data, "line"))
{
g_type = "linestring";
result.reset(mapnik::datasource::LineString);
}
2012-03-28 22:10:48 +02:00
else if (boost::algorithm::icontains(data, "point"))
{
g_type = "point";
result.reset(mapnik::datasource::Point);
}
2012-03-28 22:10:48 +02:00
else if (boost::algorithm::icontains(data, "polygon"))
{
g_type = "polygon";
result.reset(mapnik::datasource::Polygon);
}
else // geometry
{
result.reset(mapnik::datasource::Collection);
return result;
}
2012-03-28 22:10:48 +02:00
if (! prev_type.empty() && g_type != prev_type)
{
result.reset(mapnik::datasource::Collection);
return result;
}
prev_type = g_type;
}
}
}
}
2012-02-02 02:37:35 +01:00
return result;
}