2009-02-09 20:43:57 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 Artem Pavlenko
|
|
|
|
*
|
|
|
|
* 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,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
#include "sqlite_datasource.hpp"
|
|
|
|
#include "sqlite_featureset.hpp"
|
|
|
|
|
|
|
|
// mapnik
|
|
|
|
#include <mapnik/ptree_helpers.hpp>
|
2010-11-12 01:12:47 +01:00
|
|
|
#include <mapnik/sql_utils.hpp>
|
2009-02-09 20:43:57 +01:00
|
|
|
|
|
|
|
// boost
|
|
|
|
#include <boost/algorithm/string.hpp>
|
|
|
|
#include <boost/lexical_cast.hpp>
|
|
|
|
#include <boost/tokenizer.hpp>
|
2009-03-12 00:39:26 +01:00
|
|
|
#include <boost/filesystem/operations.hpp>
|
2009-02-09 20:43:57 +01:00
|
|
|
|
|
|
|
using std::clog;
|
|
|
|
using std::endl;
|
|
|
|
|
|
|
|
using boost::lexical_cast;
|
|
|
|
using boost::bad_lexical_cast;
|
|
|
|
|
|
|
|
using mapnik::datasource;
|
|
|
|
using mapnik::parameters;
|
|
|
|
|
|
|
|
DATASOURCE_PLUGIN(sqlite_datasource)
|
|
|
|
|
2009-12-16 21:02:06 +01:00
|
|
|
using mapnik::box2d;
|
2009-02-09 20:43:57 +01:00
|
|
|
using mapnik::coord2d;
|
|
|
|
using mapnik::query;
|
|
|
|
using mapnik::featureset_ptr;
|
|
|
|
using mapnik::layer_descriptor;
|
|
|
|
using mapnik::attribute_descriptor;
|
|
|
|
using mapnik::datasource_exception;
|
|
|
|
|
|
|
|
|
2010-10-24 08:34:18 +02:00
|
|
|
sqlite_datasource::sqlite_datasource(parameters const& params, bool bind)
|
2009-02-09 20:43:57 +01:00
|
|
|
: datasource(params),
|
|
|
|
extent_(),
|
|
|
|
extent_initialized_(false),
|
|
|
|
type_(datasource::Vector),
|
2010-05-30 05:23:59 +02:00
|
|
|
table_(*params.get<std::string>("table","")),
|
|
|
|
metadata_(*params.get<std::string>("metadata","")),
|
|
|
|
geometry_field_(*params.get<std::string>("geometry_field","the_geom")),
|
|
|
|
key_field_(*params.get<std::string>("key_field","OGC_FID")),
|
2009-02-23 16:00:25 +01:00
|
|
|
row_offset_(*params_.get<int>("row_offset",0)),
|
|
|
|
row_limit_(*params_.get<int>("row_limit",0)),
|
2010-05-30 05:23:59 +02:00
|
|
|
desc_(*params.get<std::string>("type"), *params.get<std::string>("encoding","utf-8")),
|
|
|
|
format_(mapnik::wkbGeneric)
|
2009-02-09 20:43:57 +01:00
|
|
|
{
|
|
|
|
boost::optional<std::string> file = params.get<std::string>("file");
|
2010-05-30 05:23:59 +02:00
|
|
|
if (!file) throw datasource_exception("missing <file> parameter");
|
2009-02-09 20:43:57 +01:00
|
|
|
|
2009-02-23 16:00:25 +01:00
|
|
|
boost::optional<std::string> wkb = params.get<std::string>("wkb_format");
|
|
|
|
if (wkb)
|
|
|
|
{
|
|
|
|
if (*wkb == "spatialite")
|
|
|
|
format_ = mapnik::wkbSpatiaLite;
|
|
|
|
}
|
|
|
|
|
2009-02-09 20:43:57 +01:00
|
|
|
multiple_geometries_ = *params_.get<mapnik::boolean>("multiple_geometries",false);
|
2009-02-10 20:09:16 +01:00
|
|
|
use_spatial_index_ = *params_.get<mapnik::boolean>("use_spatial_index",true);
|
2009-02-09 20:43:57 +01:00
|
|
|
|
2010-11-14 15:51:04 +01:00
|
|
|
boost::optional<std::string> ext = params_.get<std::string>("extent");
|
|
|
|
if (ext) extent_initialized_ = extent_.from_string(*ext);
|
|
|
|
|
2009-03-30 22:19:57 +02:00
|
|
|
boost::optional<std::string> base = params.get<std::string>("base");
|
|
|
|
if (base)
|
|
|
|
dataset_name_ = *base + "/" + *file;
|
|
|
|
else
|
|
|
|
dataset_name_ = *file;
|
|
|
|
|
2010-10-24 08:34:18 +02:00
|
|
|
if (bind)
|
|
|
|
{
|
|
|
|
this->bind();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void sqlite_datasource::bind() const
|
|
|
|
{
|
|
|
|
if (is_bound_) return;
|
|
|
|
|
2010-05-30 05:23:59 +02:00
|
|
|
if (!boost::filesystem::exists(dataset_name_)) throw datasource_exception(dataset_name_ + " does not exist");
|
2009-03-30 22:19:57 +02:00
|
|
|
|
|
|
|
dataset_ = new sqlite_connection (dataset_name_);
|
2009-02-09 20:43:57 +01:00
|
|
|
|
2010-11-12 01:12:47 +01:00
|
|
|
std::string table_name = mapnik::table_from_sql(table_);
|
2009-02-23 23:13:21 +01:00
|
|
|
|
2009-02-10 20:09:16 +01:00
|
|
|
if (metadata_ != "" && ! extent_initialized_)
|
2009-02-09 20:43:57 +01:00
|
|
|
{
|
|
|
|
std::ostringstream s;
|
2009-02-10 20:09:16 +01:00
|
|
|
s << "select xmin, ymin, xmax, ymax from " << metadata_;
|
2010-05-30 05:23:59 +02:00
|
|
|
s << " where lower(f_table_name) = lower('" << table_name << "')";
|
2009-02-10 20:09:16 +01:00
|
|
|
boost::scoped_ptr<sqlite_resultset> rs (dataset_->execute_query (s.str()));
|
2009-02-09 20:43:57 +01:00
|
|
|
if (rs->is_valid () && rs->step_next())
|
|
|
|
{
|
2009-02-10 20:09:16 +01:00
|
|
|
double xmin = rs->column_double (0);
|
|
|
|
double ymin = rs->column_double (1);
|
|
|
|
double xmax = rs->column_double (2);
|
|
|
|
double ymax = rs->column_double (3);
|
2009-02-23 16:00:25 +01:00
|
|
|
|
2009-02-10 20:09:16 +01:00
|
|
|
extent_.init (xmin,ymin,xmax,ymax);
|
|
|
|
extent_initialized_ = true;
|
2009-02-09 20:43:57 +01:00
|
|
|
}
|
|
|
|
}
|
2009-02-10 20:09:16 +01:00
|
|
|
|
|
|
|
if (use_spatial_index_)
|
|
|
|
{
|
2009-02-23 17:04:57 +01:00
|
|
|
std::ostringstream s;
|
|
|
|
s << "select count (*) from sqlite_master";
|
2010-05-30 05:23:59 +02:00
|
|
|
s << " where lower(name) = lower('idx_" << table_name << "_" << geometry_field_ << "')";
|
2009-02-23 17:04:57 +01:00
|
|
|
boost::scoped_ptr<sqlite_resultset> rs (dataset_->execute_query (s.str()));
|
|
|
|
if (rs->is_valid () && rs->step_next())
|
2009-02-10 20:09:16 +01:00
|
|
|
{
|
2009-02-23 17:04:57 +01:00
|
|
|
use_spatial_index_ = rs->column_integer (0) == 1;
|
2009-02-10 20:09:16 +01:00
|
|
|
}
|
2009-02-23 16:00:25 +01:00
|
|
|
|
|
|
|
#ifdef MAPNIK_DEBUG
|
|
|
|
if (! use_spatial_index_)
|
2009-02-23 23:13:21 +01:00
|
|
|
clog << "cannot use the spatial index " << endl;
|
2009-02-23 16:00:25 +01:00
|
|
|
#endif
|
2009-02-10 20:09:16 +01:00
|
|
|
}
|
2009-02-23 23:13:21 +01:00
|
|
|
|
2009-02-09 20:43:57 +01:00
|
|
|
{
|
2009-02-10 20:09:16 +01:00
|
|
|
/*
|
2009-03-30 22:19:57 +02:00
|
|
|
XXX - This is problematic, if we do not have at least a row,
|
2009-02-10 20:09:16 +01:00
|
|
|
we cannot determine the right columns types and names
|
|
|
|
as all column_type are SQLITE_NULL
|
|
|
|
*/
|
2009-02-24 00:26:50 +01:00
|
|
|
|
2010-05-30 05:23:59 +02:00
|
|
|
std::string::size_type idx = table_.find(table_name);
|
2009-02-09 20:43:57 +01:00
|
|
|
std::ostringstream s;
|
2010-05-30 05:23:59 +02:00
|
|
|
s << "select * from (" << table_.substr(0,idx + table_name.length()) << ") limit 1";
|
2009-02-24 00:26:50 +01:00
|
|
|
|
2009-02-10 20:09:16 +01:00
|
|
|
boost::scoped_ptr<sqlite_resultset> rs (dataset_->execute_query (s.str()));
|
2009-02-09 20:43:57 +01:00
|
|
|
if (rs->is_valid () && rs->step_next())
|
|
|
|
{
|
|
|
|
for (int i = 0; i < rs->column_count (); ++i)
|
|
|
|
{
|
|
|
|
const int type_oid = rs->column_type (i);
|
|
|
|
const char* fld_name = rs->column_name (i);
|
|
|
|
switch (type_oid)
|
|
|
|
{
|
|
|
|
case SQLITE_INTEGER:
|
|
|
|
desc_.add_descriptor(attribute_descriptor(fld_name,mapnik::Integer));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SQLITE_FLOAT:
|
|
|
|
desc_.add_descriptor(attribute_descriptor(fld_name,mapnik::Double));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SQLITE_TEXT:
|
|
|
|
desc_.add_descriptor(attribute_descriptor(fld_name,mapnik::String));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SQLITE_NULL:
|
|
|
|
case SQLITE_BLOB:
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
#ifdef MAPNIK_DEBUG
|
2010-05-30 05:23:59 +02:00
|
|
|
clog << "unknown type_oid="<<type_oid<<endl;
|
2009-02-09 20:43:57 +01:00
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-10-24 08:34:18 +02:00
|
|
|
|
|
|
|
is_bound_ = true;
|
2009-02-09 20:43:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
sqlite_datasource::~sqlite_datasource()
|
|
|
|
{
|
2010-10-24 08:34:18 +02:00
|
|
|
if (is_bound_)
|
|
|
|
{
|
|
|
|
delete dataset_;
|
|
|
|
}
|
2009-02-09 20:43:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string sqlite_datasource::name()
|
|
|
|
{
|
2010-11-14 15:51:04 +01:00
|
|
|
return "sqlite";
|
2009-02-09 20:43:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int sqlite_datasource::type() const
|
|
|
|
{
|
|
|
|
return type_;
|
|
|
|
}
|
|
|
|
|
2009-12-16 21:02:06 +01:00
|
|
|
box2d<double> sqlite_datasource::envelope() const
|
2009-02-09 20:43:57 +01:00
|
|
|
{
|
2010-10-24 08:34:18 +02:00
|
|
|
if (!is_bound_) bind();
|
2009-02-09 20:43:57 +01:00
|
|
|
return extent_;
|
|
|
|
}
|
|
|
|
|
|
|
|
layer_descriptor sqlite_datasource::get_descriptor() const
|
|
|
|
{
|
2010-10-24 08:34:18 +02:00
|
|
|
if (!is_bound_) bind();
|
2009-02-09 20:43:57 +01:00
|
|
|
return desc_;
|
|
|
|
}
|
|
|
|
|
|
|
|
featureset_ptr sqlite_datasource::features(query const& q) const
|
|
|
|
{
|
2010-10-24 08:34:18 +02:00
|
|
|
if (!is_bound_) bind();
|
2009-02-09 20:43:57 +01:00
|
|
|
if (dataset_)
|
|
|
|
{
|
2009-12-16 21:02:06 +01:00
|
|
|
mapnik::box2d<double> const& e = q.get_bbox();
|
2009-02-09 20:43:57 +01:00
|
|
|
|
|
|
|
std::ostringstream s;
|
2009-02-23 23:13:21 +01:00
|
|
|
|
2009-02-10 20:09:16 +01:00
|
|
|
s << "select " << geometry_field_ << "," << key_field_;
|
2009-02-09 20:43:57 +01: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();
|
|
|
|
while (pos != end)
|
|
|
|
{
|
|
|
|
s << "," << *pos << "";
|
|
|
|
++pos;
|
2009-02-23 23:13:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
s << " from ";
|
|
|
|
|
|
|
|
std::string query (table_);
|
|
|
|
|
2009-02-10 20:09:16 +01:00
|
|
|
if (use_spatial_index_)
|
|
|
|
{
|
2010-11-12 01:31:04 +01:00
|
|
|
std::string table_name = mapnik::table_from_sql(query);
|
2009-02-23 23:13:21 +01:00
|
|
|
std::ostringstream spatial_sql;
|
|
|
|
spatial_sql << std::setprecision(16);
|
2010-05-30 05:23:59 +02:00
|
|
|
spatial_sql << " where rowid in (select pkid from idx_" << table_name << "_" << geometry_field_;
|
2009-02-23 23:13:21 +01:00
|
|
|
spatial_sql << " where xmax>=" << e.minx() << " and xmin<=" << e.maxx() ;
|
|
|
|
spatial_sql << " and ymax>=" << e.miny() << " and ymin<=" << e.maxy() << ")";
|
|
|
|
if (boost::algorithm::ifind_first(query,"where"))
|
|
|
|
{
|
|
|
|
boost::algorithm::ireplace_first(query, "where", spatial_sql.str() + " and");
|
|
|
|
}
|
2010-05-30 05:23:59 +02:00
|
|
|
else if (boost::algorithm::find_first(query,table_name))
|
2009-02-23 23:13:21 +01:00
|
|
|
{
|
2010-05-30 05:23:59 +02:00
|
|
|
boost::algorithm::ireplace_first(query, table_name , table_name + " " + spatial_sql.str());
|
2009-02-23 23:13:21 +01:00
|
|
|
}
|
2009-02-10 20:09:16 +01:00
|
|
|
}
|
2009-02-23 23:13:21 +01:00
|
|
|
|
|
|
|
s << query ;
|
|
|
|
|
2009-02-23 16:00:25 +01:00
|
|
|
if (row_limit_ > 0) {
|
|
|
|
s << " limit " << row_limit_;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (row_offset_ > 0) {
|
|
|
|
s << " offset " << row_offset_;
|
|
|
|
}
|
|
|
|
|
2009-02-23 23:13:21 +01:00
|
|
|
#ifdef MAPNIK_DEBUG
|
2009-02-23 16:00:25 +01:00
|
|
|
std::cerr << s.str() << "\n";
|
2009-02-23 23:13:21 +01:00
|
|
|
#endif
|
2009-02-10 20:09:16 +01:00
|
|
|
|
|
|
|
boost::shared_ptr<sqlite_resultset> rs (dataset_->execute_query (s.str()));
|
2009-02-09 20:43:57 +01:00
|
|
|
|
2009-02-23 16:00:25 +01:00
|
|
|
return featureset_ptr (new sqlite_featureset(rs, desc_.get_encoding(), format_, multiple_geometries_));
|
2009-02-09 20:43:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return featureset_ptr();
|
|
|
|
}
|
|
|
|
|
|
|
|
featureset_ptr sqlite_datasource::features_at_point(coord2d const& pt) const
|
|
|
|
{
|
2010-10-24 08:34:18 +02:00
|
|
|
if (!is_bound_) bind();
|
2009-02-09 20:43:57 +01:00
|
|
|
#if 0
|
|
|
|
if (dataset_ && layer_)
|
|
|
|
{
|
|
|
|
OGRPoint point;
|
|
|
|
point.setX (pt.x);
|
|
|
|
point.setY (pt.y);
|
|
|
|
|
|
|
|
layer_->SetSpatialFilter (&point);
|
|
|
|
|
|
|
|
return featureset_ptr(new ogr_featureset(*dataset_, *layer_, desc_.get_encoding(), multiple_geometries_));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return featureset_ptr();
|
|
|
|
}
|
|
|
|
|