#if SIMDJSON_SUPPORTS_CONCEPTS #ifndef SIMDJSON_ONDEMAND_DESERIALIZE_H #ifndef SIMDJSON_CONDITIONAL_INCLUDE #define SIMDJSON_ONDEMAND_DESERIALIZE_H #include "simdjson/generic/ondemand/base.h" #include "simdjson/generic/ondemand/array.h" #endif // SIMDJSON_CONDITIONAL_INCLUDE namespace simdjson { struct deserialize_tag; /// These types are deserializable in a built-in way template struct is_builtin_deserializable : std::false_type {}; template <> struct is_builtin_deserializable : std::true_type {}; template <> struct is_builtin_deserializable : std::true_type {}; template <> struct is_builtin_deserializable : std::true_type {}; template <> struct is_builtin_deserializable : std::true_type {}; template <> struct is_builtin_deserializable : std::true_type {}; template <> struct is_builtin_deserializable : std::true_type {}; template <> struct is_builtin_deserializable : std::true_type {}; template <> struct is_builtin_deserializable : std::true_type {}; template <> struct is_builtin_deserializable : std::true_type {}; template concept is_builtin_deserializable_v = is_builtin_deserializable::value; template concept custom_deserializable = tag_invocable; template concept deserializable = custom_deserializable || is_builtin_deserializable_v || concepts::optional_type; template concept nothrow_custom_deserializable = nothrow_tag_invocable; // built-in types are noexcept and if an error happens, the value simply gets ignored and the error is returned. template concept nothrow_deserializable = nothrow_custom_deserializable || is_builtin_deserializable_v; /// Deserialize Tag inline constexpr struct deserialize_tag { using array_type = SIMDJSON_IMPLEMENTATION::ondemand::array; using object_type = SIMDJSON_IMPLEMENTATION::ondemand::object; using value_type = SIMDJSON_IMPLEMENTATION::ondemand::value; using document_type = SIMDJSON_IMPLEMENTATION::ondemand::document; using document_reference_type = SIMDJSON_IMPLEMENTATION::ondemand::document_reference; // Customization Point for array template requires custom_deserializable simdjson_warn_unused constexpr /* error_code */ auto operator()(array_type &object, T& output) const noexcept(nothrow_custom_deserializable) { return tag_invoke(*this, object, output); } // Customization Point for object template requires custom_deserializable simdjson_warn_unused constexpr /* error_code */ auto operator()(object_type &object, T& output) const noexcept(nothrow_custom_deserializable) { return tag_invoke(*this, object, output); } // Customization Point for value template requires custom_deserializable simdjson_warn_unused constexpr /* error_code */ auto operator()(value_type &object, T& output) const noexcept(nothrow_custom_deserializable) { return tag_invoke(*this, object, output); } // Customization Point for document template requires custom_deserializable simdjson_warn_unused constexpr /* error_code */ auto operator()(document_type &object, T& output) const noexcept(nothrow_custom_deserializable) { return tag_invoke(*this, object, output); } // Customization Point for document reference template requires custom_deserializable simdjson_warn_unused constexpr /* error_code */ auto operator()(document_reference_type &object, T& output) const noexcept(nothrow_custom_deserializable) { return tag_invoke(*this, object, output); } } deserialize{}; } // namespace simdjson #endif // SIMDJSON_ONDEMAND_DESERIALIZE_H #endif // SIMDJSON_SUPPORTS_CONCEPTS