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-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
|
|
|
|
2007-11-02 13:50:15 +01:00
|
|
|
// mapnik
|
2009-07-08 01:56:01 +02:00
|
|
|
#include <mapnik/global.hpp>
|
|
|
|
#include <mapnik/ptree_helpers.hpp>
|
2010-11-11 17:33:30 +01:00
|
|
|
#include <mapnik/sql_utils.hpp>
|
2009-10-20 22:32:53 +02:00
|
|
|
|
2007-11-02 13:50:15 +01:00
|
|
|
// boost
|
2009-02-05 12:41:10 +01:00
|
|
|
#include <boost/algorithm/string.hpp>
|
2007-11-02 13:50:15 +01:00
|
|
|
#include <boost/lexical_cast.hpp>
|
2008-01-29 17:59:51 +01:00
|
|
|
#include <boost/tokenizer.hpp>
|
2009-12-11 02:50:55 +01:00
|
|
|
#include <boost/format.hpp>
|
2011-05-17 01:41:34 +02:00
|
|
|
#include <boost/make_shared.hpp>
|
2007-11-02 13:50:15 +01:00
|
|
|
|
|
|
|
// stl
|
2005-06-14 17:06:59 +02:00
|
|
|
#include <string>
|
|
|
|
#include <algorithm>
|
|
|
|
#include <set>
|
|
|
|
#include <sstream>
|
2006-10-09 22:57:04 +02:00
|
|
|
#include <iomanip>
|
2007-11-02 13:50:15 +01:00
|
|
|
|
2009-12-11 02:50:55 +01:00
|
|
|
#define FMAX std::numeric_limits<double>::max()
|
|
|
|
|
2006-03-09 00:02:28 +01:00
|
|
|
DATASOURCE_PLUGIN(postgis_datasource)
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2007-02-06 16:29:04 +01:00
|
|
|
const std::string postgis_datasource::GEOMETRY_COLUMNS="geometry_columns";
|
2005-09-08 15:09:04 +02:00
|
|
|
const std::string postgis_datasource::SPATIAL_REF_SYS="spatial_ref_system";
|
2005-06-14 17:06:59 +02:00
|
|
|
|
|
|
|
using boost::lexical_cast;
|
|
|
|
using boost::bad_lexical_cast;
|
2005-12-12 14:15:33 +01:00
|
|
|
using boost::shared_ptr;
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2007-03-16 11:11:37 +01:00
|
|
|
using mapnik::PoolGuard;
|
|
|
|
using mapnik::attribute_descriptor;
|
|
|
|
|
2010-10-24 08:34:18 +02:00
|
|
|
postgis_datasource::postgis_datasource(parameters const& params, bool bind)
|
2010-06-25 17:23:09 +02:00
|
|
|
: datasource(params),
|
|
|
|
table_(*params_.get<std::string>("table","")),
|
|
|
|
schema_(""),
|
|
|
|
geometry_table_(*params_.get<std::string>("geometry_table","")),
|
|
|
|
geometry_field_(*params_.get<std::string>("geometry_field","")),
|
2011-06-13 23:58:11 +02:00
|
|
|
key_field_(*params_.get<std::string>("key_field","")),
|
2010-06-25 17:23:09 +02:00
|
|
|
cursor_fetch_size_(*params_.get<int>("cursor_size",0)),
|
|
|
|
row_limit_(*params_.get<int>("row_limit",0)),
|
|
|
|
type_(datasource::Vector),
|
|
|
|
srid_(*params_.get<int>("srid",0)),
|
|
|
|
extent_initialized_(false),
|
|
|
|
desc_(*params_.get<std::string>("type"),"utf-8"),
|
|
|
|
creator_(params.get<std::string>("host"),
|
|
|
|
params.get<std::string>("port"),
|
|
|
|
params.get<std::string>("dbname"),
|
|
|
|
params.get<std::string>("user"),
|
2010-07-02 13:42:35 +02:00
|
|
|
params.get<std::string>("password"),
|
|
|
|
params.get<std::string>("connect_timeout","4")),
|
2010-06-25 17:23:09 +02:00
|
|
|
bbox_token_("!bbox!"),
|
|
|
|
scale_denom_token_("!scale_denominator!"),
|
|
|
|
persist_connection_(*params_.get<mapnik::boolean>("persist_connection",true)),
|
2010-08-18 23:00:09 +02:00
|
|
|
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)
|
2011-09-11 21:46:09 +02:00
|
|
|
intersect_min_scale_(*params_.get<int>("intersect_min_scale",0)),
|
|
|
|
intersect_max_scale_(*params_.get<int>("intersect_max_scale",0))
|
2010-06-25 17:23:09 +02:00
|
|
|
//show_queries_(*params_.get<mapnik::boolean>("show_queries",false))
|
2011-11-14 04:37:50 +01:00
|
|
|
{
|
2010-11-19 00:42:33 +01:00
|
|
|
if (table_.empty()) throw mapnik::datasource_exception("Postgis Plugin: missing <table> parameter");
|
2009-10-14 06:21:46 +02:00
|
|
|
|
2010-06-25 17:23:09 +02:00
|
|
|
boost::optional<std::string> ext = params_.get<std::string>("extent");
|
2010-11-14 15:56:35 +01:00
|
|
|
if (ext) extent_initialized_ = extent_.from_string(*ext);
|
2010-06-25 17:23:09 +02:00
|
|
|
|
2010-10-24 08:34:18 +02:00
|
|
|
if (bind)
|
|
|
|
{
|
|
|
|
this->bind();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void postgis_datasource::bind() const
|
|
|
|
{
|
|
|
|
if (is_bound_) return;
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2010-10-24 08:34:18 +02:00
|
|
|
boost::optional<int> initial_size = params_.get<int>("initial_size",1);
|
|
|
|
boost::optional<int> max_size = params_.get<int>("max_size",10);
|
|
|
|
|
2011-11-14 04:37:50 +01:00
|
|
|
ConnectionManager *mgr=ConnectionManager::instance();
|
2010-06-25 17:23:09 +02:00
|
|
|
mgr->registerPool(creator_, *initial_size, *max_size);
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2012-01-12 05:03:23 +01:00
|
|
|
std::string g_type;
|
|
|
|
|
2010-06-25 17:23:09 +02:00
|
|
|
shared_ptr<Pool<Connection,ConnectionCreator> > pool=mgr->getPool(creator_.id());
|
|
|
|
if (pool)
|
2011-11-14 04:37:50 +01:00
|
|
|
{
|
2010-06-25 17:23:09 +02:00
|
|
|
shared_ptr<Connection> conn = pool->borrowObject();
|
|
|
|
if (conn && conn->isOK())
|
|
|
|
{
|
2011-09-01 23:10:09 +02:00
|
|
|
|
2010-06-25 17:23:09 +02:00
|
|
|
PoolGuard<shared_ptr<Connection>,
|
2011-11-14 04:37:50 +01:00
|
|
|
shared_ptr<Pool<Connection,ConnectionCreator> > > guard(conn,pool);
|
|
|
|
|
2010-06-25 17:23:09 +02:00
|
|
|
desc_.set_encoding(conn->client_encoding());
|
|
|
|
|
|
|
|
if(geometry_table_.empty())
|
|
|
|
{
|
2011-11-04 00:51:37 +01:00
|
|
|
geometry_table_ = mapnik::sql_utils::table_from_sql(table_);
|
2010-06-25 17:23:09 +02:00
|
|
|
}
|
|
|
|
std::string::size_type idx = geometry_table_.find_last_of('.');
|
|
|
|
if (idx!=std::string::npos)
|
|
|
|
{
|
|
|
|
schema_ = geometry_table_.substr(0,idx);
|
|
|
|
geometry_table_ = geometry_table_.substr(idx+1);
|
|
|
|
}
|
|
|
|
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_;
|
|
|
|
if (!geometryColumn_.length() > 0 || srid_ == 0)
|
|
|
|
{
|
|
|
|
std::ostringstream s;
|
2012-01-17 07:09:46 +01:00
|
|
|
s << "SELECT f_geometry_column, srid FROM "
|
|
|
|
<< GEOMETRY_COLUMNS <<" WHERE f_table_name='"
|
|
|
|
<< mapnik::sql_utils::unquote_double(geometry_table_)
|
|
|
|
<< "'";
|
2011-11-14 04:37:50 +01:00
|
|
|
|
|
|
|
if (schema_.length() > 0)
|
2012-01-17 07:09:46 +01:00
|
|
|
s << " AND f_table_schema='"
|
|
|
|
<< mapnik::sql_utils::unquote_double(schema_)
|
|
|
|
<< "'";
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2010-06-25 17:23:09 +02:00
|
|
|
if (geometry_field_.length() > 0)
|
2012-01-17 07:09:46 +01:00
|
|
|
s << " AND f_geometry_column='"
|
|
|
|
<< mapnik::sql_utils::unquote_double(geometry_field_)
|
|
|
|
<< "'";
|
2009-08-28 17:57:29 +02:00
|
|
|
|
2010-11-19 00:42:33 +01:00
|
|
|
/*
|
2011-11-14 04:37:50 +01:00
|
|
|
if (show_queries_)
|
|
|
|
{
|
|
|
|
std::clog << boost::format("PostGIS: sending query: %s\n") % s.str();
|
|
|
|
}
|
2010-11-19 00:42:33 +01:00
|
|
|
*/
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2012-01-12 05:03:23 +01:00
|
|
|
shared_ptr<ResultSet> rs = conn->executeQuery(s.str());
|
2010-06-25 17:23:09 +02:00
|
|
|
if (rs->next())
|
2009-08-28 17:57:29 +02:00
|
|
|
{
|
2010-06-25 17:23:09 +02:00
|
|
|
geometryColumn_ = rs->getValue("f_geometry_column");
|
|
|
|
|
|
|
|
if (srid_ == 0)
|
2009-08-28 17:57:29 +02:00
|
|
|
{
|
2011-11-14 04:37:50 +01:00
|
|
|
try
|
2010-06-25 17:23:09 +02:00
|
|
|
{
|
|
|
|
srid_ = lexical_cast<int>(rs->getValue("srid"));
|
|
|
|
}
|
|
|
|
catch (bad_lexical_cast &ex)
|
|
|
|
{
|
2010-11-19 00:42:33 +01:00
|
|
|
std::clog << "Postgis Plugin: SRID=" << rs->getValue("srid") << " " << ex.what() << std::endl;
|
2010-06-25 17:23:09 +02:00
|
|
|
}
|
2009-08-28 17:57:29 +02:00
|
|
|
}
|
|
|
|
}
|
2010-06-25 17:23:09 +02:00
|
|
|
rs->close();
|
2011-11-14 04:37:50 +01:00
|
|
|
|
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
|
|
|
|
if (geometryColumn_.length() && srid_ <= 0)
|
2009-12-11 02:50:55 +01:00
|
|
|
{
|
2010-06-25 17:23:09 +02:00
|
|
|
s.str("");
|
|
|
|
s << "SELECT ST_SRID(\"" << geometryColumn_ << "\") AS srid FROM ";
|
|
|
|
s << populate_tokens(table_) << " WHERE \"" << geometryColumn_ << "\" IS NOT NULL LIMIT 1;";
|
2009-08-28 17:57:29 +02:00
|
|
|
|
2010-11-19 00:42:33 +01:00
|
|
|
/*
|
2011-11-14 04:37:50 +01:00
|
|
|
if (show_queries_)
|
|
|
|
{
|
|
|
|
std::clog << boost::format("PostGIS: sending query: %s\n") % s.str();
|
|
|
|
}
|
2010-11-19 00:42:33 +01:00
|
|
|
*/
|
2010-06-25 17:23:09 +02:00
|
|
|
|
2012-01-12 05:03:23 +01:00
|
|
|
shared_ptr<ResultSet> rs = conn->executeQuery(s.str());
|
2010-06-25 17:23:09 +02:00
|
|
|
if (rs->next())
|
2009-08-28 17:57:29 +02:00
|
|
|
{
|
2010-06-25 17:23:09 +02:00
|
|
|
try
|
|
|
|
{
|
|
|
|
srid_ = lexical_cast<int>(rs->getValue("srid"));
|
|
|
|
}
|
|
|
|
catch (bad_lexical_cast &ex)
|
|
|
|
{
|
2010-11-19 00:42:33 +01:00
|
|
|
std::clog << "Postgis Plugin: SRID=" << rs->getValue("srid") << " " << ex.what() << std::endl;
|
2010-06-25 17:23:09 +02:00
|
|
|
}
|
2009-08-28 17:57:29 +02:00
|
|
|
}
|
2010-06-25 17:23:09 +02:00
|
|
|
rs->close();
|
2009-08-28 17:57:29 +02:00
|
|
|
}
|
2006-07-24 22:06:09 +02:00
|
|
|
}
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2010-06-25 17:23:09 +02:00
|
|
|
if (srid_ == 0)
|
|
|
|
{
|
|
|
|
srid_ = -1;
|
2011-11-20 23:29:51 +01:00
|
|
|
std::clog << "Postgis Plugin: SRID warning, using srid=-1 for '" << table_ << "'" << std::endl;
|
2010-06-25 17:23:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// At this point the geometry_field may still not be known
|
2011-11-14 04:37:50 +01:00
|
|
|
// but we'll catch that where more useful...
|
2009-08-28 17:57:29 +02:00
|
|
|
#ifdef MAPNIK_DEBUG
|
2010-11-19 00:42:33 +01:00
|
|
|
std::clog << "Postgis Plugin: using SRID=" << srid_ << std::endl;
|
|
|
|
std::clog << "Postgis Plugin: using geometry_column=" << geometryColumn_ << std::endl;
|
2009-08-28 17:57:29 +02:00
|
|
|
#endif
|
|
|
|
|
2011-11-14 04:37:50 +01:00
|
|
|
// collect attribute desc
|
2010-06-25 17:23:09 +02:00
|
|
|
std::ostringstream s;
|
|
|
|
s << "SELECT * FROM " << populate_tokens(table_) << " LIMIT 0";
|
|
|
|
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2010-11-19 00:42:33 +01:00
|
|
|
/*
|
2011-11-14 04:37:50 +01:00
|
|
|
if (show_queries_)
|
|
|
|
{
|
|
|
|
std::clog << boost::format("PostGIS: sending query: %s\n") % s.str();
|
|
|
|
}
|
2010-11-19 00:42:33 +01:00
|
|
|
*/
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2010-06-25 17:23:09 +02:00
|
|
|
|
2012-01-12 05:03:23 +01:00
|
|
|
shared_ptr<ResultSet> rs = conn->executeQuery(s.str());
|
2010-06-25 17:23:09 +02:00
|
|
|
int count = rs->getNumFields();
|
2011-07-29 21:57:45 +02:00
|
|
|
bool found_key_field = false;
|
2010-06-25 17:23:09 +02:00
|
|
|
for (int i=0;i<count;++i)
|
2006-07-24 22:06:09 +02:00
|
|
|
{
|
2010-06-25 17:23:09 +02:00
|
|
|
std::string fld_name=rs->getFieldName(i);
|
|
|
|
int type_oid = rs->getTypeOID(i);
|
2009-12-11 02:50:55 +01:00
|
|
|
|
2011-07-29 21:57:45 +02:00
|
|
|
// validate type of key_field
|
|
|
|
if (!found_key_field && !key_field_.empty() && fld_name == key_field_)
|
|
|
|
{
|
|
|
|
found_key_field = true;
|
|
|
|
if (type_oid == 20 || type_oid == 21 || type_oid == 23)
|
2010-11-19 00:42:33 +01:00
|
|
|
{
|
2011-07-29 21:57:45 +02:00
|
|
|
desc_.add_descriptor(attribute_descriptor(fld_name,mapnik::Integer));
|
2010-11-19 00:42:33 +01:00
|
|
|
}
|
2011-07-29 21:57:45 +02:00
|
|
|
else
|
2010-06-25 17:23:09 +02:00
|
|
|
{
|
2011-07-29 21:57:45 +02:00
|
|
|
std::ostringstream error_s;
|
|
|
|
error_s << "invalid type '";
|
|
|
|
std::ostringstream type_s;
|
|
|
|
type_s << "SELECT oid, typname FROM pg_type WHERE oid = " << type_oid;
|
|
|
|
shared_ptr<ResultSet> rs_oid = conn->executeQuery(type_s.str());
|
|
|
|
if (rs_oid->next())
|
|
|
|
{
|
|
|
|
error_s << rs_oid->getValue("typname")
|
2011-11-14 04:37:50 +01:00
|
|
|
<< "' (oid:" << rs_oid->getValue("oid") << ")";
|
2011-07-29 21:57:45 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-11-14 04:37:50 +01:00
|
|
|
error_s << "oid:" << type_oid << "'";
|
2011-07-29 21:57:45 +02:00
|
|
|
}
|
|
|
|
rs_oid->close();
|
|
|
|
error_s << " for key_field '" << fld_name << "' - "
|
2011-11-14 04:37:50 +01:00
|
|
|
<< "must be an integer primary key";
|
2011-07-29 21:57:45 +02:00
|
|
|
rs->close();
|
|
|
|
throw mapnik::datasource_exception( error_s.str() );
|
2010-06-25 17:23:09 +02:00
|
|
|
}
|
2011-07-29 21:57:45 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
switch (type_oid)
|
2010-06-25 17:23:09 +02:00
|
|
|
{
|
2011-07-29 21:57:45 +02:00
|
|
|
case 16: // bool
|
|
|
|
desc_.add_descriptor(attribute_descriptor(fld_name,mapnik::Boolean));
|
|
|
|
break;
|
|
|
|
case 20: // int8
|
|
|
|
case 21: // int2
|
|
|
|
case 23: // int4
|
|
|
|
desc_.add_descriptor(attribute_descriptor(fld_name,mapnik::Integer));
|
|
|
|
break;
|
2011-11-14 04:37:50 +01:00
|
|
|
case 700: // float4
|
2011-07-29 21:57:45 +02:00
|
|
|
case 701: // float8
|
|
|
|
case 1700: // numeric ??
|
|
|
|
desc_.add_descriptor(attribute_descriptor(fld_name,mapnik::Double));
|
|
|
|
case 1042: // bpchar
|
|
|
|
case 1043: // varchar
|
|
|
|
case 25: // text
|
|
|
|
desc_.add_descriptor(attribute_descriptor(fld_name,mapnik::String));
|
|
|
|
break;
|
|
|
|
default: // should not get here
|
2011-11-14 04:37:50 +01:00
|
|
|
#ifdef MAPNIK_DEBUG
|
2011-07-29 21:57:45 +02:00
|
|
|
s.str("");
|
|
|
|
s << "SELECT oid, typname FROM pg_type WHERE oid = " << type_oid;
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2011-07-29 21:57:45 +02:00
|
|
|
/*
|
2011-11-14 04:37:50 +01:00
|
|
|
if (show_queries_)
|
|
|
|
{
|
|
|
|
std::clog << boost::format("PostGIS: sending query: %s\n") % s.str();
|
|
|
|
}
|
2011-07-29 21:57:45 +02:00
|
|
|
*/
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2011-07-29 21:57:45 +02:00
|
|
|
shared_ptr<ResultSet> rs_oid = conn->executeQuery(s.str());
|
|
|
|
if (rs_oid->next())
|
|
|
|
{
|
|
|
|
std::clog << "Postgis Plugin: unknown type = " << rs_oid->getValue("typname")
|
2011-11-14 04:37:50 +01:00
|
|
|
<< " (oid:" << rs_oid->getValue("oid") << ")" << std::endl;
|
2011-07-29 21:57:45 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-11-14 04:37:50 +01:00
|
|
|
std::clog << "Postgis Plugin: unknown oid type =" << type_oid << std::endl;
|
2011-07-29 21:57:45 +02:00
|
|
|
}
|
|
|
|
rs_oid->close();
|
2011-11-14 04:37:50 +01:00
|
|
|
#endif
|
2011-07-29 21:57:45 +02:00
|
|
|
break;
|
2010-06-25 17:23:09 +02:00
|
|
|
}
|
|
|
|
}
|
2009-10-14 19:42:27 +02:00
|
|
|
}
|
2012-01-12 05:03:23 +01:00
|
|
|
|
2010-06-25 17:23:09 +02:00
|
|
|
rs->close();
|
2012-01-12 05:03:23 +01:00
|
|
|
|
|
|
|
is_bound_ = true;
|
|
|
|
|
2010-06-25 17:23:09 +02:00
|
|
|
}
|
|
|
|
}
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
|
2005-09-08 15:09:04 +02:00
|
|
|
std::string postgis_datasource::name()
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2010-11-14 15:56:35 +01:00
|
|
|
return "postgis";
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
|
2012-01-17 07:09:46 +01: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
|
|
|
}
|
|
|
|
|
1. hit_test implementation for geometry objects:
bool hit_test(double x, double y, double tol);
2. added image_view(unsigned x, unsigned y, unsigned width, unsigned height)
allowing to select region from image data e.g (in Python):
im = Image(2048,2048)
view = im.view(0,0,256,256)
save_to_file(filename,type, view)
3. changed envelope method to return vy value in datasource classes
4. features_at_point impl for shape and postgis plug-ins
2006-11-25 12:02:59 +01:00
|
|
|
layer_descriptor postgis_datasource::get_descriptor() const
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2010-10-24 08:34:18 +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-11 02:50:55 +01:00
|
|
|
|
2009-12-16 21:02:06 +01:00
|
|
|
std::string postgis_datasource::sql_bbox(box2d<double> const& env) const
|
2011-11-14 04:37:50 +01:00
|
|
|
{
|
2009-08-27 05:54:52 +02:00
|
|
|
std::ostringstream b;
|
2009-08-28 17:57:29 +02:00
|
|
|
if (srid_ > 0)
|
|
|
|
b << "SetSRID(";
|
|
|
|
b << "'BOX3D(";
|
2009-08-27 05:54:52 +02:00
|
|
|
b << std::setprecision(16);
|
2009-12-11 02:50:55 +01:00
|
|
|
b << env.minx() << " " << env.miny() << ",";
|
|
|
|
b << env.maxx() << " " << env.maxy() << ")'::box3d";
|
2009-08-28 17:57:29 +02:00
|
|
|
if (srid_ > 0)
|
|
|
|
b << ", " << srid_ << ")";
|
2009-12-11 02:50:55 +01:00
|
|
|
return b.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string postgis_datasource::populate_tokens(const std::string& sql) const
|
|
|
|
{
|
|
|
|
std::string populated_sql = sql;
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2009-08-27 05:54:52 +02:00
|
|
|
if ( boost::algorithm::icontains(sql,bbox_token_) )
|
|
|
|
{
|
2009-12-16 21:02:06 +01:00
|
|
|
box2d<double> max_env(-1 * FMAX,-1 * FMAX,FMAX,FMAX);
|
2009-12-11 02:50:55 +01:00
|
|
|
std::string max_box = sql_bbox(max_env);
|
|
|
|
boost::algorithm::replace_all(populated_sql,bbox_token_,max_box);
|
2011-11-14 04:37:50 +01:00
|
|
|
}
|
2009-12-11 02:50:55 +01:00
|
|
|
if ( boost::algorithm::icontains(sql,scale_denom_token_) )
|
|
|
|
{
|
|
|
|
std::string max_denom = lexical_cast<std::string>(FMAX);
|
|
|
|
boost::algorithm::replace_all(populated_sql,scale_denom_token_,max_denom);
|
|
|
|
}
|
|
|
|
return populated_sql;
|
|
|
|
}
|
|
|
|
|
2012-01-12 23:05:03 +01:00
|
|
|
std::string postgis_datasource::populate_tokens(const std::string& sql, double scale_denom, box2d<double> const& env) const
|
2009-12-11 02:50:55 +01:00
|
|
|
{
|
|
|
|
std::string populated_sql = sql;
|
|
|
|
std::string box = sql_bbox(env);
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2009-12-11 02:50:55 +01:00
|
|
|
if ( boost::algorithm::icontains(populated_sql,scale_denom_token_) )
|
|
|
|
{
|
|
|
|
std::string max_denom = lexical_cast<std::string>(scale_denom);
|
|
|
|
boost::algorithm::replace_all(populated_sql,scale_denom_token_,max_denom);
|
|
|
|
}
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2009-12-11 02:50:55 +01:00
|
|
|
if ( boost::algorithm::icontains(populated_sql,bbox_token_) )
|
|
|
|
{
|
|
|
|
boost::algorithm::replace_all(populated_sql,bbox_token_,box);
|
|
|
|
return populated_sql;
|
2009-08-27 05:54:52 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::ostringstream s;
|
2011-09-11 21:46:09 +02:00
|
|
|
if (intersect_min_scale_ > 0 && (scale_denom <= intersect_min_scale_ ))
|
|
|
|
{
|
2011-11-14 04:37:50 +01:00
|
|
|
s << " WHERE ST_Intersects(\"" << geometryColumn_ << "\"," << box << ")";
|
2011-09-11 21:46:09 +02:00
|
|
|
}
|
|
|
|
else if (intersect_max_scale_ > 0 && (scale_denom >= intersect_max_scale_ ))
|
|
|
|
{
|
2011-11-14 04:37:50 +01:00
|
|
|
// do no bbox restriction
|
2011-09-11 21:46:09 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
s << " WHERE \"" << geometryColumn_ << "\" && " << box;
|
|
|
|
}
|
2011-11-14 04:37:50 +01:00
|
|
|
return populated_sql + s.str();
|
2009-08-27 05:54:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-12-11 02:50:55 +01:00
|
|
|
|
2009-02-05 18:41:44 +01:00
|
|
|
boost::shared_ptr<IResultSet> postgis_datasource::get_resultset(boost::shared_ptr<Connection> const &conn, const std::string &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();
|
2009-02-05 18:41:44 +01:00
|
|
|
|
2010-06-25 17:23:09 +02:00
|
|
|
csql << "DECLARE " << cursor_name << " BINARY INSENSITIVE NO SCROLL CURSOR WITH HOLD FOR " << sql << " FOR READ ONLY";
|
2009-02-05 18:41:44 +01:00
|
|
|
|
2010-11-19 00:42:33 +01:00
|
|
|
/*
|
2011-11-14 04:37:50 +01:00
|
|
|
if (show_queries_)
|
|
|
|
{
|
|
|
|
std::clog << boost::format("PostGIS: sending query: %s\n") % csql.str();
|
|
|
|
}
|
2010-11-19 00:42:33 +01: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." );
|
|
|
|
|
2011-05-17 01:41:34 +02:00
|
|
|
return boost::make_shared<CursorResultSet>(conn, cursor_name, cursor_fetch_size_);
|
2009-02-05 18:41:44 +01:00
|
|
|
|
2010-11-19 00:42:33 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-06-25 17:23:09 +02:00
|
|
|
// no cursor
|
2009-12-11 02:50:55 +01:00
|
|
|
|
2010-11-19 00:42:33 +01:00
|
|
|
/*
|
2011-11-14 04:37:50 +01:00
|
|
|
if (show_queries_)
|
|
|
|
{
|
|
|
|
std::clog << boost::format("PostGIS: sending query: %s\n") % sql;
|
|
|
|
}
|
2010-11-19 00:42:33 +01:00
|
|
|
*/
|
2009-12-11 02:50:55 +01:00
|
|
|
|
2010-06-25 17:23:09 +02:00
|
|
|
return conn->executeQuery(sql,1);
|
|
|
|
}
|
2009-02-05 18:41:44 +01:00
|
|
|
}
|
|
|
|
|
2005-09-08 15:09:04 +02:00
|
|
|
featureset_ptr postgis_datasource::features(const query& q) const
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2010-10-24 08:34:18 +02:00
|
|
|
if (!is_bound_) bind();
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2010-06-25 17:23:09 +02:00
|
|
|
box2d<double> const& box = q.get_bbox();
|
|
|
|
double scale_denom = q.scale_denominator();
|
|
|
|
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())
|
2011-11-14 04:37:50 +01:00
|
|
|
{
|
2010-06-25 17:23:09 +02:00
|
|
|
PoolGuard<shared_ptr<Connection>,shared_ptr<Pool<Connection,ConnectionCreator> > > guard(conn,pool);
|
|
|
|
|
|
|
|
if (!geometryColumn_.length() > 0)
|
|
|
|
{
|
|
|
|
std::ostringstream s_error;
|
2011-11-20 23:29:51 +01:00
|
|
|
s_error << "PostGIS: geometry name lookup failed for table '";
|
2011-04-01 08:27:52 +02:00
|
|
|
if (schema_.length() > 0)
|
2011-03-05 19:01:05 +01:00
|
|
|
{
|
|
|
|
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 "
|
2011-03-05 19:01:05 +01:00
|
|
|
<< "in the geometry_columns for '";
|
2011-04-01 08:27:52 +02:00
|
|
|
if (schema_.length() > 0)
|
2011-03-05 19:01:05 +01:00
|
|
|
{
|
|
|
|
s_error << schema_ << ".";
|
|
|
|
}
|
2011-04-01 08:27:52 +02:00
|
|
|
s_error << geometry_table_ << "'.";
|
2011-11-20 23:29:51 +01:00
|
|
|
throw mapnik::datasource_exception(s_error.str());
|
2010-06-25 17:23:09 +02:00
|
|
|
}
|
2012-01-16 19:19:31 +01:00
|
|
|
|
2010-06-25 17:23:09 +02:00
|
|
|
std::ostringstream s;
|
2011-11-20 23:29:51 +01:00
|
|
|
s << "SELECT ST_AsBinary(\"" << geometryColumn_ << "\") AS geom";
|
2010-08-18 23:00:09 +02:00
|
|
|
|
2011-11-14 04:37:50 +01:00
|
|
|
if (!key_field_.empty())
|
2011-11-04 00:51:37 +01:00
|
|
|
mapnik::sql_utils::quote_attr(s,key_field_);
|
2011-06-13 23:58:11 +02:00
|
|
|
|
2010-06-25 17:23:09 +02:00
|
|
|
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-01-16 19:19:31 +01:00
|
|
|
|
2012-01-19 23:36:27 +01:00
|
|
|
mapnik::context_ptr ctx = boost::make_shared<mapnik::context_type>();
|
2012-01-16 19:19:31 +01:00
|
|
|
|
|
|
|
for ( ;pos != end;++pos)
|
2010-06-25 17:23:09 +02:00
|
|
|
{
|
2011-11-04 00:51:37 +01:00
|
|
|
mapnik::sql_utils::quote_attr(s,*pos);
|
2012-01-16 19:19:31 +01:00
|
|
|
ctx->push(*pos);
|
2011-11-14 04:37:50 +01:00
|
|
|
}
|
2010-06-25 17:23:09 +02:00
|
|
|
|
|
|
|
std::string table_with_bbox = populate_tokens(table_,scale_denom,box);
|
|
|
|
|
|
|
|
s << " from " << table_with_bbox;
|
|
|
|
|
|
|
|
if (row_limit_ > 0) {
|
|
|
|
s << " LIMIT " << row_limit_;
|
|
|
|
}
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2010-06-25 17:23:09 +02:00
|
|
|
boost::shared_ptr<IResultSet> rs = get_resultset(conn, s.str());
|
2011-07-29 21:57:45 +02:00
|
|
|
unsigned num_attr = props.size();
|
|
|
|
if (!key_field_.empty())
|
|
|
|
++num_attr;
|
2012-01-16 19:19:31 +01:00
|
|
|
return boost::make_shared<postgis_featureset>(rs, ctx, desc_.get_encoding(), !key_field_.empty());
|
2010-06-25 17:23:09 +02:00
|
|
|
}
|
2011-11-14 04:37:50 +01:00
|
|
|
else
|
2010-07-02 13:42:35 +02:00
|
|
|
{
|
2010-11-19 00:42:33 +01:00
|
|
|
throw mapnik::datasource_exception("Postgis Plugin: bad connection");
|
2010-07-02 13:42:35 +02:00
|
|
|
}
|
2010-06-25 17:23:09 +02:00
|
|
|
}
|
|
|
|
return featureset_ptr();
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
|
2006-10-16 23:30:58 +02:00
|
|
|
featureset_ptr postgis_datasource::features_at_point(coord2d const& pt) const
|
|
|
|
{
|
2010-10-24 08:34:18 +02:00
|
|
|
if (!is_bound_) bind();
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2010-06-25 17:23:09 +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())
|
2011-11-14 04:37:50 +01:00
|
|
|
{
|
2010-06-25 17:23:09 +02:00
|
|
|
PoolGuard<shared_ptr<Connection>,shared_ptr<Pool<Connection,ConnectionCreator> > > guard(conn,pool);
|
|
|
|
|
|
|
|
if (!geometryColumn_.length() > 0)
|
|
|
|
{
|
|
|
|
std::ostringstream s_error;
|
2011-03-05 19:01:05 +01:00
|
|
|
s_error << "PostGIS: geometry name lookup failed for table '";
|
2011-04-01 08:27:52 +02:00
|
|
|
if (schema_.length() > 0)
|
2011-03-05 19:01:05 +01:00
|
|
|
{
|
|
|
|
s_error << schema_ << ".";
|
|
|
|
}
|
2011-11-20 23:29:51 +01:00
|
|
|
s_error << geometry_table_
|
2010-06-25 17:23:09 +02:00
|
|
|
<< "'. Please manually provide the 'geometry_field' parameter or add an entry "
|
2011-03-05 19:01:05 +01:00
|
|
|
<< "in the geometry_columns for '";
|
2011-04-01 08:27:52 +02:00
|
|
|
if (schema_.length() > 0)
|
2011-03-05 19:01:05 +01:00
|
|
|
{
|
|
|
|
s_error << schema_ << ".";
|
|
|
|
}
|
|
|
|
s_error << geometry_table_ << "'.";
|
2010-06-25 17:23:09 +02:00
|
|
|
throw mapnik::datasource_exception(s_error.str());
|
|
|
|
}
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2011-11-20 23:29:51 +01:00
|
|
|
std::ostringstream s;
|
|
|
|
s << "SELECT ST_AsBinary(\"" << geometryColumn_ << "\") AS geom";
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2011-06-13 23:58:11 +02:00
|
|
|
if (!key_field_.empty())
|
2011-11-04 00:51:37 +01:00
|
|
|
mapnik::sql_utils::quote_attr(s,key_field_);
|
2011-06-13 23:58:11 +02:00
|
|
|
|
2012-01-19 23:36:27 +01:00
|
|
|
mapnik::context_ptr ctx = boost::make_shared<mapnik::context_type>();
|
2012-01-16 19:19:31 +01:00
|
|
|
|
2010-06-25 17:23:09 +02:00
|
|
|
std::vector<attribute_descriptor>::const_iterator itr = desc_.get_descriptors().begin();
|
|
|
|
std::vector<attribute_descriptor>::const_iterator end = desc_.get_descriptors().end();
|
2012-01-16 19:19:31 +01:00
|
|
|
|
|
|
|
for ( ; itr != end; ++itr)
|
2010-06-25 17:23:09 +02:00
|
|
|
{
|
2011-11-04 00:51:37 +01:00
|
|
|
mapnik::sql_utils::quote_attr(s,itr->get_name());
|
2012-01-16 19:19:31 +01:00
|
|
|
ctx->push(itr->get_name());
|
2010-06-25 17:23:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
box2d<double> box(pt.x,pt.y,pt.x,pt.y);
|
|
|
|
std::string table_with_bbox = populate_tokens(table_,FMAX,box);
|
|
|
|
|
|
|
|
s << " from " << table_with_bbox;
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2010-06-25 17:23:09 +02:00
|
|
|
if (row_limit_ > 0) {
|
|
|
|
s << " LIMIT " << row_limit_;
|
|
|
|
}
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2010-06-25 17:23:09 +02:00
|
|
|
boost::shared_ptr<IResultSet> rs = get_resultset(conn, s.str());
|
2012-01-16 19:19:31 +01:00
|
|
|
return boost::make_shared<postgis_featureset>(rs, ctx, desc_.get_encoding(), !key_field_.empty());
|
2010-06-25 17:23:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return featureset_ptr();
|
2006-10-16 23:30:58 +02:00
|
|
|
}
|
|
|
|
|
2009-12-16 21:02:06 +01:00
|
|
|
box2d<double> postgis_datasource::envelope() const
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2010-06-25 17:23:09 +02:00
|
|
|
if (extent_initialized_) return extent_;
|
2010-10-24 08:34:18 +02:00
|
|
|
if (!is_bound_) bind();
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2010-06-25 17:23:09 +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())
|
|
|
|
{
|
|
|
|
PoolGuard<shared_ptr<Connection>,shared_ptr<Pool<Connection,ConnectionCreator> > > guard(conn,pool);
|
|
|
|
std::ostringstream s;
|
|
|
|
boost::optional<mapnik::boolean> estimate_extent = params_.get<mapnik::boolean>("estimate_extent",false);
|
|
|
|
|
|
|
|
if (!geometryColumn_.length() > 0)
|
2006-11-29 13:12:23 +01:00
|
|
|
{
|
2010-06-25 17:23:09 +02:00
|
|
|
std::ostringstream s_error;
|
2011-03-05 19:01:05 +01:00
|
|
|
s_error << "PostGIS: unable to query the layer extent of table '";
|
2011-04-01 08:27:52 +02:00
|
|
|
if (schema_.length() > 0)
|
2011-03-05 19:01:05 +01:00
|
|
|
{
|
|
|
|
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.";
|
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('";
|
|
|
|
|
|
|
|
if (schema_.length() > 0)
|
|
|
|
{
|
2011-11-04 00:51:37 +01:00
|
|
|
s << mapnik::sql_utils::unquote_double(schema_) << "','";
|
2010-06-25 17:23:09 +02:00
|
|
|
}
|
|
|
|
|
2011-11-04 00:51:37 +01: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 ";
|
|
|
|
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
|
|
|
|
{
|
|
|
|
if (schema_.length() > 0)
|
|
|
|
{
|
|
|
|
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";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-19 00:42:33 +01:00
|
|
|
/*
|
2011-11-14 04:37:50 +01:00
|
|
|
if (show_queries_)
|
|
|
|
{
|
|
|
|
std::clog << boost::format("PostGIS: sending query: %s\n") % s.str();
|
|
|
|
}
|
2010-11-19 00:42:33 +01:00
|
|
|
*/
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2011-11-21 01:41:47 +01:00
|
|
|
shared_ptr<ResultSet> rs = conn->executeQuery(s.str());
|
|
|
|
if (rs->next() && !rs->isNull(0))
|
2010-06-25 17:23:09 +02:00
|
|
|
{
|
2011-11-14 04:37:50 +01:00
|
|
|
try
|
2010-06-25 17:23:09 +02:00
|
|
|
{
|
2011-11-21 01:41:47 +01:00
|
|
|
double lox = lexical_cast<double>(rs->getValue(0));
|
|
|
|
double loy = lexical_cast<double>(rs->getValue(1));
|
|
|
|
double hix = lexical_cast<double>(rs->getValue(2));
|
|
|
|
double hiy = lexical_cast<double>(rs->getValue(3));
|
2010-06-25 17:23:09 +02:00
|
|
|
extent_.init(lox,loy,hix,hiy);
|
|
|
|
extent_initialized_ = true;
|
|
|
|
}
|
|
|
|
catch (bad_lexical_cast &ex)
|
|
|
|
{
|
2010-11-19 00:42:33 +01:00
|
|
|
std::clog << boost::format("Postgis Plugin: warning: could not determine extent from query: %s\nError was: '%s'\n") % s.str() % ex.what() << std::endl;
|
2010-06-25 17:23:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
rs->close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return extent_;
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
|
2012-01-17 07:09:46 +01:00
|
|
|
boost::optional<mapnik::datasource::geometry_t> postgis_datasource::get_geometry_type() const
|
|
|
|
{
|
|
|
|
if (! is_bound_) bind();
|
|
|
|
boost::optional<mapnik::datasource::geometry_t> result;
|
|
|
|
|
|
|
|
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())
|
|
|
|
{
|
|
|
|
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_)
|
|
|
|
<< "'";
|
|
|
|
|
|
|
|
if (schema_.length() > 0)
|
|
|
|
s << " AND f_table_schema='"
|
|
|
|
<< mapnik::sql_utils::unquote_double(schema_)
|
|
|
|
<< "'";
|
|
|
|
|
|
|
|
if (geometry_field_.length() > 0)
|
|
|
|
s << " AND f_geometry_column='"
|
|
|
|
<< mapnik::sql_utils::unquote_double(geometry_field_)
|
|
|
|
<< "'";
|
|
|
|
|
|
|
|
shared_ptr<ResultSet> rs = conn->executeQuery(s.str());
|
|
|
|
if (rs->next())
|
|
|
|
{
|
|
|
|
g_type = rs->getValue("type");
|
|
|
|
if (boost::algorithm::contains(g_type,"line"))
|
|
|
|
{
|
|
|
|
result.reset(mapnik::datasource::LineString);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
else if (boost::algorithm::contains(g_type,"point"))
|
|
|
|
{
|
|
|
|
result.reset(mapnik::datasource::Point);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
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
|
|
|
|
if (g_type.empty() && !geometryColumn_.empty())
|
|
|
|
{
|
|
|
|
s.str("");
|
|
|
|
std::string prev_type("");
|
|
|
|
s << "SELECT ST_GeometryType(\""
|
|
|
|
<< geometryColumn_ << "\") AS geom"
|
|
|
|
<< " FROM " << populate_tokens(table_);
|
|
|
|
if (row_limit_ > 0 && row_limit_ < 5)
|
|
|
|
{
|
|
|
|
s << " LIMIT " << row_limit_;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
s << " LIMIT 5";
|
|
|
|
}
|
|
|
|
shared_ptr<ResultSet> rs = conn->executeQuery(s.str());
|
|
|
|
while (rs->next() && !rs->isNull(0))
|
|
|
|
{
|
|
|
|
const char* data = rs->getValue(0);
|
|
|
|
if (boost::algorithm::icontains(data,"line"))
|
|
|
|
{
|
|
|
|
g_type = "linestring";
|
|
|
|
result.reset(mapnik::datasource::LineString);
|
|
|
|
}
|
|
|
|
else if (boost::algorithm::icontains(data,"point"))
|
|
|
|
{
|
|
|
|
g_type = "point";
|
|
|
|
result.reset(mapnik::datasource::Point);
|
|
|
|
}
|
|
|
|
else if (boost::algorithm::icontains(data,"polygon"))
|
|
|
|
{
|
|
|
|
g_type = "polygon";
|
|
|
|
result.reset(mapnik::datasource::Polygon);
|
|
|
|
}
|
|
|
|
else // geometry
|
|
|
|
{
|
|
|
|
result.reset(mapnik::datasource::Collection);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
if (!prev_type.empty() && g_type != prev_type)
|
|
|
|
{
|
|
|
|
result.reset(mapnik::datasource::Collection);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
prev_type = g_type;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2011-11-14 04:37:50 +01:00
|
|
|
postgis_datasource::~postgis_datasource()
|
2009-10-14 06:21:46 +02:00
|
|
|
{
|
2010-10-24 08:34:18 +02:00
|
|
|
if (is_bound_ && !persist_connection_)
|
2009-10-14 06:21:46 +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->close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|