// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // Derived from google3/util/gtl/stl_util.h #ifndef BASE_STL_UTIL_H_ #define BASE_STL_UTIL_H_ #include #include #include #include #include #include #include #include #include #include #include #include #include "base/logging.h" namespace base { namespace internal { // Calls erase on iterators of matching elements. template void IterateAndEraseIf(Container& container, Predicate pred) { for (auto it = container.begin(); it != container.end();) { if (pred(*it)) it = container.erase(it); else ++it; } } } // namespace internal // Clears internal memory of an STL object. // STL clear()/reserve(0) does not always free internal memory allocated // This function uses swap/destructor to ensure the internal memory is freed. template void STLClearObject(T* obj) { T tmp; tmp.swap(*obj); // Sometimes "T tmp" allocates objects with memory (arena implementation?). // Hence using additional reserve(0) even if it doesn't always work. obj->reserve(0); } // Counts the number of instances of val in a container. template typename std::iterator_traits< typename Container::const_iterator>::difference_type STLCount(const Container& container, const T& val) { return std::count(container.begin(), container.end(), val); } // Return a mutable char* pointing to a string's internal buffer, // which may not be null-terminated. Writing through this pointer will // modify the string. // // string_as_array(&str)[i] is valid for 0 <= i < str.size() until the // next call to a string method that invalidates iterators. // // As of 2006-04, there is no standard-blessed way of getting a // mutable reference to a string's internal buffer. However, issue 530 // (http://www.open-std.org/JTC1/SC22/WG21/docs/lwg-active.html#530) // proposes this as the method. According to Matt Austern, this should // already work on all current implementations. inline char* string_as_array(std::string* str) { // DO NOT USE const_cast(str->data()) return str->empty() ? NULL : &*str->begin(); } // Test to see if a set or map contains a particular key. // Returns true if the key is in the collection. template bool ContainsKey(const Collection& collection, const Key& key) { return collection.find(key) != collection.end(); } namespace internal { template class HasKeyType { template static std::true_type test(typename C::key_type*); template static std::false_type test(...); public: static constexpr bool value = decltype(test(nullptr))::value; }; } // namespace internal // Test to see if a collection like a vector contains a particular value. // Returns true if the value is in the collection. // Don't use this on collections such as sets or maps. This is enforced by // disabling this method if the collection defines a key_type. template ::value, int>::type = 0> bool ContainsValue(const Collection& collection, const Value& value) { return std::find(std::begin(collection), std::end(collection), value) != std::end(collection); } // Returns true if the container is sorted. template bool STLIsSorted(const Container& cont) { // Note: Use reverse iterator on container to ensure we only require // value_type to implement operator<. return std::adjacent_find(cont.rbegin(), cont.rend(), std::less()) == cont.rend(); } // Returns a new ResultType containing the difference of two sorted containers. template ResultType STLSetDifference(const Arg1& a1, const Arg2& a2) { DCHECK(STLIsSorted(a1)); DCHECK(STLIsSorted(a2)); ResultType difference; std::set_difference(a1.begin(), a1.end(), a2.begin(), a2.end(), std::inserter(difference, difference.end())); return difference; } // Returns a new ResultType containing the union of two sorted containers. template ResultType STLSetUnion(const Arg1& a1, const Arg2& a2) { DCHECK(STLIsSorted(a1)); DCHECK(STLIsSorted(a2)); ResultType result; std::set_union(a1.begin(), a1.end(), a2.begin(), a2.end(), std::inserter(result, result.end())); return result; } // Returns a new ResultType containing the intersection of two sorted // containers. template ResultType STLSetIntersection(const Arg1& a1, const Arg2& a2) { DCHECK(STLIsSorted(a1)); DCHECK(STLIsSorted(a2)); ResultType result; std::set_intersection(a1.begin(), a1.end(), a2.begin(), a2.end(), std::inserter(result, result.end())); return result; } // Returns true if the sorted container |a1| contains all elements of the sorted // container |a2|. template bool STLIncludes(const Arg1& a1, const Arg2& a2) { DCHECK(STLIsSorted(a1)); DCHECK(STLIsSorted(a2)); return std::includes(a1.begin(), a1.end(), a2.begin(), a2.end()); } // Erase/EraseIf are based on library fundamentals ts v2 erase/erase_if // http://en.cppreference.com/w/cpp/experimental/lib_extensions_2 // They provide a generic way to erase elements from a container. // The functions here implement these for the standard containers until those // functions are available in the C++ standard. // For Chromium containers overloads should be defined in their own headers // (like standard containers). // Note: there is no std::erase for standard associative containers so we don't // have it either. template void Erase(std::basic_string& container, const Value& value) { container.erase(std::remove(container.begin(), container.end(), value), container.end()); } template void EraseIf(std::basic_string& container, Predicate pred) { container.erase(std::remove_if(container.begin(), container.end(), pred), container.end()); } template void Erase(std::deque& container, const Value& value) { container.erase(std::remove(container.begin(), container.end(), value), container.end()); } template void EraseIf(std::deque& container, Predicate pred) { container.erase(std::remove_if(container.begin(), container.end(), pred), container.end()); } template void Erase(std::vector& container, const Value& value) { container.erase(std::remove(container.begin(), container.end(), value), container.end()); } template void EraseIf(std::vector& container, Predicate pred) { container.erase(std::remove_if(container.begin(), container.end(), pred), container.end()); } template void Erase(std::forward_list& container, const Value& value) { // Unlike std::forward_list::remove, this function template accepts // heterogeneous types and does not force a conversion to the container's // value type before invoking the == operator. container.remove_if([&](const T& cur) { return cur == value; }); } template void EraseIf(std::forward_list& container, Predicate pred) { container.remove_if(pred); } template void Erase(std::list& container, const Value& value) { // Unlike std::list::remove, this function template accepts heterogeneous // types and does not force a conversion to the container's value type before // invoking the == operator. container.remove_if([&](const T& cur) { return cur == value; }); } template void EraseIf(std::list& container, Predicate pred) { container.remove_if(pred); } template void EraseIf(std::map& container, Predicate pred) { internal::IterateAndEraseIf(container, pred); } template void EraseIf(std::multimap& container, Predicate pred) { internal::IterateAndEraseIf(container, pred); } template void EraseIf(std::set& container, Predicate pred) { internal::IterateAndEraseIf(container, pred); } template void EraseIf(std::multiset& container, Predicate pred) { internal::IterateAndEraseIf(container, pred); } template void EraseIf(std::unordered_map& container, Predicate pred) { internal::IterateAndEraseIf(container, pred); } template void EraseIf( std::unordered_multimap& container, Predicate pred) { internal::IterateAndEraseIf(container, pred); } template void EraseIf(std::unordered_set& container, Predicate pred) { internal::IterateAndEraseIf(container, pred); } template void EraseIf(std::unordered_multiset& container, Predicate pred) { internal::IterateAndEraseIf(container, pred); } } // namespace base #endif // BASE_STL_UTIL_H_