at_key.hpp 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /*!
  2. @file
  3. Defines `boost::hana::at_key`.
  4. @copyright Louis Dionne 2013-2016
  5. Distributed under the Boost Software License, Version 1.0.
  6. (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
  7. */
  8. #ifndef BOOST_HANA_AT_KEY_HPP
  9. #define BOOST_HANA_AT_KEY_HPP
  10. #include <boost/hana/fwd/at_key.hpp>
  11. #include <boost/hana/accessors.hpp>
  12. #include <boost/hana/at.hpp>
  13. #include <boost/hana/concept/searchable.hpp>
  14. #include <boost/hana/concept/struct.hpp>
  15. #include <boost/hana/config.hpp>
  16. #include <boost/hana/core/dispatch.hpp>
  17. #include <boost/hana/detail/decay.hpp>
  18. #include <boost/hana/equal.hpp>
  19. #include <boost/hana/find.hpp>
  20. #include <boost/hana/find_if.hpp>
  21. #include <boost/hana/first.hpp>
  22. #include <boost/hana/functional/on.hpp>
  23. #include <boost/hana/length.hpp>
  24. #include <boost/hana/optional.hpp>
  25. #include <boost/hana/second.hpp>
  26. #include <cstddef>
  27. #include <utility>
  28. BOOST_HANA_NAMESPACE_BEGIN
  29. //! @cond
  30. template <typename Xs, typename Key>
  31. constexpr decltype(auto) at_key_t::operator()(Xs&& xs, Key const& key) const {
  32. using S = typename hana::tag_of<Xs>::type;
  33. using AtKey = BOOST_HANA_DISPATCH_IF(at_key_impl<S>,
  34. hana::Searchable<S>::value
  35. );
  36. #ifndef BOOST_HANA_CONFIG_DISABLE_CONCEPT_CHECKS
  37. static_assert(hana::Searchable<S>::value,
  38. "hana::at_key(xs, key) requires 'xs' to be Searchable");
  39. #endif
  40. return AtKey::apply(static_cast<Xs&&>(xs), key);
  41. }
  42. //! @endcond
  43. template <typename S, bool condition>
  44. struct at_key_impl<S, when<condition>> : default_ {
  45. template <typename Xs, typename Key>
  46. static constexpr auto apply(Xs&& xs, Key const& key) {
  47. return hana::find(static_cast<Xs&&>(xs), key).value();
  48. }
  49. };
  50. namespace at_key_detail {
  51. template <typename T>
  52. struct equal_to {
  53. T const& t;
  54. template <typename U>
  55. constexpr auto operator()(U const& u) const {
  56. return hana::equal(t, u);
  57. }
  58. };
  59. //! @todo This causes an awful duplication of code with `find_if`.
  60. template <typename Xs, typename Pred, std::size_t i, std::size_t N, bool Done>
  61. struct advance_until;
  62. template <typename Xs, typename Pred, std::size_t i, std::size_t N>
  63. struct advance_until<Xs, Pred, i, N, false>
  64. : advance_until<Xs, Pred, i + 1, N, static_cast<bool>(detail::decay<decltype(
  65. std::declval<Pred>()(hana::at_c<i>(std::declval<Xs>()))
  66. )>::type::value)>
  67. { };
  68. template <typename Xs, typename Pred, std::size_t N>
  69. struct advance_until<Xs, Pred, N, N, false> {
  70. template <typename Ys>
  71. static constexpr auto apply(Ys&&) = delete;
  72. };
  73. template <typename Xs, typename Pred, std::size_t i, std::size_t N>
  74. struct advance_until<Xs, Pred, i, N, true> {
  75. template <typename Ys>
  76. static constexpr decltype(auto) apply(Ys&& ys) {
  77. return hana::at_c<i - 1>(static_cast<Ys&&>(ys));
  78. }
  79. };
  80. }
  81. template <typename S>
  82. struct at_key_impl<S, when<hana::Sequence<S>::value>> {
  83. template <typename Xs, typename Key>
  84. static constexpr decltype(auto) apply(Xs&& xs, Key const&) {
  85. constexpr std::size_t N = decltype(hana::length(xs))::value;
  86. using Pred = at_key_detail::equal_to<Key>;
  87. return at_key_detail::advance_until<Xs&&, Pred, 0, N, false>::apply(
  88. static_cast<Xs&&>(xs)
  89. );
  90. }
  91. };
  92. template <typename S>
  93. struct at_key_impl<S, when<hana::Struct<S>::value>> {
  94. template <typename X, typename Key>
  95. static constexpr decltype(auto) apply(X&& x, Key const& key) {
  96. auto accessor = hana::second(*hana::find_if(hana::accessors<S>(),
  97. hana::equal.to(key) ^hana::on^ hana::first
  98. ));
  99. return accessor(static_cast<X&&>(x));
  100. }
  101. };
  102. BOOST_HANA_NAMESPACE_END
  103. #endif // !BOOST_HANA_AT_KEY_HPP