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
|
|
|
*
|
2016-12-20 17:57:22 +01:00
|
|
|
* Copyright (C) 2016 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-22 15:27:28 +02:00
|
|
|
// stl
|
|
|
|
#include <fstream>
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2011-05-17 01:41:34 +02:00
|
|
|
// mapnik
|
2012-04-08 02:20:56 +02:00
|
|
|
#include <mapnik/debug.hpp>
|
2006-10-04 13:22:18 +02:00
|
|
|
#include <mapnik/feature_factory.hpp>
|
2011-05-17 01:41:34 +02:00
|
|
|
|
2014-10-22 02:44:47 +02:00
|
|
|
#pragma GCC diagnostic push
|
2015-11-08 02:53:09 +01:00
|
|
|
#include <mapnik/warning_ignore.hpp>
|
2011-08-05 23:20:21 +02:00
|
|
|
#include <boost/algorithm/string.hpp>
|
2015-10-16 22:34:53 +02:00
|
|
|
#if defined(MAPNIK_MEMORY_MAPPED_FILE)
|
2011-04-06 15:02:31 +02:00
|
|
|
#include <boost/interprocess/streams/bufferstream.hpp>
|
2013-08-13 20:13:56 +02:00
|
|
|
#endif
|
2014-10-22 02:44:47 +02:00
|
|
|
#pragma GCC diagnostic pop
|
2015-11-08 02:53:09 +01:00
|
|
|
|
2011-05-17 01:41:34 +02:00
|
|
|
#include "shape_index_featureset.hpp"
|
2012-01-12 13:18:50 +01:00
|
|
|
#include "shape_utils.hpp"
|
2015-09-24 12:37:27 +02:00
|
|
|
#include <mapnik/util/spatial_index.hpp>
|
2011-05-17 01:41:34 +02:00
|
|
|
|
|
|
|
using mapnik::feature_factory;
|
|
|
|
|
2005-06-14 17:06:59 +02:00
|
|
|
template <typename filterT>
|
2012-01-12 13:18:50 +01:00
|
|
|
shape_index_featureset<filterT>::shape_index_featureset(filterT const& filter,
|
2014-05-30 16:37:44 +02:00
|
|
|
std::unique_ptr<shape_io> && shape_ptr,
|
2012-01-12 13:18:50 +01:00
|
|
|
std::set<std::string> const& attribute_names,
|
2011-08-05 23:20:21 +02:00
|
|
|
std::string const& encoding,
|
2011-08-26 09:02:36 +02:00
|
|
|
std::string const& shape_name,
|
|
|
|
int row_limit)
|
2011-11-14 04:37:50 +01:00
|
|
|
: filter_(filter),
|
2013-09-20 15:00:11 +02:00
|
|
|
ctx_(std::make_shared<mapnik::context_type>()),
|
2015-09-24 12:37:27 +02:00
|
|
|
shape_ptr_(std::move(shape_ptr)),
|
|
|
|
tr_(new mapnik::transcoder(encoding)),
|
2016-01-30 01:29:43 +01:00
|
|
|
offsets_(),
|
|
|
|
itr_(),
|
|
|
|
attr_ids_(),
|
2015-09-24 12:37:27 +02:00
|
|
|
row_limit_(row_limit),
|
|
|
|
count_(0),
|
|
|
|
feature_bbox_()
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2014-05-30 16:37:44 +02:00
|
|
|
shape_ptr_->shp().skip(100);
|
|
|
|
setup_attributes(ctx_, attribute_names, shape_name, *shape_ptr_,attr_ids_);
|
2012-04-17 07:22:35 +02:00
|
|
|
|
2014-05-30 16:37:44 +02:00
|
|
|
auto index = shape_ptr_->index();
|
2010-09-06 21:20:59 +02:00
|
|
|
if (index)
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2015-10-16 22:34:53 +02:00
|
|
|
#if defined(MAPNIK_MEMORY_MAPPED_FILE)
|
2016-01-04 14:19:16 +01:00
|
|
|
mapnik::util::spatial_index<mapnik::detail::node, filterT,boost::interprocess::ibufferstream>::query(filter, index->file(), offsets_);
|
2010-11-08 21:38:17 +01:00
|
|
|
#else
|
2016-01-04 14:19:16 +01:00
|
|
|
mapnik::util::spatial_index<mapnik::detail::node, filterT, std::ifstream>::query(filter, index->file(), offsets_);
|
2010-11-08 21:38:17 +01:00
|
|
|
#endif
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
2016-01-04 14:19:16 +01:00
|
|
|
std::sort(offsets_.begin(), offsets_.end(), [](mapnik::detail::node const& n0, mapnik::detail::node const& n1)
|
2016-01-04 12:43:27 +01:00
|
|
|
{return n0.offset != n1.offset ? n0.offset < n1.offset : n0.start < n1.start;});
|
2012-12-11 10:37:53 +01:00
|
|
|
MAPNIK_LOG_DEBUG(shape) << "shape_index_featureset: Query size=" << offsets_.size();
|
|
|
|
itr_ = offsets_.begin();
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename filterT>
|
2005-09-08 15:09:04 +02:00
|
|
|
feature_ptr shape_index_featureset<filterT>::next()
|
2011-11-14 04:37:50 +01:00
|
|
|
{
|
2012-11-28 23:15:53 +01:00
|
|
|
if (row_limit_ && count_ >= row_limit_)
|
2011-10-22 15:27:28 +02:00
|
|
|
{
|
2011-08-26 09:02:36 +02:00
|
|
|
return feature_ptr();
|
2011-10-22 15:27:28 +02:00
|
|
|
}
|
2011-08-26 09:02:36 +02:00
|
|
|
|
2012-12-11 10:37:53 +01:00
|
|
|
while ( itr_ != offsets_.end())
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2016-01-04 12:43:27 +01:00
|
|
|
int offset = itr_->offset;
|
|
|
|
shape_ptr_->move_to(offset);
|
|
|
|
std::vector<std::pair<int,int>> parts;
|
2016-01-30 01:29:12 +01:00
|
|
|
while (itr_ != offsets_.end() && itr_->offset == offset)
|
2016-01-04 12:43:27 +01:00
|
|
|
{
|
|
|
|
if (itr_->start!= -1) parts.emplace_back(itr_->start, itr_->end);
|
|
|
|
++itr_;
|
|
|
|
}
|
2015-10-20 15:18:17 +02:00
|
|
|
mapnik::value_integer feature_id = shape_ptr_->id();
|
2014-05-30 16:37:44 +02:00
|
|
|
shape_file::record_type record(shape_ptr_->reclength_ * 2);
|
|
|
|
shape_ptr_->shp().read_record(record);
|
2012-12-11 10:37:53 +01:00
|
|
|
int type = record.read_ndr_integer();
|
2015-10-20 15:18:17 +02:00
|
|
|
feature_ptr feature(feature_factory::create(ctx_, feature_id));
|
2012-12-11 10:37:53 +01:00
|
|
|
|
|
|
|
switch (type)
|
2010-07-25 21:55:40 +02:00
|
|
|
{
|
2012-12-11 10:37:53 +01:00
|
|
|
case shape_io::shape_point:
|
|
|
|
case shape_io::shape_pointm:
|
|
|
|
case shape_io::shape_pointz:
|
2006-11-19 18:13:33 +01:00
|
|
|
{
|
2012-12-11 10:37:53 +01:00
|
|
|
double x = record.read_double();
|
|
|
|
double y = record.read_double();
|
2015-04-09 22:22:51 +02:00
|
|
|
feature->set_geometry(mapnik::geometry::point<double>(x,y));
|
2012-12-11 10:37:53 +01:00
|
|
|
break;
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
2012-12-11 10:37:53 +01:00
|
|
|
case shape_io::shape_multipoint:
|
|
|
|
case shape_io::shape_multipointm:
|
|
|
|
case shape_io::shape_multipointz:
|
2006-11-19 18:13:33 +01:00
|
|
|
{
|
2012-12-11 10:37:53 +01:00
|
|
|
shape_io::read_bbox(record, feature_bbox_);
|
|
|
|
if (!filter_.pass(feature_bbox_)) continue;
|
|
|
|
int num_points = record.read_ndr_integer();
|
2015-04-09 22:22:51 +02:00
|
|
|
mapnik::geometry::multi_point<double> multi_point;
|
2012-12-11 10:37:53 +01:00
|
|
|
for (int i = 0; i < num_points; ++i)
|
2010-01-29 02:59:50 +01:00
|
|
|
{
|
2012-12-11 10:37:53 +01:00
|
|
|
double x = record.read_double();
|
|
|
|
double y = record.read_double();
|
2015-04-09 22:22:51 +02:00
|
|
|
multi_point.emplace_back(mapnik::geometry::point<double>(x, y));
|
2010-01-29 02:59:50 +01:00
|
|
|
}
|
2015-02-18 13:21:16 +01:00
|
|
|
feature->set_geometry(std::move(multi_point));
|
2012-12-11 10:37:53 +01:00
|
|
|
break;
|
2011-11-14 04:37:50 +01:00
|
|
|
}
|
2012-12-11 10:37:53 +01:00
|
|
|
case shape_io::shape_polyline:
|
|
|
|
case shape_io::shape_polylinem:
|
|
|
|
case shape_io::shape_polylinez:
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2012-12-11 10:37:53 +01:00
|
|
|
shape_io::read_bbox(record, feature_bbox_);
|
|
|
|
if (!filter_.pass(feature_bbox_)) continue;
|
2016-01-04 12:43:27 +01:00
|
|
|
if (parts.size() < 2) feature->set_geometry(shape_io::read_polyline(record));
|
|
|
|
else feature->set_geometry(shape_io::read_polyline_parts(record, parts));
|
2012-12-11 10:37:53 +01:00
|
|
|
break;
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
2012-12-11 10:37:53 +01:00
|
|
|
case shape_io::shape_polygon:
|
|
|
|
case shape_io::shape_polygonm:
|
|
|
|
case shape_io::shape_polygonz:
|
|
|
|
{
|
|
|
|
shape_io::read_bbox(record, feature_bbox_);
|
|
|
|
if (!filter_.pass(feature_bbox_)) continue;
|
2016-01-04 12:43:27 +01:00
|
|
|
if (parts.size() < 2) feature->set_geometry(shape_io::read_polygon(record));
|
|
|
|
else feature->set_geometry(shape_io::read_polygon_parts(record, parts));
|
2012-12-11 10:37:53 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
default :
|
|
|
|
MAPNIK_LOG_DEBUG(shape) << "shape_index_featureset: Unsupported type" << type;
|
|
|
|
return feature_ptr();
|
|
|
|
}
|
|
|
|
|
2006-11-19 18:13:33 +01:00
|
|
|
if (attr_ids_.size())
|
|
|
|
{
|
2014-05-30 16:37:44 +02:00
|
|
|
shape_ptr_->dbf().move_to(shape_ptr_->id_);
|
2011-11-14 04:37:50 +01:00
|
|
|
try
|
2006-11-19 18:13:33 +01:00
|
|
|
{
|
2015-10-20 15:18:17 +02:00
|
|
|
for (auto id : attr_ids_)
|
2011-11-14 04:37:50 +01:00
|
|
|
{
|
2015-10-20 15:18:17 +02:00
|
|
|
shape_ptr_->dbf().add_attribute(id, *tr_, *feature);
|
2006-11-19 18:13:33 +01:00
|
|
|
}
|
2011-08-11 13:04:04 +02:00
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
2012-04-09 03:00:51 +02:00
|
|
|
MAPNIK_LOG_ERROR(shape) << "Shape Plugin: error processing attributes";
|
2006-11-19 18:13:33 +01:00
|
|
|
}
|
|
|
|
}
|
2012-12-11 10:37:53 +01:00
|
|
|
++count_;
|
2006-11-19 18:13:33 +01:00
|
|
|
return feature;
|
2005-09-08 15:09:04 +02:00
|
|
|
}
|
2012-04-09 12:05:49 +02:00
|
|
|
|
2012-12-11 10:37:53 +01:00
|
|
|
MAPNIK_LOG_DEBUG(shape) << "shape_index_featureset: " << count_ << " features";
|
|
|
|
return feature_ptr();
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template <typename filterT>
|
|
|
|
shape_index_featureset<filterT>::~shape_index_featureset() {}
|
|
|
|
|
2007-03-16 11:11:37 +01:00
|
|
|
template class shape_index_featureset<mapnik::filter_in_box>;
|
|
|
|
template class shape_index_featureset<mapnik::filter_at_point>;
|