// Copyright 2019 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. #ifndef UTIL_STD_UTIL_H_ #define UTIL_STD_UTIL_H_ #include #include #include #include #include #include "absl/algorithm/container.h" namespace openscreen { template constexpr size_t countof(T (&array)[N]) { return N; } // std::basic_string::data() has no mutable overload prior to C++17 [1]. // Hence this overload is provided. // Note: str[0] is safe even for empty strings, as they are guaranteed to be // null-terminated [2]. // // [1] http://en.cppreference.com/w/cpp/string/basic_string/data // [2] http://en.cppreference.com/w/cpp/string/basic_string/operator_at template CharT* data(std::basic_string& str) { return std::addressof(str[0]); } template void RemoveValueFromMap(std::map* map, Value* value) { for (auto it = map->begin(); it != map->end();) { if (it->second == value) { it = map->erase(it); } else { ++it; } } } template bool AreElementsSortedAndUnique(const ForwardIteratingContainer& c) { return absl::c_is_sorted(c) && (absl::c_adjacent_find(c) == c.end()); } template void SortAndDedupeElements(RandomAccessContainer* c) { std::sort(c->begin(), c->end()); const auto new_end = std::unique(c->begin(), c->end()); c->erase(new_end, c->end()); } // Append the provided elements together into a single vector. This can be // useful when creating a vector of variadic templates in the ctor. // // This is the base case for the recursion template std::vector&& Append(std::vector&& so_far) { return std::move(so_far); } // This is the recursive call. Depending on the number of remaining elements, it // either calls into itself or into the above base case. template std::vector&& Append(std::vector&& so_far, TFirst&& new_element, TOthers&&... new_elements) { so_far.push_back(std::move(new_element)); return Append(std::move(so_far), std::move(new_elements)...); } // Creates an empty vector with |size| elements reserved. Intended to be used as // GetEmptyVectorOfSize(sizeof...(variadic_input)) template std::vector GetVectorWithCapacity(size_t size) { std::vector results; results.reserve(size); return results; } } // namespace openscreen #endif // UTIL_STD_UTIL_H_