2006-12-06 21:26:59 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 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
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
//$Id$
|
2007-10-08 19:42:41 +02:00
|
|
|
#include <mapnik/memory_datasource.hpp>
|
|
|
|
|
2006-12-06 21:26:59 +01:00
|
|
|
#include <mapnik/memory_featureset.hpp>
|
2007-10-08 19:42:41 +02:00
|
|
|
#include <algorithm>
|
2006-12-06 21:26:59 +01:00
|
|
|
|
|
|
|
namespace mapnik {
|
|
|
|
|
|
|
|
struct accumulate_extent
|
|
|
|
{
|
2009-12-16 21:02:06 +01:00
|
|
|
accumulate_extent(box2d<double> & ext)
|
2006-12-06 21:26:59 +01:00
|
|
|
: ext_(ext),first_(true) {}
|
|
|
|
|
|
|
|
void operator() (feature_ptr feat)
|
|
|
|
{
|
2007-09-16 13:23:51 +02:00
|
|
|
for (unsigned i=0;i<feat->num_geometries();++i)
|
|
|
|
{
|
|
|
|
geometry2d & geom = feat->get_geometry(i);
|
|
|
|
if ( first_ )
|
|
|
|
{
|
|
|
|
first_ = false;
|
|
|
|
ext_ = geom.envelope();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ext_.expand_to_include(geom.envelope());
|
|
|
|
}
|
|
|
|
}
|
2006-12-06 21:26:59 +01:00
|
|
|
}
|
|
|
|
|
2009-12-16 21:02:06 +01:00
|
|
|
box2d<double> & ext_;
|
2006-12-06 21:26:59 +01:00
|
|
|
bool first_;
|
|
|
|
};
|
|
|
|
|
|
|
|
memory_datasource::memory_datasource()
|
|
|
|
: datasource(parameters()) {}
|
|
|
|
memory_datasource::~memory_datasource() {}
|
|
|
|
|
|
|
|
void memory_datasource::push(feature_ptr feature)
|
|
|
|
{
|
|
|
|
features_.push_back(feature);
|
|
|
|
}
|
|
|
|
|
|
|
|
int memory_datasource::type() const
|
|
|
|
{
|
|
|
|
return datasource::Vector;
|
|
|
|
}
|
|
|
|
|
|
|
|
featureset_ptr memory_datasource::features(const query& q) const
|
|
|
|
{
|
|
|
|
return featureset_ptr(new memory_featureset(q.get_bbox(),*this));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
featureset_ptr memory_datasource::features_at_point(coord2d const& pt) const
|
|
|
|
{
|
2010-03-19 17:16:15 +01:00
|
|
|
box2d<double> box = box2d<double>(pt.x, pt.y, pt.x, pt.y);
|
|
|
|
#ifdef MAPNIK_DEBUG
|
|
|
|
std::clog << "box=" << box << ", pt x=" << pt.x << ", y=" << pt.y << "\n";
|
|
|
|
#endif
|
|
|
|
return featureset_ptr(new memory_featureset(box,*this));
|
2006-12-06 21:26:59 +01:00
|
|
|
}
|
|
|
|
|
2009-12-16 21:02:06 +01:00
|
|
|
box2d<double> memory_datasource::envelope() const
|
2006-12-06 21:26:59 +01:00
|
|
|
{
|
2009-12-16 21:02:06 +01:00
|
|
|
box2d<double> ext;
|
2006-12-06 21:26:59 +01:00
|
|
|
accumulate_extent func(ext);
|
|
|
|
std::for_each(features_.begin(),features_.end(),func);
|
|
|
|
return ext;
|
|
|
|
}
|
|
|
|
|
|
|
|
layer_descriptor memory_datasource::get_descriptor() const
|
|
|
|
{
|
2007-02-06 15:27:21 +01:00
|
|
|
return layer_descriptor("in-memory datasource","utf-8");
|
2006-12-06 21:26:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
size_t memory_datasource::size() const
|
|
|
|
{
|
|
|
|
return features_.size();
|
|
|
|
}
|
|
|
|
}
|