mapnik/src/memory_datasource.cpp

128 lines
3.2 KiB
C++
Raw Normal View History

/*****************************************************************************
2012-02-02 02:53:35 +01:00
*
* This file is part of Mapnik (c++ mapping toolkit)
*
* Copyright (C) 2011 Artem Pavlenko
*
* 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
*
*****************************************************************************/
// mapnik
2012-04-08 02:20:56 +02:00
#include <mapnik/debug.hpp>
2007-10-08 19:42:41 +02:00
#include <mapnik/memory_datasource.hpp>
#include <mapnik/memory_featureset.hpp>
#include <mapnik/feature_factory.hpp>
2012-03-10 01:20:50 +01:00
// boost
#include <boost/make_shared.hpp>
// stl
2007-10-08 19:42:41 +02:00
#include <algorithm>
namespace mapnik {
2012-02-02 02:53:35 +01:00
2010-06-02 13:03:30 +02:00
struct accumulate_extent
{
accumulate_extent(box2d<double> & ext)
: ext_(ext),first_(true) {}
2012-02-02 02:53:35 +01:00
2010-06-02 13:03:30 +02:00
void operator() (feature_ptr feat)
{
for (unsigned i=0;i<feat->num_geometries();++i)
{
geometry_type & geom = feat->get_geometry(i);
2012-02-02 02:53:35 +01:00
if ( first_ )
2010-06-02 13:03:30 +02:00
{
first_ = false;
ext_ = geom.envelope();
}
else
{
ext_.expand_to_include(geom.envelope());
}
}
2010-06-02 13:03:30 +02:00
}
2012-02-02 02:53:35 +01:00
2010-06-02 13:03:30 +02:00
box2d<double> & ext_;
bool first_;
};
2012-02-02 02:53:35 +01:00
2010-06-02 13:03:30 +02:00
memory_datasource::memory_datasource()
: datasource(parameters()),
desc_("in-memory datasource","utf-8") {}
2010-06-02 13:03:30 +02:00
memory_datasource::~memory_datasource() {}
2012-02-02 02:53:35 +01:00
2010-06-02 13:03:30 +02:00
void memory_datasource::push(feature_ptr feature)
{
// TODO - collect attribute descriptors?
//desc_.add_descriptor(attribute_descriptor(fld_name,mapnik::Integer));
2010-06-02 13:03:30 +02:00
features_.push_back(feature);
}
2012-02-02 02:53:35 +01:00
datasource::datasource_t memory_datasource::type() const
2010-06-02 13:03:30 +02:00
{
return datasource::Vector;
}
2012-02-02 02:53:35 +01:00
2010-06-02 13:03:30 +02:00
featureset_ptr memory_datasource::features(const query& q) const
{
2012-03-10 01:20:50 +01:00
return boost::make_shared<memory_featureset>(q.get_bbox(),*this);
2010-06-02 13:03:30 +02:00
}
2010-06-02 13:03:30 +02:00
featureset_ptr memory_datasource::features_at_point(coord2d const& pt) const
{
box2d<double> box = box2d<double>(pt.x, pt.y, pt.x, pt.y);
2012-04-08 02:20:56 +02:00
#ifdef MAPNIK_LOG
mapnik::log() << "memory_datasource: Box=" << box << ", Point x=" << pt.x << ",y=" << pt.y;
#endif
2012-04-08 02:20:56 +02:00
2012-03-10 01:20:50 +01:00
return boost::make_shared<memory_featureset>(box,*this);
2010-06-02 13:03:30 +02:00
}
2012-02-02 02:53:35 +01:00
2010-06-02 13:03:30 +02:00
box2d<double> memory_datasource::envelope() const
{
box2d<double> ext;
accumulate_extent func(ext);
std::for_each(features_.begin(),features_.end(),func);
2012-02-02 02:53:35 +01:00
return ext;
2010-06-02 13:03:30 +02:00
}
2012-01-15 07:35:40 +01:00
boost::optional<datasource::geometry_t> memory_datasource::get_geometry_type() const
2012-01-15 07:35:40 +01:00
{
// TODO - detect this?
return datasource::Collection;
2012-01-15 07:35:40 +01:00
}
2012-02-02 02:53:35 +01:00
2010-06-02 13:03:30 +02:00
layer_descriptor memory_datasource::get_descriptor() const
{
return desc_;
2010-06-02 13:03:30 +02:00
}
2012-02-02 02:53:35 +01:00
2010-06-02 13:03:30 +02:00
size_t memory_datasource::size() const
{
return features_.size();
}
2011-10-13 01:30:18 +02:00
void memory_datasource::clear()
{
features_.clear();
}
}