Eclipse SUMO - Simulation of Urban MObility
Loading...
Searching...
No Matches
nlohmann::detail::serializer< BasicJsonType > Class Template Reference

#include <json.hpp>

Public Member Functions

void dump (const BasicJsonType &val, const bool pretty_print, const bool ensure_ascii, const unsigned int indent_step, const unsigned int current_indent=0)
 internal implementation of the serialization function
 for (std::size_t i=0;i< s.size();++i)
 if (JSON_HEDLEY_LIKELY(state==UTF8_ACCEPT))
serializeroperator= (const serializer &)=delete
serializeroperator= (serializer &&)=delete
 serializer (const serializer &)=delete
 serializer (output_adapter_t< char > s, const char ichar, error_handler_t error_handler_=error_handler_t::strict)
 serializer (serializer &&)=delete
 ~serializer ()=default

Data Fields

JSON_PRIVATE_UNLESS_TESTED : void dump_escaped(const string_t& s
std::size_t bytes = 0
std::size_t bytes_after_last_accept = 0
*the locale s decimal point character const char decimal_point = '\0'
 else
 enable_if_t< std::is_signed< NumberType >::value, int >
 enable_if_t< std::is_unsigned< NumberType >::value, int >
JSON_PRIVATE_UNLESS_TESTED const bool ensure_ascii
*error_handler how to react on decoding errors const error_handler_t error_handler
*the indentation character const char indent_char
*the indentation string string_t indent_string
*a *(hopefully) large enough character buffer std the locale const std::lconv * loc = nullptr
std::uint8_t state = UTF8_ACCEPT
*string buffer std::array< char, 512 > string_buffer {{}}
*the locale s thousand separator character const char thousands_sep = '\0'
std::size_t undumped_chars = 0

Private Types

using binary_char_t = typename BasicJsonType::binary_t::value_type
using number_float_t = typename BasicJsonType::number_float_t
using number_integer_t = typename BasicJsonType::number_integer_t
using number_unsigned_t = typename BasicJsonType::number_unsigned_t
using string_t = typename BasicJsonType::string_t

Static Private Attributes

static constexpr std::uint8_t UTF8_ACCEPT = 0
static constexpr std::uint8_t UTF8_REJECT = 1

Detailed Description

template<typename BasicJsonType>
class nlohmann::detail::serializer< BasicJsonType >

Definition at line 16085 of file json.hpp.

Member Typedef Documentation

◆ binary_char_t

template<typename BasicJsonType>
using nlohmann::detail::serializer< BasicJsonType >::binary_char_t = typename BasicJsonType::binary_t::value_type
private

Definition at line 16091 of file json.hpp.

◆ number_float_t

template<typename BasicJsonType>
using nlohmann::detail::serializer< BasicJsonType >::number_float_t = typename BasicJsonType::number_float_t
private

Definition at line 16088 of file json.hpp.

◆ number_integer_t

template<typename BasicJsonType>
using nlohmann::detail::serializer< BasicJsonType >::number_integer_t = typename BasicJsonType::number_integer_t
private

Definition at line 16089 of file json.hpp.

◆ number_unsigned_t

template<typename BasicJsonType>
using nlohmann::detail::serializer< BasicJsonType >::number_unsigned_t = typename BasicJsonType::number_unsigned_t
private

Definition at line 16090 of file json.hpp.

◆ string_t

template<typename BasicJsonType>
using nlohmann::detail::serializer< BasicJsonType >::string_t = typename BasicJsonType::string_t
private

Definition at line 16087 of file json.hpp.

Constructor & Destructor Documentation

◆ serializer() [1/3]

template<typename BasicJsonType>
nlohmann::detail::serializer< BasicJsonType >::serializer ( output_adapter_t< char > s,
const char ichar,
error_handler_t error_handler_ = error_handler_t::strict )
inline
Parameters
[in]soutput stream to serialize to
[in]icharindentation character to use
[in]error_handler_how to react on decoding errors

Definition at line 16101 of file json.hpp.

References decimal_point, error_handler, indent_char, indent_string, loc, nlohmann::detail::strict, and thousands_sep.

Referenced by operator=(), operator=(), serializer(), and serializer().

Here is the caller graph for this function:

◆ serializer() [2/3]

template<typename BasicJsonType>
nlohmann::detail::serializer< BasicJsonType >::serializer ( const serializer< BasicJsonType > & )
delete

References serializer().

◆ serializer() [3/3]

template<typename BasicJsonType>
nlohmann::detail::serializer< BasicJsonType >::serializer ( serializer< BasicJsonType > && )
delete

References serializer().

◆ ~serializer()

Member Function Documentation

◆ dump()

template<typename BasicJsonType>
void nlohmann::detail::serializer< BasicJsonType >::dump ( const BasicJsonType & val,
const bool pretty_print,
const bool ensure_ascii,
const unsigned int indent_step,
const unsigned int current_indent = 0 )
inline

internal implementation of the serialization function

This function is called by the public member function dump and organizes the serialization internally. The indentation level is propagated as additional parameter. In case of arrays and objects, the function is called recursively.

  • strings and object keys are escaped using escape_string()
  • integer numbers are converted implicitly via operator<<
  • floating-point numbers are converted to a string using "g" format
  • binary values are serialized as objects containing the subtype and the byte array
Parameters
[in]valvalue to serialize
[in]pretty_printwhether the output shall be pretty-printed
[in]ensure_asciiIf ensure_ascii is true, all non-ASCII characters in the output are escaped with \uXXXX sequences, and the result consists of ASCII characters only.
[in]indent_stepthe indent level
[in]current_indentthe current indent level (only used internally)

Definition at line 16141 of file json.hpp.

References nlohmann::detail::array, nlohmann::BasicJsonType(), nlohmann::detail::binary, nlohmann::detail::boolean, nlohmann::detail::discarded, dump(), ensure_ascii, indent_string, JSON_ASSERT, JSON_HEDLEY_UNLIKELY, nlohmann::detail::null, nlohmann::detail::number_float, nlohmann::detail::number_integer, nlohmann::detail::number_unsigned, nlohmann::detail::object, and nlohmann::detail::string.

Referenced by dump().

Here is the caller graph for this function:

◆ for()

◆ if()

Definition at line 16626 of file json.hpp.

References bytes, state, string_buffer, and UTF8_ACCEPT.

◆ operator=() [1/2]

template<typename BasicJsonType>
serializer & nlohmann::detail::serializer< BasicJsonType >::operator= ( const serializer< BasicJsonType > & )
delete

References serializer().

◆ operator=() [2/2]

template<typename BasicJsonType>
serializer & nlohmann::detail::serializer< BasicJsonType >::operator= ( serializer< BasicJsonType > && )
delete

References serializer().

Field Documentation

◆ __pad0__

Definition at line 16410 of file json.hpp.

◆ bytes

template<typename BasicJsonType>
std::size_t nlohmann::detail::serializer< BasicJsonType >::bytes = 0

Definition at line 16429 of file json.hpp.

Referenced by for(), and if().

◆ bytes_after_last_accept

template<typename BasicJsonType>
std::size_t nlohmann::detail::serializer< BasicJsonType >::bytes_after_last_accept = 0

Definition at line 16432 of file json.hpp.

Referenced by for().

◆ decimal_point

template<typename BasicJsonType>
* the locale s decimal point character const char nlohmann::detail::serializer< BasicJsonType >::decimal_point = '\0'

Definition at line 16997 of file json.hpp.

Referenced by serializer().

◆ else

Definition at line 16634 of file json.hpp.

◆ enable_if_t< std::is_signed< NumberType >::value, int >

template<typename BasicJsonType>
nlohmann::detail::serializer< BasicJsonType >::enable_if_t< std::is_signed< NumberType >::value, int >
Initial value:
= 0>
bool is_negative_number(NumberType x)
{
return x < 0;
}
template < typename NumberType

Definition at line 16634 of file json.hpp.

◆ enable_if_t< std::is_unsigned< NumberType >::value, int >

template<typename BasicJsonType>
nlohmann::detail::serializer< BasicJsonType >::enable_if_t< std::is_unsigned< NumberType >::value, int >
Initial value:
= 0 >
bool is_negative_number(NumberType )
{
return false;
}
template < typename NumberType

Definition at line 16634 of file json.hpp.

◆ ensure_ascii

Initial value:
{
std::uint32_t codepoint{}

Definition at line 16425 of file json.hpp.

Referenced by dump(), and for().

◆ error_handler

template<typename BasicJsonType>
* error_handler how to react on decoding errors const error_handler_t nlohmann::detail::serializer< BasicJsonType >::error_handler

Definition at line 17008 of file json.hpp.

Referenced by for(), and serializer().

◆ indent_char

template<typename BasicJsonType>
* the indentation character const char nlohmann::detail::serializer< BasicJsonType >::indent_char

Definition at line 17003 of file json.hpp.

Referenced by serializer().

◆ indent_string

template<typename BasicJsonType>
* the indentation string string_t nlohmann::detail::serializer< BasicJsonType >::indent_string

Definition at line 17005 of file json.hpp.

Referenced by dump(), and serializer().

◆ loc

template<typename BasicJsonType>
* a* (hopefully) large enough character buffer std the locale const std::lconv* nlohmann::detail::serializer< BasicJsonType >::loc = nullptr

Definition at line 16993 of file json.hpp.

Referenced by serializer().

◆ state

template<typename BasicJsonType>
std::uint8_t nlohmann::detail::serializer< BasicJsonType >::state = UTF8_ACCEPT

Definition at line 16428 of file json.hpp.

Referenced by for(), and if().

◆ string_buffer

template<typename BasicJsonType>
* string buffer std::array<char, 512> nlohmann::detail::serializer< BasicJsonType >::string_buffer {{}}

Definition at line 17000 of file json.hpp.

Referenced by for(), and if().

◆ thousands_sep

template<typename BasicJsonType>
* the locale s thousand separator character const char nlohmann::detail::serializer< BasicJsonType >::thousands_sep = '\0'

Definition at line 16995 of file json.hpp.

Referenced by serializer().

◆ undumped_chars

template<typename BasicJsonType>
std::size_t nlohmann::detail::serializer< BasicJsonType >::undumped_chars = 0

Definition at line 16433 of file json.hpp.

Referenced by for().

◆ UTF8_ACCEPT

template<typename BasicJsonType>
std::uint8_t nlohmann::detail::serializer< BasicJsonType >::UTF8_ACCEPT = 0
staticconstexprprivate

Definition at line 16092 of file json.hpp.

Referenced by for(), and if().

◆ UTF8_REJECT

template<typename BasicJsonType>
std::uint8_t nlohmann::detail::serializer< BasicJsonType >::UTF8_REJECT = 1
staticconstexprprivate

Definition at line 16093 of file json.hpp.

Referenced by for().


The documentation for this class was generated from the following file: