#pragma once #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifdef __GNUG__ #include #include #include #endif // Check if a type is stream writable, i.e., std::cout << foo; template struct is_to_stream_writable: std::false_type {}; template struct is_to_stream_writable()<() ) >> : std::true_type {}; // Printing std::tuple // The indices trick: http://loungecpp.wikidot.com/tips-and-tricks:indices namespace pprint { template struct seq{}; template struct gen_seq : gen_seq{}; template struct gen_seq<0, Is...> : seq{}; template T to_string(T value) { return value; } std::string to_string(char value) { return "'" + std::string(1, value) + "'"; } std::string to_string(const char * value) { return "\"" + std::string(value) + "\""; } std::string to_string(const std::string& value) { return "\"" + value + "\""; } template void print_tuple(std::basic_ostream& os, Tuple const& t, seq){ using swallow = int[]; (void)swallow{0, (void(os << (Is == 0? "" : ", ") << to_string(std::get(t))), 0)...}; } } template auto operator<<(std::basic_ostream& os, std::tuple const& t) -> std::basic_ostream& { os << "("; pprint::print_tuple(os, t, pprint::gen_seq()); return os << ")"; } // Enum value must be greater or equals than MAGIC_ENUM_RANGE_MIN. By default MAGIC_ENUM_RANGE_MIN = -128. // If need another min range for all enum types by default, redefine the macro MAGIC_ENUM_RANGE_MIN. #if !defined(MAGIC_ENUM_RANGE_MIN) # define MAGIC_ENUM_RANGE_MIN -128 #endif // Enum value must be less or equals than MAGIC_ENUM_RANGE_MAX. By default MAGIC_ENUM_RANGE_MAX = 128. // If need another max range for all enum types by default, redefine the macro MAGIC_ENUM_RANGE_MAX. #if !defined(MAGIC_ENUM_RANGE_MAX) # define MAGIC_ENUM_RANGE_MAX 128 #endif namespace magic_enum { // Enum value must be in range [-MAGIC_ENUM_RANGE_MAX, MAGIC_ENUM_RANGE_MIN]. By default MAGIC_ENUM_RANGE_MIN = -128, MAGIC_ENUM_RANGE_MAX = 128. // If need another range for all enum types by default, redefine the macro MAGIC_ENUM_RANGE_MAX and MAGIC_ENUM_RANGE_MIN. // If need another range for specific enum type, add specialization enum_range for necessary enum type. template struct enum_range final { static_assert(std::is_enum_v, "magic_enum::enum_range requires enum type."); static constexpr int min = std::is_signed_v> ? MAGIC_ENUM_RANGE_MIN : 0; static constexpr int max = MAGIC_ENUM_RANGE_MAX; }; static_assert(MAGIC_ENUM_RANGE_MAX > 0, "MAGIC_ENUM_RANGE_MAX must be greater than 0."); static_assert(MAGIC_ENUM_RANGE_MAX < std::numeric_limits::max(), "MAGIC_ENUM_RANGE_MAX must be less than INT_MAX."); static_assert(MAGIC_ENUM_RANGE_MIN <= 0, "MAGIC_ENUM_RANGE_MIN must be less or equals than 0."); static_assert(MAGIC_ENUM_RANGE_MIN > std::numeric_limits::min(), "MAGIC_ENUM_RANGE_MIN must be greater than INT_MIN."); namespace detail { template > [[nodiscard]] constexpr int min_impl() { static_assert(std::is_enum_v, "magic_enum::detail::min_impl requires enum type."); constexpr int min = enum_range::min > (std::numeric_limits::min)() ? enum_range::min : (std::numeric_limits::min)(); return min; } template > [[nodiscard]] constexpr decltype(auto) range_impl() { static_assert(std::is_enum_v, "magic_enum::detail::range_impl requires enum type."); static_assert(enum_range::max > enum_range::min, "magic_enum::enum_range requires max > min."); constexpr int max = enum_range::max < (std::numeric_limits::max)() ? enum_range::max : (std::numeric_limits::max)(); constexpr auto range = std::make_integer_sequence() + 1>{}; return range; } [[nodiscard]] constexpr bool is_name_char(char c, bool front) noexcept { return (!front && c >= '0' && c <= '9') || (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c == '_'; } template [[nodiscard]] constexpr std::string_view name_impl() noexcept { static_assert(std::is_enum_v, "magic_enum::detail::name_impl requires enum type."); #if defined(__clang__) std::string_view name{__PRETTY_FUNCTION__}; constexpr auto suffix = sizeof("]") - 1; #elif defined(__GNUC__) && __GNUC__ >= 9 std::string_view name{__PRETTY_FUNCTION__}; constexpr auto suffix = sizeof("; std::string_view = std::basic_string_view]") - 1; #elif defined(_MSC_VER) std::string_view name{__FUNCSIG__}; constexpr auto suffix = sizeof(">(void) noexcept") - 1; #else return {}; // Unsupported compiler. #endif #if defined(__clang__) || (defined(__GNUC__) && __GNUC__ >= 9) || defined(_MSC_VER) name.remove_suffix(suffix); for (std::size_t i = name.size(); i > 0; --i) { if (!is_name_char(name[i - 1], false)) { name.remove_prefix(i); break; } } if (name.length() > 0 && is_name_char(name.front(), true)) { return name; } else { return {}; // Value does not have name. } #endif } template [[nodiscard]] constexpr decltype(auto) strings_impl(std::integer_sequence) noexcept { static_assert(std::is_enum_v, "magic_enum::detail::strings_impl requires enum type."); constexpr std::array names{{name_impl(I + min_impl())>()...}}; return names; } template [[nodiscard]] constexpr std::string_view name_impl(int value) noexcept { static_assert(std::is_enum_v, "magic_enum::detail::name_impl requires enum type."); constexpr auto names = strings_impl(range_impl()); const int i = value - min_impl(); if (i >= 0 && static_cast(i) < names.size()) { return names[i]; } else { return {}; // Value out of range. } } template [[nodiscard]] constexpr decltype(auto) values_impl(std::integer_sequence) noexcept { static_assert(std::is_enum_v, "magic_enum::detail::values_impl requires enum type."); constexpr int n = sizeof...(I); constexpr std::array valid{{!name_impl(I + min_impl())>().empty()...}}; constexpr int num_valid = ((valid[I] ? 1 : 0) + ...); std::array enums{}; for (int i = 0, v = 0; i < n && v < num_valid; ++i) { if (valid[i]) { enums[v++] = static_cast(i + min_impl()); } } return enums; } template [[nodiscard]] constexpr decltype(auto) names_impl(std::integer_sequence) noexcept { static_assert(std::is_enum_v, "magic_enum::detail::names_impl requires enum type."); constexpr auto enums = values_impl(range_impl()); constexpr std::array names{{name_impl()...}}; return names; } template [[nodiscard]] constexpr std::optional enum_cast_impl(std::string_view value) noexcept { static_assert(std::is_enum_v, "magic_enum::detail::enum_cast_impl requires enum type."); constexpr auto values = values_impl(range_impl()); constexpr auto count = values.size(); constexpr auto names = names_impl(std::make_index_sequence{}); for (std::size_t i = 0; i < count; ++i) { if (names[i] == value) { return values[i]; } } return std::nullopt; // Invalid value or out of range. } template using enable_if_enum_t = typename std::enable_if>::type; template> struct is_scoped_enum_impl : std::false_type {}; template struct is_scoped_enum_impl : std::bool_constant>> {}; template> struct is_unscoped_enum_impl : std::false_type {}; template struct is_unscoped_enum_impl : std::bool_constant>> {}; } // namespace magic_enum::detail // Checks whether T is an Unscoped enumeration type. // Provides the member constant value which is equal to true, if T is an [Unscoped enumeration](https://en.cppreference.com/w/cpp/language/enum#Unscoped_enumeration) type. // Otherwise, value is equal to false. template struct is_unscoped_enum : detail::is_unscoped_enum_impl {}; template inline constexpr bool is_unscoped_enum_v = is_unscoped_enum::value; // Checks whether T is an Scoped enumeration type. // Provides the member constant value which is equal to true, if T is an [Scoped enumeration](https://en.cppreference.com/w/cpp/language/enum#Scoped_enumerations) type. // Otherwise, value is equal to false. template struct is_scoped_enum : detail::is_scoped_enum_impl {}; template inline constexpr bool is_scoped_enum_v = is_scoped_enum::value; // Obtains enum value from enum string name. template > [[nodiscard]] constexpr std::optional enum_cast(std::string_view value) noexcept { static_assert(std::is_enum_v, "magic_enum::enum_cast requires enum type."); return detail::enum_cast_impl(value); } // Obtains enum value from integer value. template > [[nodiscard]] constexpr std::optional enum_cast(std::underlying_type_t value) noexcept { static_assert(std::is_enum_v, "magic_enum::enum_cast requires enum type."); if (detail::name_impl(static_cast(value)).empty()) { return std::nullopt; // Invalid value or out of range. } else { return static_cast(value); } } // Returns enum value at specified index. // No bounds checking is performed: the behavior is undefined if index >= number of enum values. template> [[nodiscard]] constexpr E enum_value(std::size_t index) { static_assert(std::is_enum_v, "magic_enum::enum_value requires enum type."); constexpr auto values = detail::values_impl(detail::range_impl()); return assert(index < values.size()), values[index]; } // Obtains value enum sequence. template > [[nodiscard]] constexpr decltype(auto) enum_values() noexcept { static_assert(std::is_enum_v, "magic_enum::enum_values requires enum type."); constexpr auto values = detail::values_impl(detail::range_impl()); return values; } // Returns number of enum values. template > [[nodiscard]] constexpr std::size_t enum_count() noexcept { static_assert(std::is_enum_v, "magic_enum::enum_count requires enum type."); constexpr auto count = detail::values_impl(detail::range_impl()).size(); return count; } // Obtains string enum name from enum value. template , typename = detail::enable_if_enum_t> [[nodiscard]] constexpr std::optional enum_name(E value) noexcept { static_assert(std::is_enum_v, "magic_enum::enum_name requires enum type."); const auto name = detail::name_impl(static_cast(value)); if (name.empty()) { return std::nullopt; // Invalid value or out of range. } else { return name; } } // Obtains string enum name sequence. template > [[nodiscard]] constexpr decltype(auto) enum_names() noexcept { static_assert(std::is_enum_v, "magic_enum::enum_names requires enum type."); constexpr auto count = detail::values_impl(detail::range_impl()).size(); constexpr auto names = detail::names_impl(std::make_index_sequence{}); return names; } namespace ops { template , typename = detail::enable_if_enum_t> std::ostream& operator<<(std::ostream& os, E value) { static_assert(std::is_enum_v, "magic_enum::ops::operator<< requires enum type."); const auto name = detail::name_impl(static_cast(value)); if (!name.empty()) { os << name; } return os; } template > std::ostream& operator<<(std::ostream& os, std::optional value) { static_assert(std::is_enum_v, "magic_enum::ops::operator<< requires enum type."); if (value.has_value()) { const auto name = detail::name_impl(static_cast(value.value())); if (!name.empty()) { os << name; } } return os; } } // namespace magic_enum::ops } // namespace magic_enum namespace pprint { // Some utility structs to check template specialization template class Ref> struct is_specialization : std::false_type {}; template class Ref, typename... Args> struct is_specialization, Ref> : std::true_type {}; template using to_void = void; template struct is_container : std::false_type {}; template struct is_container().begin()), decltype(std::declval().end()), typename T::value_type >> : std::true_type // will be enabled for iterable objects {}; class PrettyPrinter { private: std::ostream& stream_; std::string line_terminator_; size_t indent_; bool quotes_; bool compact_; public: PrettyPrinter(std::ostream& stream = std::cout) : stream_(stream), line_terminator_("\n"), indent_(2), compact_(false), quotes_(true) {} void line_terminator(const std::string& value) { line_terminator_ = value; } void indent(size_t indent) { indent_ = indent; } void compact(bool value) { compact_ = value; } void quotes(bool value) { quotes_ = value; } template void print(T value) { print_internal(value, 0, line_terminator_, 0); } template void print(std::initializer_list value) { print_internal(value, 0, line_terminator_, 0); } template void print(T value, Targs... Fargs) { print_internal(value, 0, "", 0); print_internal(" ", 0, "", 0); print(Fargs...); } template void print_inline(T value) { print_internal(value, indent_, "", 0); } template void print_inline(std::initializer_list value) { print_internal(value, indent_, "", 0); } template void print_inline(T value, Targs... Fargs) { print_internal(value, indent_, "", 0); print_internal(" ", 0, "", 0); print_inline(Fargs...); } private: template typename std::enable_if::value == true, void>::type print_internal(T value, size_t indent = 0, const std::string& line_terminator = "\n", size_t level = 0) { stream_ << std::string(indent, ' ') << value << line_terminator; } template typename std::enable_if::value == true, void>::type print_internal(T value, size_t indent = 0, const std::string& line_terminator = "\n", size_t level = 0) { stream_ << std::string(indent, ' ') << "nullptr" << line_terminator; } void print_internal(float value, size_t indent = 0, const std::string& line_terminator = "\n", size_t level = 0) { stream_ << std::string(indent, ' ') << value << 'f' << line_terminator; } void print_internal(double value, size_t indent = 0, const std::string& line_terminator = "\n", size_t level = 0) { stream_ << std::string(indent, ' ') << value << line_terminator; } void print_internal(const std::string& value, size_t indent = 0, const std::string& line_terminator = "\n", size_t level = 0) { if (!quotes_) print_internal_without_quotes(value, indent, line_terminator, level); else stream_ << std::string(indent, ' ') << "\"" << value << "\"" << line_terminator; } void print_internal(const char * value, size_t indent = 0, const std::string& line_terminator = "\n", size_t level = 0) { if (!quotes_) print_internal_without_quotes(value, indent, line_terminator, level); else stream_ << std::string(indent, ' ') << "\"" << value << "\"" << line_terminator; } void print_internal(char value, size_t indent = 0, const std::string& line_terminator = "\n", size_t level = 0) { if (!quotes_) print_internal_without_quotes(value, indent, line_terminator, level); else stream_ << std::string(indent, ' ') << "'" << value << "'" << line_terminator; } void print_internal_without_quotes(const std::string& value, size_t indent = 0, const std::string& line_terminator = "\n", size_t level = 0) { stream_ << std::string(indent, ' ') << value << line_terminator; } void print_internal_without_quotes(const char * value, size_t indent = 0, const std::string& line_terminator = "\n", size_t level = 0) { stream_ << std::string(indent, ' ') << value << line_terminator; } void print_internal_without_quotes(char value, size_t indent = 0, const std::string& line_terminator = "\n", size_t level = 0) { stream_ << std::string(indent, ' ') << value << line_terminator; } void print_internal(bool value, size_t indent = 0, const std::string& line_terminator = "\n", size_t level = 0) { stream_ << std::string(indent, ' ') << (value ? "true" : "false") << line_terminator; } template typename std::enable_if::value == true, void>::type print_internal(T value, size_t indent = 0, const std::string& line_terminator = "\n", size_t level = 0) { if (value == nullptr) { return print_internal(nullptr, indent, line_terminator, level); } stream_ << std::string(indent, ' ') << "<" << type(value) << " at " << value << ">" << line_terminator; } std::string demangle(const char* name) { #ifdef __GNUG__ int status = -4; std::unique_ptr res { abi::__cxa_demangle(name, NULL, NULL, &status), std::free }; return (status==0) ? res.get() : name; #else return name; #endif } template std::string type(const T& t) { return demangle(typeid(t).name()); } template typename std::enable_if::value == true, void>::type print_internal(T value, size_t indent = 0, const std::string& line_terminator = "\n", size_t level = 0) { auto enum_string = magic_enum::enum_name(value); if (enum_string.has_value()) { stream_ << std::string(indent, ' ') << enum_string.value() << line_terminator; } else { stream_ << std::string(indent, ' ') << value << line_terminator; } } template typename std::enable_if::value == true && is_to_stream_writable::value == true && std::is_enum::value == false && is_specialization::value == false && is_specialization::value == false && is_specialization::value == false && is_specialization::value == false && is_specialization::value == false && is_specialization::value == false && is_specialization::value == false && is_specialization::value == false && is_specialization::value == false && is_specialization::value == false && is_specialization::value == false && is_specialization::value == false && is_specialization::value == false && is_specialization::value == false && is_specialization::value == false && is_specialization::value == false && is_specialization::value == false && is_specialization::value == false && is_specialization::value == false, void>::type print_internal(T value, size_t indent = 0, const std::string& line_terminator = "\n", size_t level = 0) { stream_ << std::string(indent, ' ') << value << line_terminator; } template typename std::enable_if::value == true && is_to_stream_writable::value == false && std::is_enum::value == false && is_specialization::value == false && is_specialization::value == false && is_specialization::value == false && is_specialization::value == false && is_specialization::value == false && is_specialization::value == false && is_specialization::value == false && is_specialization::value == false && is_specialization::value == false && is_specialization::value == false && is_specialization::value == false && is_specialization::value == false && is_specialization::value == false && is_specialization::value == false && is_specialization::value == false && is_specialization::value == false && is_specialization::value == false && is_specialization::value == false && is_specialization::value == false, void>::type print_internal(T value, size_t indent = 0, const std::string& line_terminator = "\n", size_t level = 0) { stream_ << std::string(indent, ' ') << "" << line_terminator; } template typename std::enable_if::value == true, void>::type print_internal(T value, size_t indent = 0, const std::string& line_terminator = "\n", size_t level = 0) { stream_ << std::string(indent, ' ') << "" << line_terminator; } template typename std::enable_if::value, void>::type print_internal(const Container& value, size_t indent = 0, const std::string& line_terminator = "\n", size_t level = 0) { typedef typename Container::value_type T; if (level == 0 && !compact_) { if (value.size() == 0) { print_internal_without_quotes("[", 0, ""); } else if (value.size() == 1) { print_internal_without_quotes("[", 0, ""); print_internal(value.front(), 0, "", level + 1); } else if (value.size() > 0) { print_internal_without_quotes("[", 0, "\n"); print_internal(value.front(), indent + indent_, "", level + 1); if (value.size() > 1 && is_container::value == false) print_internal_without_quotes(", ", 0, "\n"); else if (is_container::value) print_internal_without_quotes(", ", 0, "\n"); for (size_t i = 1; i < value.size() - 1; i++) { print_internal(value[i], indent + indent_, "", level + 1); if (is_container::value == false) print_internal_without_quotes(", ", 0, "\n"); else print_internal_without_quotes(", ", 0, "\n"); } if (value.size() > 1) { print_internal(value.back(), indent + indent_, "\n", level + 1); } } if (value.size() == 0) print_internal_without_quotes("]", indent, ""); else if (is_container::value == false) print_internal_without_quotes("]", indent, ""); else print_internal_without_quotes(line_terminator_ + "]", indent, ""); print_internal_without_quotes(line_terminator_, 0, ""); } else { if (value.size() == 0) { print_internal_without_quotes("[", indent, ""); } else if (value.size() == 1) { print_internal_without_quotes("[", indent, ""); print_internal(value.front(), 0, "", level + 1); } else if (value.size() > 0) { print_internal_without_quotes("[", indent, ""); print_internal(value.front(), 0, "", level + 1); if (value.size() > 1) print_internal_without_quotes(", ", 0, ""); for (size_t i = 1; i < value.size() - 1; i++) { print_internal(value[i], 0, "", level + 1); print_internal_without_quotes(", ", 0, ""); } if (value.size() > 1) { print_internal(value.back(), 0, "", level + 1); } } print_internal_without_quotes("]", 0, ""); if (level == 0 && compact_) print_internal_without_quotes(line_terminator_, 0, ""); } } template void print_internal(const std::array& value, size_t indent = 0, const std::string& line_terminator = "\n", size_t level = 0) { if (level == 0 && !compact_) { if (value.size() == 0) { print_internal_without_quotes("[", 0, ""); } else if (value.size() == 1) { print_internal_without_quotes("[", 0, ""); print_internal(value.front(), 0, "", level + 1); } else if (value.size() > 0) { print_internal_without_quotes("[", 0, "\n"); print_internal(value.front(), indent + indent_, "", level + 1); if (value.size() > 1 && is_container::value == false) print_internal_without_quotes(", ", 0, "\n"); else if (is_container::value) print_internal_without_quotes(", ", 0, "\n"); for (size_t i = 1; i < value.size() - 1; i++) { print_internal(value[i], indent + indent_, "", level + 1); if (is_container::value == false) print_internal_without_quotes(", ", 0, "\n"); else print_internal_without_quotes(", ", 0, "\n"); } if (value.size() > 1) { print_internal(value.back(), indent + indent_, "\n", level + 1); } } if (value.size() == 0) print_internal_without_quotes("]", indent, ""); else if (is_container::value == false) print_internal_without_quotes("]", indent, ""); else print_internal_without_quotes(line_terminator_ + "]", indent, ""); print_internal_without_quotes(line_terminator_, 0, ""); } else { if (value.size() == 0) { print_internal_without_quotes("[", indent, ""); } else if (value.size() == 1) { print_internal_without_quotes("[", indent, ""); print_internal(value.front(), 0, "", level + 1); } else if (value.size() > 0) { print_internal_without_quotes("[", indent, ""); print_internal(value.front(), 0, "", level + 1); if (value.size() > 1) print_internal_without_quotes(", ", 0, ""); for (size_t i = 1; i < value.size() - 1; i++) { print_internal(value[i], 0, "", level + 1); print_internal_without_quotes(", ", 0, ""); } if (value.size() > 1) { print_internal(value.back(), 0, "", level + 1); } } print_internal_without_quotes("]", 0, ""); if (level == 0 && compact_) print_internal_without_quotes(line_terminator_, 0, ""); } } template typename std::enable_if::value || is_specialization::value, void>::type print_internal(const Container& value, size_t indent = 0, const std::string& line_terminator = "\n", size_t level = 0) { typedef typename Container::value_type T; if (level == 0 && !compact_) { if (value.size() == 0) { print_internal_without_quotes("[", 0, ""); } else if (value.size() == 1) { print_internal_without_quotes("[", 0, ""); print_internal(value.front(), 0, "", level + 1); } else if (value.size() > 0) { print_internal_without_quotes("[", 0, "\n"); print_internal(value.front(), indent + indent_, "", level + 1); if (value.size() > 1 && is_container::value == false) print_internal_without_quotes(", ", 0, "\n"); else if (is_container::value) print_internal_without_quotes(", ", 0, "\n"); typename Container::const_iterator iterator; for (iterator = std::next(value.begin()); iterator != std::prev(value.end()); ++iterator) { print_internal(*iterator, indent + indent_, "", level + 1); if (is_container::value == false) print_internal_without_quotes(", ", 0, "\n"); else print_internal_without_quotes(", ", 0, "\n"); } if (value.size() > 1) { print_internal(value.back(), indent + indent_, "\n", level + 1); } } if (value.size() == 0) print_internal_without_quotes("]", indent, ""); else if (is_container::value == false) print_internal_without_quotes("]", indent, ""); else print_internal_without_quotes(line_terminator_ + "]", indent, ""); print_internal_without_quotes(line_terminator_, 0, ""); } else { if (value.size() == 0) { print_internal_without_quotes("[", indent, ""); } else if (value.size() == 1) { print_internal_without_quotes("[", indent, ""); print_internal(value.front(), 0, "", level + 1); } else if (value.size() > 0) { print_internal_without_quotes("[", indent, ""); print_internal(value.front(), 0, "", level + 1); if (value.size() > 1) print_internal_without_quotes(", ", 0, ""); typename Container::const_iterator iterator; for (iterator = std::next(value.begin()); iterator != std::prev(value.end()); ++iterator) { print_internal(*iterator, 0, "", level + 1); print_internal_without_quotes(", ", 0, ""); } if (value.size() > 1) { print_internal(value.back(), 0, "", level + 1); } } print_internal_without_quotes("]", 0, ""); if (level == 0 && compact_) print_internal_without_quotes(line_terminator_, 0, ""); } } template typename std::enable_if::value || is_specialization::value || is_specialization::value || is_specialization::value, void>::type print_internal(const Container& value, size_t indent = 0, const std::string& line_terminator = "\n", size_t level = 0) { typedef typename Container::value_type T; if (level == 0 && !compact_) { if (value.size() == 0) { print_internal_without_quotes("{", 0, ""); } else if (value.size() == 1) { print_internal_without_quotes("{", 0, ""); print_internal(*(value.begin()), 0, "", level + 1); } else if (value.size() > 0) { print_internal_without_quotes("{", 0, "\n"); print_internal(*(value.begin()), indent + indent_, "", level + 1); if (value.size() > 1 && is_container::value == false) print_internal_without_quotes(", ", 0, "\n"); else if (is_container::value) print_internal_without_quotes(", ", 0, "\n"); typename Container::const_iterator iterator; for (iterator = std::next(value.begin()); iterator != std::prev(value.end()); ++iterator) { print_internal(*iterator, indent + indent_, "", level + 1); if (is_container::value == false) print_internal_without_quotes(", ", 0, "\n"); else print_internal_without_quotes(", ", 0, "\n"); } if (value.size() > 1) { print_internal(*(std::prev(value.end())), indent + indent_, "\n", level + 1); } } if (value.size() == 0) print_internal_without_quotes("}", indent, ""); else if (is_container::value == false) print_internal_without_quotes("}", indent, ""); else print_internal_without_quotes(line_terminator_ + "}", indent, ""); print_internal_without_quotes(line_terminator_, 0, ""); } else { if (value.size() == 0) { print_internal_without_quotes("{", indent, ""); } else if (value.size() == 1) { print_internal_without_quotes("{", indent, ""); print_internal(*(value.begin()), 0, "", level + 1); } else if (value.size() > 0) { print_internal_without_quotes("{", indent, ""); print_internal(*(value.begin()), 0, "", level + 1); if (value.size() > 1) print_internal_without_quotes(", ", 0, ""); typename Container::const_iterator iterator; for (iterator = std::next(value.begin()); iterator != std::prev(value.end()); ++iterator) { print_internal(*iterator, 0, "", level + 1); print_internal_without_quotes(", ", 0, ""); } if (value.size() > 1) { print_internal(*(std::prev(value.end())), 0, "", level + 1); } } print_internal_without_quotes("}", 0, ""); if (level == 0 && compact_) print_internal_without_quotes(line_terminator_, 0, ""); } } template typename std::enable_if::value == true || is_specialization::value == true || is_specialization::value == true || is_specialization::value == true, void>::type print_internal(const T& value, size_t indent = 0, const std::string& line_terminator = "\n", size_t level = 0) { typedef typename T::mapped_type Value; if (level == 0 && !compact_) { if (value.size() == 0) { print_internal_without_quotes("{", 0, ""); } else if (value.size() == 1) { print_internal_without_quotes("{", 0, ""); for (auto& kvpair : value) { print_internal(kvpair.first, 0, "", level + 1); print_internal_without_quotes(" : ", 0, ""); print_internal(kvpair.second, 0, "", level + 1); } } else if (value.size() > 0) { size_t count = 0; for (auto& kvpair : value) { if (count == 0) { print_internal_without_quotes("{", 0, "\n"); print_internal(kvpair.first, indent + indent_, "", level + 1); print_internal_without_quotes(" : ", 0, ""); print_internal(kvpair.second, 0, "", level + 1); if (value.size() > 1 && is_container::value == false) print_internal_without_quotes(", ", 0, "\n"); else if (is_container::value) print_internal_without_quotes(", ", 0, "\n"); } else if (count + 1 < value.size()) { print_internal(kvpair.first, indent + indent_, "", level + 1); print_internal_without_quotes(" : ", 0, ""); print_internal(kvpair.second, 0, "", level + 1); if (is_container::value == false) print_internal_without_quotes(", ", 0, "\n"); else print_internal_without_quotes(", ", 0, "\n"); } else { print_internal(kvpair.first, indent + indent_, "", level + 1); print_internal_without_quotes(" : ", 0, ""); print_internal(kvpair.second, 0, "\n", level + 1); } count += 1; } } if (value.size() == 0) print_internal_without_quotes("}", indent, ""); else if (is_container::value == false) print_internal_without_quotes("}", indent, ""); else print_internal_without_quotes(line_terminator_ + "}", indent, ""); print_internal_without_quotes(line_terminator_, 0, ""); } else { if (value.size() == 0) { print_internal_without_quotes("{", indent, ""); } else if (value.size() == 1) { print_internal_without_quotes("{", indent, ""); for (auto& kvpair : value) { print_internal(kvpair.first, 0, "", level + 1); print_internal_without_quotes(" : ", 0, ""); print_internal(kvpair.second, 0, "", level + 1); } } else if (value.size() > 0) { size_t count = 0; for (auto& kvpair : value) { if (count == 0) { print_internal_without_quotes("{", indent, ""); print_internal(kvpair.first, 0, "", level + 1); print_internal_without_quotes(" : ", 0, ""); print_internal(kvpair.second, 0, "", level + 1); print_internal_without_quotes(", ", 0, ""); } else if (count + 1 < value.size()) { print_internal(kvpair.first, indent + indent_, "", level + 1); print_internal_without_quotes(" : ", 0, ""); print_internal(kvpair.second, 0, "", level + 1); print_internal_without_quotes(", ", 0, ""); } else { print_internal(kvpair.first, 0, "", level + 1); print_internal_without_quotes(" : ", 0, ""); print_internal(kvpair.second, 0, "", level + 1); } count += 1; } } print_internal_without_quotes("}", 0, ""); if (level == 0 && compact_) print_internal_without_quotes(line_terminator_, 0, ""); } } template void print_internal(std::pair value, size_t indent = 0, const std::string& line_terminator = "\n", size_t level = 0) { print_internal_without_quotes("(", indent, ""); print_internal(value.first, 0, ""); print_internal_without_quotes(", ", 0, ""); print_internal(value.second, 0, ""); print_internal_without_quotes(")", 0, line_terminator, level); } template void print_internal(std::variant value, size_t indent = 0, const std::string& line_terminator = "\n", size_t level = 0) { std::visit([=](const auto& value) { print_internal(value, indent, line_terminator, level); }, value); } template void print_internal(std::optional value, size_t indent = 0, const std::string& line_terminator = "\n", size_t level = 0) { if (value) { print_internal(value.value(), indent, line_terminator, level); } else { print_internal_without_quotes("nullopt", indent, line_terminator, level); } } template typename std::enable_if::value, void>::type print_internal(const Container& value, size_t indent = 0, const std::string& line_terminator = "\n", size_t level = 0) { auto current_compact = compact_; compact_ = true; typedef typename Container::value_type T; auto local = value; std::vector local_vector; while (!local.empty()) { local_vector.push_back(local.front()); local.pop(); } print_internal(local_vector, indent, line_terminator, level); compact_ = current_compact; } template typename std::enable_if::value, void>::type print_internal(const Container& value, size_t indent = 0, const std::string& line_terminator = "\n", size_t level = 0) { auto current_compact = compact_; compact_ = true; typedef typename Container::value_type T; auto local = value; std::vector local_vector; while (!local.empty()) { local_vector.push_back(local.top()); local.pop(); } print_internal(local_vector, indent, line_terminator, level); compact_ = current_compact; } template void print_internal(std::initializer_list value, size_t indent = 0, const std::string& line_terminator = "\n", size_t level = 0) { std::multiset local; for(const T& x : value) { local.insert(x); } print_internal(local, indent, line_terminator_, level); } template typename std::enable_if::value, void>::type print_internal(const Container& value, size_t indent = 0, const std::string& line_terminator = "\n", size_t level = 0) { bool current_compact = compact_; compact_ = false; // Need to print a stack like its a stack, i.e., vertical typedef typename Container::value_type T; auto local = value; std::vector local_vector; while (!local.empty()) { local_vector.push_back(local.top()); local.pop(); } print_internal(local_vector, indent, line_terminator, level); compact_ = current_compact; } template void print_internal(const std::tuple& value, size_t indent = 0, const std::string& line_terminator = "\n", size_t level = 0) { stream_ << std::string(indent, ' ') << value << line_terminator; } template void print_internal(const std::complex& value, size_t indent = 0, const std::string& line_terminator = "\n", size_t level = 0) { stream_ << std::string(indent, ' ') << "(" << value.real() << " + " << value.imag() << "i)" << line_terminator; } template typename std::enable_if::value || is_specialization::value || is_specialization::value, void>::type print_internal(const Pointer& value, size_t indent = 0, const std::string& line_terminator = "\n", size_t level = 0) { stream_ << std::string(indent, ' ') << "<" << type(value) << " at " << &value << ">" << line_terminator; } }; }