// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef BASE_STRINGS_TO_STRING_H_ #define BASE_STRINGS_TO_STRING_H_ #include #include #include #include #include #include #include #include #include "base/template_util.h" #include "base/types/supports_ostream_operator.h" namespace base { template std::string ToString(const Ts&... values); namespace internal { template concept SupportsToString = requires(const T& t) { t.ToString(); }; // I/O manipulators are function pointers, but should be sent directly to the // `ostream` instead of being cast to `const void*` like other function // pointers. template constexpr bool IsIomanip = false; template requires(std::derived_from) constexpr bool IsIomanip = true; // Function pointers implicitly convert to `bool`, so use this to avoid printing // function pointers as 1 or 0. template concept WillBeIncorrectlyStreamedAsBool = std::is_function_v> && !IsIomanip>; // Fallback case when there is no better representation. template struct ToStringHelper { static void Stringify(const T& v, std::ostringstream& ss) { ss << "[" << sizeof(v) << "-byte object at 0x" << std::addressof(v) << "]"; } }; // Most streamables. template requires(SupportsOstreamOperator && !WillBeIncorrectlyStreamedAsBool) struct ToStringHelper { static void Stringify(const T& v, std::ostringstream& ss) { ss << v; } }; // Functions and function pointers. template requires(SupportsOstreamOperator && WillBeIncorrectlyStreamedAsBool) struct ToStringHelper { static void Stringify(const T& v, std::ostringstream& ss) { ToStringHelper::Stringify(reinterpret_cast(v), ss); } }; // Non-streamables that have a `ToString` member. template requires(!SupportsOstreamOperator && SupportsToString) struct ToStringHelper { static void Stringify(const T& v, std::ostringstream& ss) { // .ToString() may not return a std::string, e.g. blink::WTF::String. ToStringHelper::Stringify(v.ToString(), ss); } }; // Non-streamable enums (i.e. scoped enums where no `operator<<` overload was // declared). template requires(!SupportsOstreamOperator && std::is_enum_v) struct ToStringHelper { static void Stringify(const T& v, std::ostringstream& ss) { using UT = typename std::underlying_type_t; ToStringHelper::Stringify(static_cast(v), ss); } }; // Tuples. Will recursively apply `ToString()` to each value in the tuple. template struct ToStringHelper> { template static void StringifyHelper(const std::tuple& values, std::index_sequence, std::ostringstream& ss) { ss << "<"; (..., (ss << (I == 0 ? "" : ", "), ss << ToString(std::get(values)))); ss << ">"; } static void Stringify(const std::tuple& v, std::ostringstream& ss) { StringifyHelper(v, std::make_index_sequence(), ss); } }; } // namespace internal // Converts any type to a string, preferring defined operator<<() or ToString() // methods if they exist. If multiple `values` are given, returns the // concatenation of the result of applying `ToString` to each value. template std::string ToString(const Ts&... values) { std::ostringstream ss; (..., internal::ToStringHelper>::Stringify( values, ss)); return ss.str(); } } // namespace base #endif // BASE_STRINGS_TO_STRING_H_