map.hpp 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389
  1. /*!
  2. @file
  3. Defines `boost::hana::map`.
  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_MAP_HPP
  9. #define BOOST_HANA_MAP_HPP
  10. #include <boost/hana/fwd/map.hpp>
  11. #include <boost/hana/all_of.hpp>
  12. #include <boost/hana/basic_tuple.hpp>
  13. #include <boost/hana/bool.hpp>
  14. #include <boost/hana/concept/comparable.hpp>
  15. #include <boost/hana/concept/constant.hpp>
  16. #include <boost/hana/concept/product.hpp>
  17. #include <boost/hana/config.hpp>
  18. #include <boost/hana/contains.hpp>
  19. #include <boost/hana/core/is_a.hpp>
  20. #include <boost/hana/core/make.hpp>
  21. #include <boost/hana/core/to.hpp>
  22. #include <boost/hana/detail/decay.hpp>
  23. #include <boost/hana/detail/fast_and.hpp>
  24. #include <boost/hana/detail/has_duplicates.hpp>
  25. #include <boost/hana/detail/hash_table.hpp>
  26. #include <boost/hana/detail/operators/adl.hpp>
  27. #include <boost/hana/detail/operators/comparable.hpp>
  28. #include <boost/hana/detail/operators/searchable.hpp>
  29. #include <boost/hana/equal.hpp>
  30. #include <boost/hana/find.hpp>
  31. #include <boost/hana/first.hpp>
  32. #include <boost/hana/fold_left.hpp>
  33. #include <boost/hana/functional/demux.hpp>
  34. #include <boost/hana/functional/on.hpp>
  35. #include <boost/hana/functional/partial.hpp>
  36. #include <boost/hana/fwd/any_of.hpp>
  37. #include <boost/hana/fwd/at_key.hpp>
  38. #include <boost/hana/fwd/erase_key.hpp>
  39. #include <boost/hana/fwd/is_subset.hpp>
  40. #include <boost/hana/fwd/keys.hpp>
  41. #include <boost/hana/insert.hpp>
  42. #include <boost/hana/integral_constant.hpp>
  43. #include <boost/hana/keys.hpp>
  44. #include <boost/hana/length.hpp>
  45. #include <boost/hana/optional.hpp>
  46. #include <boost/hana/remove_if.hpp>
  47. #include <boost/hana/second.hpp>
  48. #include <boost/hana/unpack.hpp>
  49. #include <boost/hana/value.hpp>
  50. #include <cstddef>
  51. #include <utility>
  52. BOOST_HANA_NAMESPACE_BEGIN
  53. //////////////////////////////////////////////////////////////////////////
  54. // operators
  55. //////////////////////////////////////////////////////////////////////////
  56. namespace detail {
  57. template <>
  58. struct comparable_operators<map_tag> {
  59. static constexpr bool value = true;
  60. };
  61. }
  62. //////////////////////////////////////////////////////////////////////////
  63. // map
  64. //////////////////////////////////////////////////////////////////////////
  65. //! @cond
  66. template <typename HashTable, typename Storage>
  67. struct map
  68. : detail::searchable_operators<map<HashTable, Storage>>
  69. , detail::operators::adl<map<HashTable, Storage>>
  70. {
  71. using hash_table_type = HashTable;
  72. using storage_type = Storage;
  73. Storage storage;
  74. using hana_tag = map_tag;
  75. explicit constexpr map(Storage const& xs)
  76. : storage(xs)
  77. { }
  78. explicit constexpr map(Storage&& xs)
  79. : storage(static_cast<Storage&&>(xs))
  80. { }
  81. constexpr map() = default;
  82. constexpr map(map const& other) = default;
  83. constexpr map(map&& other) = default;
  84. };
  85. //! @endcond
  86. namespace detail {
  87. template <typename Storage>
  88. struct KeyAtIndex {
  89. template <std::size_t i>
  90. using apply = decltype(hana::first(hana::get_impl<i>(std::declval<Storage>())));
  91. };
  92. }
  93. //////////////////////////////////////////////////////////////////////////
  94. // make<map_tag>
  95. //////////////////////////////////////////////////////////////////////////
  96. template <>
  97. struct make_impl<map_tag> {
  98. template <typename ...Pairs>
  99. static constexpr auto apply(Pairs&& ...pairs) {
  100. #if defined(BOOST_HANA_CONFIG_ENABLE_DEBUG_MODE)
  101. static_assert(detail::fast_and<hana::Product<Pairs>::value...>::value,
  102. "hana::make_map(pairs...) requires all the 'pairs' to be Products");
  103. static_assert(detail::fast_and<
  104. Comparable<decltype(hana::first(pairs))>::value...
  105. >::value,
  106. "hana::make_map(pairs...) requires all the keys to be Comparable");
  107. static_assert(detail::fast_and<
  108. Constant<
  109. decltype(hana::equal(hana::first(pairs), hana::first(pairs)))
  110. >::value...
  111. >::value,
  112. "hana::make_map(pairs...) requires all the keys to be "
  113. "Comparable at compile-time");
  114. //! @todo
  115. //! This can be implemented more efficiently by doing the check
  116. //! inside each bucket instead.
  117. static_assert(!detail::has_duplicates<decltype(hana::first(pairs))...>::value,
  118. "hana::make_map({keys, values}...) requires all the keys to be unique");
  119. static_assert(!detail::has_duplicates<decltype(hana::hash(hana::first(pairs)))...>::value,
  120. "hana::make_map({keys, values}...) requires all the keys to have different hashes");
  121. #endif
  122. using Storage = hana::basic_tuple<typename detail::decay<Pairs>::type...>;
  123. using HashTable = typename detail::make_hash_table<
  124. detail::KeyAtIndex<Storage>::template apply, sizeof...(Pairs)
  125. >::type;
  126. return map<HashTable, Storage>(
  127. hana::make_basic_tuple(static_cast<Pairs&&>(pairs)...)
  128. );
  129. }
  130. };
  131. //////////////////////////////////////////////////////////////////////////
  132. // keys
  133. //////////////////////////////////////////////////////////////////////////
  134. template <>
  135. struct keys_impl<map_tag> {
  136. template <typename Map>
  137. static constexpr decltype(auto) apply(Map&& map) {
  138. return hana::transform(static_cast<Map&&>(map).storage, hana::first);
  139. }
  140. };
  141. //////////////////////////////////////////////////////////////////////////
  142. // values
  143. //////////////////////////////////////////////////////////////////////////
  144. //! @cond
  145. template <typename Map>
  146. constexpr decltype(auto) values_t::operator()(Map&& map) const {
  147. return hana::transform(static_cast<Map&&>(map).storage, hana::second);
  148. }
  149. //! @endcond
  150. //////////////////////////////////////////////////////////////////////////
  151. // insert
  152. //////////////////////////////////////////////////////////////////////////
  153. template <>
  154. struct insert_impl<map_tag> {
  155. template <typename Map, typename Pair>
  156. static constexpr auto helper(Map&& map, Pair&& pair, ...) {
  157. using RawMap = typename std::remove_reference<Map>::type;
  158. using HashTable = typename RawMap::hash_table_type;
  159. using NewHashTable = typename detail::bucket_insert<
  160. HashTable,
  161. decltype(hana::first(pair)),
  162. decltype(hana::length(map.storage))::value
  163. >::type;
  164. using NewStorage = decltype(
  165. hana::append(static_cast<Map&&>(map).storage, static_cast<Pair&&>(pair))
  166. );
  167. return hana::map<NewHashTable, NewStorage>(
  168. hana::append(static_cast<Map&&>(map).storage, static_cast<Pair&&>(pair))
  169. );
  170. }
  171. template <typename Map, typename Pair, std::size_t i>
  172. static constexpr auto
  173. helper(Map&& map, Pair&&,
  174. hana::optional<std::integral_constant<std::size_t, i>>)
  175. {
  176. return static_cast<Map&&>(map);
  177. }
  178. //! @todo
  179. //! Here, we insert only if the key is not already in the map.
  180. //! This should be handled by `bucket_insert`, and that would also
  181. //! be more efficient.
  182. template <typename Map, typename Pair>
  183. static constexpr auto apply(Map&& map, Pair&& pair) {
  184. using RawMap = typename std::remove_reference<Map>::type;
  185. using Storage = typename RawMap::storage_type;
  186. using HashTable = typename RawMap::hash_table_type;
  187. using Key = decltype(hana::first(pair));
  188. using MaybeIndex = typename detail::find_index<
  189. HashTable, Key, detail::KeyAtIndex<Storage>::template apply
  190. >::type;
  191. return helper(static_cast<Map&&>(map), static_cast<Pair&&>(pair), MaybeIndex{});
  192. }
  193. };
  194. //////////////////////////////////////////////////////////////////////////
  195. // erase_key
  196. //////////////////////////////////////////////////////////////////////////
  197. template <>
  198. struct erase_key_impl<map_tag> {
  199. //! @todo
  200. //! We could implement some kind of `bucket_erase` metafunction
  201. //! that would be much more efficient than this.
  202. template <typename Map, typename Key>
  203. static constexpr auto
  204. erase_key_helper(Map&& map, Key const&, hana::false_) {
  205. return static_cast<Map&&>(map);
  206. }
  207. template <typename Map, typename Key>
  208. static constexpr auto
  209. erase_key_helper(Map&& map, Key const& key, hana::true_) {
  210. return hana::unpack(
  211. hana::remove_if(static_cast<Map&&>(map).storage,
  212. hana::on(hana::equal.to(key), hana::first)),
  213. hana::make_map
  214. );
  215. }
  216. template <typename Map, typename Key>
  217. static constexpr auto apply(Map&& map, Key const& key) {
  218. constexpr bool contains = hana::value<decltype(hana::contains(map, key))>();
  219. return erase_key_helper(static_cast<Map&&>(map), key,
  220. hana::bool_c<contains>);
  221. }
  222. };
  223. //////////////////////////////////////////////////////////////////////////
  224. // Comparable
  225. //////////////////////////////////////////////////////////////////////////
  226. template <>
  227. struct equal_impl<map_tag, map_tag> {
  228. template <typename M1, typename M2>
  229. static constexpr auto equal_helper(M1 const&, M2 const&, hana::false_) {
  230. return hana::false_c;
  231. }
  232. template <typename M1, typename M2>
  233. static constexpr auto equal_helper(M1 const& m1, M2 const& m2, hana::true_) {
  234. return hana::all_of(hana::keys(m1), hana::demux(equal)(
  235. hana::partial(hana::find, m1),
  236. hana::partial(hana::find, m2)
  237. ));
  238. }
  239. template <typename M1, typename M2>
  240. static constexpr auto apply(M1 const& m1, M2 const& m2) {
  241. return equal_impl::equal_helper(m1, m2, hana::bool_c<
  242. decltype(hana::length(m1.storage))::value ==
  243. decltype(hana::length(m2.storage))::value
  244. >);
  245. }
  246. };
  247. //////////////////////////////////////////////////////////////////////////
  248. // Searchable
  249. //////////////////////////////////////////////////////////////////////////
  250. template <>
  251. struct find_impl<map_tag> {
  252. template <typename Map>
  253. static constexpr auto find_helper(Map&&, ...) {
  254. return hana::nothing;
  255. }
  256. template <typename Map, std::size_t i>
  257. static constexpr auto
  258. find_helper(Map&& map, hana::optional<std::integral_constant<std::size_t, i>>) {
  259. return hana::just(hana::second(hana::at_c<i>(static_cast<Map&&>(map).storage)));
  260. }
  261. template <typename Map, typename Key>
  262. static constexpr auto apply(Map&& map, Key const&) {
  263. using RawMap = typename std::remove_reference<Map>::type;
  264. using Storage = typename RawMap::storage_type;
  265. using HashTable = typename RawMap::hash_table_type;
  266. using MaybeIndex = typename detail::find_index<
  267. HashTable, Key, detail::KeyAtIndex<Storage>::template apply
  268. >::type;
  269. return find_helper(static_cast<Map&&>(map), MaybeIndex{});
  270. }
  271. };
  272. template <>
  273. struct find_if_impl<map_tag> {
  274. template <typename M, typename Pred>
  275. static constexpr auto apply(M&& map, Pred&& pred) {
  276. return hana::transform(
  277. hana::find_if(static_cast<M&&>(map).storage,
  278. hana::compose(static_cast<Pred&&>(pred), hana::first)),
  279. hana::second
  280. );
  281. }
  282. };
  283. template <>
  284. struct any_of_impl<map_tag> {
  285. template <typename M, typename Pred>
  286. static constexpr auto apply(M const& map, Pred const& pred)
  287. { return hana::any_of(hana::keys(map), pred); }
  288. };
  289. template <>
  290. struct is_subset_impl<map_tag, map_tag> {
  291. template <typename Ys>
  292. struct all_contained {
  293. Ys const& ys;
  294. template <typename ...X>
  295. constexpr auto operator()(X const& ...x) const {
  296. return hana::bool_c<detail::fast_and<
  297. hana::value<decltype(hana::contains(ys, x))>()...
  298. >::value>;
  299. }
  300. };
  301. template <typename Xs, typename Ys>
  302. static constexpr auto apply(Xs const& xs, Ys const& ys) {
  303. auto ys_keys = hana::keys(ys);
  304. return hana::unpack(hana::keys(xs), all_contained<decltype(ys_keys)>{ys_keys});
  305. }
  306. };
  307. template <>
  308. struct at_key_impl<map_tag> {
  309. template <typename Map, typename Key>
  310. static constexpr decltype(auto) apply(Map&& map, Key const&) {
  311. using RawMap = typename std::remove_reference<Map>::type;
  312. using HashTable = typename RawMap::hash_table_type;
  313. using Storage = typename RawMap::storage_type;
  314. using MaybeIndex = typename detail::find_index<
  315. HashTable, Key, detail::KeyAtIndex<Storage>::template apply
  316. >::type;
  317. constexpr std::size_t index = decltype(*MaybeIndex{}){}();
  318. return hana::second(hana::at_c<index>(static_cast<Map&&>(map).storage));
  319. }
  320. };
  321. //////////////////////////////////////////////////////////////////////////
  322. // Foldable
  323. //////////////////////////////////////////////////////////////////////////
  324. template <>
  325. struct unpack_impl<map_tag> {
  326. template <typename M, typename F>
  327. static constexpr decltype(auto) apply(M&& map, F&& f) {
  328. return hana::unpack(static_cast<M&&>(map).storage,
  329. static_cast<F&&>(f));
  330. }
  331. };
  332. //////////////////////////////////////////////////////////////////////////
  333. // Construction from a Foldable
  334. //////////////////////////////////////////////////////////////////////////
  335. template <typename F>
  336. struct to_impl<map_tag, F, when<hana::Foldable<F>::value>> {
  337. template <typename Xs>
  338. static constexpr decltype(auto) apply(Xs&& xs) {
  339. return hana::fold_left(
  340. static_cast<Xs&&>(xs), hana::make_map(), hana::insert
  341. );
  342. }
  343. };
  344. BOOST_HANA_NAMESPACE_END
  345. #endif // !BOOST_HANA_MAP_HPP