mapnik/plugins/input/shape/shape_featureset.cpp

305 lines
9.4 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
#include <mapnik/feature_factory.hpp>
// boost
#include <boost/algorithm/string.hpp>
#include "shape_featureset.hpp"
2005-06-14 17:06:59 +02:00
using mapnik::geometry_type;
using mapnik::feature_factory;
2005-06-14 17:06:59 +02:00
template <typename filterT>
shape_featureset<filterT>::shape_featureset(const filterT& filter,
const std::string& shape_name,
const std::set<std::string>& attribute_names,
std::string const& encoding,
long file_length,
int row_limit)
: filter_(filter),
//shape_type_(shape_io::shape_null),
shape_(shape_name, false),
query_ext_(),
tr_(new transcoder(encoding)),
file_length_(file_length),
count_(0),
row_limit_(row_limit)
2005-06-14 17:06:59 +02:00
{
shape_.shp().skip(100);
//attributes
typename std::set<std::string>::const_iterator pos = attribute_names.begin();
while (pos != attribute_names.end())
{
bool found_name = false;
for (int i = 0; i < shape_.dbf().num_fields(); ++i)
2010-01-29 02:54:15 +01:00
{
if (shape_.dbf().descriptor(i).name_ == *pos)
{
attr_ids_.push_back(i);
found_name = true;
break;
2010-01-29 02:54:15 +01:00
}
}
if (! found_name)
{
std::ostringstream s;
s << "no attribute '" << *pos << "' in '"
<< shape_name << "'. Valid attributes are: ";
std::vector<std::string> list;
for (int i = 0; i < shape_.dbf().num_fields(); ++i)
{
list.push_back(shape_.dbf().descriptor(i).name_);
}
s << boost::algorithm::join(list, ",") << ".";
throw mapnik::datasource_exception("Shape Plugin: " + s.str());
}
2010-01-29 02:54:15 +01:00
++pos;
}
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();
}
std::streampos pos = shape_.shp().pos();
2011-08-12 18:43:28 +02:00
// skip null shapes
while (pos > 0 && pos < std::streampos(file_length_ * 2))
{
shape_.move_to(pos);
if (shape_.type() == shape_io::shape_null)
2011-08-12 18:43:28 +02:00
{
pos += std::streampos(12);
}
else
{
break;
}
2011-08-12 18:43:28 +02:00
}
if (pos < std::streampos(file_length_ * 2))
{
int type = shape_.type();
feature_ptr feature(feature_factory::create(shape_.id_));
2010-01-29 02:54:15 +01:00
if (type == shape_io::shape_point)
{
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-01-29 02:54:15 +01:00
feature->add_geometry(point);
++count_;
}
else if (type == shape_io::shape_pointm)
{
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);
2010-01-29 02:54:15 +01:00
feature->add_geometry(point);
++count_;
}
else if (type == shape_io::shape_pointz)
{
double x = shape_.shp().read_double();
double y = shape_.shp().read_double();
// skip z
shape_.shp().skip(8);
// skip m if exists
if (shape_.reclength_ == 8 + 36)
{
shape_.shp().skip(8);
}
geometry_type* point = new geometry_type(mapnik::Point);
point->move_to(x, y);
2010-01-29 02:54:15 +01:00
feature->add_geometry(point);
++count_;
}
else
{
// skip shapes
2011-08-12 18:43:28 +02:00
for (;;)
{
std::streampos pos = shape_.shp().pos();
2011-08-12 18:43:28 +02:00
if (shape_.type() == shape_io::shape_null)
{
pos += std::streampos(12);
// TODO handle the shapes
2011-08-12 18:43:28 +02:00
std::cerr << "NULL SHAPE len=" << shape_.reclength_ << std::endl;
}
else if (filter_.pass(shape_.current_extent()))
{
break;
}
else
{
pos += std::streampos(2 * shape_.reclength_ - 36);
}
if (pos > 0 && pos < std::streampos(file_length_ * 2))
2011-08-12 18:43:28 +02:00
{
shape_.move_to(pos);
2010-01-29 02:54:15 +01:00
}
else
{
2011-08-12 18:43:28 +02:00
#ifdef MAPNIK_DEBUG
std::clog << "Shape Plugin: total shapes read=" << count_ << std::endl;
#endif
2010-01-29 02:54:15 +01:00
return feature_ptr();
}
}
2010-01-29 02:54:15 +01:00
switch (type)
{
case shape_io::shape_multipoint:
{
int num_points = shape_.shp().read_ndr_integer();
for (int i = 0; i < num_points; ++i)
2010-01-29 02:54:15 +01: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);
feature->add_geometry(point);
2010-01-29 02:54:15 +01:00
}
++count_;
break;
}
case shape_io::shape_multipointm:
{
int num_points = shape_.shp().read_ndr_integer();
for (int i = 0; i < num_points; ++i)
2010-01-29 02:54:15 +01: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);
feature->add_geometry(point);
2010-01-29 02:54:15 +01:00
}
// skip m
shape_.shp().skip(2 * 8 + 8 * num_points);
++count_;
break;
}
case shape_io::shape_multipointz:
{
int num_points = shape_.shp().read_ndr_integer();
for (int i = 0; i < num_points; ++i)
2010-01-29 02:54:15 +01: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);
feature->add_geometry(point);
2010-01-29 02:54:15 +01:00
}
// skip z
shape_.shp().skip(2 * 8 + 8 * num_points);
// check if we have measure data
if (shape_.reclength_ == (unsigned)(num_points * 16 + 36))
2010-01-29 02:54:15 +01:00
{
// skip m
shape_.shp().skip(2 * 8 + 8 * num_points);
2010-01-29 02:54:15 +01:00
}
++count_;
break;
}
case shape_io::shape_polyline:
case shape_io::shape_polylinem:
case shape_io::shape_polylinez:
{
shape_.read_polyline(feature->paths());
++count_;
break;
}
case shape_io::shape_polygon:
case shape_io::shape_polygonm:
case shape_io::shape_polygonz:
{
shape_.read_polygon(feature->paths());
++count_;
break;
}
}
2010-01-29 02:54:15 +01:00
}
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 (...)
{
std::clog << "Shape Plugin: error processing attributes " << std::endl;
2010-01-29 02:54:15 +01:00
}
}
2010-01-29 02:54:15 +01:00
return feature;
}
else
{
#ifdef MAPNIK_DEBUG
2010-11-19 00:46:01 +01:00
std::clog << "Shape Plugin: total shapes read=" << count_ << std::endl;
#endif
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>;