173 lines
5.6 KiB
C++
173 lines
5.6 KiB
C++
// Boost.Geometry Index
|
|
//
|
|
// R-tree nodes based on Boost.Variant, storing static-size containers
|
|
//
|
|
// Copyright (c) 2011-2023 Adam Wulkiewicz, Lodz, Poland.
|
|
//
|
|
// This file was modified by Oracle on 2021.
|
|
// Modifications copyright (c) 2021 Oracle and/or its affiliates.
|
|
// Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
|
|
//
|
|
// Use, modification and distribution is subject to the Boost Software License,
|
|
// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
|
// http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
#ifndef BOOST_GEOMETRY_INDEX_DETAIL_RTREE_NODE_VARIANT_STATIC_HPP
|
|
#define BOOST_GEOMETRY_INDEX_DETAIL_RTREE_NODE_VARIANT_STATIC_HPP
|
|
|
|
#include <utility>
|
|
#include <boost/container/allocator_traits.hpp>
|
|
#include <boost/core/invoke_swap.hpp>
|
|
#include <boost/variant/static_visitor.hpp>
|
|
#include <boost/variant/variant.hpp>
|
|
|
|
#include <boost/geometry/index/detail/rtree/node/variant_dynamic.hpp>
|
|
#include <boost/geometry/index/detail/varray.hpp>
|
|
|
|
namespace boost { namespace geometry { namespace index {
|
|
|
|
namespace detail { namespace rtree {
|
|
|
|
// nodes default types
|
|
|
|
template <typename Value, typename Parameters, typename Box, typename Allocators>
|
|
struct variant_internal_node<Value, Parameters, Box, Allocators, node_variant_static_tag>
|
|
{
|
|
typedef detail::varray<
|
|
rtree::ptr_pair<Box, typename Allocators::node_pointer>,
|
|
Parameters::max_elements + 1
|
|
> elements_type;
|
|
|
|
template <typename Alloc>
|
|
inline variant_internal_node(Alloc const&) {}
|
|
|
|
elements_type elements;
|
|
};
|
|
|
|
template <typename Value, typename Parameters, typename Box, typename Allocators>
|
|
struct variant_leaf<Value, Parameters, Box, Allocators, node_variant_static_tag>
|
|
{
|
|
typedef detail::varray<
|
|
Value,
|
|
Parameters::max_elements + 1
|
|
> elements_type;
|
|
|
|
template <typename Alloc>
|
|
inline variant_leaf(Alloc const&) {}
|
|
|
|
elements_type elements;
|
|
};
|
|
|
|
// nodes traits
|
|
|
|
template <typename Value, typename Parameters, typename Box, typename Allocators>
|
|
struct node<Value, Parameters, Box, Allocators, node_variant_static_tag>
|
|
{
|
|
typedef boost::variant<
|
|
variant_leaf<Value, Parameters, Box, Allocators, node_variant_static_tag>,
|
|
variant_internal_node<Value, Parameters, Box, Allocators, node_variant_static_tag>
|
|
> type;
|
|
};
|
|
|
|
template <typename Value, typename Parameters, typename Box, typename Allocators>
|
|
struct internal_node<Value, Parameters, Box, Allocators, node_variant_static_tag>
|
|
{
|
|
typedef variant_internal_node<Value, Parameters, Box, Allocators, node_variant_static_tag> type;
|
|
};
|
|
|
|
template <typename Value, typename Parameters, typename Box, typename Allocators>
|
|
struct leaf<Value, Parameters, Box, Allocators, node_variant_static_tag>
|
|
{
|
|
typedef variant_leaf<Value, Parameters, Box, Allocators, node_variant_static_tag> type;
|
|
};
|
|
|
|
// visitor traits
|
|
|
|
template <typename Value, typename Parameters, typename Box, typename Allocators, bool IsVisitableConst>
|
|
struct visitor<Value, Parameters, Box, Allocators, node_variant_static_tag, IsVisitableConst>
|
|
{
|
|
typedef static_visitor<> type;
|
|
};
|
|
|
|
// allocators
|
|
|
|
template <typename Allocator, typename Value, typename Parameters, typename Box>
|
|
class allocators<Allocator, Value, Parameters, Box, node_variant_static_tag>
|
|
: public detail::rtree::node_alloc
|
|
<
|
|
Allocator, Value, Parameters, Box, node_variant_static_tag
|
|
>::type
|
|
{
|
|
typedef detail::rtree::node_alloc
|
|
<
|
|
Allocator, Value, Parameters, Box, node_variant_static_tag
|
|
> node_alloc;
|
|
|
|
public:
|
|
typedef typename node_alloc::type node_allocator_type;
|
|
typedef typename node_alloc::traits::pointer node_pointer;
|
|
|
|
private:
|
|
typedef typename boost::container::allocator_traits
|
|
<
|
|
node_allocator_type
|
|
>::template rebind_alloc<Value> value_allocator_type;
|
|
typedef boost::container::allocator_traits<value_allocator_type> value_allocator_traits;
|
|
|
|
public:
|
|
typedef Allocator allocator_type;
|
|
|
|
typedef Value value_type;
|
|
typedef typename value_allocator_traits::reference reference;
|
|
typedef typename value_allocator_traits::const_reference const_reference;
|
|
typedef typename value_allocator_traits::size_type size_type;
|
|
typedef typename value_allocator_traits::difference_type difference_type;
|
|
typedef typename value_allocator_traits::pointer pointer;
|
|
typedef typename value_allocator_traits::const_pointer const_pointer;
|
|
|
|
inline allocators()
|
|
: node_allocator_type()
|
|
{}
|
|
|
|
template <typename Alloc>
|
|
inline explicit allocators(Alloc const& alloc)
|
|
: node_allocator_type(alloc)
|
|
{}
|
|
|
|
inline allocators(allocators&& a)
|
|
: node_allocator_type(std::move(a.node_allocator()))
|
|
{}
|
|
|
|
inline allocators & operator=(allocators&& a)
|
|
{
|
|
node_allocator() = std::move(a.node_allocator());
|
|
return *this;
|
|
}
|
|
|
|
inline allocators & operator=(allocators const& a)
|
|
{
|
|
node_allocator() = a.node_allocator();
|
|
return *this;
|
|
}
|
|
|
|
void swap(allocators & a)
|
|
{
|
|
boost::core::invoke_swap(node_allocator(), a.node_allocator());
|
|
}
|
|
|
|
bool operator==(allocators const& a) const { return node_allocator() == a.node_allocator(); }
|
|
template <typename Alloc>
|
|
bool operator==(Alloc const& a) const { return node_allocator() == node_allocator_type(a); }
|
|
|
|
Allocator allocator() const { return Allocator(node_allocator()); }
|
|
|
|
node_allocator_type & node_allocator() { return *this; }
|
|
node_allocator_type const& node_allocator() const { return *this; }
|
|
};
|
|
|
|
}} // namespace detail::rtree
|
|
|
|
}}} // namespace boost::geometry::index
|
|
|
|
#endif // BOOST_GEOMETRY_INDEX_DETAIL_RTREE_NODE_VARIANT_STATIC_HPP
|