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-22 15:27:28 +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-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
|
2006-10-04 13:22:18 +02:00
|
|
|
#include <mapnik/feature_factory.hpp>
|
2011-05-17 01:41:34 +02:00
|
|
|
|
2008-02-04 12:12:32 +01:00
|
|
|
// boost
|
2011-08-05 23:20:21 +02:00
|
|
|
#include <boost/algorithm/string.hpp>
|
2011-04-06 15:02:31 +02:00
|
|
|
#include <boost/interprocess/streams/bufferstream.hpp>
|
2008-02-04 12:12:32 +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"
|
2011-05-17 01:41:34 +02:00
|
|
|
|
|
|
|
using mapnik::feature_factory;
|
|
|
|
using mapnik::geometry_type;
|
|
|
|
|
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,
|
2010-09-02 22:20:42 +02:00
|
|
|
shape_io& shape,
|
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),
|
|
|
|
shape_(shape),
|
|
|
|
tr_(new transcoder(encoding)),
|
2012-01-12 13:28:53 +01:00
|
|
|
row_limit_(row_limit),
|
|
|
|
count_(0)
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2012-01-19 23:36:27 +01:00
|
|
|
ctx_ = boost::make_shared<mapnik::context_type>();
|
2005-06-14 17:06:59 +02:00
|
|
|
shape_.shp().skip(100);
|
2012-01-12 13:18:50 +01:00
|
|
|
setup_attributes(ctx_, attribute_names, shape_name, shape_,attr_ids_);
|
2012-02-02 02:37:35 +01:00
|
|
|
|
2010-09-06 21:20:59 +02:00
|
|
|
boost::shared_ptr<shape_file> index = shape_.index();
|
|
|
|
if (index)
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2010-11-08 21:38:17 +01:00
|
|
|
#ifdef SHAPE_MEMORY_MAPPED_FILE
|
2011-10-22 15:27:28 +02:00
|
|
|
//shp_index<filterT,stream<mapped_file_source> >::query(filter, index->file(), ids_);
|
|
|
|
shp_index<filterT,boost::interprocess::ibufferstream>::query(filter, index->file(), ids_);
|
2010-11-08 21:38:17 +01:00
|
|
|
#else
|
2011-10-22 15:27:28 +02:00
|
|
|
shp_index<filterT,std::ifstream>::query(filter, index->file(), ids_);
|
2010-11-08 21:38:17 +01:00
|
|
|
#endif
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
2011-10-22 15:27:28 +02:00
|
|
|
|
|
|
|
std::sort(ids_.begin(), ids_.end());
|
2012-02-02 02:37:35 +01:00
|
|
|
|
2008-02-04 12:14:34 +01:00
|
|
|
#ifdef MAPNIK_DEBUG
|
2010-11-19 00:46:01 +01:00
|
|
|
std::clog << "Shape Plugin: query size=" << ids_.size() << std::endl;
|
2008-02-04 12:14:34 +01:00
|
|
|
#endif
|
2012-02-02 02:37:35 +01:00
|
|
|
|
|
|
|
itr_ = ids_.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
|
|
|
{
|
2011-08-26 09:02:36 +02: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
|
|
|
|
2011-10-22 15:27:28 +02:00
|
|
|
if (itr_ != ids_.end())
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2011-10-22 15:27:28 +02:00
|
|
|
int pos = *itr_++;
|
2006-11-19 18:13:33 +01:00
|
|
|
shape_.move_to(pos);
|
2011-10-22 15:27:28 +02:00
|
|
|
|
|
|
|
int type = shape_.type();
|
2012-01-12 11:04:08 +01:00
|
|
|
feature_ptr feature(feature_factory::create(ctx_,shape_.id_));
|
2010-01-20 16:25:58 +01:00
|
|
|
if (type == shape_io::shape_point)
|
2010-07-25 21:55:40 +02:00
|
|
|
{
|
2011-10-22 15:27:28 +02:00
|
|
|
double x = shape_.shp().read_double();
|
|
|
|
double y = shape_.shp().read_double();
|
|
|
|
geometry_type* point = new geometry_type(mapnik::Point);
|
|
|
|
point->move_to(x, y);
|
2007-09-16 13:23:51 +02:00
|
|
|
feature->add_geometry(point);
|
2006-11-19 18:13:33 +01:00
|
|
|
++count_;
|
|
|
|
}
|
|
|
|
else if (type == shape_io::shape_pointm)
|
|
|
|
{
|
2011-10-22 15:27:28 +02:00
|
|
|
double x = shape_.shp().read_double();
|
|
|
|
double y = shape_.shp().read_double();
|
|
|
|
// skip m
|
|
|
|
shape_.shp().skip(8);
|
|
|
|
geometry_type* point = new geometry_type(mapnik::Point);
|
|
|
|
point->move_to(x, y);
|
2007-09-16 13:23:51 +02:00
|
|
|
feature->add_geometry(point);
|
2006-11-19 18:13:33 +01:00
|
|
|
++count_;
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
2006-11-19 18:13:33 +01:00
|
|
|
else if (type == shape_io::shape_pointz)
|
|
|
|
{
|
2011-10-22 15:27:28 +02:00
|
|
|
double x = shape_.shp().read_double();
|
|
|
|
double y = shape_.shp().read_double();
|
2010-01-29 02:59:50 +01:00
|
|
|
// skip z
|
|
|
|
shape_.shp().skip(8);
|
2011-10-22 15:27:28 +02:00
|
|
|
// skip m if exists
|
|
|
|
if (shape_.reclength_ == 8 + 36)
|
2010-01-29 02:59:50 +01:00
|
|
|
{
|
|
|
|
shape_.shp().skip(8);
|
|
|
|
}
|
2011-10-22 15:27:28 +02:00
|
|
|
geometry_type* point = new geometry_type(mapnik::Point);
|
|
|
|
point->move_to(x, y);
|
2007-09-16 13:23:51 +02:00
|
|
|
feature->add_geometry(point);
|
2006-11-19 18:13:33 +01:00
|
|
|
++count_;
|
2011-11-14 04:37:50 +01:00
|
|
|
}
|
2005-06-14 17:06:59 +02:00
|
|
|
else
|
|
|
|
{
|
2011-10-22 15:27:28 +02:00
|
|
|
while(! filter_.pass(shape_.current_extent()) &&
|
|
|
|
itr_ != ids_.end())
|
2006-11-19 18:13:33 +01:00
|
|
|
{
|
2011-11-14 04:37:50 +01:00
|
|
|
if (shape_.type() != shape_io::shape_null)
|
2011-08-11 13:04:04 +02:00
|
|
|
{
|
2011-10-22 15:27:28 +02:00
|
|
|
pos = *itr_++;
|
2011-05-19 23:24:08 +02:00
|
|
|
shape_.move_to(pos);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return feature_ptr();
|
|
|
|
}
|
2006-11-19 18:13:33 +01:00
|
|
|
}
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2005-06-14 17:06:59 +02:00
|
|
|
switch (type)
|
|
|
|
{
|
2010-07-25 21:55:40 +02:00
|
|
|
case shape_io::shape_multipoint:
|
|
|
|
case shape_io::shape_multipointm:
|
|
|
|
case shape_io::shape_multipointz:
|
|
|
|
{
|
|
|
|
int num_points = shape_.shp().read_ndr_integer();
|
2011-10-22 15:27:28 +02:00
|
|
|
for (int i = 0; i < num_points; ++i)
|
2011-11-14 04:37:50 +01:00
|
|
|
{
|
2011-10-22 15:27:28 +02:00
|
|
|
double x = shape_.shp().read_double();
|
|
|
|
double y = shape_.shp().read_double();
|
|
|
|
geometry_type* point = new geometry_type(mapnik::Point);
|
|
|
|
point->move_to(x, y);
|
2010-07-25 21:55:40 +02:00
|
|
|
feature->add_geometry(point);
|
|
|
|
}
|
2011-11-14 04:37:50 +01:00
|
|
|
// ignore m and z for now
|
2010-07-25 21:55:40 +02:00
|
|
|
++count_;
|
|
|
|
break;
|
|
|
|
}
|
2011-10-22 15:27:28 +02:00
|
|
|
|
2010-07-25 21:55:40 +02:00
|
|
|
case shape_io::shape_polyline:
|
|
|
|
case shape_io::shape_polylinem:
|
|
|
|
case shape_io::shape_polylinez:
|
|
|
|
{
|
2012-02-02 02:37:35 +01:00
|
|
|
shape_.read_polyline(feature->paths());
|
2010-07-25 21:55:40 +02:00
|
|
|
++count_;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case shape_io::shape_polygon:
|
|
|
|
case shape_io::shape_polygonm:
|
|
|
|
case shape_io::shape_polygonz:
|
|
|
|
{
|
2011-12-09 13:25:13 +01:00
|
|
|
shape_.read_polygon(feature->paths());
|
2010-07-25 21:55:40 +02:00
|
|
|
++count_;
|
|
|
|
break;
|
|
|
|
}
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
}
|
2012-01-12 11:04:08 +01:00
|
|
|
// FIXME
|
2011-05-20 03:41:28 +02:00
|
|
|
feature->set_id(shape_.id_);
|
2006-11-19 18:13:33 +01:00
|
|
|
if (attr_ids_.size())
|
|
|
|
{
|
|
|
|
shape_.dbf().move_to(shape_.id_);
|
2012-01-12 13:18:50 +01:00
|
|
|
std::vector<int>::const_iterator itr = attr_ids_.begin();
|
|
|
|
std::vector<int>::const_iterator end = attr_ids_.end();
|
2011-11-14 04:37:50 +01:00
|
|
|
try
|
2006-11-19 18:13:33 +01:00
|
|
|
{
|
2011-10-22 15:27:28 +02:00
|
|
|
for (; itr!=end; ++itr)
|
2011-11-14 04:37:50 +01:00
|
|
|
{
|
2011-10-22 15:27:28 +02:00
|
|
|
shape_.dbf().add_attribute(*itr, *tr_, *feature);
|
2006-11-19 18:13:33 +01:00
|
|
|
}
|
2011-08-11 13:04:04 +02:00
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
2011-10-22 15:27:28 +02:00
|
|
|
std::cerr << "Shape Plugin: error processing attributes" << std::endl;
|
2006-11-19 18:13:33 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return feature;
|
2005-09-08 15:09:04 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-11-19 18:13:33 +01:00
|
|
|
|
|
|
|
#ifdef MAPNIK_DEBUG
|
2010-11-19 00:46:01 +01:00
|
|
|
std::clog << "Shape Plugin: " << count_ << " features" << std::endl;
|
2006-11-19 18:13:33 +01:00
|
|
|
#endif
|
|
|
|
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>;
|