mapnik/include/mapnik/memory_featureset.hpp

79 lines
2.3 KiB
C++
Raw Normal View History

/*****************************************************************************
2012-02-02 01:53:35 +00: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
*
*****************************************************************************/
#ifndef MAPNIK_MEMORY_FEATURESET_HPP
#define MAPNIK_MEMORY_FEATURESET_HPP
// mapnik
#include <mapnik/memory_datasource.hpp>
// boost
2007-10-08 18:10:31 +00:00
#include <boost/utility.hpp>
namespace mapnik {
2012-02-02 01:53:35 +00:00
class memory_featureset : public Featureset
2010-06-02 11:03:30 +00:00
{
public:
memory_featureset(box2d<double> const& bbox, memory_datasource const& ds)
: bbox_(bbox),
pos_(ds.features_.begin()),
end_(ds.features_.end())
{}
memory_featureset(box2d<double> const& bbox, std::vector<feature_ptr> const& features)
: bbox_(bbox),
pos_(features.begin()),
end_(features.end())
{}
2010-06-02 11:03:30 +00:00
virtual ~memory_featureset() {}
2012-02-02 01:53:35 +00:00
2010-06-02 11:03:30 +00:00
feature_ptr next()
{
while (pos_ != end_)
{
2010-06-02 11:03:30 +00:00
for (unsigned i=0; i<(*pos_)->num_geometries();++i) {
geometry_type & geom = (*pos_)->get_geometry(i);
#ifdef MAPNIK_DEBUG
2010-06-02 11:03:30 +00:00
std::clog << "bbox_=" << bbox_ << ", geom.envelope=" << geom.envelope() << "\n";
#endif
2010-06-02 11:03:30 +00:00
if (bbox_.intersects(geom.envelope()))
{
return *pos_++;
}
}
2010-06-02 11:03:30 +00:00
++pos_;
}
2012-02-02 01:53:35 +00:00
2010-06-02 11:03:30 +00:00
return feature_ptr();
}
2012-02-02 01:53:35 +00:00
2010-06-02 11:03:30 +00:00
private:
box2d<double> bbox_;
std::vector<feature_ptr>::const_iterator pos_;
2012-02-02 01:53:35 +00:00
std::vector<feature_ptr>::const_iterator end_;
2010-06-02 11:03:30 +00:00
};
}
#endif // MAPNIK_MEMORY_FEATURESET_HPP