mapnik/plugins/input/shape/shape_featureset.cpp

170 lines
5.7 KiB
C++
Raw Normal View History

2006-03-31 12:32:02 +02: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
*
* 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
// stl
#include <iostream>
// mapnik
2012-04-08 02:20:56 +02:00
#include <mapnik/debug.hpp>
#include <mapnik/feature_factory.hpp>
#include <mapnik/unicode.hpp>
// boost
#include <boost/make_shared.hpp>
#include "shape_featureset.hpp"
#include "shape_utils.hpp"
2005-06-14 17:06:59 +02:00
using mapnik::geometry_type;
using mapnik::feature_factory;
using mapnik::context_ptr;
2012-02-02 02:37:35 +01:00
2005-06-14 17:06:59 +02:00
template <typename filterT>
shape_featureset<filterT>::shape_featureset(filterT const& filter,
std::string const& shape_name,
std::set<std::string> const& attribute_names,
std::string const& encoding,
long file_length,
int row_limit)
: filter_(filter),
shape_(shape_name, false),
query_ext_(),
feature_bbox_(),
tr_(new transcoder(encoding)),
file_length_(file_length),
2012-01-12 13:28:53 +01:00
row_limit_(row_limit),
2012-02-02 17:58:20 +01:00
count_(0),
ctx_(boost::make_shared<mapnik::context_type>())
2005-06-14 17:06:59 +02:00
{
shape_.shp().skip(100);
setup_attributes(ctx_, attribute_names, shape_name, shape_,attr_ids_);
2005-06-14 17:06:59 +02:00
}
template <typename filterT>
feature_ptr shape_featureset<filterT>::next()
2005-06-14 17:06:59 +02:00
{
if (row_limit_ && count_ >= row_limit_)
{
return feature_ptr();
}
while (shape_.shp().pos() < std::streampos(file_length_ * 2))
2011-08-12 18:43:28 +02:00
{
shape_.move_to(shape_.shp().pos());
shape_file::record_type record(shape_.reclength_ * 2);
shape_.shp().read_record(record);
int type = record.read_ndr_integer();
// skip null shapes
if (type == shape_io::shape_null) continue;
feature_ptr feature(feature_factory::create(ctx_, shape_.id_));
switch (type)
2010-01-29 02:54:15 +01:00
{
case shape_io::shape_point:
case shape_io::shape_pointm:
case shape_io::shape_pointz:
2010-01-29 02:54:15 +01:00
{
double x = record.read_double();
double y = record.read_double();
if (!filter_.pass(mapnik::box2d<double>(x,y,x,y)))
continue;
std::auto_ptr<geometry_type> point(new geometry_type(mapnik::Point));
point->move_to(x, y);
feature->paths().push_back(point);
break;
2010-01-29 02:54:15 +01:00
}
case shape_io::shape_multipoint:
case shape_io::shape_multipointm:
case shape_io::shape_multipointz:
2010-01-29 02:54:15 +01:00
{
shape_io::read_bbox(record, feature_bbox_);
if (!filter_.pass(feature_bbox_)) continue;
int num_points = record.read_ndr_integer();
for (int i = 0; i < num_points; ++i)
{
double x = record.read_double();
double y = record.read_double();
std::auto_ptr<geometry_type> point(new geometry_type(mapnik::Point));
point->move_to(x, y);
feature->paths().push_back(point);
}
break;
2010-01-29 02:54:15 +01:00
}
case shape_io::shape_polyline:
case shape_io::shape_polylinem:
case shape_io::shape_polylinez:
{
shape_io::read_bbox(record, feature_bbox_);
if (!filter_.pass(feature_bbox_)) continue;
shape_io::read_polyline(record, feature->paths());
break;
2010-01-29 02:54:15 +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;
shape_io::read_polygon(record, feature->paths());
break;
}
default :
MAPNIK_LOG_DEBUG(shape) << "shape_featureset: Unsupported type" << type;
return feature_ptr();
}
2012-01-17 19:33:35 +01:00
// FIXME: https://github.com/mapnik/mapnik/issues/1020
feature->set_id(shape_.id_);
2010-01-29 02:54:15 +01:00
if (attr_ids_.size())
{
shape_.dbf().move_to(shape_.id_);
std::vector<int>::const_iterator itr = attr_ids_.begin();
std::vector<int>::const_iterator end = attr_ids_.end();
try
2010-01-29 02:54:15 +01:00
{
for (; itr != end; ++itr)
{
shape_.dbf().add_attribute(*itr, *tr_, *feature); //TODO optimize!!!
}
}
catch (...)
{
MAPNIK_LOG_ERROR(shape) << "Shape Plugin: error processing attributes";
2010-01-29 02:54:15 +01:00
}
}
++count_;
2010-01-29 02:54:15 +01:00
return feature;
}
MAPNIK_LOG_DEBUG(shape) << "shape_featureset: Total shapes read=" << count_;
return feature_ptr();
2005-06-14 17:06:59 +02:00
}
template <typename filterT>
shape_featureset<filterT>::~shape_featureset() {}
template class shape_featureset<mapnik::filter_in_box>;
template class shape_featureset<mapnik::filter_at_point>;