2007-03-08 19:19:42 +01:00
|
|
|
/*****************************************************************************
|
2011-11-14 04:37:50 +01:00
|
|
|
*
|
2007-03-08 19:19:42 +01:00
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
2017-05-05 13:02:01 +02:00
|
|
|
* Copyright (C) 2017 Artem Pavlenko
|
2007-03-08 19:19:42 +01: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,
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2012-04-08 02:20:56 +02:00
|
|
|
#include "shape_datasource.hpp"
|
|
|
|
#include "shape_featureset.hpp"
|
|
|
|
#include "shape_index_featureset.hpp"
|
2009-03-31 01:51:58 +02:00
|
|
|
|
2014-10-22 01:37:27 +02:00
|
|
|
#pragma GCC diagnostic push
|
2015-11-08 02:53:09 +01:00
|
|
|
#include <mapnik/warning_ignore.hpp>
|
|
|
|
#include <boost/version.hpp>
|
2009-03-31 01:51:58 +02:00
|
|
|
#include <boost/algorithm/string.hpp>
|
2014-10-22 01:37:27 +02:00
|
|
|
#pragma GCC diagnostic pop
|
2009-03-31 01:51:58 +02:00
|
|
|
|
2012-04-08 02:20:56 +02:00
|
|
|
// mapnik
|
|
|
|
#include <mapnik/debug.hpp>
|
2014-06-12 16:14:05 +02:00
|
|
|
#include <mapnik/make_unique.hpp>
|
2013-06-03 04:28:24 +02:00
|
|
|
#include <mapnik/util/fs.hpp>
|
2012-04-08 02:20:56 +02:00
|
|
|
#include <mapnik/global.hpp>
|
2015-06-02 12:10:41 +02:00
|
|
|
#include <mapnik/util/utf_conv_win.hpp>
|
2012-04-08 02:20:56 +02:00
|
|
|
#include <mapnik/boolean.hpp>
|
|
|
|
#include <mapnik/util/conversions.hpp>
|
|
|
|
#include <mapnik/geom_util.hpp>
|
|
|
|
#include <mapnik/timer.hpp>
|
2016-08-02 16:34:59 +02:00
|
|
|
#include <mapnik/value/types.hpp>
|
2012-04-08 02:20:56 +02:00
|
|
|
|
2011-05-17 01:41:34 +02:00
|
|
|
// stl
|
|
|
|
#include <fstream>
|
2014-10-01 03:35:07 +02:00
|
|
|
#include <sstream>
|
2011-05-17 01:41:34 +02:00
|
|
|
#include <stdexcept>
|
2009-06-08 10:22:02 +02:00
|
|
|
|
2007-03-08 19:19:42 +01:00
|
|
|
DATASOURCE_PLUGIN(shape_datasource)
|
|
|
|
|
2007-03-16 11:11:37 +01:00
|
|
|
using mapnik::String;
|
|
|
|
using mapnik::Double;
|
|
|
|
using mapnik::Integer;
|
2012-12-03 06:37:39 +01:00
|
|
|
using mapnik::Boolean;
|
2007-03-16 11:11:37 +01:00
|
|
|
using mapnik::datasource_exception;
|
|
|
|
using mapnik::filter_in_box;
|
|
|
|
using mapnik::filter_at_point;
|
|
|
|
using mapnik::attribute_descriptor;
|
|
|
|
|
2014-05-30 11:15:29 +02:00
|
|
|
shape_datasource::shape_datasource(parameters const& params)
|
2010-09-02 22:20:42 +02:00
|
|
|
: datasource (params),
|
|
|
|
type_(datasource::Vector),
|
|
|
|
file_length_(0),
|
|
|
|
indexed_(false),
|
2013-01-04 18:23:06 +01:00
|
|
|
row_limit_(*params.get<mapnik::value_integer>("row_limit",0)),
|
2014-06-26 11:51:24 +02:00
|
|
|
desc_(shape_datasource::name(), *params.get<std::string>("encoding","utf-8"))
|
2007-03-08 19:19:42 +01:00
|
|
|
{
|
2012-12-17 19:03:07 +01:00
|
|
|
#ifdef MAPNIK_STATS
|
|
|
|
mapnik::progress_timer __stats__(std::clog, "shape_datasource::init");
|
|
|
|
#endif
|
2010-09-02 22:20:42 +02:00
|
|
|
boost::optional<std::string> file = params.get<std::string>("file");
|
2010-11-19 00:46:01 +01:00
|
|
|
if (!file) throw datasource_exception("Shape Plugin: missing <file> parameter");
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2010-09-02 22:20:42 +02:00
|
|
|
boost::optional<std::string> base = params.get<std::string>("base");
|
|
|
|
if (base)
|
|
|
|
shape_name_ = *base + "/" + *file;
|
|
|
|
else
|
|
|
|
shape_name_ = *file;
|
2009-03-31 01:51:58 +02:00
|
|
|
|
2010-09-02 22:20:42 +02:00
|
|
|
boost::algorithm::ireplace_last(shape_name_,".shp","");
|
2013-06-03 04:28:24 +02:00
|
|
|
if (!mapnik::util::exists(shape_name_ + ".shp"))
|
2010-09-02 22:20:42 +02:00
|
|
|
{
|
2010-11-19 00:46:01 +01:00
|
|
|
throw datasource_exception("Shape Plugin: shapefile '" + shape_name_ + ".shp' does not exist");
|
2010-09-02 22:20:42 +02:00
|
|
|
}
|
2013-06-03 04:28:24 +02:00
|
|
|
if (mapnik::util::is_directory(shape_name_ + ".shp"))
|
2010-09-02 22:20:42 +02:00
|
|
|
{
|
2010-11-19 00:46:01 +01:00
|
|
|
throw datasource_exception("Shape Plugin: shapefile '" + shape_name_ + ".shp' appears to be a directory not a file");
|
2010-09-02 22:20:42 +02:00
|
|
|
}
|
2013-06-03 04:28:24 +02:00
|
|
|
if (!mapnik::util::exists(shape_name_ + ".dbf"))
|
2011-02-28 18:44:56 +01:00
|
|
|
{
|
|
|
|
throw datasource_exception("Shape Plugin: shapefile '" + shape_name_ + ".dbf' does not exist");
|
|
|
|
}
|
|
|
|
|
2010-09-02 22:20:42 +02:00
|
|
|
try
|
2011-11-14 04:37:50 +01:00
|
|
|
{
|
2012-04-08 02:20:56 +02:00
|
|
|
#ifdef MAPNIK_STATS
|
2012-12-17 19:03:07 +01:00
|
|
|
mapnik::progress_timer __stats2__(std::clog, "shape_datasource::init(get_column_description)");
|
2012-04-08 02:20:56 +02:00
|
|
|
#endif
|
|
|
|
|
2016-02-18 10:53:12 +01:00
|
|
|
shape_io shape(shape_name_);
|
|
|
|
init(shape);
|
|
|
|
for (int i = 0; i < shape.dbf().num_fields(); ++i)
|
2010-09-02 22:20:42 +02:00
|
|
|
{
|
2016-02-18 10:53:12 +01:00
|
|
|
field_descriptor const& fd = shape.dbf().descriptor(i);
|
2010-09-02 22:20:42 +02:00
|
|
|
std::string fld_name=fd.name_;
|
|
|
|
switch (fd.type_)
|
|
|
|
{
|
2011-07-12 02:59:43 +02:00
|
|
|
case 'C': // character
|
2013-08-08 00:58:01 +02:00
|
|
|
case 'D': // date
|
2010-09-02 22:20:42 +02:00
|
|
|
desc_.add_descriptor(attribute_descriptor(fld_name, String));
|
|
|
|
break;
|
2012-12-03 06:37:39 +01:00
|
|
|
case 'L': // logical
|
|
|
|
desc_.add_descriptor(attribute_descriptor(fld_name, Boolean));
|
|
|
|
break;
|
2013-08-08 00:58:01 +02:00
|
|
|
case 'N': // numeric
|
2011-07-12 02:59:43 +02:00
|
|
|
case 'O': // double
|
|
|
|
case 'F': // float
|
2007-03-08 19:19:42 +01:00
|
|
|
{
|
2010-09-02 22:20:42 +02:00
|
|
|
if (fd.dec_>0)
|
2011-11-14 04:37:50 +01:00
|
|
|
{
|
2010-09-02 22:20:42 +02:00
|
|
|
desc_.add_descriptor(attribute_descriptor(fld_name,Double,false,8));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
desc_.add_descriptor(attribute_descriptor(fld_name,Integer,false,4));
|
|
|
|
}
|
|
|
|
break;
|
2007-03-08 19:19:42 +01:00
|
|
|
}
|
|
|
|
default:
|
2011-07-12 02:59:43 +02:00
|
|
|
// I - long
|
|
|
|
// G - ole
|
|
|
|
// + - autoincrement
|
2013-08-08 00:58:01 +02:00
|
|
|
// @ - timestamp
|
|
|
|
// B - binary
|
|
|
|
// l - long
|
|
|
|
// M - memo
|
|
|
|
MAPNIK_LOG_ERROR(shape) << "shape_datasource: Unknown type=" << fd.type_;
|
2010-09-02 22:20:42 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-12-03 06:37:39 +01:00
|
|
|
catch (datasource_exception const& ex)
|
2011-02-28 18:44:56 +01:00
|
|
|
{
|
2012-04-09 03:00:51 +02:00
|
|
|
MAPNIK_LOG_ERROR(shape) << "Shape Plugin: error processing field attributes, " << ex.what();
|
2011-02-28 18:44:56 +01:00
|
|
|
throw;
|
|
|
|
}
|
|
|
|
catch (const std::exception& ex)
|
2010-09-02 22:20:42 +02:00
|
|
|
{
|
2012-04-09 03:00:51 +02:00
|
|
|
MAPNIK_LOG_ERROR(shape) << "Shape Plugin: error processing field attributes, " << ex.what();
|
2010-09-02 22:20:42 +02:00
|
|
|
throw;
|
|
|
|
}
|
2011-02-10 00:41:41 +01:00
|
|
|
catch (...) // exception: pipe_select_interrupter: Too many open files
|
2010-09-02 22:20:42 +02:00
|
|
|
{
|
2012-04-09 03:00:51 +02:00
|
|
|
MAPNIK_LOG_ERROR(shape) << "Shape Plugin: error processing field attributes";
|
2010-09-02 22:20:42 +02:00
|
|
|
throw;
|
|
|
|
}
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2007-03-08 19:19:42 +01:00
|
|
|
}
|
|
|
|
|
2012-12-17 21:59:15 +01:00
|
|
|
void shape_datasource::init(shape_io& shape)
|
2007-03-08 19:19:42 +01:00
|
|
|
{
|
2012-04-08 02:20:56 +02:00
|
|
|
#ifdef MAPNIK_STATS
|
|
|
|
mapnik::progress_timer __stats__(std::clog, "shape_datasource::init");
|
|
|
|
#endif
|
|
|
|
|
2010-09-02 22:20:42 +02:00
|
|
|
//first read header from *.shp
|
2015-10-15 12:49:18 +02:00
|
|
|
shape_file::record_type header(100);
|
|
|
|
shape.shp().read_record(header);
|
|
|
|
|
|
|
|
int file_code = header.read_xdr_integer();
|
|
|
|
if (file_code != 9994)
|
2010-09-02 22:20:42 +02:00
|
|
|
{
|
2014-10-01 03:35:07 +02:00
|
|
|
std::ostringstream s;
|
|
|
|
s << "Shape Plugin: wrong file code " << file_code;
|
|
|
|
throw datasource_exception(s.str());
|
2010-09-02 22:20:42 +02:00
|
|
|
}
|
2015-10-15 12:49:18 +02:00
|
|
|
header.skip(5 * 4);
|
|
|
|
file_length_ = header.read_xdr_integer();
|
|
|
|
int version = header.read_ndr_integer();
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2015-10-15 12:49:18 +02:00
|
|
|
if (version != 1000)
|
2010-09-02 22:20:42 +02:00
|
|
|
{
|
2014-10-01 03:35:07 +02:00
|
|
|
std::ostringstream s;
|
|
|
|
s << "Shape Plugin: nvalid version number " << version;
|
|
|
|
throw datasource_exception(s.str());
|
2010-09-02 22:20:42 +02:00
|
|
|
}
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2015-10-15 12:49:18 +02:00
|
|
|
shape_type_ = static_cast<shape_io::shapeType>(header.read_ndr_integer());
|
2012-01-17 07:09:46 +01:00
|
|
|
if (shape_type_ == shape_io::shape_multipatch)
|
2011-05-19 23:48:45 +02:00
|
|
|
throw datasource_exception("Shape Plugin: shapefile multipatch type is not supported");
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2015-10-15 12:49:18 +02:00
|
|
|
const double lox = header.read_double();
|
|
|
|
const double loy = header.read_double();
|
|
|
|
const double hix = header.read_double();
|
|
|
|
const double hiy = header.read_double();
|
|
|
|
extent_.init(lox, loy, hix, hiy);
|
|
|
|
|
2012-04-08 02:20:56 +02:00
|
|
|
#ifdef MAPNIK_LOG
|
2015-10-15 12:49:18 +02:00
|
|
|
const double zmin = header.read_double();
|
|
|
|
const double zmax = header.read_double();
|
|
|
|
const double mmin = header.read_double();
|
|
|
|
const double mmax = header.read_double();
|
2010-01-30 00:56:25 +01:00
|
|
|
|
2012-04-09 03:00:51 +02:00
|
|
|
MAPNIK_LOG_DEBUG(shape) << "shape_datasource: Z min/max=" << zmin << "," << zmax;
|
|
|
|
MAPNIK_LOG_DEBUG(shape) << "shape_datasource: M min/max=" << mmin << "," << mmax;
|
2010-01-20 16:26:06 +01:00
|
|
|
#endif
|
2010-01-30 00:56:25 +01:00
|
|
|
|
2010-09-02 22:20:42 +02:00
|
|
|
// check if we have an index file around
|
|
|
|
indexed_ = shape.has_index();
|
2012-04-09 03:00:51 +02:00
|
|
|
MAPNIK_LOG_DEBUG(shape) << "shape_datasource: Extent=" << extent_;
|
|
|
|
MAPNIK_LOG_DEBUG(shape) << "shape_datasource: File length=" << file_length_;
|
|
|
|
MAPNIK_LOG_DEBUG(shape) << "shape_datasource: Shape type=" << shape_type_;
|
2007-03-08 19:19:42 +01:00
|
|
|
}
|
|
|
|
|
2012-12-17 21:59:15 +01:00
|
|
|
shape_datasource::~shape_datasource() {}
|
|
|
|
|
2012-07-21 03:34:41 +02:00
|
|
|
const char * shape_datasource::name()
|
2010-11-14 15:49:42 +01:00
|
|
|
{
|
|
|
|
return "shape";
|
|
|
|
}
|
|
|
|
|
2012-01-17 07:09:46 +01:00
|
|
|
datasource::datasource_t shape_datasource::type() const
|
2007-03-08 19:19:42 +01:00
|
|
|
{
|
2010-09-02 22:20:42 +02:00
|
|
|
return type_;
|
2007-03-08 19:19:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
layer_descriptor shape_datasource::get_descriptor() const
|
|
|
|
{
|
2010-09-02 22:20:42 +02:00
|
|
|
return desc_;
|
2007-03-08 19:19:42 +01:00
|
|
|
}
|
|
|
|
|
2014-05-30 16:37:44 +02:00
|
|
|
featureset_ptr shape_datasource::features(query const& q) const
|
2007-03-08 19:19:42 +01:00
|
|
|
{
|
2012-04-08 02:20:56 +02:00
|
|
|
#ifdef MAPNIK_STATS
|
|
|
|
mapnik::progress_timer __stats__(std::clog, "shape_datasource::features");
|
|
|
|
#endif
|
|
|
|
|
2017-08-21 12:02:34 +02:00
|
|
|
auto const& query_box = q.get_bbox();
|
|
|
|
|
2010-09-02 22:20:42 +02:00
|
|
|
if (indexed_)
|
|
|
|
{
|
2014-05-30 16:37:44 +02:00
|
|
|
std::unique_ptr<shape_io> shape_ptr = std::make_unique<shape_io>(shape_name_);
|
2017-08-21 12:02:34 +02:00
|
|
|
mapnik::bounding_box_filter<float> filter(mapnik::box2d<float>(query_box.minx(), query_box.miny(), query_box.maxx(), query_box.maxy()));
|
2010-09-02 22:20:42 +02:00
|
|
|
return featureset_ptr
|
2017-08-21 12:02:34 +02:00
|
|
|
(new shape_index_featureset<mapnik::bounding_box_filter<float>>(filter,
|
|
|
|
std::move(shape_ptr),
|
|
|
|
q.property_names(),
|
|
|
|
desc_.get_encoding(),
|
|
|
|
shape_name_,
|
|
|
|
row_limit_));
|
2010-09-02 22:20:42 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-08-21 12:02:34 +02:00
|
|
|
mapnik::bounding_box_filter<double> filter(q.get_bbox());
|
|
|
|
return std::make_shared<shape_featureset< mapnik::bounding_box_filter<double>>>(filter,
|
2014-05-30 16:37:44 +02:00
|
|
|
shape_name_,
|
|
|
|
q.property_names(),
|
|
|
|
desc_.get_encoding(),
|
|
|
|
row_limit_);
|
2010-09-02 22:20:42 +02:00
|
|
|
}
|
2007-03-08 19:19:42 +01:00
|
|
|
}
|
|
|
|
|
2012-09-28 15:12:10 +02:00
|
|
|
featureset_ptr shape_datasource::features_at_point(coord2d const& pt, double tol) const
|
2007-03-08 19:19:42 +01:00
|
|
|
{
|
2012-04-08 02:20:56 +02:00
|
|
|
#ifdef MAPNIK_STATS
|
|
|
|
mapnik::progress_timer __stats__(std::clog, "shape_datasource::features_at_point");
|
|
|
|
#endif
|
|
|
|
|
2017-08-21 12:02:34 +02:00
|
|
|
|
2010-09-02 22:20:42 +02:00
|
|
|
// collect all attribute names
|
2015-10-10 01:07:19 +02:00
|
|
|
auto const& desc = desc_.get_descriptors();
|
2010-09-02 22:20:42 +02:00
|
|
|
std::set<std::string> names;
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2015-10-10 01:07:19 +02:00
|
|
|
for (auto const& attr_info : desc)
|
2011-11-14 04:37:50 +01:00
|
|
|
{
|
2015-10-10 01:07:19 +02:00
|
|
|
names.insert(attr_info.get_name());
|
2010-09-02 22:20:42 +02:00
|
|
|
}
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2010-09-02 22:20:42 +02:00
|
|
|
if (indexed_)
|
|
|
|
{
|
2014-05-30 16:37:44 +02:00
|
|
|
std::unique_ptr<shape_io> shape_ptr = std::make_unique<shape_io>(shape_name_);
|
2017-08-21 12:02:34 +02:00
|
|
|
mapnik::at_point_filter<float> filter(mapnik::coord2f(pt.x, pt.y));
|
2010-09-02 22:20:42 +02:00
|
|
|
return featureset_ptr
|
2017-08-21 12:02:34 +02:00
|
|
|
(new shape_index_featureset<mapnik::at_point_filter<float>>(filter,
|
|
|
|
std::move(shape_ptr),
|
|
|
|
names,
|
|
|
|
desc_.get_encoding(),
|
|
|
|
shape_name_,
|
|
|
|
row_limit_));
|
2010-09-02 22:20:42 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-08-21 12:02:34 +02:00
|
|
|
filter_at_point filter(pt,tol);
|
2013-09-20 15:00:11 +02:00
|
|
|
return std::make_shared<shape_featureset<filter_at_point> >(filter,
|
2014-05-30 16:37:44 +02:00
|
|
|
shape_name_,
|
|
|
|
names,
|
|
|
|
desc_.get_encoding(),
|
|
|
|
row_limit_);
|
2010-09-02 22:20:42 +02:00
|
|
|
}
|
2007-03-08 19:19:42 +01:00
|
|
|
}
|
|
|
|
|
2009-12-16 21:02:06 +01:00
|
|
|
box2d<double> shape_datasource::envelope() const
|
2007-03-08 19:19:42 +01:00
|
|
|
{
|
2010-09-02 22:20:42 +02:00
|
|
|
return extent_;
|
2007-03-08 19:19:42 +01:00
|
|
|
}
|
2012-01-17 07:09:46 +01:00
|
|
|
|
2015-03-24 12:13:31 +01:00
|
|
|
boost::optional<mapnik::datasource_geometry_t> shape_datasource::get_geometry_type() const
|
2012-01-17 07:09:46 +01:00
|
|
|
{
|
2012-04-08 02:20:56 +02:00
|
|
|
#ifdef MAPNIK_STATS
|
|
|
|
mapnik::progress_timer __stats__(std::clog, "shape_datasource::get_geometry_type");
|
|
|
|
#endif
|
|
|
|
|
2015-03-24 12:13:31 +01:00
|
|
|
boost::optional<mapnik::datasource_geometry_t> result;
|
2012-01-17 07:09:46 +01:00
|
|
|
switch (shape_type_)
|
|
|
|
{
|
2012-02-02 02:37:35 +01:00
|
|
|
case shape_io::shape_point:
|
|
|
|
case shape_io::shape_pointm:
|
|
|
|
case shape_io::shape_pointz:
|
|
|
|
case shape_io::shape_multipoint:
|
|
|
|
case shape_io::shape_multipointm:
|
|
|
|
case shape_io::shape_multipointz:
|
|
|
|
{
|
2015-03-24 12:13:31 +01:00
|
|
|
result.reset(mapnik::datasource_geometry_t::Point);
|
2012-02-02 02:37:35 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case shape_io::shape_polyline:
|
|
|
|
case shape_io::shape_polylinem:
|
|
|
|
case shape_io::shape_polylinez:
|
|
|
|
{
|
2015-03-24 12:13:31 +01:00
|
|
|
result.reset(mapnik::datasource_geometry_t::LineString);
|
2012-02-02 02:37:35 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case shape_io::shape_polygon:
|
|
|
|
case shape_io::shape_polygonm:
|
|
|
|
case shape_io::shape_polygonz:
|
|
|
|
{
|
2015-03-24 12:13:31 +01:00
|
|
|
result.reset(mapnik::datasource_geometry_t::Polygon);
|
2012-02-02 02:37:35 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
break;
|
2012-01-17 07:09:46 +01:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|