123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266 |
- /************************************************************************************
- * *
- * Copyright (c) 2014 - 2018 Axel Menzel <info@rttr.org> *
- * *
- * This file is part of RTTR (Run Time Type Reflection) *
- * License: MIT License *
- * *
- * Permission is hereby granted, free of charge, to any person obtaining *
- * a copy of this software and associated documentation files (the "Software"), *
- * to deal in the Software without restriction, including without limitation *
- * the rights to use, copy, modify, merge, publish, distribute, sublicense, *
- * and/or sell copies of the Software, and to permit persons to whom the *
- * Software is furnished to do so, subject to the following conditions: *
- * *
- * The above copyright notice and this permission notice shall be included in *
- * all copies or substantial portions of the Software. *
- * *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR *
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, *
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE *
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER *
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, *
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE *
- * SOFTWARE. *
- * *
- *************************************************************************************/
- #ifndef RTTR_FLAT_MAP_H_
- #define RTTR_FLAT_MAP_H_
- #include "rttr/detail/base/core_prerequisites.h"
- #include "rttr/detail/misc/misc_type_traits.h"
- #include "rttr/detail/misc/std_type_traits.h"
- #include <vector>
- #include <utility>
- #include <functional>
- #include <algorithm>
- #include <ciso646> // _LIBCPP_VERSION
- namespace rttr
- {
- namespace detail
- {
- /*!
- * \brief The flat_map class implements a simple map based on std::vector instead of a binary tree.
- *
- */
- template<typename Key, typename Value, template<class> class Hash = std::hash, typename Compare = std::equal_to<Key>>
- class flat_map
- {
- template<typename Hash_Type = std::size_t>
- struct key_data
- {
- Key m_key;
- Hash_Type m_hash_value;
- struct order
- {
- RTTR_INLINE bool operator () (const key_data& left, const key_data& right) const
- {
- return (left.m_hash_value < right.m_hash_value);
- }
- RTTR_INLINE bool operator () (const Hash_Type& left, const key_data& right) const
- {
- return (left < right.m_hash_value);
- }
- RTTR_INLINE bool operator () (const key_data& left, const Hash_Type& right) const
- {
- return (left.m_hash_value < right);
- }
- };
- };
- public:
- using key_data_type = key_data<>;
- using value_type = std::pair<const Key, Value>;
- using iterator = typename std::vector<Value>::iterator;
- using const_iterator = typename std::vector<Value>::const_iterator;
- using const_iterator_key = typename std::vector<key_data_type>::const_iterator;
- using iterator_key = typename std::vector<key_data_type>::iterator;
- using hash_type = std::size_t;
- flat_map() {}
- private:
- using has_type = Hash<Key>;
- public:
- iterator end()
- {
- return m_value_list.end();
- }
- const_iterator end() const
- {
- return m_value_list.end();
- }
- const_iterator cend() const
- {
- return m_value_list.cend();
- }
- void insert(value_type&& value)
- {
- insert(std::move(value.first), std::move(value.second));
- }
- void insert(const Key&& key, Value&& value)
- {
- if (find(key) != end())
- return;
- m_key_list.push_back(key_data_type{std::move(key), has_type()(key)});
- std::stable_sort(m_key_list.begin(), m_key_list.end(), typename key_data_type::order());
- auto found_key = find_key_const(key);
- if (found_key != m_key_list.cend())
- {
- const auto index = std::distance(m_key_list.cbegin(), found_key);
- m_value_list.insert(m_value_list.begin() + index, std::move(value));
- }
- }
- template<typename T>
- const_iterator find(const T& key) const
- {
- const auto hash_value = Hash<T>()(key);
- auto itr = std::lower_bound(m_key_list.begin(), m_key_list.end(),
- hash_value,
- typename key_data_type::order());
- for (; itr != m_key_list.end(); ++itr)
- {
- auto& item = *itr;
- if (item.m_hash_value != hash_value)
- break;
- if (item.m_key == key)
- return (m_value_list.cbegin() + std::distance(m_key_list.cbegin(), itr));;
- }
- return m_value_list.cend();
- }
- iterator find(const Key& key)
- {
- const auto itr = find_key_const(key);
- if (itr != m_key_list.end())
- return (m_value_list.begin() + std::distance(m_key_list.cbegin(), itr));
- else
- return (m_value_list.end());
- }
- const_iterator find(const Key& key) const
- {
- const auto itr = find_key_const(key);
- if (itr != m_key_list.end())
- return (m_value_list.cbegin() + std::distance(m_key_list.cbegin(), itr));
- else
- return (m_value_list.cend());
- }
- #ifdef _LIBCPP_VERSION
- # if _LIBCPP_VERSION <= 3700
- # define RTTR_NO_CXX11_CONST_EREASE_SUPPORT_IN_STL 1
- # endif
- #elif (RTTR_COMPILER == RTTR_COMPILER_GNUC && RTTR_COMP_VER < 490)
- # define RTTR_NO_CXX11_CONST_EREASE_SUPPORT_IN_STL 1
- #endif
- // older versions of gcc stl, have no support for const_iterator in std::vector<T>::erase(const_iterator)
- #if RTTR_NO_CXX11_CONST_EREASE_SUPPORT_IN_STL
- bool erase(const Key& key)
- {
- iterator_key itr = find_key(key);
- if (itr != m_key_list.end())
- {
- auto value_itr = m_value_list.begin() + std::distance(m_key_list.begin(), itr);
- if (value_itr != m_value_list.end())
- {
- m_key_list.erase(itr);
- m_value_list.erase(value_itr);
- return true;
- }
- }
- return false;
- }
- #else
- bool erase(const Key& key)
- {
- const_iterator_key itr = find_key_const(key);
- if (itr != m_key_list.end())
- {
- auto value_itr = m_value_list.cbegin() + std::distance(m_key_list.cbegin(), itr);
- if (value_itr != m_value_list.cend())
- {
- m_key_list.erase(itr);
- m_value_list.erase(value_itr);
- return true;
- }
- }
- return false;
- }
- #endif
- void clear()
- {
- m_key_list.clear();
- m_value_list.clear();
- }
- const std::vector<Value>& value_data() const
- {
- return m_value_list;
- }
- private:
- const_iterator_key find_key_const(const Key& key) const
- {
- const auto hash_value = has_type()(key);
- auto itr = std::lower_bound(m_key_list.begin(), m_key_list.end(),
- hash_value,
- typename key_data_type::order());
- for (; itr != m_key_list.end(); ++itr)
- {
- auto& item = *itr;
- if (item.m_hash_value != hash_value)
- break;
- if (Compare()(item.m_key, key))
- return itr;
- }
- return m_key_list.end();
- }
- iterator_key find_key(const Key& key)
- {
- const auto hash_value = has_type()(key);
- auto itr = std::lower_bound(m_key_list.begin(), m_key_list.end(),
- hash_value,
- typename key_data_type::order());
- for (; itr != m_key_list.end(); ++itr)
- {
- auto& item = *itr;
- if (item.m_hash_value != hash_value)
- break;
- if (Compare()(item.m_key, key))
- return itr;
- }
- return m_key_list.end();
- }
- private:
- std::vector<key_data_type> m_key_list;
- std::vector<Value> m_value_list;
- };
- } // end namespace detail
- } // end namespace rttr
- #endif // RTTR_FLAT_MAP_H_
|