1
0
Fork 0
mirror of https://github.com/mapnik/mapnik.git synced 2026-04-03 15:22:14 +02:00
mapnik/src/json/extract_bounding_boxes_x3.cpp
2025-06-24 16:23:12 +01:00

194 lines
6.4 KiB
C++

/*****************************************************************************
*
* This file is part of Mapnik (c++ mapping toolkit)
*
* Copyright (C) 2025 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
*
*****************************************************************************/
#include <mapnik/geometry/box2d.hpp>
#include <mapnik/json/extract_bounding_boxes_x3.hpp>
#include <mapnik/json/json_grammar_config.hpp>
#include <mapnik/json/extract_bounding_boxes_x3_config.hpp>
#include <mapnik/json/geojson_grammar_x3.hpp>
#include <mapnik/json/unicode_string_grammar_x3.hpp>
#include <mapnik/json/positions_grammar_x3.hpp>
namespace mapnik {
namespace json {
template<typename Box>
struct calculate_bounding_box
{
calculate_bounding_box(Box& box)
: box_(box)
{}
void operator()(mapnik::json::point const& pt) const { box_.init(pt.x, pt.y); }
void operator()(mapnik::json::ring const& r) const
{
for (auto const& pt : r)
{
if (!box_.valid())
box_.init(pt.x, pt.y);
else
box_.expand_to_include(pt.x, pt.y);
}
}
void operator()(mapnik::json::rings const& rs) const
{
for (auto const& r : rs)
{
operator()(r);
break; // consider first ring only
}
}
void operator()(mapnik::json::rings_array const& rings_ar) const
{
for (auto const& rs : rings_ar)
{
operator()(rs);
}
}
template<typename T>
void operator()(T const&) const
{}
Box& box_;
};
namespace grammar {
namespace x3 = boost::spirit::x3;
using base_iterator_type = char const*;
using x3::char_;
using x3::eps;
using x3::lit;
using x3::omit;
using x3::raw;
struct feature_callback_tag;
auto on_feature_callback = [](auto const& ctx) {
// call our callback
x3::get<feature_callback_tag>(ctx)(_attr(ctx));
};
// import unicode string rule
namespace {
auto const& geojson_string = unicode_string;
}
// import positions rule
namespace {
auto const& positions_rule = positions;
}
// extract bounding box from GeoJSON Feature
struct bracket_tag;
auto check_brackets = [](auto const& ctx) {
_pass(ctx) = (x3::get<bracket_tag>(ctx) > 0);
};
auto open_bracket = [](auto const& ctx) {
++x3::get<bracket_tag>(ctx);
};
auto close_bracket = [](auto const& ctx) {
--x3::get<bracket_tag>(ctx);
};
auto assign_range = [](auto const& ctx) {
std::get<0>(_val(ctx)) = std::move(_attr(ctx));
};
auto assign_bbox = [](auto const& ctx) {
std::get<1>(_val(ctx)) = std::move(_attr(ctx));
};
auto extract_bounding_box = [](auto const& ctx) {
using box_type = typename std::decay<decltype(_val(ctx))>::type;
box_type bbox;
calculate_bounding_box<box_type> visitor(bbox);
mapnik::util::apply_visitor(visitor, _attr(ctx));
_val(ctx) = std::move(bbox);
};
x3::rule<struct coordinates_rule_tag, mapnik::box2d<double>> const coordinates_rule = "Coordinates";
x3::rule<struct bounding_box_rule_tag,
std::tuple<boost::iterator_range<base_iterator_type>, mapnik::box2d<double>>> const bounding_box =
"Bounding Box";
x3::rule<struct feature_collection_tag> const feature_collection = "Feature Collection";
auto const coordinates_rule_def = lit("\"coordinates\"") >> lit(':') >> positions_rule[extract_bounding_box];
auto const bounding_box_def =
raw[lit('{')[open_bracket] >>
*(eps[check_brackets] >> (lit('{')[open_bracket] | lit('}')[close_bracket] | coordinates_rule[assign_bbox] |
omit[geojson_string] | omit[char_]))][assign_range];
auto const feature = bounding_box[on_feature_callback];
auto const key_value_ = omit[geojson_string] > lit(':') > omit[geojson_value];
auto const features = lit("\"features\"") > lit(':') > lit('[') > -(omit[feature] % lit(',')) > lit(']');
auto const type = lit("\"type\"") > lit(':') > lit("\"FeatureCollection\"");
auto const feature_collection_def = lit('{') > ((type | features | key_value_) % lit(',')) > lit('}');
BOOST_SPIRIT_DEFINE(coordinates_rule, bounding_box, feature_collection);
} // namespace grammar
template<typename Iterator, typename Boxes>
void extract_bounding_boxes(Iterator& start, Iterator const& end, Boxes& boxes)
{
using namespace boost::spirit;
using space_type = mapnik::json::grammar::space_type;
using iterator_type = Iterator;
extract_positions<iterator_type, Boxes> callback(start, boxes);
auto keys = mapnik::json::get_keys();
std::size_t bracket_counter = 0;
#if BOOST_VERSION >= 106700
auto feature_collection_impl = x3::with<mapnik::json::grammar::bracket_tag>(
bracket_counter)[x3::with<mapnik::json::grammar::feature_callback_tag>(
callback)[x3::with<mapnik::json::grammar::keys_tag>(keys)[mapnik::json::grammar::feature_collection]]];
#else
auto feature_collection_impl = x3::with<mapnik::json::grammar::bracket_tag>(
std::ref(bracket_counter))[x3::with<mapnik::json::grammar::feature_callback_tag>(std::ref(
callback))[x3::with<mapnik::json::grammar::keys_tag>(std::ref(keys))[mapnik::json::grammar::feature_collection]]];
#endif
if (!x3::phrase_parse(start, end, feature_collection_impl, space_type()))
{
throw std::runtime_error("Can't extract bounding boxes");
}
}
using base_iterator_type = char const*;
template void
extract_bounding_boxes<base_iterator_type, boxes_type>(base_iterator_type&, base_iterator_type const&, boxes_type&);
template void extract_bounding_boxes<base_iterator_type, boxes_type_f>(base_iterator_type&,
base_iterator_type const&,
boxes_type_f&);
} // namespace json
} // namespace mapnik