2020-05-15 12:12:32 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <cstdint> // uint8_t
|
|
|
|
#include <utility> // move
|
|
|
|
|
|
|
|
namespace nlohmann
|
|
|
|
{
|
|
|
|
namespace detail
|
|
|
|
{
|
|
|
|
|
|
|
|
/*!
|
|
|
|
@brief an internal type for a backed binary type
|
|
|
|
|
|
|
|
This type is designed to be `binary_t` but with the subtype implementation
|
|
|
|
detail. This type exists so that the user does not have to specify a struct
|
|
|
|
his- or herself with a specific naming scheme in order to override the
|
|
|
|
binary type. I.e. it's for ease of use.
|
|
|
|
*/
|
|
|
|
template<typename BinaryType>
|
2020-05-15 21:21:49 +00:00
|
|
|
class wrapped_binary_t : public BinaryType
|
2020-05-15 12:12:32 +00:00
|
|
|
{
|
2020-05-15 21:21:49 +00:00
|
|
|
public:
|
|
|
|
// to simplify code in binary_reader
|
|
|
|
template<typename BasicJsonType, typename InputAdapterType, typename SAX>
|
|
|
|
friend class binary_reader;
|
|
|
|
|
2020-05-15 12:12:32 +00:00
|
|
|
using binary_t = BinaryType;
|
|
|
|
|
2020-05-15 20:38:18 +00:00
|
|
|
wrapped_binary_t() noexcept(noexcept(binary_t()))
|
|
|
|
: binary_t()
|
|
|
|
{}
|
2020-05-15 12:12:32 +00:00
|
|
|
|
|
|
|
wrapped_binary_t(const binary_t& bint) noexcept(noexcept(binary_t(bint)))
|
|
|
|
: binary_t(bint)
|
|
|
|
{}
|
|
|
|
|
|
|
|
wrapped_binary_t(binary_t&& bint) noexcept(noexcept(binary_t(std::move(bint))))
|
|
|
|
: binary_t(std::move(bint))
|
|
|
|
{}
|
|
|
|
|
|
|
|
wrapped_binary_t(const binary_t& bint,
|
|
|
|
std::uint8_t st) noexcept(noexcept(binary_t(bint)))
|
|
|
|
: binary_t(bint)
|
2020-05-15 21:21:49 +00:00
|
|
|
, m_subtype(st)
|
|
|
|
, m_has_subtype(true)
|
2020-05-15 12:12:32 +00:00
|
|
|
{}
|
|
|
|
|
|
|
|
wrapped_binary_t(binary_t&& bint, std::uint8_t st) noexcept(noexcept(binary_t(std::move(bint))))
|
|
|
|
: binary_t(std::move(bint))
|
2020-05-15 21:21:49 +00:00
|
|
|
, m_subtype(st)
|
|
|
|
, m_has_subtype(true)
|
2020-05-15 12:12:32 +00:00
|
|
|
{}
|
|
|
|
|
2020-05-15 21:21:49 +00:00
|
|
|
/*!
|
|
|
|
@brief set the subtype
|
|
|
|
@param subtype subtype to set (implementation specific)
|
|
|
|
*/
|
|
|
|
void set_subtype(std::uint8_t subtype) noexcept
|
|
|
|
{
|
|
|
|
m_subtype = subtype;
|
|
|
|
m_has_subtype = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
@brief get the subtype
|
|
|
|
@return subtype (implementation specific)
|
|
|
|
*/
|
|
|
|
constexpr std::uint8_t subtype() const noexcept
|
|
|
|
{
|
|
|
|
return m_subtype;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
@brief get whether a subtype was set
|
|
|
|
@return whether a subtype was set
|
|
|
|
*/
|
|
|
|
constexpr bool has_subtype() const noexcept
|
|
|
|
{
|
|
|
|
return m_has_subtype;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
@brief clear the subtype
|
|
|
|
*/
|
|
|
|
void clear_subtype() noexcept
|
|
|
|
{
|
|
|
|
m_subtype = 0;
|
|
|
|
m_has_subtype = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::uint8_t m_subtype = 0;
|
|
|
|
bool m_has_subtype = false;
|
2020-05-15 12:12:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace detail
|
|
|
|
} // namespace nlohmann
|