/* * Copyright (C) 2016 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef ANDROID_HIDL_CONCURRENT_MAP_H #define ANDROID_HIDL_CONCURRENT_MAP_H #include #include namespace android { namespace hardware { template class ConcurrentMap { private: using size_type = typename std::map::size_type; using iterator = typename std::map::iterator; using const_iterator = typename std::map::const_iterator; public: void set(K &&k, V &&v) { std::unique_lock _lock(mMutex); mMap[std::forward(k)] = std::forward(v); } // get with the given default value. const V &get(const K &k, const V &def) const { std::unique_lock _lock(mMutex); const_iterator iter = mMap.find(k); if (iter == mMap.end()) { return def; } return iter->second; } size_type erase(const K &k) { std::unique_lock _lock(mMutex); return mMap.erase(k); } size_type eraseIfEqual(const K& k, const V& v) { std::unique_lock _lock(mMutex); const_iterator iter = mMap.find(k); if (iter == mMap.end()) { return 0; } if (iter->second == v) { mMap.erase(iter); return 1; } else { return 0; } } std::unique_lock lock() { return std::unique_lock(mMutex); } void setLocked(const K& k, V&& v) { mMap[k] = std::forward(v); } void setLocked(const K& k, const V& v) { mMap[k] = v; } const V& getLocked(const K& k, const V& def) const { const_iterator iter = mMap.find(k); if (iter == mMap.end()) { return def; } return iter->second; } size_type eraseLocked(const K& k) { return mMap.erase(k); } // the concurrent map must be locked in order to iterate over it iterator begin() { return mMap.begin(); } iterator end() { return mMap.end(); } const_iterator begin() const { return mMap.begin(); } const_iterator end() const { return mMap.end(); } private: mutable std::mutex mMutex; std::map mMap; }; namespace details { // TODO(b/69122224): remove this type and usages of it // DO NOT ADD USAGES template class DoNotDestruct { public: DoNotDestruct() { new (buffer) T(); } T& get() { return *reinterpret_cast(buffer); } T* operator->() { return reinterpret_cast(buffer); } private: alignas(T) char buffer[sizeof(T)]; }; } // namespace details } // namespace hardware } // namespace android #endif // ANDROID_HIDL_CONCURRENT_MAP_H