2012-01-18 15:15:52 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
2021-01-05 15:39:07 +01:00
|
|
|
* Copyright (C) 2021 Artem Pavlenko
|
2012-01-18 15:15:52 +01: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,
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#include <mapnik/feature_kv_iterator.hpp>
|
|
|
|
#include <mapnik/feature.hpp>
|
2016-03-10 21:46:00 +01:00
|
|
|
|
2012-01-18 15:15:52 +01:00
|
|
|
namespace mapnik {
|
|
|
|
|
2022-01-26 10:43:31 +01:00
|
|
|
feature_kv_iterator::feature_kv_iterator(feature_impl const& f, bool begin)
|
|
|
|
: f_(f)
|
|
|
|
, itr_(begin ? f_.ctx_->begin() : f_.ctx_->end())
|
|
|
|
{}
|
2012-02-02 02:53:35 +01:00
|
|
|
|
2012-01-18 15:15:52 +01:00
|
|
|
void feature_kv_iterator::increment()
|
2012-02-02 02:53:35 +01:00
|
|
|
{
|
2012-01-18 15:15:52 +01:00
|
|
|
++itr_;
|
|
|
|
}
|
|
|
|
|
2012-02-24 19:07:13 +01:00
|
|
|
void feature_kv_iterator::decrement()
|
|
|
|
{
|
2016-07-15 13:21:41 +02:00
|
|
|
// dummy //--itr_;
|
2012-02-24 19:07:13 +01:00
|
|
|
}
|
|
|
|
|
2022-01-26 10:43:31 +01:00
|
|
|
void feature_kv_iterator::advance(boost::iterator_difference<feature_kv_iterator>::type)
|
2012-02-24 19:07:13 +01:00
|
|
|
{
|
2016-07-15 13:21:41 +02:00
|
|
|
// dummy
|
2012-02-24 19:07:13 +01:00
|
|
|
}
|
|
|
|
|
2022-01-26 10:43:31 +01:00
|
|
|
bool feature_kv_iterator::equal(feature_kv_iterator const& other) const
|
2012-01-18 15:15:52 +01:00
|
|
|
{
|
2022-01-26 10:43:31 +01:00
|
|
|
return (itr_ == other.itr_);
|
2012-01-18 15:15:52 +01:00
|
|
|
}
|
2012-02-02 02:53:35 +01:00
|
|
|
|
2012-01-18 15:15:52 +01:00
|
|
|
feature_kv_iterator::value_type const& feature_kv_iterator::dereference() const
|
|
|
|
{
|
2013-10-11 13:35:34 +02:00
|
|
|
std::get<0>(kv_) = itr_->first;
|
|
|
|
std::get<1>(kv_) = f_.get(itr_->second);
|
2012-01-18 15:15:52 +01:00
|
|
|
return kv_;
|
|
|
|
}
|
|
|
|
|
2022-01-26 10:43:31 +01:00
|
|
|
} // namespace mapnik
|