From ca4f24883bbd55e57898a191fd8481799dc51ab5 Mon Sep 17 00:00:00 2001 From: Shxde <112267394+Shxde1@users.noreply.github.com> Date: Wed, 10 Jul 2024 19:34:08 -0400 Subject: [PATCH 01/19] Update auth.cpp --- auth.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/auth.cpp b/auth.cpp index 8a7f493..46dca20 100644 --- a/auth.cpp +++ b/auth.cpp @@ -821,7 +821,6 @@ void KeyAuth::api::upgrade(std::string username, std::string key) { error("Signature checksum failed. Request was tampered with or session ended most likely. & echo: & echo Message: " + message); } - json[(XorStr("success"))] = false; load_response_data(json); } From 3ac2547cf54bfbaa415a3f27e5591d48767b25f9 Mon Sep 17 00:00:00 2001 From: Shxde <112267394+Shxde1@users.noreply.github.com> Date: Sat, 21 Dec 2024 13:07:58 -0500 Subject: [PATCH 02/19] Delete xorstr.hpp --- xorstr.hpp | 157 ----------------------------------------------------- 1 file changed, 157 deletions(-) delete mode 100644 xorstr.hpp diff --git a/xorstr.hpp b/xorstr.hpp deleted file mode 100644 index 19a4461..0000000 --- a/xorstr.hpp +++ /dev/null @@ -1,157 +0,0 @@ -#pragma once - -#include -#include - -namespace -{ - constexpr int const_atoi(char c) - { - return c - '0'; - } -} - -#ifdef _MSC_VER -#define ALWAYS_INLINE __forceinline -#else -#define ALWAYS_INLINE __attribute__((always_inline)) -#endif - -template -class _Basic_XorStr -{ - using value_type = typename _string_type::value_type; - static constexpr auto _length_minus_one = _length - 1; - -public: - constexpr ALWAYS_INLINE _Basic_XorStr(value_type const (&str)[_length]) - : _Basic_XorStr(str, std::make_index_sequence<_length_minus_one>()) - { - - } - - inline auto c_str() const - { - decrypt(); - - return data; - } - - inline auto str() const - { - decrypt(); - - return _string_type(data, data + _length_minus_one); - } - - inline operator _string_type() const - { - return str(); - } - -private: - template - constexpr ALWAYS_INLINE _Basic_XorStr(value_type const (&str)[_length], std::index_sequence) - : data{ crypt(str[indices], indices)..., '\0' }, - encrypted(true) - { - - } - - static constexpr auto XOR_KEY = static_cast( - const_atoi(__TIME__[7]) + - const_atoi(__TIME__[6]) * 10 + - const_atoi(__TIME__[4]) * 60 + - const_atoi(__TIME__[3]) * 600 + - const_atoi(__TIME__[1]) * 3600 + - const_atoi(__TIME__[0]) * 36000 - ); - - static ALWAYS_INLINE constexpr auto crypt(value_type c, size_t i) - { - return static_cast(c ^ (XOR_KEY + i)); - } - - inline void decrypt() const - { - if (encrypted) - { - for (size_t t = 0; t < _length_minus_one; t++) - { - data[t] = crypt(data[t], t); - } - encrypted = false; - } - } - - mutable value_type data[_length]; - mutable bool encrypted; -}; -//--------------------------------------------------------------------------- -template -using XorStrA = _Basic_XorStr; -template -using XorStrW = _Basic_XorStr; -template -using XorStrU16 = _Basic_XorStr; -template -using XorStrU32 = _Basic_XorStr; -//--------------------------------------------------------------------------- -template -inline auto operator==(const _Basic_XorStr<_string_type, _length>& lhs, const _Basic_XorStr<_string_type, _length2>& rhs) -{ - static_assert(_length == _length2, "XorStr== different length"); - - return _length == _length2 && lhs.str() == rhs.str(); -} -//--------------------------------------------------------------------------- -template -inline auto operator==(const _string_type& lhs, const _Basic_XorStr<_string_type, _length>& rhs) -{ - return lhs.size() == _length && lhs == rhs.str(); -} -//--------------------------------------------------------------------------- -template -inline auto& operator<<(_stream_type& lhs, const _Basic_XorStr<_string_type, _length>& rhs) -{ - lhs << rhs.c_str(); - - return lhs; -} -//--------------------------------------------------------------------------- -template -inline auto operator+(const _Basic_XorStr<_string_type, _length>& lhs, const _Basic_XorStr<_string_type, _length2>& rhs) -{ - return lhs.str() + rhs.str(); -} -//--------------------------------------------------------------------------- -template -inline auto operator+(const _string_type& lhs, const _Basic_XorStr<_string_type, _length>& rhs) -{ - return lhs + rhs.str(); -} -//--------------------------------------------------------------------------- -template -constexpr ALWAYS_INLINE auto XorStr(char const (&str)[_length]) -{ - return XorStrA<_length>(str); -} -//--------------------------------------------------------------------------- -template -constexpr ALWAYS_INLINE auto XorStr(wchar_t const (&str)[_length]) -{ - return XorStrW<_length>(str); -} -//--------------------------------------------------------------------------- -template -constexpr ALWAYS_INLINE auto XorStr(char16_t const (&str)[_length]) -{ - return XorStrU16<_length>(str); -} -//--------------------------------------------------------------------------- -template -constexpr ALWAYS_INLINE auto XorStr(char32_t const (&str)[_length]) -{ - return XorStrU32<_length>(str); -} -//--------------------------------------------------------------------------- \ No newline at end of file From 6873b6895cb71f4f0373eaafddd20b22ce071db5 Mon Sep 17 00:00:00 2001 From: Shxde <112267394+Shxde1@users.noreply.github.com> Date: Sat, 21 Dec 2024 13:08:32 -0500 Subject: [PATCH 03/19] Delete utils.hpp --- utils.hpp | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 utils.hpp diff --git a/utils.hpp b/utils.hpp deleted file mode 100644 index a2e0343..0000000 --- a/utils.hpp +++ /dev/null @@ -1,10 +0,0 @@ -#pragma once -#include -#include - -namespace utils -{ - std::string get_hwid(); - std::time_t string_to_timet(std::string timestamp); - std::tm timet_to_tm(time_t timestamp); -} \ No newline at end of file From e30d68dd7aeadcc63edba8c5d9c98c0712c3f6e2 Mon Sep 17 00:00:00 2001 From: Shxde <112267394+Shxde1@users.noreply.github.com> Date: Sat, 21 Dec 2024 13:08:38 -0500 Subject: [PATCH 04/19] Delete utils.cpp --- utils.cpp | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 utils.cpp diff --git a/utils.cpp b/utils.cpp deleted file mode 100644 index 0b09151..0000000 --- a/utils.cpp +++ /dev/null @@ -1,26 +0,0 @@ -#include "utils.hpp" - -#include - -std::string utils::get_hwid() { - ATL::CAccessToken accessToken; - ATL::CSid currentUserSid; - if (accessToken.GetProcessToken(TOKEN_READ | TOKEN_QUERY) && - accessToken.GetUser(¤tUserSid)) - return std::string(CT2A(currentUserSid.Sid())); - return "none"; -} - -std::time_t utils::string_to_timet(std::string timestamp) { - auto cv = strtol(timestamp.c_str(), NULL, 10); - - return (time_t)cv; -} - -std::tm utils::timet_to_tm(time_t timestamp) { - std::tm context; - - localtime_s(&context, ×tamp); - - return context; -} From cfb13d7712a87c6f1c8c01ce38ad4d5d18b6e4f1 Mon Sep 17 00:00:00 2001 From: Shxde <112267394+Shxde1@users.noreply.github.com> Date: Sat, 21 Dec 2024 13:08:45 -0500 Subject: [PATCH 05/19] Delete sha256.h --- sha256.h | 78 -------------------------------------------------------- 1 file changed, 78 deletions(-) delete mode 100644 sha256.h diff --git a/sha256.h b/sha256.h deleted file mode 100644 index 269e3f1..0000000 --- a/sha256.h +++ /dev/null @@ -1,78 +0,0 @@ -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -// WjCryptLib_Sha256 -// -// Implementation of SHA256 hash function. -// Original author: Tom St Denis, tomstdenis@gmail.com, http://libtom.org -// Modified by WaterJuice retaining Public Domain license. -// -// This is free and unencumbered software released into the public domain - -// June 2013 waterjuice.org -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -#pragma once - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -// IMPORTS -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -#include -#include - -typedef struct { - uint64_t length; - uint32_t state[8]; - uint32_t curlen; - uint8_t buf[64]; -} Sha256Context; - -#define SHA256_HASH_SIZE (256 / 8) - -typedef struct { - uint8_t bytes[SHA256_HASH_SIZE]; -} SHA256_HASH; - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -// PUBLIC FUNCTIONS -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -// Sha256Initialise -// -// Initialises a SHA256 Context. Use this to initialise/reset a context. -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -void Sha256Initialise(Sha256Context* Context // [out] -); - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -// Sha256Update -// -// Adds data to the SHA256 context. This will process the data and update the -// internal state of the context. Keep on calling this function until all the -// data has been added. Then call Sha256Finalise to calculate the hash. -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -void Sha256Update(Sha256Context* Context, // [in out] - void const* Buffer, // [in] - uint32_t BufferSize // [in] -); - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -// Sha256Finalise -// -// Performs the final calculation of the hash and returns the digest (32 byte -// buffer containing 256bit hash). After calling this, Sha256Initialised must -// be used to reuse the context. -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -void Sha256Finalise(Sha256Context* Context, // [in out] - SHA256_HASH* Digest // [out] -); - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -// Sha256Calculate -// -// Combines Sha256Initialise, Sha256Update, and Sha256Finalise into one -// function. Calculates the SHA256 hash of the buffer. -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -void Sha256Calculate(void const* Buffer, // [in] - uint32_t BufferSize, // [in] - SHA256_HASH* Digest // [in] -); From ddab76b1924ee1819eb6b05e93e8a535a59a6e7e Mon Sep 17 00:00:00 2001 From: Shxde <112267394+Shxde1@users.noreply.github.com> Date: Sat, 21 Dec 2024 13:08:51 -0500 Subject: [PATCH 06/19] Delete sha256.c --- sha256.c | 267 ------------------------------------------------------- 1 file changed, 267 deletions(-) delete mode 100644 sha256.c diff --git a/sha256.c b/sha256.c deleted file mode 100644 index be1a5e1..0000000 --- a/sha256.c +++ /dev/null @@ -1,267 +0,0 @@ -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -// WjCryptLib_Sha256 -// -// Implementation of SHA256 hash function. -// Original author: Tom St Denis, tomstdenis@gmail.com, http://libtom.org -// Modified by WaterJuice retaining Public Domain license. -// -// This is free and unencumbered software released into the public domain - -// June 2013 waterjuice.org -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -// IMPORTS -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -#include "sha256.h" -#include - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -// MACROS -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -#define ror(value, bits) (((value) >> (bits)) | ((value) << (32 - (bits)))) - -#define MIN(x, y) (((x) < (y)) ? (x) : (y)) - -#define STORE32H(x, y) \ - { \ - (y)[0] = (uint8_t)(((x) >> 24) & 255); \ - (y)[1] = (uint8_t)(((x) >> 16) & 255); \ - (y)[2] = (uint8_t)(((x) >> 8) & 255); \ - (y)[3] = (uint8_t)((x)&255); \ - } - -#define LOAD32H(x, y) \ - { \ - x = ((uint32_t)((y)[0] & 255) << 24) | ((uint32_t)((y)[1] & 255) << 16) | \ - ((uint32_t)((y)[2] & 255) << 8) | ((uint32_t)((y)[3] & 255)); \ - } - -#define STORE64H(x, y) \ - { \ - (y)[0] = (uint8_t)(((x) >> 56) & 255); \ - (y)[1] = (uint8_t)(((x) >> 48) & 255); \ - (y)[2] = (uint8_t)(((x) >> 40) & 255); \ - (y)[3] = (uint8_t)(((x) >> 32) & 255); \ - (y)[4] = (uint8_t)(((x) >> 24) & 255); \ - (y)[5] = (uint8_t)(((x) >> 16) & 255); \ - (y)[6] = (uint8_t)(((x) >> 8) & 255); \ - (y)[7] = (uint8_t)((x)&255); \ - } - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -// CONSTANTS -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -// The K array -static const uint32_t K[64] = { - 0x428a2f98UL, 0x71374491UL, 0xb5c0fbcfUL, 0xe9b5dba5UL, 0x3956c25bUL, - 0x59f111f1UL, 0x923f82a4UL, 0xab1c5ed5UL, 0xd807aa98UL, 0x12835b01UL, - 0x243185beUL, 0x550c7dc3UL, 0x72be5d74UL, 0x80deb1feUL, 0x9bdc06a7UL, - 0xc19bf174UL, 0xe49b69c1UL, 0xefbe4786UL, 0x0fc19dc6UL, 0x240ca1ccUL, - 0x2de92c6fUL, 0x4a7484aaUL, 0x5cb0a9dcUL, 0x76f988daUL, 0x983e5152UL, - 0xa831c66dUL, 0xb00327c8UL, 0xbf597fc7UL, 0xc6e00bf3UL, 0xd5a79147UL, - 0x06ca6351UL, 0x14292967UL, 0x27b70a85UL, 0x2e1b2138UL, 0x4d2c6dfcUL, - 0x53380d13UL, 0x650a7354UL, 0x766a0abbUL, 0x81c2c92eUL, 0x92722c85UL, - 0xa2bfe8a1UL, 0xa81a664bUL, 0xc24b8b70UL, 0xc76c51a3UL, 0xd192e819UL, - 0xd6990624UL, 0xf40e3585UL, 0x106aa070UL, 0x19a4c116UL, 0x1e376c08UL, - 0x2748774cUL, 0x34b0bcb5UL, 0x391c0cb3UL, 0x4ed8aa4aUL, 0x5b9cca4fUL, - 0x682e6ff3UL, 0x748f82eeUL, 0x78a5636fUL, 0x84c87814UL, 0x8cc70208UL, - 0x90befffaUL, 0xa4506cebUL, 0xbef9a3f7UL, 0xc67178f2UL}; - -#define BLOCK_SIZE 64 - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -// INTERNAL FUNCTIONS -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -// Various logical functions -#define Ch(x, y, z) (z ^ (x & (y ^ z))) -#define Maj(x, y, z) (((x | y) & z) | (x & y)) -#define S(x, n) ror((x), (n)) -#define R(x, n) (((x)&0xFFFFFFFFUL) >> (n)) -#define Sigma0(x) (S(x, 2) ^ S(x, 13) ^ S(x, 22)) -#define Sigma1(x) (S(x, 6) ^ S(x, 11) ^ S(x, 25)) -#define Gamma0(x) (S(x, 7) ^ S(x, 18) ^ R(x, 3)) -#define Gamma1(x) (S(x, 17) ^ S(x, 19) ^ R(x, 10)) - -#define Sha256Round(a, b, c, d, e, f, g, h, i) \ - t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i]; \ - t1 = Sigma0(a) + Maj(a, b, c); \ - d += t0; \ - h = t0 + t1; - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -// TransformFunction -// -// Compress 512-bits -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -static void TransformFunction(Sha256Context* Context, uint8_t const* Buffer) { - uint32_t S[8]; - uint32_t W[64]; - uint32_t t0; - uint32_t t1; - uint32_t t; - int i; - - // Copy state into S - for (i = 0; i < 8; i++) { - S[i] = Context->state[i]; - } - - // Copy the state into 512-bits into W[0..15] - for (i = 0; i < 16; i++) { - LOAD32H(W[i], Buffer + (4 * i)); - } - - // Fill W[16..63] - for (i = 16; i < 64; i++) { - W[i] = Gamma1(W[i - 2]) + W[i - 7] + Gamma0(W[i - 15]) + W[i - 16]; - } - - // Compress - for (i = 0; i < 64; i++) { - Sha256Round(S[0], S[1], S[2], S[3], S[4], S[5], S[6], S[7], i); - t = S[7]; - S[7] = S[6]; - S[6] = S[5]; - S[5] = S[4]; - S[4] = S[3]; - S[3] = S[2]; - S[2] = S[1]; - S[1] = S[0]; - S[0] = t; - } - - // Feedback - for (i = 0; i < 8; i++) { - Context->state[i] = Context->state[i] + S[i]; - } -} - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -// PUBLIC FUNCTIONS -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -// Sha256Initialise -// -// Initialises a SHA256 Context. Use this to initialise/reset a context. -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -void Sha256Initialise(Sha256Context* Context // [out] -) { - Context->curlen = 0; - Context->length = 0; - Context->state[0] = 0x6A09E667UL; - Context->state[1] = 0xBB67AE85UL; - Context->state[2] = 0x3C6EF372UL; - Context->state[3] = 0xA54FF53AUL; - Context->state[4] = 0x510E527FUL; - Context->state[5] = 0x9B05688CUL; - Context->state[6] = 0x1F83D9ABUL; - Context->state[7] = 0x5BE0CD19UL; -} - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -// Sha256Update -// -// Adds data to the SHA256 context. This will process the data and update the -// internal state of the context. Keep on calling this function until all the -// data has been added. Then call Sha256Finalise to calculate the hash. -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -void Sha256Update(Sha256Context* Context, // [in out] - void const* Buffer, // [in] - uint32_t BufferSize // [in] -) { - uint32_t n; - - if (Context->curlen > sizeof(Context->buf)) { - return; - } - - while (BufferSize > 0) { - if (Context->curlen == 0 && BufferSize >= BLOCK_SIZE) { - TransformFunction(Context, (uint8_t*)Buffer); - Context->length += BLOCK_SIZE * 8; - Buffer = (uint8_t*)Buffer + BLOCK_SIZE; - BufferSize -= BLOCK_SIZE; - } else { - n = MIN(BufferSize, (BLOCK_SIZE - Context->curlen)); - memcpy(Context->buf + Context->curlen, Buffer, (size_t)n); - Context->curlen += n; - Buffer = (uint8_t*)Buffer + n; - BufferSize -= n; - if (Context->curlen == BLOCK_SIZE) { - TransformFunction(Context, Context->buf); - Context->length += 8 * BLOCK_SIZE; - Context->curlen = 0; - } - } - } -} - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -// Sha256Finalise -// -// Performs the final calculation of the hash and returns the digest (32 byte -// buffer containing 256bit hash). After calling this, Sha256Initialised must -// be used to reuse the context. -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -void Sha256Finalise(Sha256Context* Context, // [in out] - SHA256_HASH* Digest // [out] -) { - int i; - - if (Context->curlen >= sizeof(Context->buf)) { - return; - } - - // Increase the length of the message - Context->length += Context->curlen * 8; - - // Append the '1' bit - Context->buf[Context->curlen++] = (uint8_t)0x80; - - // if the length is currently above 56 bytes we append zeros - // then compress. Then we can fall back to padding zeros and length - // encoding like normal. - if (Context->curlen > 56) { - while (Context->curlen < 64) { - Context->buf[Context->curlen++] = (uint8_t)0; - } - TransformFunction(Context, Context->buf); - Context->curlen = 0; - } - - // Pad up to 56 bytes of zeroes - while (Context->curlen < 56) { - Context->buf[Context->curlen++] = (uint8_t)0; - } - - // Store length - STORE64H(Context->length, Context->buf + 56); - TransformFunction(Context, Context->buf); - - // Copy output - for (i = 0; i < 8; i++) { - STORE32H(Context->state[i], Digest->bytes + (4 * i)); - } -} - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -// Sha256Calculate -// -// Combines Sha256Initialise, Sha256Update, and Sha256Finalise into one -// function. Calculates the SHA256 hash of the buffer. -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -void Sha256Calculate(void const* Buffer, // [in] - uint32_t BufferSize, // [in] - SHA256_HASH* Digest // [in] -) { - Sha256Context context; - - Sha256Initialise(&context); - Sha256Update(&context, Buffer, BufferSize); - Sha256Finalise(&context, Digest); -} From f690f047c3602bb3cbd924e3f00c51a831a5c476 Mon Sep 17 00:00:00 2001 From: Shxde <112267394+Shxde1@users.noreply.github.com> Date: Sat, 21 Dec 2024 13:08:58 -0500 Subject: [PATCH 07/19] Delete library.vcxproj.filters --- library.vcxproj.filters | 211 ---------------------------------------- 1 file changed, 211 deletions(-) delete mode 100644 library.vcxproj.filters diff --git a/library.vcxproj.filters b/library.vcxproj.filters deleted file mode 100644 index 5b1a39b..0000000 --- a/library.vcxproj.filters +++ /dev/null @@ -1,211 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - {864c9f28-b529-408a-93b0-9c8423c793e8} - - - {0c5bac00-2508-41c7-add9-a53839eceb90} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files\curl - - - Header Files\curl - - - Header Files\curl - - - Header Files\curl - - - Header Files\curl - - - Header Files\curl - - - Header Files\curl - - - Header Files\curl - - - Header Files\curl - - - Header Files\nlohmann - - - Header Files\nlohmann - - - Header Files\nlohmann - - - Header Files\nlohmann - - - Header Files\nlohmann - - - Header Files\nlohmann - - - Header Files\nlohmann - - - Header Files\nlohmann - - - Header Files\nlohmann - - - Header Files\nlohmann - - - Header Files\nlohmann - - - Header Files\nlohmann - - - Header Files\nlohmann - - - Header Files\nlohmann - - - Header Files\nlohmann - - - Header Files\nlohmann - - - Header Files\nlohmann - - - Header Files\nlohmann - - - Header Files\nlohmann - - - Header Files\nlohmann - - - Header Files\nlohmann - - - Header Files\nlohmann - - - Header Files\nlohmann - - - Header Files\nlohmann - - - Header Files\nlohmann - - - Header Files\nlohmann - - - Header Files\nlohmann - - - Header Files\nlohmann - - - Header Files\nlohmann - - - Header Files\nlohmann - - - Header Files\nlohmann - - - Header Files\nlohmann - - - Header Files\nlohmann - - - Header Files\nlohmann - - - Header Files\nlohmann - - - Header Files\nlohmann - - - Header Files\nlohmann - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Header Files - - - - - Header Files\curl - - - - - Header Files\curl - - - Header Files\curl - - - \ No newline at end of file From 51d3519e3fc5d6cc6be8194d87940692967df2ee Mon Sep 17 00:00:00 2001 From: Shxde <112267394+Shxde1@users.noreply.github.com> Date: Sat, 21 Dec 2024 13:09:03 -0500 Subject: [PATCH 08/19] Delete library.vcxproj --- library.vcxproj | 235 ------------------------------------------------ 1 file changed, 235 deletions(-) delete mode 100644 library.vcxproj diff --git a/library.vcxproj b/library.vcxproj deleted file mode 100644 index b2894c6..0000000 --- a/library.vcxproj +++ /dev/null @@ -1,235 +0,0 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - Debug - x64 - - - Release - x64 - - - - 16.0 - Win32Proj - {03a87d79-b6bb-4199-bd0c-97158912f6ab} - library - 10.0 - - - - StaticLibrary - true - v143 - Unicode - - - StaticLibrary - false - v143 - true - MultiByte - - - StaticLibrary - true - v143 - Unicode - - - StaticLibrary - false - false - MultiByte - v143 - - - - - - - - - - - - - - - - - - - - - true - - - false - .\nlohmann;.\curl;.\;$(IncludePath) - $(ProjectName)_x86 - - - true - - - false - .\nlohmann;.\curl;.\;$(IncludePath) - $(ProjectName)_x64 - - - - Level3 - true - WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions) - true - Use - pch.h - - - - - true - - - - - Level3 - true - true - true - CURL_STATICLIB;_CRT_SECURE_NO_WARNINGS;WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) - true - NotUsing - pch.h - stdcpp17 - - - - - true - true - true - - - - - Level3 - true - _DEBUG;_LIB;%(PreprocessorDefinitions) - true - NotUsing - pch.h - - - - - true - - - - - Level3 - true - true - true - CURL_STATICLIB;_CRT_SECURE_NO_WARNINGS;NDEBUG;_LIB;%(PreprocessorDefinitions) - true - NotUsing - pch.h - stdcpp17 - MultiThreadedDLL - None - - - - - true - true - true - - - MachineX64 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file From 264c48149344588db6c71fbf7c556507e3308946 Mon Sep 17 00:00:00 2001 From: Shxde <112267394+Shxde1@users.noreply.github.com> Date: Sat, 21 Dec 2024 13:09:09 -0500 Subject: [PATCH 09/19] Delete library.sln --- library.sln | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 library.sln diff --git a/library.sln b/library.sln deleted file mode 100644 index cea4f49..0000000 --- a/library.sln +++ /dev/null @@ -1,31 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 16 -VisualStudioVersion = 16.0.31624.102 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "library", "library.vcxproj", "{03A87D79-B6BB-4199-BD0C-97158912F6AB}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|x64 = Debug|x64 - Debug|x86 = Debug|x86 - Release|x64 = Release|x64 - Release|x86 = Release|x86 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {03A87D79-B6BB-4199-BD0C-97158912F6AB}.Debug|x64.ActiveCfg = Debug|x64 - {03A87D79-B6BB-4199-BD0C-97158912F6AB}.Debug|x64.Build.0 = Debug|x64 - {03A87D79-B6BB-4199-BD0C-97158912F6AB}.Debug|x86.ActiveCfg = Debug|Win32 - {03A87D79-B6BB-4199-BD0C-97158912F6AB}.Debug|x86.Build.0 = Debug|Win32 - {03A87D79-B6BB-4199-BD0C-97158912F6AB}.Release|x64.ActiveCfg = Release|x64 - {03A87D79-B6BB-4199-BD0C-97158912F6AB}.Release|x64.Build.0 = Release|x64 - {03A87D79-B6BB-4199-BD0C-97158912F6AB}.Release|x86.ActiveCfg = Release|Win32 - {03A87D79-B6BB-4199-BD0C-97158912F6AB}.Release|x86.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {92264801-AC2A-4D75-BF79-A3B7BB9B3F9A} - EndGlobalSection -EndGlobal From 2d845c9d047f8cff47f3cd3906b64dfa0ded79c0 Mon Sep 17 00:00:00 2001 From: Shxde <112267394+Shxde1@users.noreply.github.com> Date: Sat, 21 Dec 2024 13:09:37 -0500 Subject: [PATCH 10/19] Delete includes.hpp --- includes.hpp | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 includes.hpp diff --git a/includes.hpp b/includes.hpp deleted file mode 100644 index e9a8321..0000000 --- a/includes.hpp +++ /dev/null @@ -1,17 +0,0 @@ -#pragma once - -#include -#include -#include - -#pragma comment (lib, "advapi32.lib") -#pragma comment(lib, "libcurl.lib") -#pragma comment(lib, "Normaliz.lib") -#pragma comment(lib, "wldap32.lib" ) -#pragma comment(lib, "crypt32.lib" ) -#pragma comment(lib, "Ws2_32.lib") - -#define CURL_STATICLIB -#include - -#include "utils.hpp" \ No newline at end of file From 4edd78d8e40c79991cb4a1d0192f21b0d63991c3 Mon Sep 17 00:00:00 2001 From: Shxde <112267394+Shxde1@users.noreply.github.com> Date: Sat, 21 Dec 2024 13:09:45 -0500 Subject: [PATCH 11/19] Delete hmac_sha256.h --- hmac_sha256.h | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 hmac_sha256.h diff --git a/hmac_sha256.h b/hmac_sha256.h deleted file mode 100644 index 21f7086..0000000 --- a/hmac_sha256.h +++ /dev/null @@ -1,36 +0,0 @@ -/* - hmac_sha256.h - Originally written by https://github.com/h5p9sl -*/ - -#ifndef _HMAC_SHA256_H_ -#define _HMAC_SHA256_H_ - -#ifdef __cplusplus -extern "C" { -#endif // __cplusplus - -#include - -size_t // Returns the number of bytes written to `out` -hmac_sha256( - // [in]: The key and its length. - // Should be at least 32 bytes long for optimal security. - const void* key, - const size_t keylen, - - // [in]: The data to hash alongside the key. - const void* data, - const size_t datalen, - - // [out]: The output hash. - // Should be 32 bytes long. If it's less than 32 bytes, - // the resulting hash will be truncated to the specified length. - void* out, - const size_t outlen); - -#ifdef __cplusplus -} -#endif // __cplusplus - -#endif // _HMAC_SHA256_H_ From 14a54f6fad6fd1d0b7cc88d3575717ce899e91fb Mon Sep 17 00:00:00 2001 From: Shxde <112267394+Shxde1@users.noreply.github.com> Date: Sat, 21 Dec 2024 13:10:15 -0500 Subject: [PATCH 12/19] Delete hmac_sha256.c --- hmac_sha256.c | 104 -------------------------------------------------- 1 file changed, 104 deletions(-) delete mode 100644 hmac_sha256.c diff --git a/hmac_sha256.c b/hmac_sha256.c deleted file mode 100644 index 5f7c0f8..0000000 --- a/hmac_sha256.c +++ /dev/null @@ -1,104 +0,0 @@ -/* - hmac_sha256.c - Originally written by https://github.com/h5p9sl - */ - -#include "hmac_sha256.h" -#include "sha256.h" - -#include -#include - -#define SHA256_BLOCK_SIZE 64 - -/* LOCAL FUNCTIONS */ - -// Concatenate X & Y, return hash. -static void* H(const void* x, - const size_t xlen, - const void* y, - const size_t ylen, - void* out, - const size_t outlen); - -// Wrapper for sha256 -static void* sha256(const void* data, - const size_t datalen, - void* out, - const size_t outlen); - -// Declared in hmac_sha256.h -size_t hmac_sha256(const void* key, - const size_t keylen, - const void* data, - const size_t datalen, - void* out, - const size_t outlen) { - uint8_t k[SHA256_BLOCK_SIZE]; - uint8_t k_ipad[SHA256_BLOCK_SIZE]; - uint8_t k_opad[SHA256_BLOCK_SIZE]; - uint8_t ihash[SHA256_HASH_SIZE]; - uint8_t ohash[SHA256_HASH_SIZE]; - size_t sz; - int i; - - memset(k, 0, sizeof(k)); - memset(k_ipad, 0x36, SHA256_BLOCK_SIZE); - memset(k_opad, 0x5c, SHA256_BLOCK_SIZE); - - if (keylen > SHA256_BLOCK_SIZE) { - // If the key is larger than the hash algorithm's - // block size, we must digest it first. - sha256(key, keylen, k, sizeof(k)); - } else { - memcpy(k, key, keylen); - } - - for (i = 0; i < SHA256_BLOCK_SIZE; i++) { - k_ipad[i] ^= k[i]; - k_opad[i] ^= k[i]; - } - - // Perform HMAC algorithm: ( https://tools.ietf.org/html/rfc2104 ) - // `H(K XOR opad, H(K XOR ipad, data))` - H(k_ipad, sizeof(k_ipad), data, datalen, ihash, sizeof(ihash)); - H(k_opad, sizeof(k_opad), ihash, sizeof(ihash), ohash, sizeof(ohash)); - - sz = (outlen > SHA256_HASH_SIZE) ? SHA256_HASH_SIZE : outlen; - memcpy(out, ohash, sz); - return sz; -} - -static void* H(const void* x, - const size_t xlen, - const void* y, - const size_t ylen, - void* out, - const size_t outlen) { - void* result; - size_t buflen = (xlen + ylen); - uint8_t* buf = (uint8_t*)malloc(buflen); - - memcpy(buf, x, xlen); - memcpy(buf + xlen, y, ylen); - result = sha256(buf, buflen, out, outlen); - - free(buf); - return result; -} - -static void* sha256(const void* data, - const size_t datalen, - void* out, - const size_t outlen) { - size_t sz; - Sha256Context ctx; - SHA256_HASH hash; - - Sha256Initialise(&ctx); - Sha256Update(&ctx, data, datalen); - Sha256Finalise(&ctx, &hash); - - sz = (outlen > SHA256_HASH_SIZE) ? SHA256_HASH_SIZE : outlen; - return memcpy(out, hash.bytes, sz); -} From fa0b5271bf66c0fe755c7c8a732477b52d432d13 Mon Sep 17 00:00:00 2001 From: Shxde <112267394+Shxde1@users.noreply.github.com> Date: Sat, 21 Dec 2024 13:10:20 -0500 Subject: [PATCH 13/19] Delete auth.hpp --- auth.hpp | 144 ------------------------------------------------------- 1 file changed, 144 deletions(-) delete mode 100644 auth.hpp diff --git a/auth.hpp b/auth.hpp deleted file mode 100644 index 49ad2c0..0000000 --- a/auth.hpp +++ /dev/null @@ -1,144 +0,0 @@ -#include - -#pragma comment(lib, "libcurl.lib") - -#define CURL_STATICLIB - -struct channel_struct -{ - std::string author; - std::string message; - std::string timestamp; -}; - -namespace KeyAuth { - class api { - public: - - std::string name, ownerid, secret, version, url, path; - - api(std::string name, std::string ownerid, std::string secret, std::string version, std::string url, std::string path) : name(name), ownerid(ownerid), secret(secret), version(version), url(url), path(path) {} - - void ban(std::string reason = ""); - void init(); - void check(); - void log(std::string msg); - void license(std::string key); - std::string var(std::string varid); - std::string webhook(std::string id, std::string params, std::string body = "", std::string contenttype = ""); - void setvar(std::string var, std::string vardata); - std::string getvar(std::string var); - bool checkblack(); - void web_login(); - void button(std::string value); - void upgrade(std::string username, std::string key); - void login(std::string username, std::string password); - std::vector download(std::string fileid); - void regstr(std::string username, std::string password, std::string key, std::string email = ""); - void chatget(std::string channel); - bool chatsend(std::string message, std::string channel); - void changeUsername(std::string newusername); - std::string fetchonline(); - void fetchstats(); - void forgot(std::string username, std::string email); - void logout(); - - class subscriptions_class { - public: - std::string name; - std::string expiry; - }; - - class userdata { - public: - - // user data - std::string username; - std::string ip; - std::string hwid; - std::string createdate; - std::string lastlogin; - - std::vector subscriptions; - }; - - class appdata { - public: - // app data - std::string numUsers; - std::string numOnlineUsers; - std::string numKeys; - std::string version; - std::string customerPanelLink; - }; - - class responsedata { - public: - // response data - std::vector channeldata; - bool success{}; - std::string message; - }; - - userdata user_data; - appdata app_data; - responsedata response; - private: - std::string sessionid, enckey; - - static std::string req(std::string data, std::string url); - - - void load_user_data(nlohmann::json data) { - api::user_data.username = data["username"]; - api::user_data.ip = data["ip"]; - if (data["hwid"].is_null()) { - api::user_data.hwid = "none"; - } - else { - api::user_data.hwid = data["hwid"]; - } - api::user_data.createdate = data["createdate"]; - api::user_data.lastlogin = data["lastlogin"]; - - for (int i = 0; i < data["subscriptions"].size(); i++) { // Prompto#7895 & stars#2297 was here - subscriptions_class subscriptions; - subscriptions.name = data["subscriptions"][i]["subscription"]; - subscriptions.expiry = data["subscriptions"][i]["expiry"]; - api::user_data.subscriptions.emplace_back(subscriptions); - } - } - - void load_app_data(nlohmann::json data) { - api::app_data.numUsers = data["numUsers"]; - api::app_data.numOnlineUsers = data["numOnlineUsers"]; - api::app_data.numKeys = data["numKeys"]; - api::app_data.version = data["version"]; - api::app_data.customerPanelLink = data["customerPanelLink"]; - } - - void load_response_data(nlohmann::json data) { - api::response.success = data["success"]; - api::response.message = data["message"]; - } - - void load_channel_data(nlohmann::json data) { - api::response.success = data["success"]; - api::response.message = data["message"]; - for (const auto sub : data["messages"]) { - - std::string authoroutput = sub["author"]; - std::string messageoutput = sub["message"]; - int timestamp = sub["timestamp"]; std::string timestampoutput = std::to_string(timestamp); - authoroutput.erase(remove(authoroutput.begin(), authoroutput.end(), '"'), authoroutput.end()); - messageoutput.erase(remove(messageoutput.begin(), messageoutput.end(), '"'), messageoutput.end()); - timestampoutput.erase(remove(timestampoutput.begin(), timestampoutput.end(), '"'), timestampoutput.end()); - channel_struct output = { authoroutput , messageoutput, timestampoutput }; - api::response.channeldata.push_back(output); - } - } - - nlohmann::json response_decoder; - - }; -} From 4fad1bf60f4101a95c1cee6a43c63ed14bb13734 Mon Sep 17 00:00:00 2001 From: Shxde <112267394+Shxde1@users.noreply.github.com> Date: Sat, 21 Dec 2024 13:10:26 -0500 Subject: [PATCH 14/19] Delete auth.cpp --- auth.cpp | 1682 ------------------------------------------------------ 1 file changed, 1682 deletions(-) delete mode 100644 auth.cpp diff --git a/auth.cpp b/auth.cpp deleted file mode 100644 index 46dca20..0000000 --- a/auth.cpp +++ /dev/null @@ -1,1682 +0,0 @@ -#ifndef UNICODE -#define UNICODE -#endif - -#ifndef _WIN32_WINNT -#define _WIN32_WINNT 0x0600 -#endif - -#ifndef WIN32_LEAN_AND_MEAN -#define WIN32_LEAN_AND_MEAN -#endif - -#define _CRT_SECURE_NO_WARNINGS - -#include -#include -#include -#include -#include -#include - -#include - -#include -#include -#include -#include -#include -#include -#include - -#include -#include - -#pragma comment(lib, "libcurl.lib") -#pragma comment(lib, "rpcrt4.lib") -#pragma comment(lib, "httpapi.lib") - -#include -#include -#include -#include -#include -#include - -#include -#include -#include -#include -#pragma comment( lib, "psapi.lib" ) -#include -#include "hmac_sha256.h" - -#include -#include - -#include "Security.hpp" - -#define SHA256_HASH_SIZE 32 - -static std::string hexDecode(const std::string& hex); -std::string get_str_between_two_str(const std::string& s, const std::string& start_delim, const std::string& stop_delim); -bool constantTimeStringCompare(const char* str1, const char* str2, size_t length); -void checkInit(); -std::string checksum(); -void debugInfo(std::string data, std::string url, std::string response); -void modify(); -void error(std::string message); -std::string signature; -bool initalized; - -void KeyAuth::api::init() -{ - CreateThread(0, 0, (LPTHREAD_START_ROUTINE)modify, 0, 0, 0); - - if (ownerid.length() != 10 || secret.length() != 64) - { - MessageBoxA(0, XorStr("Application Not Setup Correctly. Please Watch Video Linked in main.cpp").c_str(), NULL, MB_ICONERROR); - exit(0); - } - - UUID uuid = { 0 }; - std::string guid; - ::UuidCreate(&uuid); - RPC_CSTR szUuid = NULL; - if (::UuidToStringA(&uuid, &szUuid) == RPC_S_OK) - { - guid = (char*)szUuid; - ::RpcStringFreeA(&szUuid); - } - std::string sentKey; - sentKey = guid.substr(0, 16); - enckey = sentKey + XorStr("-") + secret; - - std::string hash = checksum(); - CURL* curl = curl_easy_init(); - auto data = - XorStr("type=init") + - XorStr("&ver=") + version + - XorStr("&hash=") + hash + - XorStr("&enckey=") + sentKey + - XorStr("&name=") + curl_easy_escape(curl, name.c_str(), 0) + - XorStr("&ownerid=") + ownerid; - - if (path != "" || !path.empty()) { - - if (!std::filesystem::exists(path)) { - MessageBoxA(0, XorStr("File not found. Please make sure the file exists.").c_str(), NULL, MB_ICONERROR); - exit(0); - } - //get the contents of the file - std::ifstream file(path); - std::string token; - std::string thash; - std::getline(file, token); - - auto exec = [&](const char* cmd) -> std::string - { - uint16_t line = -1; - std::array buffer; - std::string result; - std::unique_ptr pipe(_popen(cmd, "r"), _pclose); - if (!pipe) { - throw std::runtime_error(XorStr("popen() failed!")); - } - - while (fgets(buffer.data(), buffer.size(), pipe.get()) != nullptr) { - result = buffer.data(); - } - return result; - }; - - thash = exec(("certutil -hashfile \"" + path + XorStr("\" MD5 | find /i /v \"md5\" | find /i /v \"certutil\"")).c_str()); - - data += XorStr("&token=").c_str() + token; - data += XorStr("&thash=").c_str() + path; - } - curl_easy_cleanup(curl); - - auto response = req(data, url); - - if (response == XorStr("KeyAuth_Invalid")) { - MessageBoxA(0, XorStr("Application not found. Please copy strings directly from dashboard.").c_str(), NULL, MB_ICONERROR); - exit(0); - } - - auto json = response_decoder.parse(response); - std::string message = json[(XorStr("message"))]; - - // from https://github.com/h5p9sl/hmac_sha256 - std::stringstream ss_result; - - // Allocate memory for the HMAC - std::vector out(SHA256_HASH_SIZE); - - // Call hmac-sha256 function - hmac_sha256(secret.data(), secret.size(), response.data(), response.size(), - out.data(), out.size()); - - // Convert `out` to string with std::hex - for (uint8_t x : out) { - ss_result << std::hex << std::setfill('0') << std::setw(2) << (int)x; - } - if (!constantTimeStringCompare(ss_result.str().c_str(), signature.c_str(), sizeof(signature).c_str())) { // check response authenticity, if not authentic program crashes - error("Signature checksum failed. Request was tampered with or session ended most likely. & echo: & echo Message: " + message); - } - - load_response_data(json); - - if (json[(XorStr("success"))]) - { - if (json[(XorStr("newSession"))]) { - Sleep(100); - } - sessionid = json[(XorStr("sessionid"))]; - initalized = true; - load_app_data(json[(XorStr("appinfo"))]); - } - else if (json[(XorStr("message"))] == XorStr("invalidver")) - { - std::string dl = json[(XorStr("download"))]; - if (dl == "") - { - MessageBoxA(0, XorStr("Version in the loader does match the one on the dashboard, and the download link on dashboard is blank.\n\nTo fix this, either fix the loader so it matches the version on the dashboard. Or if you intended for it to have different versions, update the download link on dashboard so it will auto-update correctly.").c_str(), NULL, MB_ICONERROR); - } - else - { - ShellExecuteA(0, XorStr("open").c_str(), dl.c_str(), 0, 0, SW_SHOWNORMAL); - } - exit(0); - } -} - -size_t write_callback(void* contents, size_t size, size_t nmemb, void* userp) { - ((std::string*)userp)->append((char*)contents, size * nmemb); - return size * nmemb; -} - -static size_t header_callback(char* buffer, size_t size, size_t nitems, void* userdata) -{ - // thanks to https://stackoverflow.com/q/28537837 and https://stackoverflow.com/a/66660987 - std::string temp = std::string(buffer); - if (temp.substr(0, 9) == "signature") { - std::string parsed = temp.erase(0, 11);; // remove "signature: " from string - signature = parsed.substr(0, 64); // if I don't this, there's an extra line. so yeah. - } - std::string* headers = (std::string*)userdata; - headers->append(buffer, nitems * size); - return nitems * size; -} - -void KeyAuth::api::login(std::string username, std::string password) -{ - checkInit(); - - std::string hwid = utils::get_hwid(); - auto data = - XorStr("type=login") + - XorStr("&username=") + username + - XorStr("&pass=") + password + - XorStr("&hwid=") + hwid + - XorStr("&sessionid=") + sessionid + - XorStr("&name=") + name + - XorStr("&ownerid=") + ownerid; - auto response = req(data, url); - auto json = response_decoder.parse(response); - std::string message = json[(XorStr("message"))]; - - // from https://github.com/h5p9sl/hmac_sha256 - std::stringstream ss_result; - - // Allocate memory for the HMAC - std::vector out(SHA256_HASH_SIZE); - - // Call hmac-sha256 function - hmac_sha256(enckey.data(), enckey.size(), response.data(), response.size(), - out.data(), out.size()); - - // Convert `out` to string with std::hex - for (uint8_t x : out) { - ss_result << std::hex << std::setfill('0') << std::setw(2) << (int)x; - } - - if (!constantTimeStringCompare(ss_result.str().c_str(), signature.c_str(), sizeof(signature).c_str())) { // check response authenticity, if not authentic program crashes - error("Signature checksum failed. Request was tampered with or session ended most likely. & echo: & echo Message: " + message); - } - - load_response_data(json); - if (json[(XorStr("success"))]) - load_user_data(json[(XorStr("info"))]); -} - -void KeyAuth::api::chatget(std::string channel) -{ - checkInit(); - - auto data = - XorStr("type=chatget") + - XorStr("&channel=") + channel + - XorStr("&sessionid=") + sessionid + - XorStr("&name=") + name + - XorStr("&ownerid=") + ownerid; - - auto response = req(data, url); - auto json = response_decoder.parse(response); - load_channel_data(json); -} - -bool KeyAuth::api::chatsend(std::string message, std::string channel) -{ - checkInit(); - - auto data = - XorStr("type=chatsend") + - XorStr("&message=") + message + - XorStr("&channel=") + channel + - XorStr("&sessionid=") + sessionid + - XorStr("&name=") + name + - XorStr("&ownerid=") + ownerid; - - auto response = req(data, url); - auto json = response_decoder.parse(response); - load_response_data(json); - return json[("success")]; -} - -void KeyAuth::api::changeUsername(std::string newusername) -{ - checkInit(); - - auto data = - XorStr("type=changeUsername") + - XorStr("&newUsername=") + newusername + - XorStr("&sessionid=") + sessionid + - XorStr("&name=") + name + - XorStr("&ownerid=") + ownerid; - - auto response = req(data, url); - auto json = response_decoder.parse(response); - std::string message = json[(XorStr("message"))]; - - // from https://github.com/h5p9sl/hmac_sha256 - std::stringstream ss_result; - - // Allocate memory for the HMAC - std::vector out(SHA256_HASH_SIZE); - - // Call hmac-sha256 function - hmac_sha256(enckey.data(), enckey.size(), response.data(), response.size(), - out.data(), out.size()); - - // Convert `out` to string with std::hex - for (uint8_t x : out) { - ss_result << std::hex << std::setfill('0') << std::setw(2) << (int)x; - } - - if (!constantTimeStringCompare(ss_result.str().c_str(), signature.c_str(), sizeof(signature).c_str())) { // check response authenticity, if not authentic program crashes - error("Signature checksum failed. Request was tampered with or session ended most likely. & echo: & echo Message: " + message); - } - - load_response_data(json); - -} - -void KeyAuth::api::web_login() -{ - checkInit(); - - // from https://perpetualprogrammers.wordpress.com/2016/05/22/the-http-server-api/ - - // Initialize the API. - ULONG result = 0; - HTTPAPI_VERSION version = HTTPAPI_VERSION_2; - result = HttpInitialize(version, HTTP_INITIALIZE_SERVER, 0); - - if (result == ERROR_INVALID_PARAMETER) { - MessageBoxA(NULL, "The Flags parameter contains an unsupported value.", "Error", MB_ICONEXCLAMATION); - exit(0); - } - if (result != NO_ERROR) { - MessageBoxA(NULL, "System error for Initialize", "Error", MB_ICONEXCLAMATION); - exit(0); - } - - // Create server session. - HTTP_SERVER_SESSION_ID serverSessionId; - result = HttpCreateServerSession(version, &serverSessionId, 0); - - if (result == ERROR_REVISION_MISMATCH) { - MessageBoxA(NULL, "Version for session invalid", "Error", MB_ICONEXCLAMATION); - exit(0); - } - - if (result == ERROR_INVALID_PARAMETER) { - MessageBoxA(NULL, "pServerSessionId parameter is null", "Error", MB_ICONEXCLAMATION); - exit(0); - } - - if (result != NO_ERROR) { - MessageBoxA(NULL, "System error for HttpCreateServerSession", "Error", MB_ICONEXCLAMATION); - exit(0); - } - - // Create URL group. - HTTP_URL_GROUP_ID groupId; - result = HttpCreateUrlGroup(serverSessionId, &groupId, 0); - - if (result == ERROR_INVALID_PARAMETER) { - MessageBoxA(NULL, "Url group create parameter error", "Error", MB_ICONEXCLAMATION); - exit(0); - } - - if (result != NO_ERROR) { - MessageBoxA(NULL, "System error for HttpCreateUrlGroup", "Error", MB_ICONEXCLAMATION); - exit(0); - } - - // Create request queue. - HANDLE requestQueueHandle; - result = HttpCreateRequestQueue(version, NULL, NULL, 0, &requestQueueHandle); - - if (result == ERROR_REVISION_MISMATCH) { - MessageBoxA(NULL, "Wrong version", "Error", MB_ICONEXCLAMATION); - exit(0); - } - - if (result == ERROR_INVALID_PARAMETER) { - MessageBoxA(NULL, "Byte length exceeded", "Error", MB_ICONEXCLAMATION); - exit(0); - } - - if (result == ERROR_ALREADY_EXISTS) { - MessageBoxA(NULL, "pName already used", "Error", MB_ICONEXCLAMATION); - exit(0); - } - - if (result == ERROR_ACCESS_DENIED) { - MessageBoxA(NULL, "queue access denied", "Error", MB_ICONEXCLAMATION); - exit(0); - } - - if (result == ERROR_DLL_INIT_FAILED) { - MessageBoxA(NULL, "Initialize not called", "Error", MB_ICONEXCLAMATION); - exit(0); - } - - if (result != NO_ERROR) { - MessageBoxA(NULL, "System error for HttpCreateRequestQueue", "Error", MB_ICONEXCLAMATION); - exit(0); - } - - // Attach request queue to URL group. - HTTP_BINDING_INFO info; - info.Flags.Present = 1; - info.RequestQueueHandle = requestQueueHandle; - result = HttpSetUrlGroupProperty(groupId, HttpServerBindingProperty, &info, sizeof(info)); - - if (result == ERROR_INVALID_PARAMETER) { - MessageBoxA(NULL, XorStr("Invalid parameter").c_str(), "Error", MB_ICONEXCLAMATION); - exit(0); - } - - if (result != NO_ERROR) { - MessageBoxA(NULL, XorStr("System error for HttpSetUrlGroupProperty").c_str(), "Error", MB_ICONEXCLAMATION); - exit(0); - } - - // Add URLs to URL group. - PCWSTR url = L"http://localhost:1337/handshake"; - result = HttpAddUrlToUrlGroup(groupId, url, 0, 0); - - if (result == ERROR_ACCESS_DENIED) { - MessageBoxA(NULL, XorStr("No permissions to run web server").c_str(), "Error", MB_ICONEXCLAMATION); - exit(0); - } - - if (result == ERROR_ALREADY_EXISTS) { - MessageBoxA(NULL, XorStr("You are running this program already").c_str(), "Error", MB_ICONEXCLAMATION); - exit(0); - } - - if (result == ERROR_INVALID_PARAMETER) { - MessageBoxA(NULL, XorStr("ERROR_INVALID_PARAMETER for HttpAddUrlToUrlGroup").c_str(), "Error", MB_ICONEXCLAMATION); - exit(0); - } - - if (result == ERROR_SHARING_VIOLATION) { - MessageBoxA(NULL, XorStr("Another program is using the webserver. Close Razer Chroma mouse software if you use that. Try to restart computer.").c_str(), "Error", MB_ICONEXCLAMATION); - exit(0); - } - - if (result != NO_ERROR) { - MessageBoxA(NULL, XorStr("System error for HttpAddUrlToUrlGroup").c_str(), "Error", MB_ICONEXCLAMATION); - exit(0); - } - - // Announce that it is running. - // wprintf(L"Listening. Please submit requests to: %s\n", url); - - // req to: http://localhost:1337/handshake?user=mak&token=2f3e9eccc22ee583cf7bad86c751d865 - bool going = true; - while (going == true) - { - // Wait for a request. - HTTP_REQUEST_ID requestId = 0; - HTTP_SET_NULL_ID(&requestId); - int bufferSize = 4096; - int requestSize = sizeof(HTTP_REQUEST) + bufferSize; - BYTE* buffer = new BYTE[requestSize]; - PHTTP_REQUEST pRequest = (PHTTP_REQUEST)buffer; - RtlZeroMemory(buffer, requestSize); - ULONG bytesReturned; - result = HttpReceiveHttpRequest( - requestQueueHandle, - requestId, - HTTP_RECEIVE_REQUEST_FLAG_COPY_BODY, - pRequest, - requestSize, - &bytesReturned, - NULL - ); - - // Display some information about the request. - // wprintf(L"Full URL: %ws\n", pRequest->CookedUrl.pFullUrl); - // wprintf(L" Path: %ws\n", pRequest->CookedUrl.pAbsPath); - // wprintf(L" Query: %ws\n", pRequest->CookedUrl.pQueryString); - - std::wstring ws(pRequest->CookedUrl.pQueryString); - std::string myVarS = std::string(ws.begin(), ws.end()); - std::string user = get_str_between_two_str(myVarS, "?user=", "&"); - std::string token = get_str_between_two_str(myVarS, "&token=", ""); - - // std::cout << get_str_between_two_str(CW2A(pRequest->CookedUrl.pQueryString), "?", "&") << std::endl; - - // break if preflight request from browser - if (pRequest->Verb == HttpVerbOPTIONS) - { - // Respond to the request. - HTTP_RESPONSE response; - RtlZeroMemory(&response, sizeof(response)); - - response.StatusCode = 200; - response.pReason = static_cast(XorStr("OK").c_str()); - response.ReasonLength = (USHORT)strlen(response.pReason); - - // https://social.msdn.microsoft.com/Forums/vstudio/en-US/6d468747-2221-4f4a-9156-f98f355a9c08/using-httph-to-set-up-an-https-server-that-is-queried-by-a-client-that-uses-cross-origin-requests?forum=vcgeneral - HTTP_UNKNOWN_HEADER accessControlHeader; - const char testCustomHeader[] = "Access-Control-Allow-Origin"; - const char testCustomHeaderVal[] = "*"; - accessControlHeader.pName = testCustomHeader; - accessControlHeader.NameLength = _countof(testCustomHeader) - 1; - accessControlHeader.pRawValue = testCustomHeaderVal; - accessControlHeader.RawValueLength = _countof(testCustomHeaderVal) - 1; - response.Headers.pUnknownHeaders = &accessControlHeader; - response.Headers.UnknownHeaderCount = 1; - // Add an entity chunk to the response. - // PSTR pEntityString = "Hello from C++"; - HTTP_DATA_CHUNK dataChunk; - dataChunk.DataChunkType = HttpDataChunkFromMemory; - - result = HttpSendHttpResponse( - requestQueueHandle, - pRequest->RequestId, - 0, - &response, - NULL, - NULL, // &bytesSent (optional) - NULL, - 0, - NULL, - NULL - ); - - delete[]buffer; - continue; - } - - // keyauth request - std::string hwid = utils::get_hwid(); - auto data = - XorStr("type=login") + - XorStr("&username=") + user + - XorStr("&token=") + token + - XorStr("&hwid=") + hwid + - XorStr("&sessionid=") + sessionid + - XorStr("&name=") + name + - XorStr("&ownerid=") + ownerid; - auto resp = req(data, api::url); - auto json = response_decoder.parse(resp); - std::string message = json[(XorStr("message"))]; - - // from https://github.com/h5p9sl/hmac_sha256 - std::stringstream ss_result; - - // Allocate memory for the HMAC - std::vector out(SHA256_HASH_SIZE); - - // Call hmac-sha256 function - hmac_sha256(enckey.data(), enckey.size(), resp.data(), resp.size(), - out.data(), out.size()); - - // Convert `out` to string with std::hex - for (uint8_t x : out) { - ss_result << std::hex << std::setfill('0') << std::setw(2) << (int)x; - } - - if (!constantTimeStringCompare(ss_result.str().c_str(), signature.c_str(), sizeof(signature).c_str())) { // check response authenticity, if not authentic program crashes - error("Signature checksum failed. Request was tampered with or session ended most likely. & echo: & echo Message: " + message); - } - - // Respond to the request. - HTTP_RESPONSE response; - RtlZeroMemory(&response, sizeof(response)); - - bool success = true; - if (json[(XorStr("success"))]) - { - load_user_data(json[(XorStr("info"))]); - - response.StatusCode = 420; - response.pReason = XorStr("SHEESH").c_str(); - response.ReasonLength = (USHORT)strlen(response.pReason); - } - else - { - response.StatusCode = 200; - response.pReason = static_cast(json[(XorStr("message"))]).c_str(); - response.ReasonLength = (USHORT)strlen(response.pReason); - success = false; - } - // end keyauth request - - // https://social.msdn.microsoft.com/Forums/vstudio/en-US/6d468747-2221-4f4a-9156-f98f355a9c08/using-httph-to-set-up-an-https-server-that-is-queried-by-a-client-that-uses-cross-origin-requests?forum=vcgeneral - HTTP_UNKNOWN_HEADER accessControlHeader; - const char testCustomHeader[] = "Access-Control-Allow-Origin"; - const char testCustomHeaderVal[] = "*"; - accessControlHeader.pName = testCustomHeader; - accessControlHeader.NameLength = _countof(testCustomHeader) - 1; - accessControlHeader.pRawValue = testCustomHeaderVal; - accessControlHeader.RawValueLength = _countof(testCustomHeaderVal) - 1; - response.Headers.pUnknownHeaders = &accessControlHeader; - response.Headers.UnknownHeaderCount = 1; - // Add an entity chunk to the response. - // PSTR pEntityString = "Hello from C++"; - HTTP_DATA_CHUNK dataChunk; - dataChunk.DataChunkType = HttpDataChunkFromMemory; - - result = HttpSendHttpResponse( - requestQueueHandle, - pRequest->RequestId, - 0, - &response, - NULL, - NULL, // &bytesSent (optional) - NULL, - 0, - NULL, - NULL - ); - - if (result == NO_ERROR) { - going = false; - } - - delete []buffer; - - if (!success) - exit(0); - } -} - -void KeyAuth::api::button(std::string button) -{ - checkInit(); - - // from https://perpetualprogrammers.wordpress.com/2016/05/22/the-http-server-api/ - - // Initialize the API. - ULONG result = 0; - HTTPAPI_VERSION version = HTTPAPI_VERSION_2; - result = HttpInitialize(version, HTTP_INITIALIZE_SERVER, 0); - - // Create server session. - HTTP_SERVER_SESSION_ID serverSessionId; - result = HttpCreateServerSession(version, &serverSessionId, 0); - - // Create URL group. - HTTP_URL_GROUP_ID groupId; - result = HttpCreateUrlGroup(serverSessionId, &groupId, 0); - - // Create request queue. - HANDLE requestQueueHandle; - result = HttpCreateRequestQueue(version, NULL, NULL, 0, &requestQueueHandle); - - // Attach request queue to URL group. - HTTP_BINDING_INFO info; - info.Flags.Present = 1; - info.RequestQueueHandle = requestQueueHandle; - result = HttpSetUrlGroupProperty(groupId, HttpServerBindingProperty, &info, sizeof(info)); - - // Add URLs to URL group. - std::wstring output; - output = std::wstring(button.begin(), button.end()); - output = std::wstring(L"http://localhost:1337/") + output; - PCWSTR url = output.c_str(); - result = HttpAddUrlToUrlGroup(groupId, url, 0, 0); - - // Announce that it is running. - // wprintf(L"Listening. Please submit requests to: %s\n", url); - - // req to: http://localhost:1337/buttonvaluehere - bool going = true; - while (going == true) - { - // Wait for a request. - HTTP_REQUEST_ID requestId = 0; - HTTP_SET_NULL_ID(&requestId); - int bufferSize = 4096; - int requestSize = sizeof(HTTP_REQUEST) + bufferSize; - BYTE* buffer = new BYTE[requestSize]; - PHTTP_REQUEST pRequest = (PHTTP_REQUEST)buffer; - RtlZeroMemory(buffer, requestSize); - ULONG bytesReturned; - result = HttpReceiveHttpRequest( - requestQueueHandle, - requestId, - HTTP_RECEIVE_REQUEST_FLAG_COPY_BODY, - pRequest, - requestSize, - &bytesReturned, - NULL - ); - - going = false; - - // Display some information about the request. - // wprintf(L"Full URL: %ws\n", pRequest->CookedUrl.pFullUrl); - // wprintf(L" Path: %ws\n", pRequest->CookedUrl.pAbsPath); - // wprintf(L" Query: %ws\n", pRequest->CookedUrl.pQueryString); - - // std::cout << get_str_between_two_str(CW2A(pRequest->CookedUrl.pQueryString), "?", "&") << std::endl; - - // Break from the loop if it's the poison pill (a DELETE request). - // if (pRequest->Verb == HttpVerbDELETE) - // { - // wprintf(L"Asked to stop.\n"); - // break; - // } - - // Respond to the request. - HTTP_RESPONSE response; - RtlZeroMemory(&response, sizeof(response)); - response.StatusCode = 420; - response.pReason = XorStr("SHEESH").c_str(); - response.ReasonLength = (USHORT)strlen(response.pReason); - - // https://social.msdn.microsoft.com/Forums/vstudio/en-US/6d468747-2221-4f4a-9156-f98f355a9c08/using-httph-to-set-up-an-https-server-that-is-queried-by-a-client-that-uses-cross-origin-requests?forum=vcgeneral - HTTP_UNKNOWN_HEADER accessControlHeader; - const char testCustomHeader[] = "Access-Control-Allow-Origin"; - const char testCustomHeaderVal[] = "*"; - accessControlHeader.pName = testCustomHeader; - accessControlHeader.NameLength = _countof(testCustomHeader) - 1; - accessControlHeader.pRawValue = testCustomHeaderVal; - accessControlHeader.RawValueLength = _countof(testCustomHeaderVal) - 1; - response.Headers.pUnknownHeaders = &accessControlHeader; - response.Headers.UnknownHeaderCount = 1; - // Add an entity chunk to the response. - // PSTR pEntityString = "Hello from C++"; - HTTP_DATA_CHUNK dataChunk; - dataChunk.DataChunkType = HttpDataChunkFromMemory; - - result = HttpSendHttpResponse( - requestQueueHandle, - pRequest->RequestId, - 0, - &response, - NULL, - NULL, // &bytesSent (optional) - NULL, - 0, - NULL, - NULL - ); - - delete[]buffer; - } -} - -void KeyAuth::api::regstr(std::string username, std::string password, std::string key, std::string email) { - checkInit(); - - std::string hwid = utils::get_hwid(); - auto data = - XorStr("type=register") + - XorStr("&username=") + username + - XorStr("&pass=") + password + - XorStr("&key=") + key + - XorStr("&email=") + email + - XorStr("&hwid=") + hwid + - XorStr("&sessionid=") + sessionid + - XorStr("&name=") + name + - XorStr("&ownerid=") + ownerid; - auto response = req(data, url); - auto json = response_decoder.parse(response); - std::string message = json[(XorStr("message"))]; - - // from https://github.com/h5p9sl/hmac_sha256 - std::stringstream ss_result; - - // Allocate memory for the HMAC - std::vector out(SHA256_HASH_SIZE); - - // Call hmac-sha256 function - hmac_sha256(enckey.data(), enckey.size(), response.data(), response.size(), - out.data(), out.size()); - - // Convert `out` to string with std::hex - for (uint8_t x : out) { - ss_result << std::hex << std::setfill('0') << std::setw(2) << (int)x; - } - - if (!constantTimeStringCompare(ss_result.str().c_str(), signature.c_str(), sizeof(signature).c_str())) { // check response authenticity, if not authentic program crashes - error("Signature checksum failed. Request was tampered with or session ended most likely. & echo: & echo Message: " + message); - } - - load_response_data(json); - if (json[(XorStr("success"))]) - load_user_data(json[(XorStr("info"))]); -} - -void KeyAuth::api::upgrade(std::string username, std::string key) { - checkInit(); - - auto data = - XorStr("type=upgrade") + - XorStr("&username=") + username + - XorStr("&key=") + key + - XorStr("&sessionid=") + sessionid + - XorStr("&name=") + name + - XorStr("&ownerid=") + ownerid; - auto response = req(data, url); - auto json = response_decoder.parse(response); - std::string message = json[(XorStr("message"))]; - - // from https://github.com/h5p9sl/hmac_sha256 - std::stringstream ss_result; - - // Allocate memory for the HMAC - std::vector out(SHA256_HASH_SIZE); - - // Call hmac-sha256 function - hmac_sha256(enckey.data(), enckey.size(), response.data(), response.size(), - out.data(), out.size()); - - // Convert `out` to string with std::hex - for (uint8_t x : out) { - ss_result << std::hex << std::setfill('0') << std::setw(2) << (int)x; - } - - if (!constantTimeStringCompare(ss_result.str().c_str(), signature.c_str(), sizeof(signature).c_str())) { // check response authenticity, if not authentic program crashes - error("Signature checksum failed. Request was tampered with or session ended most likely. & echo: & echo Message: " + message); - } - - load_response_data(json); -} - -void KeyAuth::api::license(std::string key) { - checkInit(); - - std::string hwid = utils::get_hwid(); - auto data = - XorStr("type=license") + - XorStr("&key=") + key + - XorStr("&hwid=") + hwid + - XorStr("&sessionid=") + sessionid + - XorStr("&name=") + name + - XorStr("&ownerid=") + ownerid; - auto response = req(data, url); - auto json = response_decoder.parse(response); - std::string message = json[(XorStr("message"))]; - - // from https://github.com/h5p9sl/hmac_sha256 - std::stringstream ss_result; - - // Allocate memory for the HMAC - std::vector out(SHA256_HASH_SIZE); - - // Call hmac-sha256 function - hmac_sha256(enckey.data(), enckey.size(), response.data(), response.size(), - out.data(), out.size()); - - // Convert `out` to string with std::hex - for (uint8_t x : out) { - ss_result << std::hex << std::setfill('0') << std::setw(2) << (int)x; - } - - if (!constantTimeStringCompare(ss_result.str().c_str(), signature.c_str(), sizeof(signature).c_str())) { // check response authenticity, if not authentic program crashes - error("Signature checksum failed. Request was tampered with or session ended most likely. & echo: & echo Message: " + message); - } - - load_response_data(json); - if (json[(XorStr("success"))]) - load_user_data(json[(XorStr("info"))]); -} - -void KeyAuth::api::setvar(std::string var, std::string vardata) { - checkInit(); - - auto data = - XorStr("type=setvar") + - XorStr("&var=") + var + - XorStr("&data=") + vardata + - XorStr("&sessionid=") + sessionid + - XorStr("&name=") + name + - XorStr("&ownerid=") + ownerid; - auto response = req(data, url); - auto json = response_decoder.parse(response); - load_response_data(json); -} - -std::string KeyAuth::api::getvar(std::string var) { - checkInit(); - - auto data = - XorStr("type=getvar") + - XorStr("&var=") + var + - XorStr("&sessionid=") + sessionid + - XorStr("&name=") + name + - XorStr("&ownerid=") + ownerid; - auto response = req(data, url); - auto json = response_decoder.parse(response); - std::string message = json[(XorStr("message"))]; - - // from https://github.com/h5p9sl/hmac_sha256 - std::stringstream ss_result; - - // Allocate memory for the HMAC - std::vector out(SHA256_HASH_SIZE); - - // Call hmac-sha256 function - hmac_sha256(enckey.data(), enckey.size(), response.data(), response.size(), - out.data(), out.size()); - - // Convert `out` to string with std::hex - for (uint8_t x : out) { - ss_result << std::hex << std::setfill('0') << std::setw(2) << (int)x; - } - - if (!constantTimeStringCompare(ss_result.str().c_str(), signature.c_str(), sizeof(signature).c_str())) { // check response authenticity, if not authentic program crashes - error("Signature checksum failed. Request was tampered with or session ended most likely. & echo: & echo Message: " + message); - } - - load_response_data(json); - return !json[(XorStr("response"))].is_null() ? json[(XorStr("response"))] : XorStr(""); -} - -void KeyAuth::api::ban(std::string reason) { - checkInit(); - - auto data = - XorStr("type=ban") + - XorStr("&reason=") + reason + - XorStr("&sessionid=") + sessionid + - XorStr("&name=") + name + - XorStr("&ownerid=") + ownerid; - auto response = req(data, url); - auto json = response_decoder.parse(response); - std::string message = json[(XorStr("message"))]; - - // from https://github.com/h5p9sl/hmac_sha256 - std::stringstream ss_result; - - // Allocate memory for the HMAC - std::vector out(SHA256_HASH_SIZE); - - // Call hmac-sha256 function - hmac_sha256(enckey.data(), enckey.size(), response.data(), response.size(), - out.data(), out.size()); - - // Convert `out` to string with std::hex - for (uint8_t x : out) { - ss_result << std::hex << std::setfill('0') << std::setw(2) << (int)x; - } - - if (!constantTimeStringCompare(ss_result.str().c_str(), signature.c_str(), sizeof(signature).c_str())) { // check response authenticity, if not authentic program crashes - error("Signature checksum failed. Request was tampered with or session ended most likely. & echo: & echo Message: " + message); - } - - load_response_data(json); -} - -bool KeyAuth::api::checkblack() { - checkInit(); - - std::string hwid = utils::get_hwid(); - auto data = - XorStr("type=checkblacklist") + - XorStr("&hwid=") + hwid + - XorStr("&sessionid=") + sessionid + - XorStr("&name=") + name + - XorStr("&ownerid=") + ownerid; - auto response = req(data, url); - auto json = response_decoder.parse(response); - std::string message = json[(XorStr("message"))]; - - // from https://github.com/h5p9sl/hmac_sha256 - std::stringstream ss_result; - - // Allocate memory for the HMAC - std::vector out(SHA256_HASH_SIZE); - - // Call hmac-sha256 function - hmac_sha256(enckey.data(), enckey.size(), response.data(), response.size(), - out.data(), out.size()); - - // Convert `out` to string with std::hex - for (uint8_t x : out) { - ss_result << std::hex << std::setfill('0') << std::setw(2) << (int)x; - } - - if (!constantTimeStringCompare(ss_result.str().c_str(), signature.c_str(), sizeof(signature).c_str())) { // check response authenticity, if not authentic program crashes - error("Signature checksum failed. Request was tampered with or session ended most likely. & echo: & echo Message: " + message); - } - return json[("success")]; -} - -void KeyAuth::api::check() { - checkInit(); - - auto data = - XorStr("type=check") + - XorStr("&sessionid=") + sessionid + - XorStr("&name=") + name + - XorStr("&ownerid=") + ownerid; - - auto response = req(data, url); - auto json = response_decoder.parse(response); - std::string message = json[(XorStr("message"))]; - - // from https://github.com/h5p9sl/hmac_sha256 - std::stringstream ss_result; - - // Allocate memory for the HMAC - std::vector out(SHA256_HASH_SIZE); - - // Call hmac-sha256 function - hmac_sha256(enckey.data(), enckey.size(), response.data(), response.size(), - out.data(), out.size()); - - // Convert `out` to string with std::hex - for (uint8_t x : out) { - ss_result << std::hex << std::setfill('0') << std::setw(2) << (int)x; - } - - if (!constantTimeStringCompare(ss_result.str().c_str(), signature.c_str(), sizeof(signature).c_str())) { // check response authenticity, if not authentic program crashes - error("Signature checksum failed. Request was tampered with or session ended most likely. & echo: & echo Message: " + message); - } - - load_response_data(json); -} - -std::string KeyAuth::api::var(std::string varid) { - checkInit(); - - auto data = - XorStr("type=var") + - XorStr("&varid=") + varid + - XorStr("&sessionid=") + sessionid + - XorStr("&name=") + name + - XorStr("&ownerid=") + ownerid; - auto response = req(data, url); - auto json = response_decoder.parse(response); - std::string message = json[(XorStr("message"))]; - - // from https://github.com/h5p9sl/hmac_sha256 - std::stringstream ss_result; - - // Allocate memory for the HMAC - std::vector out(SHA256_HASH_SIZE); - - // Call hmac-sha256 function - hmac_sha256(enckey.data(), enckey.size(), response.data(), response.size(), - out.data(), out.size()); - - // Convert `out` to string with std::hex - for (uint8_t x : out) { - ss_result << std::hex << std::setfill('0') << std::setw(2) << (int)x; - } - - if (!constantTimeStringCompare(ss_result.str().c_str(), signature.c_str(), sizeof(signature).c_str())) { // check response authenticity, if not authentic program crashes - error("Signature checksum failed. Request was tampered with or session ended most likely. & echo: & echo Message: " + message); - } - - load_response_data(json); - return json[(XorStr("message"))]; -} - -void KeyAuth::api::log(std::string message) { - checkInit(); - - char acUserName[100]; - DWORD nUserName = sizeof(acUserName); - GetUserNameA(acUserName, &nUserName); - std::string UsernamePC = acUserName; - - auto data = - XorStr("type=log") + - XorStr("&pcuser=") + UsernamePC + - XorStr("&message=") + message + - XorStr("&sessionid=") + sessionid + - XorStr("&name=") + name + - XorStr("&ownerid=") + ownerid; - - req(data, url); -} - -std::vector KeyAuth::api::download(std::string fileid) { - checkInit(); - - auto to_uc_vector = [](std::string value) { - return std::vector(value.data(), value.data() + value.length() ); - }; - - - auto data = - XorStr("type=file") + - XorStr("&fileid=") + fileid + - XorStr("&sessionid=") + sessionid + - XorStr("&name=") + name + - XorStr("&ownerid=").c_str() + ownerid; - - auto response = req(data, url); - auto json = response_decoder.parse(response); - std::string message = json[(XorStr("message"))]; - - load_response_data(json); - if (json[ XorStr( "success" ) ]) - { - auto file = hexDecode(json[ XorStr( "contents" )]); - return to_uc_vector(file); - } - return {}; -} - - -std::string KeyAuth::api::webhook(std::string id, std::string params, std::string body, std::string contenttype) -{ - checkInit(); - - CURL *curl = curl_easy_init(); - auto data = - XorStr("type=webhook") + - XorStr("&webid=") + id + - XorStr("¶ms=") + curl_easy_escape(curl, params.c_str(), 0) + - XorStr("&body=") + curl_easy_escape(curl, body.c_str(), 0) + - XorStr("&conttype=") + contenttype + - XorStr("&sessionid=") + sessionid + - XorStr("&name=") + name + - XorStr("&ownerid=") + ownerid; - curl_easy_cleanup(curl); - auto response = req(data, url); - auto json = response_decoder.parse(response); - std::string message = json[(XorStr("message"))]; - - // from https://github.com/h5p9sl/hmac_sha256 - std::stringstream ss_result; - - // Allocate memory for the HMAC - std::vector out(SHA256_HASH_SIZE); - - // Call hmac-sha256 function - hmac_sha256(enckey.data(), enckey.size(), response.data(), response.size(), - out.data(), out.size()); - - // Convert `out` to string with std::hex - for (uint8_t x : out) { - ss_result << std::hex << std::setfill('0') << std::setw(2) << (int)x; - } - - if (!constantTimeStringCompare(ss_result.str().c_str(), signature.c_str(), sizeof(signature).c_str())) { // check response authenticity, if not authentic program crashes - error("Signature checksum failed. Request was tampered with or session ended most likely. & echo: & echo Message: " + message); - } - - load_response_data(json); - return !json[(XorStr("response"))].is_null() ? json[(XorStr("response"))] : XorStr(""); -} - -std::string KeyAuth::api::fetchonline() -{ - checkInit(); - - auto data = - XorStr("type=fetchOnline") + - XorStr("&sessionid=") + sessionid + - XorStr("&name=") + name + - XorStr("&ownerid=") + ownerid; - - auto response = req(data, url); - auto json = response_decoder.parse(response); - std::string message = json[(XorStr("message"))]; - - std::stringstream ss_result; - - std::vector out(SHA256_HASH_SIZE); - - hmac_sha256(enckey.data(), enckey.size(), response.data(), response.size(), - out.data(), out.size()); - - for (uint8_t x : out) { - ss_result << std::hex << std::setfill('0') << std::setw(2) << (int)x; - } - - if (!constantTimeStringCompare(ss_result.str().c_str(), signature.c_str(), sizeof(signature).c_str())) { // check response authenticity, if not authentic program crashes - error("Signature checksum failed. Request was tampered with or session ended most likely. & echo: & echo Message: " + message); - } - - std::string onlineusers; - - int y = atoi(api::app_data.numOnlineUsers.c_str()); - for (int i = 0; i < y; i++) - { - onlineusers.append(json[XorStr("users")][i][XorStr("credential")]); onlineusers.append(XorStr("\n")); - } - - return onlineusers; -} - -void KeyAuth::api::fetchstats() -{ - checkInit(); - - auto data = - XorStr("type=fetchStats") + - XorStr("&sessionid=") + sessionid + - XorStr("&name=") + name + - XorStr("&ownerid=") + ownerid; - - auto response = req(data, url); - - auto json = response_decoder.parse(response); - std::string message = json[(XorStr("message"))]; - - std::stringstream ss_result; - - std::vector out(SHA256_HASH_SIZE); - - hmac_sha256(enckey.data(), enckey.size(), response.data(), response.size(), - out.data(), out.size()); - - for (uint8_t x : out) { - ss_result << std::hex << std::setfill('0') << std::setw(2) << (int)x; - } - - if (!constantTimeStringCompare(ss_result.str().c_str(), signature.c_str(), sizeof(signature).c_str())) { // check response authenticity, if not authentic program crashes - error("Signature checksum failed. Request was tampered with or session ended most likely. & echo: & echo Message: " + message); - } - - load_response_data(json); - - if (json[(XorStr("success"))]) - load_app_data(json[(XorStr("appinfo"))]); -} - -void KeyAuth::api::forgot(std::string username, std::string email) -{ - checkInit(); - - auto data = - XorStr("type=forgot") + - XorStr("&username=") + username + - XorStr("&email=") + email + - XorStr("&sessionid=") + sessionid + - XorStr("&name=") + name + - XorStr("&ownerid=") + ownerid; - auto response = req(data, url); - auto json = response_decoder.parse(response); - load_response_data(json); -} - -void KeyAuth::api::logout() { - checkInit(); - - auto data = - XorStr("type=logout") + - XorStr("&sessionid=") + sessionid + - XorStr("&name=") + name + - XorStr("&ownerid=") + ownerid; - auto response = req(data, url); - auto json = response_decoder.parse(response); - if (json[(XorStr("success"))]) { - - //clear all old user data from program - user_data.createdate.clear(); - user_data.ip.clear(); - user_data.hwid.clear(); - user_data.lastlogin.clear(); - user_data.username.clear(); - user_data.subscriptions.clear(); - - //clear sessionid - sessionid.clear(); - - //clear enckey - enckey.clear(); - - } - - load_response_data(json); -} - -// credits https://stackoverflow.com/a/3790661 -static std::string hexDecode(const std::string& hex) -{ - int len = hex.length(); - std::string newString; - for (int i = 0; i < len; i += 2) - { - std::string byte = hex.substr(i, 2); - char chr = (char)(int)strtol(byte.c_str(), NULL, 16); - newString.push_back(chr); - } - return newString; -} -// credits https://stackoverflow.com/a/43002794 -std::string get_str_between_two_str(const std::string& s, - const std::string& start_delim, - const std::string& stop_delim) -{ - unsigned first_delim_pos = s.find(start_delim); - unsigned end_pos_of_first_delim = first_delim_pos + start_delim.length(); - unsigned last_delim_pos = s.find(stop_delim); - - return s.substr(end_pos_of_first_delim, - last_delim_pos - end_pos_of_first_delim); -} - -std::string KeyAuth::api::req(std::string data, std::string url) { - CURL* curl = curl_easy_init(); - if (!curl) - return XorStr("null"); - - std::string to_return; - std::string headers; - - curl_easy_setopt(curl, CURLOPT_URL, url.c_str()); - - curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 1); - - curl_easy_setopt(curl, CURLOPT_NOPROXY, XorStr( "keyauth.win" ) ); - - curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 1L); - curl_easy_setopt(curl, CURLOPT_CERTINFO, 1L); - - curl_easy_setopt(curl, CURLOPT_POSTFIELDS, data.c_str()); - - curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_callback); - curl_easy_setopt(curl, CURLOPT_WRITEDATA, &to_return); - - curl_easy_setopt(curl, CURLOPT_HEADERFUNCTION, header_callback); - curl_easy_setopt(curl, CURLOPT_HEADERDATA, &headers); - - auto code = curl_easy_perform(curl); - - if (code != CURLE_OK) - error(curl_easy_strerror(code)); - - debugInfo(data, url, to_return); - - struct curl_certinfo* ci; - code = curl_easy_getinfo(curl, CURLINFO_CERTINFO, &ci); - - if (!code) { - bool issuer_found = false; - - for (int i = 0; i < ci->num_of_certs; i++) { - struct curl_slist* slist; - - for (slist = ci->certinfo[i]; slist; slist = slist->next) { - if (std::strstr(slist->data, XorStr("Google Trust Services").c_str()) != NULL || std::strstr(slist->data, XorStr("Let's Encrypt").c_str()) != NULL) { - issuer_found = true; - } - } - } - - if (!issuer_found) - error(XorStr("SSL certificate couldn't be verified")); - } - - return to_return; -} -void error(std::string message) { - system(("start cmd /C \"color b && title Error && echo " + message + " && timeout /t 5\"").c_str()); - __fastfail(0); -} -// code submitted in pull request from https://github.com/Roblox932 -auto check_section_integrity( const char *section_name, bool fix = false ) -> bool -{ - const auto map_file = []( HMODULE hmodule ) -> std::tuple - { - wchar_t filename[ MAX_PATH ]; - DWORD size = MAX_PATH; - QueryFullProcessImageName(GetCurrentProcess(), 0, filename, &size); - - - const auto file_handle = CreateFile( filename, GENERIC_READ, FILE_SHARE_READ, 0, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, 0 ); - if ( !file_handle || file_handle == INVALID_HANDLE_VALUE ) - { - return { 0ull, nullptr }; - } - - const auto file_mapping = CreateFileMapping( file_handle, 0, PAGE_READONLY, 0, 0, 0 ); - if ( !file_mapping ) - { - CloseHandle( file_handle ); - return { 0ull, nullptr }; - } - - return { reinterpret_cast< std::uintptr_t >( MapViewOfFile( file_mapping, FILE_MAP_READ, 0, 0, 0 ) ), file_handle }; - }; - - const auto hmodule = GetModuleHandle( 0 ); - if ( !hmodule ) return true; - - const auto base_0 = reinterpret_cast< std::uintptr_t >( hmodule ); - if ( !base_0 ) return true; - - const auto dos_0 = reinterpret_cast< IMAGE_DOS_HEADER * >( base_0 ); - if ( dos_0->e_magic != IMAGE_DOS_SIGNATURE ) return true; - - const auto nt_0 = reinterpret_cast< IMAGE_NT_HEADERS * >( base_0 + dos_0->e_lfanew ); - if ( nt_0->Signature != IMAGE_NT_SIGNATURE ) return true; - - auto section_0 = IMAGE_FIRST_SECTION( nt_0 ); - - const auto [base_1, file_handle] = map_file( hmodule ); - if ( !base_1 || !file_handle || file_handle == INVALID_HANDLE_VALUE ) return true; - - const auto dos_1 = reinterpret_cast< IMAGE_DOS_HEADER * >( base_1 ); - if ( dos_1->e_magic != IMAGE_DOS_SIGNATURE ) - { - UnmapViewOfFile( reinterpret_cast< void * >( base_1 ) ); - CloseHandle( file_handle ); - return true; - } - - const auto nt_1 = reinterpret_cast< IMAGE_NT_HEADERS * >( base_1 + dos_1->e_lfanew ); - if ( nt_1->Signature != IMAGE_NT_SIGNATURE || - nt_1->FileHeader.TimeDateStamp != nt_0->FileHeader.TimeDateStamp || - nt_1->FileHeader.NumberOfSections != nt_0->FileHeader.NumberOfSections ) - { - UnmapViewOfFile( reinterpret_cast< void * >( base_1 ) ); - CloseHandle( file_handle ); - return true; - } - - auto section_1 = IMAGE_FIRST_SECTION( nt_1 ); - - bool patched = false; - for ( auto i = 0; i < nt_1->FileHeader.NumberOfSections; ++i, ++section_0, ++section_1 ) - { - if ( strcmp( reinterpret_cast< char * >( section_0->Name ), section_name ) || - !( section_0->Characteristics & IMAGE_SCN_MEM_EXECUTE ) ) continue; - - for ( auto i = 0u; i < section_0->SizeOfRawData; ++i ) - { - const auto old_value = *reinterpret_cast< BYTE * >( base_1 + section_1->PointerToRawData + i ); - - if ( *reinterpret_cast< BYTE * >( base_0 + section_0->VirtualAddress + i ) == old_value ) - { - continue; - } - - if ( fix ) - { - DWORD new_protect { PAGE_EXECUTE_READWRITE }, old_protect; - VirtualProtect( ( void * )( base_0 + section_0->VirtualAddress + i ), sizeof( BYTE ), new_protect, &old_protect ); - *reinterpret_cast< BYTE * >( base_0 + section_0->VirtualAddress + i ) = old_value; - VirtualProtect( ( void * )( base_0 + section_0->VirtualAddress + i ), sizeof( BYTE ), old_protect, &new_protect ); - } - - patched = true; - } - - break; - } - - UnmapViewOfFile( reinterpret_cast< void * >( base_1 ) ); - CloseHandle( file_handle ); - - return patched; -} - -std::string checksum() -{ - auto exec = [&](const char* cmd) -> std::string - { - uint16_t line = -1; - std::array buffer; - std::string result; - std::unique_ptr pipe(_popen(cmd, "r"), _pclose); - if (!pipe) { - throw std::runtime_error(XorStr("popen() failed!")); - } - - while (fgets(buffer.data(), buffer.size(), pipe.get()) != nullptr) { - result = buffer.data(); - } - return result; - }; - - char rawPathName[MAX_PATH]; - GetModuleFileNameA(NULL, rawPathName, MAX_PATH); - - return exec(("certutil -hashfile \"" + std::string(rawPathName) + XorStr( "\" MD5 | find /i /v \"md5\" | find /i /v \"certutil\"") ).c_str()); -} - -bool constantTimeStringCompare(const char* str1, const char* str2, size_t length) { - int result = 0; - - for (size_t i = 0; i < length; ++i) { - result |= str1[i] ^ str2[i]; - } - - return result == 0; -} - -std::string getPath() { - const char* programDataPath = std::getenv("ALLUSERSPROFILE"); - - if (programDataPath != nullptr) { - return std::string(programDataPath); - } - else { - - return std::filesystem::current_path().string(); - } -} - -void RedactField(nlohmann::json& jsonObject, const std::string& fieldName) -{ - - if (jsonObject.contains(fieldName)) { - jsonObject[fieldName] = "REDACTED"; - } -} - -void debugInfo(std::string data, std::string url, std::string response) { - - //turn response into json - nlohmann::json responses = nlohmann::json::parse(response); - RedactField(responses, "sessionid"); - RedactField(responses, "ownerid"); - RedactField(responses, "app"); - RedactField(responses, "name"); - RedactField(responses, "contents"); - RedactField(responses, "key"); - RedactField(responses, "username"); - RedactField(responses, "password"); - RedactField(responses, "secret"); - RedactField(responses, "version"); - RedactField(responses, "fileid"); - RedactField(responses, "webhooks"); - std::string redacted_response = responses.dump(); - - //turn data into json - std::replace(data.begin(), data.end(), '&', ' '); - - nlohmann::json datas; - - std::istringstream iss(data); - std::vector results((std::istream_iterator(iss)), - std::istream_iterator()); - - for (auto const& value : results) { - datas[value.substr(0, value.find('='))] = value.substr(value.find('=') + 1); - } - - RedactField(datas, "sessionid"); - RedactField(datas, "ownerid"); - RedactField(datas, "app"); - RedactField(datas, "name"); - RedactField(datas, "key"); - RedactField(datas, "username"); - RedactField(datas, "password"); - RedactField(datas, "contents"); - RedactField(datas, "secret"); - RedactField(datas, "version"); - RedactField(datas, "fileid"); - RedactField(datas, "webhooks"); - - std::string redacted_data = datas.dump(); - - - //gets the path - std::string path = getPath(); - - //fetch filename - - TCHAR filename[MAX_PATH]; - GetModuleFileName(NULL, filename, MAX_PATH); - - TCHAR* filename_only = PathFindFileName(filename); - - std::wstring filenameOnlyString(filename_only); - - std::string filenameOnly(filenameOnlyString.begin(), filenameOnlyString.end()); - - /////////////////////// - - //creates variables for the paths needed :smile: - std::string KeyAuthPath = path + "\\KeyAuth"; - std::string logPath = KeyAuthPath + "\\Debug\\" + filenameOnly.substr(0, filenameOnly.size() - 4); - - //basically loops until we have all the paths - if (!std::filesystem::exists(KeyAuthPath) || !std::filesystem::exists(KeyAuthPath + "\\Debug") || !std::filesystem::exists(logPath)) { - - if (!std::filesystem::exists(KeyAuthPath)) { std::filesystem::create_directory(KeyAuthPath); } - - if (!std::filesystem::exists(KeyAuthPath + "\\Debug")) { std::filesystem::create_directory(KeyAuthPath + "\\Debug"); } - - if (!std::filesystem::exists(logPath)) { std::filesystem::create_directory(logPath); } - - } - - if (response.length() >= 200) { return; } - - //now time for my life to end yay :skull: - - //fetch todays time - std::time_t t = std::time(nullptr); - char time[80]; - - std::tm* localTime = std::localtime(&t); - - std::strftime(time, sizeof(time), "%m-%d-%Y", localTime); - - std::ofstream logfile(logPath + "\\" + time + ".txt", std::ios::app); - - //get time - int hours = localTime->tm_hour; - int minutes = localTime->tm_min; - - std::string period; - if (hours < 12) { - period = "AM"; - } - else { - period = "PM"; - hours -= 12; - } - - std::string formattedMinutes = (minutes < 10) ? "0" + std::to_string(minutes) : std::to_string(minutes); - - std::string currentTimeString = std::to_string(hours) + ":" + formattedMinutes + " " + period; - - std::string contents = "\n\n@ " + currentTimeString + "\nData sent : " + redacted_data + "\nResponse : " + redacted_response + "Sent to: " + url; - - logfile << contents; - - logfile.close(); -} - -void checkInit() { - if (!initalized) { - error("You need to run the KeyAuthApp.init(); function before any other KeyAuth functions"); - } -} -// code submitted in pull request from https://github.com/BINM7MD -BOOL bDataCompare(const BYTE* pData, const BYTE* bMask, const char* szMask) -{ - for (; *szMask; ++szMask, ++pData, ++bMask) - { - if (*szMask == 'x' && *pData != *bMask) - return FALSE; - } - return (*szMask) == NULL; -} -DWORD64 FindPattern(BYTE* bMask, const char* szMask) -{ - MODULEINFO mi{ }; - GetModuleInformation(GetCurrentProcess(), GetModuleHandleA(NULL), &mi, sizeof(mi)); - - DWORD64 dwBaseAddress = DWORD64(mi.lpBaseOfDll); - const auto dwModuleSize = mi.SizeOfImage; - - for (auto i = 0ul; i < dwModuleSize; i++) - { - if (bDataCompare(PBYTE(dwBaseAddress + i), bMask, szMask)) - return DWORD64(dwBaseAddress + i); - } - return NULL; -} - -DWORD64 Function_Address; -void modify() -{ - // code submitted in pull request from https://github.com/Roblox932 - check_section_integrity( XorStr( ".text" ).c_str( ), true ); - - while (true) - { - if ( check_section_integrity( XorStr( ".text" ).c_str( ), false ) ) - { - error("check_section_integrity() failed, don't tamper with the program."); - } - // code submitted in pull request from https://github.com/sbtoonz, authored by KeePassXC https://github.com/keepassxreboot/keepassxc/blob/dab7047113c4ad4ffead944d5c4ebfb648c1d0b0/src/core/Bootstrap.cpp#L121 - if(!LockMemAccess()) - { - error("LockMemAccess() failed, don't tamper with the program."); - } - // code submitted in pull request from https://github.com/BINM7MD - if (Function_Address == NULL) { - Function_Address = FindPattern(PBYTE("\x48\x89\x74\x24\x00\x57\x48\x81\xec\x00\x00\x00\x00\x49\x8b\xf0"), XorStr("xxxx?xxxx????xxx").c_str()) - 0x5; - } - BYTE Instruction = *(BYTE*)Function_Address; - - if ((DWORD64)Instruction == 0xE9) { - error("Pattern checksum failed, don't tamper with the program."); - } - Sleep(50); - } -} From bf3408e6e1a21ac2750c32d494aee3507be7ae74 Mon Sep 17 00:00:00 2001 From: Shxde <112267394+Shxde1@users.noreply.github.com> Date: Sat, 21 Dec 2024 13:10:32 -0500 Subject: [PATCH 15/19] Delete Security.hpp --- Security.hpp | 106 --------------------------------------------------- 1 file changed, 106 deletions(-) delete mode 100644 Security.hpp diff --git a/Security.hpp b/Security.hpp deleted file mode 100644 index 958c0d7..0000000 --- a/Security.hpp +++ /dev/null @@ -1,106 +0,0 @@ -#pragma once -#include -#include -#include -#include -#include - -// code submitted in pull request from https://github.com/sbtoonz, authored by KeePassXC https://github.com/keepassxreboot/keepassxc/blob/dab7047113c4ad4ffead944d5c4ebfb648c1d0b0/src/core/Bootstrap.cpp#L121 -inline bool LockMemAccess() -{ - bool bSuccess = false; - // Process token and user - HANDLE hToken = nullptr; - PTOKEN_USER pTokenUser = nullptr; - DWORD cbBufferSize = 0; - - // Access control list - PACL pACL = nullptr; - DWORD cbACL = 0; - - // Open the access token associated with the calling process - if (!OpenProcessToken( - GetCurrentProcess(), - TOKEN_QUERY, - &hToken - )) { - goto Cleanup; - } - - // Retrieve the token information in a TOKEN_USER structure - GetTokenInformation( - hToken, - TokenUser, // request for a TOKEN_USER structure - nullptr, - 0, - &cbBufferSize - ); - - pTokenUser = static_cast(malloc(cbBufferSize)); - if (pTokenUser == nullptr) { - goto Cleanup; - } - - if (!GetTokenInformation( - hToken, - TokenUser, - pTokenUser, - cbBufferSize, - &cbBufferSize - )) { - goto Cleanup; - } - - if (!IsValidSid(pTokenUser->User.Sid)) { - goto Cleanup; - } - - // Calculate the amount of memory that must be allocated for the DACL - cbACL = sizeof(ACL) + sizeof(ACCESS_ALLOWED_ACE) + GetLengthSid(pTokenUser->User.Sid); - - // Create and initialize an ACL - pACL = static_cast(malloc(cbACL)); - if (pACL == nullptr) { - goto Cleanup; - } - - if (!InitializeAcl(pACL, cbACL, ACL_REVISION)) { - goto Cleanup; - } - - // Add allowed access control entries, everything else is denied - if (!AddAccessAllowedAce( - pACL, - ACL_REVISION, - SYNCHRONIZE | PROCESS_QUERY_LIMITED_INFORMATION | PROCESS_TERMINATE, // same as protected process - pTokenUser->User.Sid // pointer to the trustee's SID - )) { - goto Cleanup; - } - - // Set discretionary access control list - bSuccess = ERROR_SUCCESS == SetSecurityInfo( - GetCurrentProcess(), // object handle - SE_KERNEL_OBJECT, // type of object - DACL_SECURITY_INFORMATION, // change only the objects DACL - nullptr, nullptr, // do not change owner or group - pACL, // DACL specified - nullptr // do not change SACL - ); - -Cleanup: - - if (pACL != nullptr) { - free(pACL); - - } - if (pTokenUser != nullptr) { - free(pTokenUser); - - } - if (hToken != nullptr) { - CloseHandle(hToken); - - } - return bSuccess; -} \ No newline at end of file From e38241e8cd3e196dbb4bcefcb8530c36205e072c Mon Sep 17 00:00:00 2001 From: Shxde <112267394+Shxde1@users.noreply.github.com> Date: Sat, 21 Dec 2024 13:10:38 -0500 Subject: [PATCH 16/19] Delete nlohmann directory --- nlohmann/adl_serializer.hpp | 49 - nlohmann/byte_container_with_subtype.hpp | 166 - nlohmann/detail/conversions/from_json.hpp | 403 - nlohmann/detail/conversions/to_chars.hpp | 1105 --- nlohmann/detail/conversions/to_json.hpp | 374 - nlohmann/detail/exceptions.hpp | 357 - nlohmann/detail/hash.hpp | 117 - nlohmann/detail/input/binary_reader.hpp | 2459 ----- nlohmann/detail/input/input_adapters.hpp | 454 - nlohmann/detail/input/json_sax.hpp | 696 -- nlohmann/detail/input/lexer.hpp | 1623 --- nlohmann/detail/input/parser.hpp | 501 - nlohmann/detail/input/position_t.hpp | 27 - .../detail/iterators/internal_iterator.hpp | 25 - nlohmann/detail/iterators/iter_impl.hpp | 637 -- nlohmann/detail/iterators/iteration_proxy.hpp | 178 - nlohmann/detail/iterators/iterator_traits.hpp | 51 - .../iterators/json_reverse_iterator.hpp | 119 - .../detail/iterators/primitive_iterator.hpp | 120 - nlohmann/detail/json_pointer.hpp | 975 -- nlohmann/detail/json_ref.hpp | 76 - nlohmann/detail/macro_scope.hpp | 297 - nlohmann/detail/macro_unscope.hpp | 23 - nlohmann/detail/meta/cpp_future.hpp | 62 - nlohmann/detail/meta/detected.hpp | 58 - nlohmann/detail/meta/is_sax.hpp | 149 - nlohmann/detail/meta/type_traits.hpp | 396 - nlohmann/detail/meta/void_t.hpp | 13 - nlohmann/detail/output/binary_writer.hpp | 1595 --- nlohmann/detail/output/output_adapters.hpp | 123 - nlohmann/detail/output/serializer.hpp | 947 -- nlohmann/detail/value_t.hpp | 81 - nlohmann/json.hpp | 8791 ----------------- nlohmann/json_fwd.hpp | 78 - nlohmann/ordered_map.hpp | 171 - nlohmann/thirdparty/hedley/hedley.hpp | 1911 ---- nlohmann/thirdparty/hedley/hedley_undef.hpp | 143 - 37 files changed, 25350 deletions(-) delete mode 100644 nlohmann/adl_serializer.hpp delete mode 100644 nlohmann/byte_container_with_subtype.hpp delete mode 100644 nlohmann/detail/conversions/from_json.hpp delete mode 100644 nlohmann/detail/conversions/to_chars.hpp delete mode 100644 nlohmann/detail/conversions/to_json.hpp delete mode 100644 nlohmann/detail/exceptions.hpp delete mode 100644 nlohmann/detail/hash.hpp delete mode 100644 nlohmann/detail/input/binary_reader.hpp delete mode 100644 nlohmann/detail/input/input_adapters.hpp delete mode 100644 nlohmann/detail/input/json_sax.hpp delete mode 100644 nlohmann/detail/input/lexer.hpp delete mode 100644 nlohmann/detail/input/parser.hpp delete mode 100644 nlohmann/detail/input/position_t.hpp delete mode 100644 nlohmann/detail/iterators/internal_iterator.hpp delete mode 100644 nlohmann/detail/iterators/iter_impl.hpp delete mode 100644 nlohmann/detail/iterators/iteration_proxy.hpp delete mode 100644 nlohmann/detail/iterators/iterator_traits.hpp delete mode 100644 nlohmann/detail/iterators/json_reverse_iterator.hpp delete mode 100644 nlohmann/detail/iterators/primitive_iterator.hpp delete mode 100644 nlohmann/detail/json_pointer.hpp delete mode 100644 nlohmann/detail/json_ref.hpp delete mode 100644 nlohmann/detail/macro_scope.hpp delete mode 100644 nlohmann/detail/macro_unscope.hpp delete mode 100644 nlohmann/detail/meta/cpp_future.hpp delete mode 100644 nlohmann/detail/meta/detected.hpp delete mode 100644 nlohmann/detail/meta/is_sax.hpp delete mode 100644 nlohmann/detail/meta/type_traits.hpp delete mode 100644 nlohmann/detail/meta/void_t.hpp delete mode 100644 nlohmann/detail/output/binary_writer.hpp delete mode 100644 nlohmann/detail/output/output_adapters.hpp delete mode 100644 nlohmann/detail/output/serializer.hpp delete mode 100644 nlohmann/detail/value_t.hpp delete mode 100644 nlohmann/json.hpp delete mode 100644 nlohmann/json_fwd.hpp delete mode 100644 nlohmann/ordered_map.hpp delete mode 100644 nlohmann/thirdparty/hedley/hedley.hpp delete mode 100644 nlohmann/thirdparty/hedley/hedley_undef.hpp diff --git a/nlohmann/adl_serializer.hpp b/nlohmann/adl_serializer.hpp deleted file mode 100644 index 4af1c4b..0000000 --- a/nlohmann/adl_serializer.hpp +++ /dev/null @@ -1,49 +0,0 @@ -#pragma once - -#include - -#include -#include - -namespace nlohmann -{ - -template -struct adl_serializer -{ - /*! - @brief convert a JSON value to any value type - - This function is usually called by the `get()` function of the - @ref basic_json class (either explicit or via conversion operators). - - @param[in] j JSON value to read from - @param[in,out] val value to write to - */ - template - static auto from_json(BasicJsonType&& j, ValueType& val) noexcept( - noexcept(::nlohmann::from_json(std::forward(j), val))) - -> decltype(::nlohmann::from_json(std::forward(j), val), void()) - { - ::nlohmann::from_json(std::forward(j), val); - } - - /*! - @brief convert any value type to a JSON value - - This function is usually called by the constructors of the @ref basic_json - class. - - @param[in,out] j JSON value to write to - @param[in] val value to read from - */ - template - static auto to_json(BasicJsonType& j, ValueType&& val) noexcept( - noexcept(::nlohmann::to_json(j, std::forward(val)))) - -> decltype(::nlohmann::to_json(j, std::forward(val)), void()) - { - ::nlohmann::to_json(j, std::forward(val)); - } -}; - -} // namespace nlohmann diff --git a/nlohmann/byte_container_with_subtype.hpp b/nlohmann/byte_container_with_subtype.hpp deleted file mode 100644 index 69f9feb..0000000 --- a/nlohmann/byte_container_with_subtype.hpp +++ /dev/null @@ -1,166 +0,0 @@ -#pragma once - -#include // uint8_t -#include // tie -#include // move - -namespace nlohmann -{ - -/*! -@brief an internal type for a backed binary type - -This type extends the template parameter @a BinaryType provided to `basic_json` -with a subtype used by BSON and MessagePack. This type exists so that the user -does not have to specify a type themselves with a specific naming scheme in -order to override the binary type. - -@tparam BinaryType container to store bytes (`std::vector` by - default) - -@since version 3.8.0 -*/ -template -class byte_container_with_subtype : public BinaryType -{ - public: - /// the type of the underlying container - using container_type = BinaryType; - - byte_container_with_subtype() noexcept(noexcept(container_type())) - : container_type() - {} - - byte_container_with_subtype(const container_type& b) noexcept(noexcept(container_type(b))) - : container_type(b) - {} - - byte_container_with_subtype(container_type&& b) noexcept(noexcept(container_type(std::move(b)))) - : container_type(std::move(b)) - {} - - byte_container_with_subtype(const container_type& b, std::uint8_t subtype) noexcept(noexcept(container_type(b))) - : container_type(b) - , m_subtype(subtype) - , m_has_subtype(true) - {} - - byte_container_with_subtype(container_type&& b, std::uint8_t subtype) noexcept(noexcept(container_type(std::move(b)))) - : container_type(std::move(b)) - , m_subtype(subtype) - , m_has_subtype(true) - {} - - bool operator==(const byte_container_with_subtype& rhs) const - { - return std::tie(static_cast(*this), m_subtype, m_has_subtype) == - std::tie(static_cast(rhs), rhs.m_subtype, rhs.m_has_subtype); - } - - bool operator!=(const byte_container_with_subtype& rhs) const - { - return !(rhs == *this); - } - - /*! - @brief sets the binary subtype - - Sets the binary subtype of the value, also flags a binary JSON value as - having a subtype, which has implications for serialization. - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this member function never throws - exceptions. - - @sa @ref subtype() -- return the binary subtype - @sa @ref clear_subtype() -- clears the binary subtype - @sa @ref has_subtype() -- returns whether or not the binary value has a - subtype - - @since version 3.8.0 - */ - void set_subtype(std::uint8_t subtype) noexcept - { - m_subtype = subtype; - m_has_subtype = true; - } - - /*! - @brief return the binary subtype - - Returns the numerical subtype of the value if it has a subtype. If it does - not have a subtype, this function will return size_t(-1) as a sentinel - value. - - @return the numerical subtype of the binary value - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this member function never throws - exceptions. - - @sa @ref set_subtype() -- sets the binary subtype - @sa @ref clear_subtype() -- clears the binary subtype - @sa @ref has_subtype() -- returns whether or not the binary value has a - subtype - - @since version 3.8.0 - */ - constexpr std::uint8_t subtype() const noexcept - { - return m_subtype; - } - - /*! - @brief return whether the value has a subtype - - @return whether the value has a subtype - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this member function never throws - exceptions. - - @sa @ref subtype() -- return the binary subtype - @sa @ref set_subtype() -- sets the binary subtype - @sa @ref clear_subtype() -- clears the binary subtype - - @since version 3.8.0 - */ - constexpr bool has_subtype() const noexcept - { - return m_has_subtype; - } - - /*! - @brief clears the binary subtype - - Clears the binary subtype and flags the value as not having a subtype, which - has implications for serialization; for instance MessagePack will prefer the - bin family over the ext family. - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this member function never throws - exceptions. - - @sa @ref subtype() -- return the binary subtype - @sa @ref set_subtype() -- sets the binary subtype - @sa @ref has_subtype() -- returns whether or not the binary value has a - subtype - - @since version 3.8.0 - */ - void clear_subtype() noexcept - { - m_subtype = 0; - m_has_subtype = false; - } - - private: - std::uint8_t m_subtype = 0; - bool m_has_subtype = false; -}; - -} // namespace nlohmann diff --git a/nlohmann/detail/conversions/from_json.hpp b/nlohmann/detail/conversions/from_json.hpp deleted file mode 100644 index 438b84a..0000000 --- a/nlohmann/detail/conversions/from_json.hpp +++ /dev/null @@ -1,403 +0,0 @@ -#pragma once - -#include // transform -#include // array -#include // forward_list -#include // inserter, front_inserter, end -#include // map -#include // string -#include // tuple, make_tuple -#include // is_arithmetic, is_same, is_enum, underlying_type, is_convertible -#include // unordered_map -#include // pair, declval -#include // valarray - -#include -#include -#include -#include -#include - -namespace nlohmann -{ -namespace detail -{ -template -void from_json(const BasicJsonType& j, typename std::nullptr_t& n) -{ - if (JSON_HEDLEY_UNLIKELY(!j.is_null())) - { - JSON_THROW(type_error::create(302, "type must be null, but is " + std::string(j.type_name()))); - } - n = nullptr; -} - -// overloads for basic_json template parameters -template < typename BasicJsonType, typename ArithmeticType, - enable_if_t < std::is_arithmetic::value&& - !std::is_same::value, - int > = 0 > -void get_arithmetic_value(const BasicJsonType& j, ArithmeticType& val) -{ - switch (static_cast(j)) - { - case value_t::number_unsigned: - { - val = static_cast(*j.template get_ptr()); - break; - } - case value_t::number_integer: - { - val = static_cast(*j.template get_ptr()); - break; - } - case value_t::number_float: - { - val = static_cast(*j.template get_ptr()); - break; - } - - default: - JSON_THROW(type_error::create(302, "type must be number, but is " + std::string(j.type_name()))); - } -} - -template -void from_json(const BasicJsonType& j, typename BasicJsonType::boolean_t& b) -{ - if (JSON_HEDLEY_UNLIKELY(!j.is_boolean())) - { - JSON_THROW(type_error::create(302, "type must be boolean, but is " + std::string(j.type_name()))); - } - b = *j.template get_ptr(); -} - -template -void from_json(const BasicJsonType& j, typename BasicJsonType::string_t& s) -{ - if (JSON_HEDLEY_UNLIKELY(!j.is_string())) - { - JSON_THROW(type_error::create(302, "type must be string, but is " + std::string(j.type_name()))); - } - s = *j.template get_ptr(); -} - -template < - typename BasicJsonType, typename ConstructibleStringType, - enable_if_t < - is_constructible_string_type::value&& - !std::is_same::value, - int > = 0 > -void from_json(const BasicJsonType& j, ConstructibleStringType& s) -{ - if (JSON_HEDLEY_UNLIKELY(!j.is_string())) - { - JSON_THROW(type_error::create(302, "type must be string, but is " + std::string(j.type_name()))); - } - - s = *j.template get_ptr(); -} - -template -void from_json(const BasicJsonType& j, typename BasicJsonType::number_float_t& val) -{ - get_arithmetic_value(j, val); -} - -template -void from_json(const BasicJsonType& j, typename BasicJsonType::number_unsigned_t& val) -{ - get_arithmetic_value(j, val); -} - -template -void from_json(const BasicJsonType& j, typename BasicJsonType::number_integer_t& val) -{ - get_arithmetic_value(j, val); -} - -template::value, int> = 0> -void from_json(const BasicJsonType& j, EnumType& e) -{ - typename std::underlying_type::type val; - get_arithmetic_value(j, val); - e = static_cast(val); -} - -// forward_list doesn't have an insert method -template::value, int> = 0> -void from_json(const BasicJsonType& j, std::forward_list& l) -{ - if (JSON_HEDLEY_UNLIKELY(!j.is_array())) - { - JSON_THROW(type_error::create(302, "type must be array, but is " + std::string(j.type_name()))); - } - l.clear(); - std::transform(j.rbegin(), j.rend(), - std::front_inserter(l), [](const BasicJsonType & i) - { - return i.template get(); - }); -} - -// valarray doesn't have an insert method -template::value, int> = 0> -void from_json(const BasicJsonType& j, std::valarray& l) -{ - if (JSON_HEDLEY_UNLIKELY(!j.is_array())) - { - JSON_THROW(type_error::create(302, "type must be array, but is " + std::string(j.type_name()))); - } - l.resize(j.size()); - std::transform(j.begin(), j.end(), std::begin(l), - [](const BasicJsonType & elem) - { - return elem.template get(); - }); -} - -template -auto from_json(const BasicJsonType& j, T (&arr)[N]) --> decltype(j.template get(), void()) -{ - for (std::size_t i = 0; i < N; ++i) - { - arr[i] = j.at(i).template get(); - } -} - -template -void from_json_array_impl(const BasicJsonType& j, typename BasicJsonType::array_t& arr, priority_tag<3> /*unused*/) -{ - arr = *j.template get_ptr(); -} - -template -auto from_json_array_impl(const BasicJsonType& j, std::array& arr, - priority_tag<2> /*unused*/) --> decltype(j.template get(), void()) -{ - for (std::size_t i = 0; i < N; ++i) - { - arr[i] = j.at(i).template get(); - } -} - -template -auto from_json_array_impl(const BasicJsonType& j, ConstructibleArrayType& arr, priority_tag<1> /*unused*/) --> decltype( - arr.reserve(std::declval()), - j.template get(), - void()) -{ - using std::end; - - ConstructibleArrayType ret; - ret.reserve(j.size()); - std::transform(j.begin(), j.end(), - std::inserter(ret, end(ret)), [](const BasicJsonType & i) - { - // get() returns *this, this won't call a from_json - // method when value_type is BasicJsonType - return i.template get(); - }); - arr = std::move(ret); -} - -template -void from_json_array_impl(const BasicJsonType& j, ConstructibleArrayType& arr, - priority_tag<0> /*unused*/) -{ - using std::end; - - ConstructibleArrayType ret; - std::transform( - j.begin(), j.end(), std::inserter(ret, end(ret)), - [](const BasicJsonType & i) - { - // get() returns *this, this won't call a from_json - // method when value_type is BasicJsonType - return i.template get(); - }); - arr = std::move(ret); -} - -template < typename BasicJsonType, typename ConstructibleArrayType, - enable_if_t < - is_constructible_array_type::value&& - !is_constructible_object_type::value&& - !is_constructible_string_type::value&& - !std::is_same::value&& - !is_basic_json::value, - int > = 0 > -auto from_json(const BasicJsonType& j, ConstructibleArrayType& arr) --> decltype(from_json_array_impl(j, arr, priority_tag<3> {}), -j.template get(), -void()) -{ - if (JSON_HEDLEY_UNLIKELY(!j.is_array())) - { - JSON_THROW(type_error::create(302, "type must be array, but is " + - std::string(j.type_name()))); - } - - from_json_array_impl(j, arr, priority_tag<3> {}); -} - -template -void from_json(const BasicJsonType& j, typename BasicJsonType::binary_t& bin) -{ - if (JSON_HEDLEY_UNLIKELY(!j.is_binary())) - { - JSON_THROW(type_error::create(302, "type must be binary, but is " + std::string(j.type_name()))); - } - - bin = *j.template get_ptr(); -} - -template::value, int> = 0> -void from_json(const BasicJsonType& j, ConstructibleObjectType& obj) -{ - if (JSON_HEDLEY_UNLIKELY(!j.is_object())) - { - JSON_THROW(type_error::create(302, "type must be object, but is " + std::string(j.type_name()))); - } - - ConstructibleObjectType ret; - auto inner_object = j.template get_ptr(); - using value_type = typename ConstructibleObjectType::value_type; - std::transform( - inner_object->begin(), inner_object->end(), - std::inserter(ret, ret.begin()), - [](typename BasicJsonType::object_t::value_type const & p) - { - return value_type(p.first, p.second.template get()); - }); - obj = std::move(ret); -} - -// overload for arithmetic types, not chosen for basic_json template arguments -// (BooleanType, etc..); note: Is it really necessary to provide explicit -// overloads for boolean_t etc. in case of a custom BooleanType which is not -// an arithmetic type? -template < typename BasicJsonType, typename ArithmeticType, - enable_if_t < - std::is_arithmetic::value&& - !std::is_same::value&& - !std::is_same::value&& - !std::is_same::value&& - !std::is_same::value, - int > = 0 > -void from_json(const BasicJsonType& j, ArithmeticType& val) -{ - switch (static_cast(j)) - { - case value_t::number_unsigned: - { - val = static_cast(*j.template get_ptr()); - break; - } - case value_t::number_integer: - { - val = static_cast(*j.template get_ptr()); - break; - } - case value_t::number_float: - { - val = static_cast(*j.template get_ptr()); - break; - } - case value_t::boolean: - { - val = static_cast(*j.template get_ptr()); - break; - } - - default: - JSON_THROW(type_error::create(302, "type must be number, but is " + std::string(j.type_name()))); - } -} - -template -void from_json(const BasicJsonType& j, std::pair& p) -{ - p = {j.at(0).template get(), j.at(1).template get()}; -} - -template -void from_json_tuple_impl(const BasicJsonType& j, Tuple& t, index_sequence /*unused*/) -{ - t = std::make_tuple(j.at(Idx).template get::type>()...); -} - -template -void from_json(const BasicJsonType& j, std::tuple& t) -{ - from_json_tuple_impl(j, t, index_sequence_for {}); -} - -template < typename BasicJsonType, typename Key, typename Value, typename Compare, typename Allocator, - typename = enable_if_t < !std::is_constructible < - typename BasicJsonType::string_t, Key >::value >> -void from_json(const BasicJsonType& j, std::map& m) -{ - if (JSON_HEDLEY_UNLIKELY(!j.is_array())) - { - JSON_THROW(type_error::create(302, "type must be array, but is " + std::string(j.type_name()))); - } - m.clear(); - for (const auto& p : j) - { - if (JSON_HEDLEY_UNLIKELY(!p.is_array())) - { - JSON_THROW(type_error::create(302, "type must be array, but is " + std::string(p.type_name()))); - } - m.emplace(p.at(0).template get(), p.at(1).template get()); - } -} - -template < typename BasicJsonType, typename Key, typename Value, typename Hash, typename KeyEqual, typename Allocator, - typename = enable_if_t < !std::is_constructible < - typename BasicJsonType::string_t, Key >::value >> -void from_json(const BasicJsonType& j, std::unordered_map& m) -{ - if (JSON_HEDLEY_UNLIKELY(!j.is_array())) - { - JSON_THROW(type_error::create(302, "type must be array, but is " + std::string(j.type_name()))); - } - m.clear(); - for (const auto& p : j) - { - if (JSON_HEDLEY_UNLIKELY(!p.is_array())) - { - JSON_THROW(type_error::create(302, "type must be array, but is " + std::string(p.type_name()))); - } - m.emplace(p.at(0).template get(), p.at(1).template get()); - } -} - -struct from_json_fn -{ - template - auto operator()(const BasicJsonType& j, T& val) const - noexcept(noexcept(from_json(j, val))) - -> decltype(from_json(j, val), void()) - { - return from_json(j, val); - } -}; -} // namespace detail - -/// namespace to hold default `from_json` function -/// to see why this is required: -/// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2015/n4381.html -namespace -{ -constexpr const auto& from_json = detail::static_const::value; -} // namespace -} // namespace nlohmann diff --git a/nlohmann/detail/conversions/to_chars.hpp b/nlohmann/detail/conversions/to_chars.hpp deleted file mode 100644 index c632ff2..0000000 --- a/nlohmann/detail/conversions/to_chars.hpp +++ /dev/null @@ -1,1105 +0,0 @@ -#pragma once - -#include // array -#include // signbit, isfinite -#include // intN_t, uintN_t -#include // memcpy, memmove -#include // numeric_limits -#include // conditional - -#include - -namespace nlohmann -{ -namespace detail -{ - -/*! -@brief implements the Grisu2 algorithm for binary to decimal floating-point -conversion. - -This implementation is a slightly modified version of the reference -implementation which may be obtained from -http://florian.loitsch.com/publications (bench.tar.gz). - -The code is distributed under the MIT license, Copyright (c) 2009 Florian Loitsch. - -For a detailed description of the algorithm see: - -[1] Loitsch, "Printing Floating-Point Numbers Quickly and Accurately with - Integers", Proceedings of the ACM SIGPLAN 2010 Conference on Programming - Language Design and Implementation, PLDI 2010 -[2] Burger, Dybvig, "Printing Floating-Point Numbers Quickly and Accurately", - Proceedings of the ACM SIGPLAN 1996 Conference on Programming Language - Design and Implementation, PLDI 1996 -*/ -namespace dtoa_impl -{ - -template -Target reinterpret_bits(const Source source) -{ - static_assert(sizeof(Target) == sizeof(Source), "size mismatch"); - - Target target; - std::memcpy(&target, &source, sizeof(Source)); - return target; -} - -struct diyfp // f * 2^e -{ - static constexpr int kPrecision = 64; // = q - - std::uint64_t f = 0; - int e = 0; - - constexpr diyfp(std::uint64_t f_, int e_) noexcept : f(f_), e(e_) {} - - /*! - @brief returns x - y - @pre x.e == y.e and x.f >= y.f - */ - static diyfp sub(const diyfp& x, const diyfp& y) noexcept - { - JSON_ASSERT(x.e == y.e); - JSON_ASSERT(x.f >= y.f); - - return {x.f - y.f, x.e}; - } - - /*! - @brief returns x * y - @note The result is rounded. (Only the upper q bits are returned.) - */ - static diyfp mul(const diyfp& x, const diyfp& y) noexcept - { - static_assert(kPrecision == 64, "internal error"); - - // Computes: - // f = round((x.f * y.f) / 2^q) - // e = x.e + y.e + q - - // Emulate the 64-bit * 64-bit multiplication: - // - // p = u * v - // = (u_lo + 2^32 u_hi) (v_lo + 2^32 v_hi) - // = (u_lo v_lo ) + 2^32 ((u_lo v_hi ) + (u_hi v_lo )) + 2^64 (u_hi v_hi ) - // = (p0 ) + 2^32 ((p1 ) + (p2 )) + 2^64 (p3 ) - // = (p0_lo + 2^32 p0_hi) + 2^32 ((p1_lo + 2^32 p1_hi) + (p2_lo + 2^32 p2_hi)) + 2^64 (p3 ) - // = (p0_lo ) + 2^32 (p0_hi + p1_lo + p2_lo ) + 2^64 (p1_hi + p2_hi + p3) - // = (p0_lo ) + 2^32 (Q ) + 2^64 (H ) - // = (p0_lo ) + 2^32 (Q_lo + 2^32 Q_hi ) + 2^64 (H ) - // - // (Since Q might be larger than 2^32 - 1) - // - // = (p0_lo + 2^32 Q_lo) + 2^64 (Q_hi + H) - // - // (Q_hi + H does not overflow a 64-bit int) - // - // = p_lo + 2^64 p_hi - - const std::uint64_t u_lo = x.f & 0xFFFFFFFFu; - const std::uint64_t u_hi = x.f >> 32u; - const std::uint64_t v_lo = y.f & 0xFFFFFFFFu; - const std::uint64_t v_hi = y.f >> 32u; - - const std::uint64_t p0 = u_lo * v_lo; - const std::uint64_t p1 = u_lo * v_hi; - const std::uint64_t p2 = u_hi * v_lo; - const std::uint64_t p3 = u_hi * v_hi; - - const std::uint64_t p0_hi = p0 >> 32u; - const std::uint64_t p1_lo = p1 & 0xFFFFFFFFu; - const std::uint64_t p1_hi = p1 >> 32u; - const std::uint64_t p2_lo = p2 & 0xFFFFFFFFu; - const std::uint64_t p2_hi = p2 >> 32u; - - std::uint64_t Q = p0_hi + p1_lo + p2_lo; - - // The full product might now be computed as - // - // p_hi = p3 + p2_hi + p1_hi + (Q >> 32) - // p_lo = p0_lo + (Q << 32) - // - // But in this particular case here, the full p_lo is not required. - // Effectively we only need to add the highest bit in p_lo to p_hi (and - // Q_hi + 1 does not overflow). - - Q += std::uint64_t{1} << (64u - 32u - 1u); // round, ties up - - const std::uint64_t h = p3 + p2_hi + p1_hi + (Q >> 32u); - - return {h, x.e + y.e + 64}; - } - - /*! - @brief normalize x such that the significand is >= 2^(q-1) - @pre x.f != 0 - */ - static diyfp normalize(diyfp x) noexcept - { - JSON_ASSERT(x.f != 0); - - while ((x.f >> 63u) == 0) - { - x.f <<= 1u; - x.e--; - } - - return x; - } - - /*! - @brief normalize x such that the result has the exponent E - @pre e >= x.e and the upper e - x.e bits of x.f must be zero. - */ - static diyfp normalize_to(const diyfp& x, const int target_exponent) noexcept - { - const int delta = x.e - target_exponent; - - JSON_ASSERT(delta >= 0); - JSON_ASSERT(((x.f << delta) >> delta) == x.f); - - return {x.f << delta, target_exponent}; - } -}; - -struct boundaries -{ - diyfp w; - diyfp minus; - diyfp plus; -}; - -/*! -Compute the (normalized) diyfp representing the input number 'value' and its -boundaries. - -@pre value must be finite and positive -*/ -template -boundaries compute_boundaries(FloatType value) -{ - JSON_ASSERT(std::isfinite(value)); - JSON_ASSERT(value > 0); - - // Convert the IEEE representation into a diyfp. - // - // If v is denormal: - // value = 0.F * 2^(1 - bias) = ( F) * 2^(1 - bias - (p-1)) - // If v is normalized: - // value = 1.F * 2^(E - bias) = (2^(p-1) + F) * 2^(E - bias - (p-1)) - - static_assert(std::numeric_limits::is_iec559, - "internal error: dtoa_short requires an IEEE-754 floating-point implementation"); - - constexpr int kPrecision = std::numeric_limits::digits; // = p (includes the hidden bit) - constexpr int kBias = std::numeric_limits::max_exponent - 1 + (kPrecision - 1); - constexpr int kMinExp = 1 - kBias; - constexpr std::uint64_t kHiddenBit = std::uint64_t{1} << (kPrecision - 1); // = 2^(p-1) - - using bits_type = typename std::conditional::type; - - const std::uint64_t bits = reinterpret_bits(value); - const std::uint64_t E = bits >> (kPrecision - 1); - const std::uint64_t F = bits & (kHiddenBit - 1); - - const bool is_denormal = E == 0; - const diyfp v = is_denormal - ? diyfp(F, kMinExp) - : diyfp(F + kHiddenBit, static_cast(E) - kBias); - - // Compute the boundaries m- and m+ of the floating-point value - // v = f * 2^e. - // - // Determine v- and v+, the floating-point predecessor and successor if v, - // respectively. - // - // v- = v - 2^e if f != 2^(p-1) or e == e_min (A) - // = v - 2^(e-1) if f == 2^(p-1) and e > e_min (B) - // - // v+ = v + 2^e - // - // Let m- = (v- + v) / 2 and m+ = (v + v+) / 2. All real numbers _strictly_ - // between m- and m+ round to v, regardless of how the input rounding - // algorithm breaks ties. - // - // ---+-------------+-------------+-------------+-------------+--- (A) - // v- m- v m+ v+ - // - // -----------------+------+------+-------------+-------------+--- (B) - // v- m- v m+ v+ - - const bool lower_boundary_is_closer = F == 0 && E > 1; - const diyfp m_plus = diyfp(2 * v.f + 1, v.e - 1); - const diyfp m_minus = lower_boundary_is_closer - ? diyfp(4 * v.f - 1, v.e - 2) // (B) - : diyfp(2 * v.f - 1, v.e - 1); // (A) - - // Determine the normalized w+ = m+. - const diyfp w_plus = diyfp::normalize(m_plus); - - // Determine w- = m- such that e_(w-) = e_(w+). - const diyfp w_minus = diyfp::normalize_to(m_minus, w_plus.e); - - return {diyfp::normalize(v), w_minus, w_plus}; -} - -// Given normalized diyfp w, Grisu needs to find a (normalized) cached -// power-of-ten c, such that the exponent of the product c * w = f * 2^e lies -// within a certain range [alpha, gamma] (Definition 3.2 from [1]) -// -// alpha <= e = e_c + e_w + q <= gamma -// -// or -// -// f_c * f_w * 2^alpha <= f_c 2^(e_c) * f_w 2^(e_w) * 2^q -// <= f_c * f_w * 2^gamma -// -// Since c and w are normalized, i.e. 2^(q-1) <= f < 2^q, this implies -// -// 2^(q-1) * 2^(q-1) * 2^alpha <= c * w * 2^q < 2^q * 2^q * 2^gamma -// -// or -// -// 2^(q - 2 + alpha) <= c * w < 2^(q + gamma) -// -// The choice of (alpha,gamma) determines the size of the table and the form of -// the digit generation procedure. Using (alpha,gamma)=(-60,-32) works out well -// in practice: -// -// The idea is to cut the number c * w = f * 2^e into two parts, which can be -// processed independently: An integral part p1, and a fractional part p2: -// -// f * 2^e = ( (f div 2^-e) * 2^-e + (f mod 2^-e) ) * 2^e -// = (f div 2^-e) + (f mod 2^-e) * 2^e -// = p1 + p2 * 2^e -// -// The conversion of p1 into decimal form requires a series of divisions and -// modulos by (a power of) 10. These operations are faster for 32-bit than for -// 64-bit integers, so p1 should ideally fit into a 32-bit integer. This can be -// achieved by choosing -// -// -e >= 32 or e <= -32 := gamma -// -// In order to convert the fractional part -// -// p2 * 2^e = p2 / 2^-e = d[-1] / 10^1 + d[-2] / 10^2 + ... -// -// into decimal form, the fraction is repeatedly multiplied by 10 and the digits -// d[-i] are extracted in order: -// -// (10 * p2) div 2^-e = d[-1] -// (10 * p2) mod 2^-e = d[-2] / 10^1 + ... -// -// The multiplication by 10 must not overflow. It is sufficient to choose -// -// 10 * p2 < 16 * p2 = 2^4 * p2 <= 2^64. -// -// Since p2 = f mod 2^-e < 2^-e, -// -// -e <= 60 or e >= -60 := alpha - -constexpr int kAlpha = -60; -constexpr int kGamma = -32; - -struct cached_power // c = f * 2^e ~= 10^k -{ - std::uint64_t f; - int e; - int k; -}; - -/*! -For a normalized diyfp w = f * 2^e, this function returns a (normalized) cached -power-of-ten c = f_c * 2^e_c, such that the exponent of the product w * c -satisfies (Definition 3.2 from [1]) - - alpha <= e_c + e + q <= gamma. -*/ -inline cached_power get_cached_power_for_binary_exponent(int e) -{ - // Now - // - // alpha <= e_c + e + q <= gamma (1) - // ==> f_c * 2^alpha <= c * 2^e * 2^q - // - // and since the c's are normalized, 2^(q-1) <= f_c, - // - // ==> 2^(q - 1 + alpha) <= c * 2^(e + q) - // ==> 2^(alpha - e - 1) <= c - // - // If c were an exact power of ten, i.e. c = 10^k, one may determine k as - // - // k = ceil( log_10( 2^(alpha - e - 1) ) ) - // = ceil( (alpha - e - 1) * log_10(2) ) - // - // From the paper: - // "In theory the result of the procedure could be wrong since c is rounded, - // and the computation itself is approximated [...]. In practice, however, - // this simple function is sufficient." - // - // For IEEE double precision floating-point numbers converted into - // normalized diyfp's w = f * 2^e, with q = 64, - // - // e >= -1022 (min IEEE exponent) - // -52 (p - 1) - // -52 (p - 1, possibly normalize denormal IEEE numbers) - // -11 (normalize the diyfp) - // = -1137 - // - // and - // - // e <= +1023 (max IEEE exponent) - // -52 (p - 1) - // -11 (normalize the diyfp) - // = 960 - // - // This binary exponent range [-1137,960] results in a decimal exponent - // range [-307,324]. One does not need to store a cached power for each - // k in this range. For each such k it suffices to find a cached power - // such that the exponent of the product lies in [alpha,gamma]. - // This implies that the difference of the decimal exponents of adjacent - // table entries must be less than or equal to - // - // floor( (gamma - alpha) * log_10(2) ) = 8. - // - // (A smaller distance gamma-alpha would require a larger table.) - - // NB: - // Actually this function returns c, such that -60 <= e_c + e + 64 <= -34. - - constexpr int kCachedPowersMinDecExp = -300; - constexpr int kCachedPowersDecStep = 8; - - static constexpr std::array kCachedPowers = - { - { - { 0xAB70FE17C79AC6CA, -1060, -300 }, - { 0xFF77B1FCBEBCDC4F, -1034, -292 }, - { 0xBE5691EF416BD60C, -1007, -284 }, - { 0x8DD01FAD907FFC3C, -980, -276 }, - { 0xD3515C2831559A83, -954, -268 }, - { 0x9D71AC8FADA6C9B5, -927, -260 }, - { 0xEA9C227723EE8BCB, -901, -252 }, - { 0xAECC49914078536D, -874, -244 }, - { 0x823C12795DB6CE57, -847, -236 }, - { 0xC21094364DFB5637, -821, -228 }, - { 0x9096EA6F3848984F, -794, -220 }, - { 0xD77485CB25823AC7, -768, -212 }, - { 0xA086CFCD97BF97F4, -741, -204 }, - { 0xEF340A98172AACE5, -715, -196 }, - { 0xB23867FB2A35B28E, -688, -188 }, - { 0x84C8D4DFD2C63F3B, -661, -180 }, - { 0xC5DD44271AD3CDBA, -635, -172 }, - { 0x936B9FCEBB25C996, -608, -164 }, - { 0xDBAC6C247D62A584, -582, -156 }, - { 0xA3AB66580D5FDAF6, -555, -148 }, - { 0xF3E2F893DEC3F126, -529, -140 }, - { 0xB5B5ADA8AAFF80B8, -502, -132 }, - { 0x87625F056C7C4A8B, -475, -124 }, - { 0xC9BCFF6034C13053, -449, -116 }, - { 0x964E858C91BA2655, -422, -108 }, - { 0xDFF9772470297EBD, -396, -100 }, - { 0xA6DFBD9FB8E5B88F, -369, -92 }, - { 0xF8A95FCF88747D94, -343, -84 }, - { 0xB94470938FA89BCF, -316, -76 }, - { 0x8A08F0F8BF0F156B, -289, -68 }, - { 0xCDB02555653131B6, -263, -60 }, - { 0x993FE2C6D07B7FAC, -236, -52 }, - { 0xE45C10C42A2B3B06, -210, -44 }, - { 0xAA242499697392D3, -183, -36 }, - { 0xFD87B5F28300CA0E, -157, -28 }, - { 0xBCE5086492111AEB, -130, -20 }, - { 0x8CBCCC096F5088CC, -103, -12 }, - { 0xD1B71758E219652C, -77, -4 }, - { 0x9C40000000000000, -50, 4 }, - { 0xE8D4A51000000000, -24, 12 }, - { 0xAD78EBC5AC620000, 3, 20 }, - { 0x813F3978F8940984, 30, 28 }, - { 0xC097CE7BC90715B3, 56, 36 }, - { 0x8F7E32CE7BEA5C70, 83, 44 }, - { 0xD5D238A4ABE98068, 109, 52 }, - { 0x9F4F2726179A2245, 136, 60 }, - { 0xED63A231D4C4FB27, 162, 68 }, - { 0xB0DE65388CC8ADA8, 189, 76 }, - { 0x83C7088E1AAB65DB, 216, 84 }, - { 0xC45D1DF942711D9A, 242, 92 }, - { 0x924D692CA61BE758, 269, 100 }, - { 0xDA01EE641A708DEA, 295, 108 }, - { 0xA26DA3999AEF774A, 322, 116 }, - { 0xF209787BB47D6B85, 348, 124 }, - { 0xB454E4A179DD1877, 375, 132 }, - { 0x865B86925B9BC5C2, 402, 140 }, - { 0xC83553C5C8965D3D, 428, 148 }, - { 0x952AB45CFA97A0B3, 455, 156 }, - { 0xDE469FBD99A05FE3, 481, 164 }, - { 0xA59BC234DB398C25, 508, 172 }, - { 0xF6C69A72A3989F5C, 534, 180 }, - { 0xB7DCBF5354E9BECE, 561, 188 }, - { 0x88FCF317F22241E2, 588, 196 }, - { 0xCC20CE9BD35C78A5, 614, 204 }, - { 0x98165AF37B2153DF, 641, 212 }, - { 0xE2A0B5DC971F303A, 667, 220 }, - { 0xA8D9D1535CE3B396, 694, 228 }, - { 0xFB9B7CD9A4A7443C, 720, 236 }, - { 0xBB764C4CA7A44410, 747, 244 }, - { 0x8BAB8EEFB6409C1A, 774, 252 }, - { 0xD01FEF10A657842C, 800, 260 }, - { 0x9B10A4E5E9913129, 827, 268 }, - { 0xE7109BFBA19C0C9D, 853, 276 }, - { 0xAC2820D9623BF429, 880, 284 }, - { 0x80444B5E7AA7CF85, 907, 292 }, - { 0xBF21E44003ACDD2D, 933, 300 }, - { 0x8E679C2F5E44FF8F, 960, 308 }, - { 0xD433179D9C8CB841, 986, 316 }, - { 0x9E19DB92B4E31BA9, 1013, 324 }, - } - }; - - // This computation gives exactly the same results for k as - // k = ceil((kAlpha - e - 1) * 0.30102999566398114) - // for |e| <= 1500, but doesn't require floating-point operations. - // NB: log_10(2) ~= 78913 / 2^18 - JSON_ASSERT(e >= -1500); - JSON_ASSERT(e <= 1500); - const int f = kAlpha - e - 1; - const int k = (f * 78913) / (1 << 18) + static_cast(f > 0); - - const int index = (-kCachedPowersMinDecExp + k + (kCachedPowersDecStep - 1)) / kCachedPowersDecStep; - JSON_ASSERT(index >= 0); - JSON_ASSERT(static_cast(index) < kCachedPowers.size()); - - const cached_power cached = kCachedPowers[static_cast(index)]; - JSON_ASSERT(kAlpha <= cached.e + e + 64); - JSON_ASSERT(kGamma >= cached.e + e + 64); - - return cached; -} - -/*! -For n != 0, returns k, such that pow10 := 10^(k-1) <= n < 10^k. -For n == 0, returns 1 and sets pow10 := 1. -*/ -inline int find_largest_pow10(const std::uint32_t n, std::uint32_t& pow10) -{ - // LCOV_EXCL_START - if (n >= 1000000000) - { - pow10 = 1000000000; - return 10; - } - // LCOV_EXCL_STOP - else if (n >= 100000000) - { - pow10 = 100000000; - return 9; - } - else if (n >= 10000000) - { - pow10 = 10000000; - return 8; - } - else if (n >= 1000000) - { - pow10 = 1000000; - return 7; - } - else if (n >= 100000) - { - pow10 = 100000; - return 6; - } - else if (n >= 10000) - { - pow10 = 10000; - return 5; - } - else if (n >= 1000) - { - pow10 = 1000; - return 4; - } - else if (n >= 100) - { - pow10 = 100; - return 3; - } - else if (n >= 10) - { - pow10 = 10; - return 2; - } - else - { - pow10 = 1; - return 1; - } -} - -inline void grisu2_round(char* buf, int len, std::uint64_t dist, std::uint64_t delta, - std::uint64_t rest, std::uint64_t ten_k) -{ - JSON_ASSERT(len >= 1); - JSON_ASSERT(dist <= delta); - JSON_ASSERT(rest <= delta); - JSON_ASSERT(ten_k > 0); - - // <--------------------------- delta ----> - // <---- dist ---------> - // --------------[------------------+-------------------]-------------- - // M- w M+ - // - // ten_k - // <------> - // <---- rest ----> - // --------------[------------------+----+--------------]-------------- - // w V - // = buf * 10^k - // - // ten_k represents a unit-in-the-last-place in the decimal representation - // stored in buf. - // Decrement buf by ten_k while this takes buf closer to w. - - // The tests are written in this order to avoid overflow in unsigned - // integer arithmetic. - - while (rest < dist - && delta - rest >= ten_k - && (rest + ten_k < dist || dist - rest > rest + ten_k - dist)) - { - JSON_ASSERT(buf[len - 1] != '0'); - buf[len - 1]--; - rest += ten_k; - } -} - -/*! -Generates V = buffer * 10^decimal_exponent, such that M- <= V <= M+. -M- and M+ must be normalized and share the same exponent -60 <= e <= -32. -*/ -inline void grisu2_digit_gen(char* buffer, int& length, int& decimal_exponent, - diyfp M_minus, diyfp w, diyfp M_plus) -{ - static_assert(kAlpha >= -60, "internal error"); - static_assert(kGamma <= -32, "internal error"); - - // Generates the digits (and the exponent) of a decimal floating-point - // number V = buffer * 10^decimal_exponent in the range [M-, M+]. The diyfp's - // w, M- and M+ share the same exponent e, which satisfies alpha <= e <= gamma. - // - // <--------------------------- delta ----> - // <---- dist ---------> - // --------------[------------------+-------------------]-------------- - // M- w M+ - // - // Grisu2 generates the digits of M+ from left to right and stops as soon as - // V is in [M-,M+]. - - JSON_ASSERT(M_plus.e >= kAlpha); - JSON_ASSERT(M_plus.e <= kGamma); - - std::uint64_t delta = diyfp::sub(M_plus, M_minus).f; // (significand of (M+ - M-), implicit exponent is e) - std::uint64_t dist = diyfp::sub(M_plus, w ).f; // (significand of (M+ - w ), implicit exponent is e) - - // Split M+ = f * 2^e into two parts p1 and p2 (note: e < 0): - // - // M+ = f * 2^e - // = ((f div 2^-e) * 2^-e + (f mod 2^-e)) * 2^e - // = ((p1 ) * 2^-e + (p2 )) * 2^e - // = p1 + p2 * 2^e - - const diyfp one(std::uint64_t{1} << -M_plus.e, M_plus.e); - - auto p1 = static_cast(M_plus.f >> -one.e); // p1 = f div 2^-e (Since -e >= 32, p1 fits into a 32-bit int.) - std::uint64_t p2 = M_plus.f & (one.f - 1); // p2 = f mod 2^-e - - // 1) - // - // Generate the digits of the integral part p1 = d[n-1]...d[1]d[0] - - JSON_ASSERT(p1 > 0); - - std::uint32_t pow10; - const int k = find_largest_pow10(p1, pow10); - - // 10^(k-1) <= p1 < 10^k, pow10 = 10^(k-1) - // - // p1 = (p1 div 10^(k-1)) * 10^(k-1) + (p1 mod 10^(k-1)) - // = (d[k-1] ) * 10^(k-1) + (p1 mod 10^(k-1)) - // - // M+ = p1 + p2 * 2^e - // = d[k-1] * 10^(k-1) + (p1 mod 10^(k-1)) + p2 * 2^e - // = d[k-1] * 10^(k-1) + ((p1 mod 10^(k-1)) * 2^-e + p2) * 2^e - // = d[k-1] * 10^(k-1) + ( rest) * 2^e - // - // Now generate the digits d[n] of p1 from left to right (n = k-1,...,0) - // - // p1 = d[k-1]...d[n] * 10^n + d[n-1]...d[0] - // - // but stop as soon as - // - // rest * 2^e = (d[n-1]...d[0] * 2^-e + p2) * 2^e <= delta * 2^e - - int n = k; - while (n > 0) - { - // Invariants: - // M+ = buffer * 10^n + (p1 + p2 * 2^e) (buffer = 0 for n = k) - // pow10 = 10^(n-1) <= p1 < 10^n - // - const std::uint32_t d = p1 / pow10; // d = p1 div 10^(n-1) - const std::uint32_t r = p1 % pow10; // r = p1 mod 10^(n-1) - // - // M+ = buffer * 10^n + (d * 10^(n-1) + r) + p2 * 2^e - // = (buffer * 10 + d) * 10^(n-1) + (r + p2 * 2^e) - // - JSON_ASSERT(d <= 9); - buffer[length++] = static_cast('0' + d); // buffer := buffer * 10 + d - // - // M+ = buffer * 10^(n-1) + (r + p2 * 2^e) - // - p1 = r; - n--; - // - // M+ = buffer * 10^n + (p1 + p2 * 2^e) - // pow10 = 10^n - // - - // Now check if enough digits have been generated. - // Compute - // - // p1 + p2 * 2^e = (p1 * 2^-e + p2) * 2^e = rest * 2^e - // - // Note: - // Since rest and delta share the same exponent e, it suffices to - // compare the significands. - const std::uint64_t rest = (std::uint64_t{p1} << -one.e) + p2; - if (rest <= delta) - { - // V = buffer * 10^n, with M- <= V <= M+. - - decimal_exponent += n; - - // We may now just stop. But instead look if the buffer could be - // decremented to bring V closer to w. - // - // pow10 = 10^n is now 1 ulp in the decimal representation V. - // The rounding procedure works with diyfp's with an implicit - // exponent of e. - // - // 10^n = (10^n * 2^-e) * 2^e = ulp * 2^e - // - const std::uint64_t ten_n = std::uint64_t{pow10} << -one.e; - grisu2_round(buffer, length, dist, delta, rest, ten_n); - - return; - } - - pow10 /= 10; - // - // pow10 = 10^(n-1) <= p1 < 10^n - // Invariants restored. - } - - // 2) - // - // The digits of the integral part have been generated: - // - // M+ = d[k-1]...d[1]d[0] + p2 * 2^e - // = buffer + p2 * 2^e - // - // Now generate the digits of the fractional part p2 * 2^e. - // - // Note: - // No decimal point is generated: the exponent is adjusted instead. - // - // p2 actually represents the fraction - // - // p2 * 2^e - // = p2 / 2^-e - // = d[-1] / 10^1 + d[-2] / 10^2 + ... - // - // Now generate the digits d[-m] of p1 from left to right (m = 1,2,...) - // - // p2 * 2^e = d[-1]d[-2]...d[-m] * 10^-m - // + 10^-m * (d[-m-1] / 10^1 + d[-m-2] / 10^2 + ...) - // - // using - // - // 10^m * p2 = ((10^m * p2) div 2^-e) * 2^-e + ((10^m * p2) mod 2^-e) - // = ( d) * 2^-e + ( r) - // - // or - // 10^m * p2 * 2^e = d + r * 2^e - // - // i.e. - // - // M+ = buffer + p2 * 2^e - // = buffer + 10^-m * (d + r * 2^e) - // = (buffer * 10^m + d) * 10^-m + 10^-m * r * 2^e - // - // and stop as soon as 10^-m * r * 2^e <= delta * 2^e - - JSON_ASSERT(p2 > delta); - - int m = 0; - for (;;) - { - // Invariant: - // M+ = buffer * 10^-m + 10^-m * (d[-m-1] / 10 + d[-m-2] / 10^2 + ...) * 2^e - // = buffer * 10^-m + 10^-m * (p2 ) * 2^e - // = buffer * 10^-m + 10^-m * (1/10 * (10 * p2) ) * 2^e - // = buffer * 10^-m + 10^-m * (1/10 * ((10*p2 div 2^-e) * 2^-e + (10*p2 mod 2^-e)) * 2^e - // - JSON_ASSERT(p2 <= (std::numeric_limits::max)() / 10); - p2 *= 10; - const std::uint64_t d = p2 >> -one.e; // d = (10 * p2) div 2^-e - const std::uint64_t r = p2 & (one.f - 1); // r = (10 * p2) mod 2^-e - // - // M+ = buffer * 10^-m + 10^-m * (1/10 * (d * 2^-e + r) * 2^e - // = buffer * 10^-m + 10^-m * (1/10 * (d + r * 2^e)) - // = (buffer * 10 + d) * 10^(-m-1) + 10^(-m-1) * r * 2^e - // - JSON_ASSERT(d <= 9); - buffer[length++] = static_cast('0' + d); // buffer := buffer * 10 + d - // - // M+ = buffer * 10^(-m-1) + 10^(-m-1) * r * 2^e - // - p2 = r; - m++; - // - // M+ = buffer * 10^-m + 10^-m * p2 * 2^e - // Invariant restored. - - // Check if enough digits have been generated. - // - // 10^-m * p2 * 2^e <= delta * 2^e - // p2 * 2^e <= 10^m * delta * 2^e - // p2 <= 10^m * delta - delta *= 10; - dist *= 10; - if (p2 <= delta) - { - break; - } - } - - // V = buffer * 10^-m, with M- <= V <= M+. - - decimal_exponent -= m; - - // 1 ulp in the decimal representation is now 10^-m. - // Since delta and dist are now scaled by 10^m, we need to do the - // same with ulp in order to keep the units in sync. - // - // 10^m * 10^-m = 1 = 2^-e * 2^e = ten_m * 2^e - // - const std::uint64_t ten_m = one.f; - grisu2_round(buffer, length, dist, delta, p2, ten_m); - - // By construction this algorithm generates the shortest possible decimal - // number (Loitsch, Theorem 6.2) which rounds back to w. - // For an input number of precision p, at least - // - // N = 1 + ceil(p * log_10(2)) - // - // decimal digits are sufficient to identify all binary floating-point - // numbers (Matula, "In-and-Out conversions"). - // This implies that the algorithm does not produce more than N decimal - // digits. - // - // N = 17 for p = 53 (IEEE double precision) - // N = 9 for p = 24 (IEEE single precision) -} - -/*! -v = buf * 10^decimal_exponent -len is the length of the buffer (number of decimal digits) -The buffer must be large enough, i.e. >= max_digits10. -*/ -JSON_HEDLEY_NON_NULL(1) -inline void grisu2(char* buf, int& len, int& decimal_exponent, - diyfp m_minus, diyfp v, diyfp m_plus) -{ - JSON_ASSERT(m_plus.e == m_minus.e); - JSON_ASSERT(m_plus.e == v.e); - - // --------(-----------------------+-----------------------)-------- (A) - // m- v m+ - // - // --------------------(-----------+-----------------------)-------- (B) - // m- v m+ - // - // First scale v (and m- and m+) such that the exponent is in the range - // [alpha, gamma]. - - const cached_power cached = get_cached_power_for_binary_exponent(m_plus.e); - - const diyfp c_minus_k(cached.f, cached.e); // = c ~= 10^-k - - // The exponent of the products is = v.e + c_minus_k.e + q and is in the range [alpha,gamma] - const diyfp w = diyfp::mul(v, c_minus_k); - const diyfp w_minus = diyfp::mul(m_minus, c_minus_k); - const diyfp w_plus = diyfp::mul(m_plus, c_minus_k); - - // ----(---+---)---------------(---+---)---------------(---+---)---- - // w- w w+ - // = c*m- = c*v = c*m+ - // - // diyfp::mul rounds its result and c_minus_k is approximated too. w, w- and - // w+ are now off by a small amount. - // In fact: - // - // w - v * 10^k < 1 ulp - // - // To account for this inaccuracy, add resp. subtract 1 ulp. - // - // --------+---[---------------(---+---)---------------]---+-------- - // w- M- w M+ w+ - // - // Now any number in [M-, M+] (bounds included) will round to w when input, - // regardless of how the input rounding algorithm breaks ties. - // - // And digit_gen generates the shortest possible such number in [M-, M+]. - // Note that this does not mean that Grisu2 always generates the shortest - // possible number in the interval (m-, m+). - const diyfp M_minus(w_minus.f + 1, w_minus.e); - const diyfp M_plus (w_plus.f - 1, w_plus.e ); - - decimal_exponent = -cached.k; // = -(-k) = k - - grisu2_digit_gen(buf, len, decimal_exponent, M_minus, w, M_plus); -} - -/*! -v = buf * 10^decimal_exponent -len is the length of the buffer (number of decimal digits) -The buffer must be large enough, i.e. >= max_digits10. -*/ -template -JSON_HEDLEY_NON_NULL(1) -void grisu2(char* buf, int& len, int& decimal_exponent, FloatType value) -{ - static_assert(diyfp::kPrecision >= std::numeric_limits::digits + 3, - "internal error: not enough precision"); - - JSON_ASSERT(std::isfinite(value)); - JSON_ASSERT(value > 0); - - // If the neighbors (and boundaries) of 'value' are always computed for double-precision - // numbers, all float's can be recovered using strtod (and strtof). However, the resulting - // decimal representations are not exactly "short". - // - // The documentation for 'std::to_chars' (https://en.cppreference.com/w/cpp/utility/to_chars) - // says "value is converted to a string as if by std::sprintf in the default ("C") locale" - // and since sprintf promotes float's to double's, I think this is exactly what 'std::to_chars' - // does. - // On the other hand, the documentation for 'std::to_chars' requires that "parsing the - // representation using the corresponding std::from_chars function recovers value exactly". That - // indicates that single precision floating-point numbers should be recovered using - // 'std::strtof'. - // - // NB: If the neighbors are computed for single-precision numbers, there is a single float - // (7.0385307e-26f) which can't be recovered using strtod. The resulting double precision - // value is off by 1 ulp. -#if 0 - const boundaries w = compute_boundaries(static_cast(value)); -#else - const boundaries w = compute_boundaries(value); -#endif - - grisu2(buf, len, decimal_exponent, w.minus, w.w, w.plus); -} - -/*! -@brief appends a decimal representation of e to buf -@return a pointer to the element following the exponent. -@pre -1000 < e < 1000 -*/ -JSON_HEDLEY_NON_NULL(1) -JSON_HEDLEY_RETURNS_NON_NULL -inline char* append_exponent(char* buf, int e) -{ - JSON_ASSERT(e > -1000); - JSON_ASSERT(e < 1000); - - if (e < 0) - { - e = -e; - *buf++ = '-'; - } - else - { - *buf++ = '+'; - } - - auto k = static_cast(e); - if (k < 10) - { - // Always print at least two digits in the exponent. - // This is for compatibility with printf("%g"). - *buf++ = '0'; - *buf++ = static_cast('0' + k); - } - else if (k < 100) - { - *buf++ = static_cast('0' + k / 10); - k %= 10; - *buf++ = static_cast('0' + k); - } - else - { - *buf++ = static_cast('0' + k / 100); - k %= 100; - *buf++ = static_cast('0' + k / 10); - k %= 10; - *buf++ = static_cast('0' + k); - } - - return buf; -} - -/*! -@brief prettify v = buf * 10^decimal_exponent - -If v is in the range [10^min_exp, 10^max_exp) it will be printed in fixed-point -notation. Otherwise it will be printed in exponential notation. - -@pre min_exp < 0 -@pre max_exp > 0 -*/ -JSON_HEDLEY_NON_NULL(1) -JSON_HEDLEY_RETURNS_NON_NULL -inline char* format_buffer(char* buf, int len, int decimal_exponent, - int min_exp, int max_exp) -{ - JSON_ASSERT(min_exp < 0); - JSON_ASSERT(max_exp > 0); - - const int k = len; - const int n = len + decimal_exponent; - - // v = buf * 10^(n-k) - // k is the length of the buffer (number of decimal digits) - // n is the position of the decimal point relative to the start of the buffer. - - if (k <= n && n <= max_exp) - { - // digits[000] - // len <= max_exp + 2 - - std::memset(buf + k, '0', static_cast(n) - static_cast(k)); - // Make it look like a floating-point number (#362, #378) - buf[n + 0] = '.'; - buf[n + 1] = '0'; - return buf + (static_cast(n) + 2); - } - - if (0 < n && n <= max_exp) - { - // dig.its - // len <= max_digits10 + 1 - - JSON_ASSERT(k > n); - - std::memmove(buf + (static_cast(n) + 1), buf + n, static_cast(k) - static_cast(n)); - buf[n] = '.'; - return buf + (static_cast(k) + 1U); - } - - if (min_exp < n && n <= 0) - { - // 0.[000]digits - // len <= 2 + (-min_exp - 1) + max_digits10 - - std::memmove(buf + (2 + static_cast(-n)), buf, static_cast(k)); - buf[0] = '0'; - buf[1] = '.'; - std::memset(buf + 2, '0', static_cast(-n)); - return buf + (2U + static_cast(-n) + static_cast(k)); - } - - if (k == 1) - { - // dE+123 - // len <= 1 + 5 - - buf += 1; - } - else - { - // d.igitsE+123 - // len <= max_digits10 + 1 + 5 - - std::memmove(buf + 2, buf + 1, static_cast(k) - 1); - buf[1] = '.'; - buf += 1 + static_cast(k); - } - - *buf++ = 'e'; - return append_exponent(buf, n - 1); -} - -} // namespace dtoa_impl - -/*! -@brief generates a decimal representation of the floating-point number value in [first, last). - -The format of the resulting decimal representation is similar to printf's %g -format. Returns an iterator pointing past-the-end of the decimal representation. - -@note The input number must be finite, i.e. NaN's and Inf's are not supported. -@note The buffer must be large enough. -@note The result is NOT null-terminated. -*/ -template -JSON_HEDLEY_NON_NULL(1, 2) -JSON_HEDLEY_RETURNS_NON_NULL -char* to_chars(char* first, const char* last, FloatType value) -{ - static_cast(last); // maybe unused - fix warning - JSON_ASSERT(std::isfinite(value)); - - // Use signbit(value) instead of (value < 0) since signbit works for -0. - if (std::signbit(value)) - { - value = -value; - *first++ = '-'; - } - - if (value == 0) // +-0 - { - *first++ = '0'; - // Make it look like a floating-point number (#362, #378) - *first++ = '.'; - *first++ = '0'; - return first; - } - - JSON_ASSERT(last - first >= std::numeric_limits::max_digits10); - - // Compute v = buffer * 10^decimal_exponent. - // The decimal digits are stored in the buffer, which needs to be interpreted - // as an unsigned decimal integer. - // len is the length of the buffer, i.e. the number of decimal digits. - int len = 0; - int decimal_exponent = 0; - dtoa_impl::grisu2(first, len, decimal_exponent, value); - - JSON_ASSERT(len <= std::numeric_limits::max_digits10); - - // Format the buffer like printf("%.*g", prec, value) - constexpr int kMinExp = -4; - // Use digits10 here to increase compatibility with version 2. - constexpr int kMaxExp = std::numeric_limits::digits10; - - JSON_ASSERT(last - first >= kMaxExp + 2); - JSON_ASSERT(last - first >= 2 + (-kMinExp - 1) + std::numeric_limits::max_digits10); - JSON_ASSERT(last - first >= std::numeric_limits::max_digits10 + 6); - - return dtoa_impl::format_buffer(first, len, decimal_exponent, kMinExp, kMaxExp); -} - -} // namespace detail -} // namespace nlohmann diff --git a/nlohmann/detail/conversions/to_json.hpp b/nlohmann/detail/conversions/to_json.hpp deleted file mode 100644 index b45004f..0000000 --- a/nlohmann/detail/conversions/to_json.hpp +++ /dev/null @@ -1,374 +0,0 @@ -#pragma once - -#include // copy -#include // begin, end -#include // string -#include // tuple, get -#include // is_same, is_constructible, is_floating_point, is_enum, underlying_type -#include // move, forward, declval, pair -#include // valarray -#include // vector - -#include -#include -#include -#include - -namespace nlohmann -{ -namespace detail -{ -////////////////// -// constructors // -////////////////// - -template struct external_constructor; - -template<> -struct external_constructor -{ - template - static void construct(BasicJsonType& j, typename BasicJsonType::boolean_t b) noexcept - { - j.m_type = value_t::boolean; - j.m_value = b; - j.assert_invariant(); - } -}; - -template<> -struct external_constructor -{ - template - static void construct(BasicJsonType& j, const typename BasicJsonType::string_t& s) - { - j.m_type = value_t::string; - j.m_value = s; - j.assert_invariant(); - } - - template - static void construct(BasicJsonType& j, typename BasicJsonType::string_t&& s) - { - j.m_type = value_t::string; - j.m_value = std::move(s); - j.assert_invariant(); - } - - template < typename BasicJsonType, typename CompatibleStringType, - enable_if_t < !std::is_same::value, - int > = 0 > - static void construct(BasicJsonType& j, const CompatibleStringType& str) - { - j.m_type = value_t::string; - j.m_value.string = j.template create(str); - j.assert_invariant(); - } -}; - -template<> -struct external_constructor -{ - template - static void construct(BasicJsonType& j, const typename BasicJsonType::binary_t& b) - { - j.m_type = value_t::binary; - typename BasicJsonType::binary_t value{b}; - j.m_value = value; - j.assert_invariant(); - } - - template - static void construct(BasicJsonType& j, typename BasicJsonType::binary_t&& b) - { - j.m_type = value_t::binary; - typename BasicJsonType::binary_t value{std::move(b)}; - j.m_value = value; - j.assert_invariant(); - } -}; - -template<> -struct external_constructor -{ - template - static void construct(BasicJsonType& j, typename BasicJsonType::number_float_t val) noexcept - { - j.m_type = value_t::number_float; - j.m_value = val; - j.assert_invariant(); - } -}; - -template<> -struct external_constructor -{ - template - static void construct(BasicJsonType& j, typename BasicJsonType::number_unsigned_t val) noexcept - { - j.m_type = value_t::number_unsigned; - j.m_value = val; - j.assert_invariant(); - } -}; - -template<> -struct external_constructor -{ - template - static void construct(BasicJsonType& j, typename BasicJsonType::number_integer_t val) noexcept - { - j.m_type = value_t::number_integer; - j.m_value = val; - j.assert_invariant(); - } -}; - -template<> -struct external_constructor -{ - template - static void construct(BasicJsonType& j, const typename BasicJsonType::array_t& arr) - { - j.m_type = value_t::array; - j.m_value = arr; - j.assert_invariant(); - } - - template - static void construct(BasicJsonType& j, typename BasicJsonType::array_t&& arr) - { - j.m_type = value_t::array; - j.m_value = std::move(arr); - j.assert_invariant(); - } - - template < typename BasicJsonType, typename CompatibleArrayType, - enable_if_t < !std::is_same::value, - int > = 0 > - static void construct(BasicJsonType& j, const CompatibleArrayType& arr) - { - using std::begin; - using std::end; - j.m_type = value_t::array; - j.m_value.array = j.template create(begin(arr), end(arr)); - j.assert_invariant(); - } - - template - static void construct(BasicJsonType& j, const std::vector& arr) - { - j.m_type = value_t::array; - j.m_value = value_t::array; - j.m_value.array->reserve(arr.size()); - for (const bool x : arr) - { - j.m_value.array->push_back(x); - } - j.assert_invariant(); - } - - template::value, int> = 0> - static void construct(BasicJsonType& j, const std::valarray& arr) - { - j.m_type = value_t::array; - j.m_value = value_t::array; - j.m_value.array->resize(arr.size()); - if (arr.size() > 0) - { - std::copy(std::begin(arr), std::end(arr), j.m_value.array->begin()); - } - j.assert_invariant(); - } -}; - -template<> -struct external_constructor -{ - template - static void construct(BasicJsonType& j, const typename BasicJsonType::object_t& obj) - { - j.m_type = value_t::object; - j.m_value = obj; - j.assert_invariant(); - } - - template - static void construct(BasicJsonType& j, typename BasicJsonType::object_t&& obj) - { - j.m_type = value_t::object; - j.m_value = std::move(obj); - j.assert_invariant(); - } - - template < typename BasicJsonType, typename CompatibleObjectType, - enable_if_t < !std::is_same::value, int > = 0 > - static void construct(BasicJsonType& j, const CompatibleObjectType& obj) - { - using std::begin; - using std::end; - - j.m_type = value_t::object; - j.m_value.object = j.template create(begin(obj), end(obj)); - j.assert_invariant(); - } -}; - -///////////// -// to_json // -///////////// - -template::value, int> = 0> -void to_json(BasicJsonType& j, T b) noexcept -{ - external_constructor::construct(j, b); -} - -template::value, int> = 0> -void to_json(BasicJsonType& j, const CompatibleString& s) -{ - external_constructor::construct(j, s); -} - -template -void to_json(BasicJsonType& j, typename BasicJsonType::string_t&& s) -{ - external_constructor::construct(j, std::move(s)); -} - -template::value, int> = 0> -void to_json(BasicJsonType& j, FloatType val) noexcept -{ - external_constructor::construct(j, static_cast(val)); -} - -template::value, int> = 0> -void to_json(BasicJsonType& j, CompatibleNumberUnsignedType val) noexcept -{ - external_constructor::construct(j, static_cast(val)); -} - -template::value, int> = 0> -void to_json(BasicJsonType& j, CompatibleNumberIntegerType val) noexcept -{ - external_constructor::construct(j, static_cast(val)); -} - -template::value, int> = 0> -void to_json(BasicJsonType& j, EnumType e) noexcept -{ - using underlying_type = typename std::underlying_type::type; - external_constructor::construct(j, static_cast(e)); -} - -template -void to_json(BasicJsonType& j, const std::vector& e) -{ - external_constructor::construct(j, e); -} - -template < typename BasicJsonType, typename CompatibleArrayType, - enable_if_t < is_compatible_array_type::value&& - !is_compatible_object_type::value&& - !is_compatible_string_type::value&& - !std::is_same::value&& - !is_basic_json::value, - int > = 0 > -void to_json(BasicJsonType& j, const CompatibleArrayType& arr) -{ - external_constructor::construct(j, arr); -} - -template -void to_json(BasicJsonType& j, const typename BasicJsonType::binary_t& bin) -{ - external_constructor::construct(j, bin); -} - -template::value, int> = 0> -void to_json(BasicJsonType& j, const std::valarray& arr) -{ - external_constructor::construct(j, std::move(arr)); -} - -template -void to_json(BasicJsonType& j, typename BasicJsonType::array_t&& arr) -{ - external_constructor::construct(j, std::move(arr)); -} - -template < typename BasicJsonType, typename CompatibleObjectType, - enable_if_t < is_compatible_object_type::value&& !is_basic_json::value, int > = 0 > -void to_json(BasicJsonType& j, const CompatibleObjectType& obj) -{ - external_constructor::construct(j, obj); -} - -template -void to_json(BasicJsonType& j, typename BasicJsonType::object_t&& obj) -{ - external_constructor::construct(j, std::move(obj)); -} - -template < - typename BasicJsonType, typename T, std::size_t N, - enable_if_t < !std::is_constructible::value, - int > = 0 > -void to_json(BasicJsonType& j, const T(&arr)[N]) -{ - external_constructor::construct(j, arr); -} - -template < typename BasicJsonType, typename T1, typename T2, enable_if_t < std::is_constructible::value&& std::is_constructible::value, int > = 0 > -void to_json(BasicJsonType& j, const std::pair& p) -{ - j = { p.first, p.second }; -} - -// for https://github.com/nlohmann/json/pull/1134 -template>::value, int> = 0> -void to_json(BasicJsonType& j, const T& b) -{ - j = { {b.key(), b.value()} }; -} - -template -void to_json_tuple_impl(BasicJsonType& j, const Tuple& t, index_sequence /*unused*/) -{ - j = { std::get(t)... }; -} - -template::value, int > = 0> -void to_json(BasicJsonType& j, const T& t) -{ - to_json_tuple_impl(j, t, make_index_sequence::value> {}); -} - -struct to_json_fn -{ - template - auto operator()(BasicJsonType& j, T&& val) const noexcept(noexcept(to_json(j, std::forward(val)))) - -> decltype(to_json(j, std::forward(val)), void()) - { - return to_json(j, std::forward(val)); - } -}; -} // namespace detail - -/// namespace to hold default `to_json` function -namespace -{ -constexpr const auto& to_json = detail::static_const::value; -} // namespace -} // namespace nlohmann diff --git a/nlohmann/detail/exceptions.hpp b/nlohmann/detail/exceptions.hpp deleted file mode 100644 index dd92897..0000000 --- a/nlohmann/detail/exceptions.hpp +++ /dev/null @@ -1,357 +0,0 @@ -#pragma once - -#include // exception -#include // runtime_error -#include // to_string - -#include -#include - -namespace nlohmann -{ -namespace detail -{ -//////////////// -// exceptions // -//////////////// - -/*! -@brief general exception of the @ref basic_json class - -This class is an extension of `std::exception` objects with a member @a id for -exception ids. It is used as the base class for all exceptions thrown by the -@ref basic_json class. This class can hence be used as "wildcard" to catch -exceptions. - -Subclasses: -- @ref parse_error for exceptions indicating a parse error -- @ref invalid_iterator for exceptions indicating errors with iterators -- @ref type_error for exceptions indicating executing a member function with - a wrong type -- @ref out_of_range for exceptions indicating access out of the defined range -- @ref other_error for exceptions indicating other library errors - -@internal -@note To have nothrow-copy-constructible exceptions, we internally use - `std::runtime_error` which can cope with arbitrary-length error messages. - Intermediate strings are built with static functions and then passed to - the actual constructor. -@endinternal - -@liveexample{The following code shows how arbitrary library exceptions can be -caught.,exception} - -@since version 3.0.0 -*/ -class exception : public std::exception -{ - public: - /// returns the explanatory string - JSON_HEDLEY_RETURNS_NON_NULL - const char* what() const noexcept override - { - return m.what(); - } - - /// the id of the exception - const int id; - - protected: - JSON_HEDLEY_NON_NULL(3) - exception(int id_, const char* what_arg) : id(id_), m(what_arg) {} - - static std::string name(const std::string& ename, int id_) - { - return "[json.exception." + ename + "." + std::to_string(id_) + "] "; - } - - private: - /// an exception object as storage for error messages - std::runtime_error m; -}; - -/*! -@brief exception indicating a parse error - -This exception is thrown by the library when a parse error occurs. Parse errors -can occur during the deserialization of JSON text, CBOR, MessagePack, as well -as when using JSON Patch. - -Member @a byte holds the byte index of the last read character in the input -file. - -Exceptions have ids 1xx. - -name / id | example message | description ------------------------------- | --------------- | ------------------------- -json.exception.parse_error.101 | parse error at 2: unexpected end of input; expected string literal | This error indicates a syntax error while deserializing a JSON text. The error message describes that an unexpected token (character) was encountered, and the member @a byte indicates the error position. -json.exception.parse_error.102 | parse error at 14: missing or wrong low surrogate | JSON uses the `\uxxxx` format to describe Unicode characters. Code points above above 0xFFFF are split into two `\uxxxx` entries ("surrogate pairs"). This error indicates that the surrogate pair is incomplete or contains an invalid code point. -json.exception.parse_error.103 | parse error: code points above 0x10FFFF are invalid | Unicode supports code points up to 0x10FFFF. Code points above 0x10FFFF are invalid. -json.exception.parse_error.104 | parse error: JSON patch must be an array of objects | [RFC 6902](https://tools.ietf.org/html/rfc6902) requires a JSON Patch document to be a JSON document that represents an array of objects. -json.exception.parse_error.105 | parse error: operation must have string member 'op' | An operation of a JSON Patch document must contain exactly one "op" member, whose value indicates the operation to perform. Its value must be one of "add", "remove", "replace", "move", "copy", or "test"; other values are errors. -json.exception.parse_error.106 | parse error: array index '01' must not begin with '0' | An array index in a JSON Pointer ([RFC 6901](https://tools.ietf.org/html/rfc6901)) may be `0` or any number without a leading `0`. -json.exception.parse_error.107 | parse error: JSON pointer must be empty or begin with '/' - was: 'foo' | A JSON Pointer must be a Unicode string containing a sequence of zero or more reference tokens, each prefixed by a `/` character. -json.exception.parse_error.108 | parse error: escape character '~' must be followed with '0' or '1' | In a JSON Pointer, only `~0` and `~1` are valid escape sequences. -json.exception.parse_error.109 | parse error: array index 'one' is not a number | A JSON Pointer array index must be a number. -json.exception.parse_error.110 | parse error at 1: cannot read 2 bytes from vector | When parsing CBOR or MessagePack, the byte vector ends before the complete value has been read. -json.exception.parse_error.112 | parse error at 1: error reading CBOR; last byte: 0xF8 | Not all types of CBOR or MessagePack are supported. This exception occurs if an unsupported byte was read. -json.exception.parse_error.113 | parse error at 2: expected a CBOR string; last byte: 0x98 | While parsing a map key, a value that is not a string has been read. -json.exception.parse_error.114 | parse error: Unsupported BSON record type 0x0F | The parsing of the corresponding BSON record type is not implemented (yet). -json.exception.parse_error.115 | parse error at byte 5: syntax error while parsing UBJSON high-precision number: invalid number text: 1A | A UBJSON high-precision number could not be parsed. - -@note For an input with n bytes, 1 is the index of the first character and n+1 - is the index of the terminating null byte or the end of file. This also - holds true when reading a byte vector (CBOR or MessagePack). - -@liveexample{The following code shows how a `parse_error` exception can be -caught.,parse_error} - -@sa - @ref exception for the base class of the library exceptions -@sa - @ref invalid_iterator for exceptions indicating errors with iterators -@sa - @ref type_error for exceptions indicating executing a member function with - a wrong type -@sa - @ref out_of_range for exceptions indicating access out of the defined range -@sa - @ref other_error for exceptions indicating other library errors - -@since version 3.0.0 -*/ -class parse_error : public exception -{ - public: - /*! - @brief create a parse error exception - @param[in] id_ the id of the exception - @param[in] pos the position where the error occurred (or with - chars_read_total=0 if the position cannot be - determined) - @param[in] what_arg the explanatory string - @return parse_error object - */ - static parse_error create(int id_, const position_t& pos, const std::string& what_arg) - { - std::string w = exception::name("parse_error", id_) + "parse error" + - position_string(pos) + ": " + what_arg; - return parse_error(id_, pos.chars_read_total, w.c_str()); - } - - static parse_error create(int id_, std::size_t byte_, const std::string& what_arg) - { - std::string w = exception::name("parse_error", id_) + "parse error" + - (byte_ != 0 ? (" at byte " + std::to_string(byte_)) : "") + - ": " + what_arg; - return parse_error(id_, byte_, w.c_str()); - } - - /*! - @brief byte index of the parse error - - The byte index of the last read character in the input file. - - @note For an input with n bytes, 1 is the index of the first character and - n+1 is the index of the terminating null byte or the end of file. - This also holds true when reading a byte vector (CBOR or MessagePack). - */ - const std::size_t byte; - - private: - parse_error(int id_, std::size_t byte_, const char* what_arg) - : exception(id_, what_arg), byte(byte_) {} - - static std::string position_string(const position_t& pos) - { - return " at line " + std::to_string(pos.lines_read + 1) + - ", column " + std::to_string(pos.chars_read_current_line); - } -}; - -/*! -@brief exception indicating errors with iterators - -This exception is thrown if iterators passed to a library function do not match -the expected semantics. - -Exceptions have ids 2xx. - -name / id | example message | description ------------------------------------ | --------------- | ------------------------- -json.exception.invalid_iterator.201 | iterators are not compatible | The iterators passed to constructor @ref basic_json(InputIT first, InputIT last) are not compatible, meaning they do not belong to the same container. Therefore, the range (@a first, @a last) is invalid. -json.exception.invalid_iterator.202 | iterator does not fit current value | In an erase or insert function, the passed iterator @a pos does not belong to the JSON value for which the function was called. It hence does not define a valid position for the deletion/insertion. -json.exception.invalid_iterator.203 | iterators do not fit current value | Either iterator passed to function @ref erase(IteratorType first, IteratorType last) does not belong to the JSON value from which values shall be erased. It hence does not define a valid range to delete values from. -json.exception.invalid_iterator.204 | iterators out of range | When an iterator range for a primitive type (number, boolean, or string) is passed to a constructor or an erase function, this range has to be exactly (@ref begin(), @ref end()), because this is the only way the single stored value is expressed. All other ranges are invalid. -json.exception.invalid_iterator.205 | iterator out of range | When an iterator for a primitive type (number, boolean, or string) is passed to an erase function, the iterator has to be the @ref begin() iterator, because it is the only way to address the stored value. All other iterators are invalid. -json.exception.invalid_iterator.206 | cannot construct with iterators from null | The iterators passed to constructor @ref basic_json(InputIT first, InputIT last) belong to a JSON null value and hence to not define a valid range. -json.exception.invalid_iterator.207 | cannot use key() for non-object iterators | The key() member function can only be used on iterators belonging to a JSON object, because other types do not have a concept of a key. -json.exception.invalid_iterator.208 | cannot use operator[] for object iterators | The operator[] to specify a concrete offset cannot be used on iterators belonging to a JSON object, because JSON objects are unordered. -json.exception.invalid_iterator.209 | cannot use offsets with object iterators | The offset operators (+, -, +=, -=) cannot be used on iterators belonging to a JSON object, because JSON objects are unordered. -json.exception.invalid_iterator.210 | iterators do not fit | The iterator range passed to the insert function are not compatible, meaning they do not belong to the same container. Therefore, the range (@a first, @a last) is invalid. -json.exception.invalid_iterator.211 | passed iterators may not belong to container | The iterator range passed to the insert function must not be a subrange of the container to insert to. -json.exception.invalid_iterator.212 | cannot compare iterators of different containers | When two iterators are compared, they must belong to the same container. -json.exception.invalid_iterator.213 | cannot compare order of object iterators | The order of object iterators cannot be compared, because JSON objects are unordered. -json.exception.invalid_iterator.214 | cannot get value | Cannot get value for iterator: Either the iterator belongs to a null value or it is an iterator to a primitive type (number, boolean, or string), but the iterator is different to @ref begin(). - -@liveexample{The following code shows how an `invalid_iterator` exception can be -caught.,invalid_iterator} - -@sa - @ref exception for the base class of the library exceptions -@sa - @ref parse_error for exceptions indicating a parse error -@sa - @ref type_error for exceptions indicating executing a member function with - a wrong type -@sa - @ref out_of_range for exceptions indicating access out of the defined range -@sa - @ref other_error for exceptions indicating other library errors - -@since version 3.0.0 -*/ -class invalid_iterator : public exception -{ - public: - static invalid_iterator create(int id_, const std::string& what_arg) - { - std::string w = exception::name("invalid_iterator", id_) + what_arg; - return invalid_iterator(id_, w.c_str()); - } - - private: - JSON_HEDLEY_NON_NULL(3) - invalid_iterator(int id_, const char* what_arg) - : exception(id_, what_arg) {} -}; - -/*! -@brief exception indicating executing a member function with a wrong type - -This exception is thrown in case of a type error; that is, a library function is -executed on a JSON value whose type does not match the expected semantics. - -Exceptions have ids 3xx. - -name / id | example message | description ------------------------------ | --------------- | ------------------------- -json.exception.type_error.301 | cannot create object from initializer list | To create an object from an initializer list, the initializer list must consist only of a list of pairs whose first element is a string. When this constraint is violated, an array is created instead. -json.exception.type_error.302 | type must be object, but is array | During implicit or explicit value conversion, the JSON type must be compatible to the target type. For instance, a JSON string can only be converted into string types, but not into numbers or boolean types. -json.exception.type_error.303 | incompatible ReferenceType for get_ref, actual type is object | To retrieve a reference to a value stored in a @ref basic_json object with @ref get_ref, the type of the reference must match the value type. For instance, for a JSON array, the @a ReferenceType must be @ref array_t &. -json.exception.type_error.304 | cannot use at() with string | The @ref at() member functions can only be executed for certain JSON types. -json.exception.type_error.305 | cannot use operator[] with string | The @ref operator[] member functions can only be executed for certain JSON types. -json.exception.type_error.306 | cannot use value() with string | The @ref value() member functions can only be executed for certain JSON types. -json.exception.type_error.307 | cannot use erase() with string | The @ref erase() member functions can only be executed for certain JSON types. -json.exception.type_error.308 | cannot use push_back() with string | The @ref push_back() and @ref operator+= member functions can only be executed for certain JSON types. -json.exception.type_error.309 | cannot use insert() with | The @ref insert() member functions can only be executed for certain JSON types. -json.exception.type_error.310 | cannot use swap() with number | The @ref swap() member functions can only be executed for certain JSON types. -json.exception.type_error.311 | cannot use emplace_back() with string | The @ref emplace_back() member function can only be executed for certain JSON types. -json.exception.type_error.312 | cannot use update() with string | The @ref update() member functions can only be executed for certain JSON types. -json.exception.type_error.313 | invalid value to unflatten | The @ref unflatten function converts an object whose keys are JSON Pointers back into an arbitrary nested JSON value. The JSON Pointers must not overlap, because then the resulting value would not be well defined. -json.exception.type_error.314 | only objects can be unflattened | The @ref unflatten function only works for an object whose keys are JSON Pointers. -json.exception.type_error.315 | values in object must be primitive | The @ref unflatten function only works for an object whose keys are JSON Pointers and whose values are primitive. -json.exception.type_error.316 | invalid UTF-8 byte at index 10: 0x7E | The @ref dump function only works with UTF-8 encoded strings; that is, if you assign a `std::string` to a JSON value, make sure it is UTF-8 encoded. | -json.exception.type_error.317 | JSON value cannot be serialized to requested format | The dynamic type of the object cannot be represented in the requested serialization format (e.g. a raw `true` or `null` JSON object cannot be serialized to BSON) | - -@liveexample{The following code shows how a `type_error` exception can be -caught.,type_error} - -@sa - @ref exception for the base class of the library exceptions -@sa - @ref parse_error for exceptions indicating a parse error -@sa - @ref invalid_iterator for exceptions indicating errors with iterators -@sa - @ref out_of_range for exceptions indicating access out of the defined range -@sa - @ref other_error for exceptions indicating other library errors - -@since version 3.0.0 -*/ -class type_error : public exception -{ - public: - static type_error create(int id_, const std::string& what_arg) - { - std::string w = exception::name("type_error", id_) + what_arg; - return type_error(id_, w.c_str()); - } - - private: - JSON_HEDLEY_NON_NULL(3) - type_error(int id_, const char* what_arg) : exception(id_, what_arg) {} -}; - -/*! -@brief exception indicating access out of the defined range - -This exception is thrown in case a library function is called on an input -parameter that exceeds the expected range, for instance in case of array -indices or nonexisting object keys. - -Exceptions have ids 4xx. - -name / id | example message | description -------------------------------- | --------------- | ------------------------- -json.exception.out_of_range.401 | array index 3 is out of range | The provided array index @a i is larger than @a size-1. -json.exception.out_of_range.402 | array index '-' (3) is out of range | The special array index `-` in a JSON Pointer never describes a valid element of the array, but the index past the end. That is, it can only be used to add elements at this position, but not to read it. -json.exception.out_of_range.403 | key 'foo' not found | The provided key was not found in the JSON object. -json.exception.out_of_range.404 | unresolved reference token 'foo' | A reference token in a JSON Pointer could not be resolved. -json.exception.out_of_range.405 | JSON pointer has no parent | The JSON Patch operations 'remove' and 'add' can not be applied to the root element of the JSON value. -json.exception.out_of_range.406 | number overflow parsing '10E1000' | A parsed number could not be stored as without changing it to NaN or INF. -json.exception.out_of_range.407 | number overflow serializing '9223372036854775808' | UBJSON and BSON only support integer numbers up to 9223372036854775807. (until version 3.8.0) | -json.exception.out_of_range.408 | excessive array size: 8658170730974374167 | The size (following `#`) of an UBJSON array or object exceeds the maximal capacity. | -json.exception.out_of_range.409 | BSON key cannot contain code point U+0000 (at byte 2) | Key identifiers to be serialized to BSON cannot contain code point U+0000, since the key is stored as zero-terminated c-string | - -@liveexample{The following code shows how an `out_of_range` exception can be -caught.,out_of_range} - -@sa - @ref exception for the base class of the library exceptions -@sa - @ref parse_error for exceptions indicating a parse error -@sa - @ref invalid_iterator for exceptions indicating errors with iterators -@sa - @ref type_error for exceptions indicating executing a member function with - a wrong type -@sa - @ref other_error for exceptions indicating other library errors - -@since version 3.0.0 -*/ -class out_of_range : public exception -{ - public: - static out_of_range create(int id_, const std::string& what_arg) - { - std::string w = exception::name("out_of_range", id_) + what_arg; - return out_of_range(id_, w.c_str()); - } - - private: - JSON_HEDLEY_NON_NULL(3) - out_of_range(int id_, const char* what_arg) : exception(id_, what_arg) {} -}; - -/*! -@brief exception indicating other library errors - -This exception is thrown in case of errors that cannot be classified with the -other exception types. - -Exceptions have ids 5xx. - -name / id | example message | description ------------------------------- | --------------- | ------------------------- -json.exception.other_error.501 | unsuccessful: {"op":"test","path":"/baz", "value":"bar"} | A JSON Patch operation 'test' failed. The unsuccessful operation is also printed. - -@sa - @ref exception for the base class of the library exceptions -@sa - @ref parse_error for exceptions indicating a parse error -@sa - @ref invalid_iterator for exceptions indicating errors with iterators -@sa - @ref type_error for exceptions indicating executing a member function with - a wrong type -@sa - @ref out_of_range for exceptions indicating access out of the defined range - -@liveexample{The following code shows how an `other_error` exception can be -caught.,other_error} - -@since version 3.0.0 -*/ -class other_error : public exception -{ - public: - static other_error create(int id_, const std::string& what_arg) - { - std::string w = exception::name("other_error", id_) + what_arg; - return other_error(id_, w.c_str()); - } - - private: - JSON_HEDLEY_NON_NULL(3) - other_error(int id_, const char* what_arg) : exception(id_, what_arg) {} -}; -} // namespace detail -} // namespace nlohmann diff --git a/nlohmann/detail/hash.hpp b/nlohmann/detail/hash.hpp deleted file mode 100644 index 4094cc9..0000000 --- a/nlohmann/detail/hash.hpp +++ /dev/null @@ -1,117 +0,0 @@ -#pragma once - -#include // size_t, uint8_t -#include // hash - -namespace nlohmann -{ -namespace detail -{ - -// boost::hash_combine -inline std::size_t combine(std::size_t seed, std::size_t h) noexcept -{ - seed ^= h + 0x9e3779b9 + (seed << 6U) + (seed >> 2U); - return seed; -} - -/*! -@brief hash a JSON value - -The hash function tries to rely on std::hash where possible. Furthermore, the -type of the JSON value is taken into account to have different hash values for -null, 0, 0U, and false, etc. - -@tparam BasicJsonType basic_json specialization -@param j JSON value to hash -@return hash value of j -*/ -template -std::size_t hash(const BasicJsonType& j) -{ - using string_t = typename BasicJsonType::string_t; - using number_integer_t = typename BasicJsonType::number_integer_t; - using number_unsigned_t = typename BasicJsonType::number_unsigned_t; - using number_float_t = typename BasicJsonType::number_float_t; - - const auto type = static_cast(j.type()); - switch (j.type()) - { - case BasicJsonType::value_t::null: - case BasicJsonType::value_t::discarded: - { - return combine(type, 0); - } - - case BasicJsonType::value_t::object: - { - auto seed = combine(type, j.size()); - for (const auto& element : j.items()) - { - const auto h = std::hash {}(element.key()); - seed = combine(seed, h); - seed = combine(seed, hash(element.value())); - } - return seed; - } - - case BasicJsonType::value_t::array: - { - auto seed = combine(type, j.size()); - for (const auto& element : j) - { - seed = combine(seed, hash(element)); - } - return seed; - } - - case BasicJsonType::value_t::string: - { - const auto h = std::hash {}(j.template get_ref()); - return combine(type, h); - } - - case BasicJsonType::value_t::boolean: - { - const auto h = std::hash {}(j.template get()); - return combine(type, h); - } - - case BasicJsonType::value_t::number_integer: - { - const auto h = std::hash {}(j.template get()); - return combine(type, h); - } - - case nlohmann::detail::value_t::number_unsigned: - { - const auto h = std::hash {}(j.template get()); - return combine(type, h); - } - - case nlohmann::detail::value_t::number_float: - { - const auto h = std::hash {}(j.template get()); - return combine(type, h); - } - - case nlohmann::detail::value_t::binary: - { - auto seed = combine(type, j.get_binary().size()); - const auto h = std::hash {}(j.get_binary().has_subtype()); - seed = combine(seed, h); - seed = combine(seed, j.get_binary().subtype()); - for (const auto byte : j.get_binary()) - { - seed = combine(seed, std::hash {}(byte)); - } - return seed; - } - - default: // LCOV_EXCL_LINE - JSON_ASSERT(false); // LCOV_EXCL_LINE - } -} - -} // namespace detail -} // namespace nlohmann diff --git a/nlohmann/detail/input/binary_reader.hpp b/nlohmann/detail/input/binary_reader.hpp deleted file mode 100644 index 4c94d1c..0000000 --- a/nlohmann/detail/input/binary_reader.hpp +++ /dev/null @@ -1,2459 +0,0 @@ -#pragma once - -#include // generate_n -#include // array -#include // ldexp -#include // size_t -#include // uint8_t, uint16_t, uint32_t, uint64_t -#include // snprintf -#include // memcpy -#include // back_inserter -#include // numeric_limits -#include // char_traits, string -#include // make_pair, move - -#include -#include -#include -#include -#include -#include -#include - -namespace nlohmann -{ -namespace detail -{ - -/// how to treat CBOR tags -enum class cbor_tag_handler_t -{ - error, ///< throw a parse_error exception in case of a tag - ignore ///< ignore tags -}; - -/*! -@brief determine system byte order - -@return true if and only if system's byte order is little endian - -@note from https://stackoverflow.com/a/1001328/266378 -*/ -static inline bool little_endianess(int num = 1) noexcept -{ - return *reinterpret_cast(&num) == 1; -} - - -/////////////////// -// binary reader // -/////////////////// - -/*! -@brief deserialization of CBOR, MessagePack, and UBJSON values -*/ -template> -class binary_reader -{ - using number_integer_t = typename BasicJsonType::number_integer_t; - using number_unsigned_t = typename BasicJsonType::number_unsigned_t; - using number_float_t = typename BasicJsonType::number_float_t; - using string_t = typename BasicJsonType::string_t; - using binary_t = typename BasicJsonType::binary_t; - using json_sax_t = SAX; - using char_type = typename InputAdapterType::char_type; - using char_int_type = typename std::char_traits::int_type; - - public: - /*! - @brief create a binary reader - - @param[in] adapter input adapter to read from - */ - explicit binary_reader(InputAdapterType&& adapter) : ia(std::move(adapter)) - { - (void)detail::is_sax_static_asserts {}; - } - - // make class move-only - binary_reader(const binary_reader&) = delete; - binary_reader(binary_reader&&) = default; - binary_reader& operator=(const binary_reader&) = delete; - binary_reader& operator=(binary_reader&&) = default; - ~binary_reader() = default; - - /*! - @param[in] format the binary format to parse - @param[in] sax_ a SAX event processor - @param[in] strict whether to expect the input to be consumed completed - @param[in] tag_handler how to treat CBOR tags - - @return - */ - JSON_HEDLEY_NON_NULL(3) - bool sax_parse(const input_format_t format, - json_sax_t* sax_, - const bool strict = true, - const cbor_tag_handler_t tag_handler = cbor_tag_handler_t::error) - { - sax = sax_; - bool result = false; - - switch (format) - { - case input_format_t::bson: - result = parse_bson_internal(); - break; - - case input_format_t::cbor: - result = parse_cbor_internal(true, tag_handler); - break; - - case input_format_t::msgpack: - result = parse_msgpack_internal(); - break; - - case input_format_t::ubjson: - result = parse_ubjson_internal(); - break; - - default: // LCOV_EXCL_LINE - JSON_ASSERT(false); // LCOV_EXCL_LINE - } - - // strict mode: next byte must be EOF - if (result && strict) - { - if (format == input_format_t::ubjson) - { - get_ignore_noop(); - } - else - { - get(); - } - - if (JSON_HEDLEY_UNLIKELY(current != std::char_traits::eof())) - { - return sax->parse_error(chars_read, get_token_string(), - parse_error::create(110, chars_read, exception_message(format, "expected end of input; last byte: 0x" + get_token_string(), "value"))); - } - } - - return result; - } - - private: - ////////// - // BSON // - ////////// - - /*! - @brief Reads in a BSON-object and passes it to the SAX-parser. - @return whether a valid BSON-value was passed to the SAX parser - */ - bool parse_bson_internal() - { - std::int32_t document_size{}; - get_number(input_format_t::bson, document_size); - - if (JSON_HEDLEY_UNLIKELY(!sax->start_object(std::size_t(-1)))) - { - return false; - } - - if (JSON_HEDLEY_UNLIKELY(!parse_bson_element_list(/*is_array*/false))) - { - return false; - } - - return sax->end_object(); - } - - /*! - @brief Parses a C-style string from the BSON input. - @param[in, out] result A reference to the string variable where the read - string is to be stored. - @return `true` if the \x00-byte indicating the end of the string was - encountered before the EOF; false` indicates an unexpected EOF. - */ - bool get_bson_cstr(string_t& result) - { - auto out = std::back_inserter(result); - while (true) - { - get(); - if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::bson, "cstring"))) - { - return false; - } - if (current == 0x00) - { - return true; - } - *out++ = static_cast(current); - } - } - - /*! - @brief Parses a zero-terminated string of length @a len from the BSON - input. - @param[in] len The length (including the zero-byte at the end) of the - string to be read. - @param[in, out] result A reference to the string variable where the read - string is to be stored. - @tparam NumberType The type of the length @a len - @pre len >= 1 - @return `true` if the string was successfully parsed - */ - template - bool get_bson_string(const NumberType len, string_t& result) - { - if (JSON_HEDLEY_UNLIKELY(len < 1)) - { - auto last_token = get_token_string(); - return sax->parse_error(chars_read, last_token, parse_error::create(112, chars_read, exception_message(input_format_t::bson, "string length must be at least 1, is " + std::to_string(len), "string"))); - } - - return get_string(input_format_t::bson, len - static_cast(1), result) && get() != std::char_traits::eof(); - } - - /*! - @brief Parses a byte array input of length @a len from the BSON input. - @param[in] len The length of the byte array to be read. - @param[in, out] result A reference to the binary variable where the read - array is to be stored. - @tparam NumberType The type of the length @a len - @pre len >= 0 - @return `true` if the byte array was successfully parsed - */ - template - bool get_bson_binary(const NumberType len, binary_t& result) - { - if (JSON_HEDLEY_UNLIKELY(len < 0)) - { - auto last_token = get_token_string(); - return sax->parse_error(chars_read, last_token, parse_error::create(112, chars_read, exception_message(input_format_t::bson, "byte array length cannot be negative, is " + std::to_string(len), "binary"))); - } - - // All BSON binary values have a subtype - std::uint8_t subtype{}; - get_number(input_format_t::bson, subtype); - result.set_subtype(subtype); - - return get_binary(input_format_t::bson, len, result); - } - - /*! - @brief Read a BSON document element of the given @a element_type. - @param[in] element_type The BSON element type, c.f. http://bsonspec.org/spec.html - @param[in] element_type_parse_position The position in the input stream, - where the `element_type` was read. - @warning Not all BSON element types are supported yet. An unsupported - @a element_type will give rise to a parse_error.114: - Unsupported BSON record type 0x... - @return whether a valid BSON-object/array was passed to the SAX parser - */ - bool parse_bson_element_internal(const char_int_type element_type, - const std::size_t element_type_parse_position) - { - switch (element_type) - { - case 0x01: // double - { - double number{}; - return get_number(input_format_t::bson, number) && sax->number_float(static_cast(number), ""); - } - - case 0x02: // string - { - std::int32_t len{}; - string_t value; - return get_number(input_format_t::bson, len) && get_bson_string(len, value) && sax->string(value); - } - - case 0x03: // object - { - return parse_bson_internal(); - } - - case 0x04: // array - { - return parse_bson_array(); - } - - case 0x05: // binary - { - std::int32_t len{}; - binary_t value; - return get_number(input_format_t::bson, len) && get_bson_binary(len, value) && sax->binary(value); - } - - case 0x08: // boolean - { - return sax->boolean(get() != 0); - } - - case 0x0A: // null - { - return sax->null(); - } - - case 0x10: // int32 - { - std::int32_t value{}; - return get_number(input_format_t::bson, value) && sax->number_integer(value); - } - - case 0x12: // int64 - { - std::int64_t value{}; - return get_number(input_format_t::bson, value) && sax->number_integer(value); - } - - default: // anything else not supported (yet) - { - std::array cr{{}}; - (std::snprintf)(cr.data(), cr.size(), "%.2hhX", static_cast(element_type)); - return sax->parse_error(element_type_parse_position, std::string(cr.data()), parse_error::create(114, element_type_parse_position, "Unsupported BSON record type 0x" + std::string(cr.data()))); - } - } - } - - /*! - @brief Read a BSON element list (as specified in the BSON-spec) - - The same binary layout is used for objects and arrays, hence it must be - indicated with the argument @a is_array which one is expected - (true --> array, false --> object). - - @param[in] is_array Determines if the element list being read is to be - treated as an object (@a is_array == false), or as an - array (@a is_array == true). - @return whether a valid BSON-object/array was passed to the SAX parser - */ - bool parse_bson_element_list(const bool is_array) - { - string_t key; - - while (auto element_type = get()) - { - if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::bson, "element list"))) - { - return false; - } - - const std::size_t element_type_parse_position = chars_read; - if (JSON_HEDLEY_UNLIKELY(!get_bson_cstr(key))) - { - return false; - } - - if (!is_array && !sax->key(key)) - { - return false; - } - - if (JSON_HEDLEY_UNLIKELY(!parse_bson_element_internal(element_type, element_type_parse_position))) - { - return false; - } - - // get_bson_cstr only appends - key.clear(); - } - - return true; - } - - /*! - @brief Reads an array from the BSON input and passes it to the SAX-parser. - @return whether a valid BSON-array was passed to the SAX parser - */ - bool parse_bson_array() - { - std::int32_t document_size{}; - get_number(input_format_t::bson, document_size); - - if (JSON_HEDLEY_UNLIKELY(!sax->start_array(std::size_t(-1)))) - { - return false; - } - - if (JSON_HEDLEY_UNLIKELY(!parse_bson_element_list(/*is_array*/true))) - { - return false; - } - - return sax->end_array(); - } - - ////////// - // CBOR // - ////////// - - /*! - @param[in] get_char whether a new character should be retrieved from the - input (true) or whether the last read character should - be considered instead (false) - @param[in] tag_handler how CBOR tags should be treated - - @return whether a valid CBOR value was passed to the SAX parser - */ - bool parse_cbor_internal(const bool get_char, - const cbor_tag_handler_t tag_handler) - { - switch (get_char ? get() : current) - { - // EOF - case std::char_traits::eof(): - return unexpect_eof(input_format_t::cbor, "value"); - - // Integer 0x00..0x17 (0..23) - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case 0x09: - case 0x0A: - case 0x0B: - case 0x0C: - case 0x0D: - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - return sax->number_unsigned(static_cast(current)); - - case 0x18: // Unsigned integer (one-byte uint8_t follows) - { - std::uint8_t number{}; - return get_number(input_format_t::cbor, number) && sax->number_unsigned(number); - } - - case 0x19: // Unsigned integer (two-byte uint16_t follows) - { - std::uint16_t number{}; - return get_number(input_format_t::cbor, number) && sax->number_unsigned(number); - } - - case 0x1A: // Unsigned integer (four-byte uint32_t follows) - { - std::uint32_t number{}; - return get_number(input_format_t::cbor, number) && sax->number_unsigned(number); - } - - case 0x1B: // Unsigned integer (eight-byte uint64_t follows) - { - std::uint64_t number{}; - return get_number(input_format_t::cbor, number) && sax->number_unsigned(number); - } - - // Negative integer -1-0x00..-1-0x17 (-1..-24) - case 0x20: - case 0x21: - case 0x22: - case 0x23: - case 0x24: - case 0x25: - case 0x26: - case 0x27: - case 0x28: - case 0x29: - case 0x2A: - case 0x2B: - case 0x2C: - case 0x2D: - case 0x2E: - case 0x2F: - case 0x30: - case 0x31: - case 0x32: - case 0x33: - case 0x34: - case 0x35: - case 0x36: - case 0x37: - return sax->number_integer(static_cast(0x20 - 1 - current)); - - case 0x38: // Negative integer (one-byte uint8_t follows) - { - std::uint8_t number{}; - return get_number(input_format_t::cbor, number) && sax->number_integer(static_cast(-1) - number); - } - - case 0x39: // Negative integer -1-n (two-byte uint16_t follows) - { - std::uint16_t number{}; - return get_number(input_format_t::cbor, number) && sax->number_integer(static_cast(-1) - number); - } - - case 0x3A: // Negative integer -1-n (four-byte uint32_t follows) - { - std::uint32_t number{}; - return get_number(input_format_t::cbor, number) && sax->number_integer(static_cast(-1) - number); - } - - case 0x3B: // Negative integer -1-n (eight-byte uint64_t follows) - { - std::uint64_t number{}; - return get_number(input_format_t::cbor, number) && sax->number_integer(static_cast(-1) - - static_cast(number)); - } - - // Binary data (0x00..0x17 bytes follow) - case 0x40: - case 0x41: - case 0x42: - case 0x43: - case 0x44: - case 0x45: - case 0x46: - case 0x47: - case 0x48: - case 0x49: - case 0x4A: - case 0x4B: - case 0x4C: - case 0x4D: - case 0x4E: - case 0x4F: - case 0x50: - case 0x51: - case 0x52: - case 0x53: - case 0x54: - case 0x55: - case 0x56: - case 0x57: - case 0x58: // Binary data (one-byte uint8_t for n follows) - case 0x59: // Binary data (two-byte uint16_t for n follow) - case 0x5A: // Binary data (four-byte uint32_t for n follow) - case 0x5B: // Binary data (eight-byte uint64_t for n follow) - case 0x5F: // Binary data (indefinite length) - { - binary_t b; - return get_cbor_binary(b) && sax->binary(b); - } - - // UTF-8 string (0x00..0x17 bytes follow) - case 0x60: - case 0x61: - case 0x62: - case 0x63: - case 0x64: - case 0x65: - case 0x66: - case 0x67: - case 0x68: - case 0x69: - case 0x6A: - case 0x6B: - case 0x6C: - case 0x6D: - case 0x6E: - case 0x6F: - case 0x70: - case 0x71: - case 0x72: - case 0x73: - case 0x74: - case 0x75: - case 0x76: - case 0x77: - case 0x78: // UTF-8 string (one-byte uint8_t for n follows) - case 0x79: // UTF-8 string (two-byte uint16_t for n follow) - case 0x7A: // UTF-8 string (four-byte uint32_t for n follow) - case 0x7B: // UTF-8 string (eight-byte uint64_t for n follow) - case 0x7F: // UTF-8 string (indefinite length) - { - string_t s; - return get_cbor_string(s) && sax->string(s); - } - - // array (0x00..0x17 data items follow) - case 0x80: - case 0x81: - case 0x82: - case 0x83: - case 0x84: - case 0x85: - case 0x86: - case 0x87: - case 0x88: - case 0x89: - case 0x8A: - case 0x8B: - case 0x8C: - case 0x8D: - case 0x8E: - case 0x8F: - case 0x90: - case 0x91: - case 0x92: - case 0x93: - case 0x94: - case 0x95: - case 0x96: - case 0x97: - return get_cbor_array(static_cast(static_cast(current) & 0x1Fu), tag_handler); - - case 0x98: // array (one-byte uint8_t for n follows) - { - std::uint8_t len{}; - return get_number(input_format_t::cbor, len) && get_cbor_array(static_cast(len), tag_handler); - } - - case 0x99: // array (two-byte uint16_t for n follow) - { - std::uint16_t len{}; - return get_number(input_format_t::cbor, len) && get_cbor_array(static_cast(len), tag_handler); - } - - case 0x9A: // array (four-byte uint32_t for n follow) - { - std::uint32_t len{}; - return get_number(input_format_t::cbor, len) && get_cbor_array(static_cast(len), tag_handler); - } - - case 0x9B: // array (eight-byte uint64_t for n follow) - { - std::uint64_t len{}; - return get_number(input_format_t::cbor, len) && get_cbor_array(static_cast(len), tag_handler); - } - - case 0x9F: // array (indefinite length) - return get_cbor_array(std::size_t(-1), tag_handler); - - // map (0x00..0x17 pairs of data items follow) - case 0xA0: - case 0xA1: - case 0xA2: - case 0xA3: - case 0xA4: - case 0xA5: - case 0xA6: - case 0xA7: - case 0xA8: - case 0xA9: - case 0xAA: - case 0xAB: - case 0xAC: - case 0xAD: - case 0xAE: - case 0xAF: - case 0xB0: - case 0xB1: - case 0xB2: - case 0xB3: - case 0xB4: - case 0xB5: - case 0xB6: - case 0xB7: - return get_cbor_object(static_cast(static_cast(current) & 0x1Fu), tag_handler); - - case 0xB8: // map (one-byte uint8_t for n follows) - { - std::uint8_t len{}; - return get_number(input_format_t::cbor, len) && get_cbor_object(static_cast(len), tag_handler); - } - - case 0xB9: // map (two-byte uint16_t for n follow) - { - std::uint16_t len{}; - return get_number(input_format_t::cbor, len) && get_cbor_object(static_cast(len), tag_handler); - } - - case 0xBA: // map (four-byte uint32_t for n follow) - { - std::uint32_t len{}; - return get_number(input_format_t::cbor, len) && get_cbor_object(static_cast(len), tag_handler); - } - - case 0xBB: // map (eight-byte uint64_t for n follow) - { - std::uint64_t len{}; - return get_number(input_format_t::cbor, len) && get_cbor_object(static_cast(len), tag_handler); - } - - case 0xBF: // map (indefinite length) - return get_cbor_object(std::size_t(-1), tag_handler); - - case 0xC6: // tagged item - case 0xC7: - case 0xC8: - case 0xC9: - case 0xCA: - case 0xCB: - case 0xCC: - case 0xCD: - case 0xCE: - case 0xCF: - case 0xD0: - case 0xD1: - case 0xD2: - case 0xD3: - case 0xD4: - case 0xD8: // tagged item (1 bytes follow) - case 0xD9: // tagged item (2 bytes follow) - case 0xDA: // tagged item (4 bytes follow) - case 0xDB: // tagged item (8 bytes follow) - { - switch (tag_handler) - { - case cbor_tag_handler_t::error: - { - auto last_token = get_token_string(); - return sax->parse_error(chars_read, last_token, parse_error::create(112, chars_read, exception_message(input_format_t::cbor, "invalid byte: 0x" + last_token, "value"))); - } - - case cbor_tag_handler_t::ignore: - { - switch (current) - { - case 0xD8: - { - std::uint8_t len{}; - get_number(input_format_t::cbor, len); - break; - } - case 0xD9: - { - std::uint16_t len{}; - get_number(input_format_t::cbor, len); - break; - } - case 0xDA: - { - std::uint32_t len{}; - get_number(input_format_t::cbor, len); - break; - } - case 0xDB: - { - std::uint64_t len{}; - get_number(input_format_t::cbor, len); - break; - } - default: - break; - } - return parse_cbor_internal(true, tag_handler); - } - - default: // LCOV_EXCL_LINE - JSON_ASSERT(false); // LCOV_EXCL_LINE - } - } - - case 0xF4: // false - return sax->boolean(false); - - case 0xF5: // true - return sax->boolean(true); - - case 0xF6: // null - return sax->null(); - - case 0xF9: // Half-Precision Float (two-byte IEEE 754) - { - const auto byte1_raw = get(); - if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::cbor, "number"))) - { - return false; - } - const auto byte2_raw = get(); - if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::cbor, "number"))) - { - return false; - } - - const auto byte1 = static_cast(byte1_raw); - const auto byte2 = static_cast(byte2_raw); - - // code from RFC 7049, Appendix D, Figure 3: - // As half-precision floating-point numbers were only added - // to IEEE 754 in 2008, today's programming platforms often - // still only have limited support for them. It is very - // easy to include at least decoding support for them even - // without such support. An example of a small decoder for - // half-precision floating-point numbers in the C language - // is shown in Fig. 3. - const auto half = static_cast((byte1 << 8u) + byte2); - const double val = [&half] - { - const int exp = (half >> 10u) & 0x1Fu; - const unsigned int mant = half & 0x3FFu; - JSON_ASSERT(0 <= exp&& exp <= 32); - JSON_ASSERT(mant <= 1024); - switch (exp) - { - case 0: - return std::ldexp(mant, -24); - case 31: - return (mant == 0) - ? std::numeric_limits::infinity() - : std::numeric_limits::quiet_NaN(); - default: - return std::ldexp(mant + 1024, exp - 25); - } - }(); - return sax->number_float((half & 0x8000u) != 0 - ? static_cast(-val) - : static_cast(val), ""); - } - - case 0xFA: // Single-Precision Float (four-byte IEEE 754) - { - float number{}; - return get_number(input_format_t::cbor, number) && sax->number_float(static_cast(number), ""); - } - - case 0xFB: // Double-Precision Float (eight-byte IEEE 754) - { - double number{}; - return get_number(input_format_t::cbor, number) && sax->number_float(static_cast(number), ""); - } - - default: // anything else (0xFF is handled inside the other types) - { - auto last_token = get_token_string(); - return sax->parse_error(chars_read, last_token, parse_error::create(112, chars_read, exception_message(input_format_t::cbor, "invalid byte: 0x" + last_token, "value"))); - } - } - } - - /*! - @brief reads a CBOR string - - This function first reads starting bytes to determine the expected - string length and then copies this number of bytes into a string. - Additionally, CBOR's strings with indefinite lengths are supported. - - @param[out] result created string - - @return whether string creation completed - */ - bool get_cbor_string(string_t& result) - { - if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::cbor, "string"))) - { - return false; - } - - switch (current) - { - // UTF-8 string (0x00..0x17 bytes follow) - case 0x60: - case 0x61: - case 0x62: - case 0x63: - case 0x64: - case 0x65: - case 0x66: - case 0x67: - case 0x68: - case 0x69: - case 0x6A: - case 0x6B: - case 0x6C: - case 0x6D: - case 0x6E: - case 0x6F: - case 0x70: - case 0x71: - case 0x72: - case 0x73: - case 0x74: - case 0x75: - case 0x76: - case 0x77: - { - return get_string(input_format_t::cbor, static_cast(current) & 0x1Fu, result); - } - - case 0x78: // UTF-8 string (one-byte uint8_t for n follows) - { - std::uint8_t len{}; - return get_number(input_format_t::cbor, len) && get_string(input_format_t::cbor, len, result); - } - - case 0x79: // UTF-8 string (two-byte uint16_t for n follow) - { - std::uint16_t len{}; - return get_number(input_format_t::cbor, len) && get_string(input_format_t::cbor, len, result); - } - - case 0x7A: // UTF-8 string (four-byte uint32_t for n follow) - { - std::uint32_t len{}; - return get_number(input_format_t::cbor, len) && get_string(input_format_t::cbor, len, result); - } - - case 0x7B: // UTF-8 string (eight-byte uint64_t for n follow) - { - std::uint64_t len{}; - return get_number(input_format_t::cbor, len) && get_string(input_format_t::cbor, len, result); - } - - case 0x7F: // UTF-8 string (indefinite length) - { - while (get() != 0xFF) - { - string_t chunk; - if (!get_cbor_string(chunk)) - { - return false; - } - result.append(chunk); - } - return true; - } - - default: - { - auto last_token = get_token_string(); - return sax->parse_error(chars_read, last_token, parse_error::create(113, chars_read, exception_message(input_format_t::cbor, "expected length specification (0x60-0x7B) or indefinite string type (0x7F); last byte: 0x" + last_token, "string"))); - } - } - } - - /*! - @brief reads a CBOR byte array - - This function first reads starting bytes to determine the expected - byte array length and then copies this number of bytes into the byte array. - Additionally, CBOR's byte arrays with indefinite lengths are supported. - - @param[out] result created byte array - - @return whether byte array creation completed - */ - bool get_cbor_binary(binary_t& result) - { - if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::cbor, "binary"))) - { - return false; - } - - switch (current) - { - // Binary data (0x00..0x17 bytes follow) - case 0x40: - case 0x41: - case 0x42: - case 0x43: - case 0x44: - case 0x45: - case 0x46: - case 0x47: - case 0x48: - case 0x49: - case 0x4A: - case 0x4B: - case 0x4C: - case 0x4D: - case 0x4E: - case 0x4F: - case 0x50: - case 0x51: - case 0x52: - case 0x53: - case 0x54: - case 0x55: - case 0x56: - case 0x57: - { - return get_binary(input_format_t::cbor, static_cast(current) & 0x1Fu, result); - } - - case 0x58: // Binary data (one-byte uint8_t for n follows) - { - std::uint8_t len{}; - return get_number(input_format_t::cbor, len) && - get_binary(input_format_t::cbor, len, result); - } - - case 0x59: // Binary data (two-byte uint16_t for n follow) - { - std::uint16_t len{}; - return get_number(input_format_t::cbor, len) && - get_binary(input_format_t::cbor, len, result); - } - - case 0x5A: // Binary data (four-byte uint32_t for n follow) - { - std::uint32_t len{}; - return get_number(input_format_t::cbor, len) && - get_binary(input_format_t::cbor, len, result); - } - - case 0x5B: // Binary data (eight-byte uint64_t for n follow) - { - std::uint64_t len{}; - return get_number(input_format_t::cbor, len) && - get_binary(input_format_t::cbor, len, result); - } - - case 0x5F: // Binary data (indefinite length) - { - while (get() != 0xFF) - { - binary_t chunk; - if (!get_cbor_binary(chunk)) - { - return false; - } - result.insert(result.end(), chunk.begin(), chunk.end()); - } - return true; - } - - default: - { - auto last_token = get_token_string(); - return sax->parse_error(chars_read, last_token, parse_error::create(113, chars_read, exception_message(input_format_t::cbor, "expected length specification (0x40-0x5B) or indefinite binary array type (0x5F); last byte: 0x" + last_token, "binary"))); - } - } - } - - /*! - @param[in] len the length of the array or std::size_t(-1) for an - array of indefinite size - @param[in] tag_handler how CBOR tags should be treated - @return whether array creation completed - */ - bool get_cbor_array(const std::size_t len, - const cbor_tag_handler_t tag_handler) - { - if (JSON_HEDLEY_UNLIKELY(!sax->start_array(len))) - { - return false; - } - - if (len != std::size_t(-1)) - { - for (std::size_t i = 0; i < len; ++i) - { - if (JSON_HEDLEY_UNLIKELY(!parse_cbor_internal(true, tag_handler))) - { - return false; - } - } - } - else - { - while (get() != 0xFF) - { - if (JSON_HEDLEY_UNLIKELY(!parse_cbor_internal(false, tag_handler))) - { - return false; - } - } - } - - return sax->end_array(); - } - - /*! - @param[in] len the length of the object or std::size_t(-1) for an - object of indefinite size - @param[in] tag_handler how CBOR tags should be treated - @return whether object creation completed - */ - bool get_cbor_object(const std::size_t len, - const cbor_tag_handler_t tag_handler) - { - if (JSON_HEDLEY_UNLIKELY(!sax->start_object(len))) - { - return false; - } - - string_t key; - if (len != std::size_t(-1)) - { - for (std::size_t i = 0; i < len; ++i) - { - get(); - if (JSON_HEDLEY_UNLIKELY(!get_cbor_string(key) || !sax->key(key))) - { - return false; - } - - if (JSON_HEDLEY_UNLIKELY(!parse_cbor_internal(true, tag_handler))) - { - return false; - } - key.clear(); - } - } - else - { - while (get() != 0xFF) - { - if (JSON_HEDLEY_UNLIKELY(!get_cbor_string(key) || !sax->key(key))) - { - return false; - } - - if (JSON_HEDLEY_UNLIKELY(!parse_cbor_internal(true, tag_handler))) - { - return false; - } - key.clear(); - } - } - - return sax->end_object(); - } - - ///////////// - // MsgPack // - ///////////// - - /*! - @return whether a valid MessagePack value was passed to the SAX parser - */ - bool parse_msgpack_internal() - { - switch (get()) - { - // EOF - case std::char_traits::eof(): - return unexpect_eof(input_format_t::msgpack, "value"); - - // positive fixint - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case 0x09: - case 0x0A: - case 0x0B: - case 0x0C: - case 0x0D: - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case 0x20: - case 0x21: - case 0x22: - case 0x23: - case 0x24: - case 0x25: - case 0x26: - case 0x27: - case 0x28: - case 0x29: - case 0x2A: - case 0x2B: - case 0x2C: - case 0x2D: - case 0x2E: - case 0x2F: - case 0x30: - case 0x31: - case 0x32: - case 0x33: - case 0x34: - case 0x35: - case 0x36: - case 0x37: - case 0x38: - case 0x39: - case 0x3A: - case 0x3B: - case 0x3C: - case 0x3D: - case 0x3E: - case 0x3F: - case 0x40: - case 0x41: - case 0x42: - case 0x43: - case 0x44: - case 0x45: - case 0x46: - case 0x47: - case 0x48: - case 0x49: - case 0x4A: - case 0x4B: - case 0x4C: - case 0x4D: - case 0x4E: - case 0x4F: - case 0x50: - case 0x51: - case 0x52: - case 0x53: - case 0x54: - case 0x55: - case 0x56: - case 0x57: - case 0x58: - case 0x59: - case 0x5A: - case 0x5B: - case 0x5C: - case 0x5D: - case 0x5E: - case 0x5F: - case 0x60: - case 0x61: - case 0x62: - case 0x63: - case 0x64: - case 0x65: - case 0x66: - case 0x67: - case 0x68: - case 0x69: - case 0x6A: - case 0x6B: - case 0x6C: - case 0x6D: - case 0x6E: - case 0x6F: - case 0x70: - case 0x71: - case 0x72: - case 0x73: - case 0x74: - case 0x75: - case 0x76: - case 0x77: - case 0x78: - case 0x79: - case 0x7A: - case 0x7B: - case 0x7C: - case 0x7D: - case 0x7E: - case 0x7F: - return sax->number_unsigned(static_cast(current)); - - // fixmap - case 0x80: - case 0x81: - case 0x82: - case 0x83: - case 0x84: - case 0x85: - case 0x86: - case 0x87: - case 0x88: - case 0x89: - case 0x8A: - case 0x8B: - case 0x8C: - case 0x8D: - case 0x8E: - case 0x8F: - return get_msgpack_object(static_cast(static_cast(current) & 0x0Fu)); - - // fixarray - case 0x90: - case 0x91: - case 0x92: - case 0x93: - case 0x94: - case 0x95: - case 0x96: - case 0x97: - case 0x98: - case 0x99: - case 0x9A: - case 0x9B: - case 0x9C: - case 0x9D: - case 0x9E: - case 0x9F: - return get_msgpack_array(static_cast(static_cast(current) & 0x0Fu)); - - // fixstr - case 0xA0: - case 0xA1: - case 0xA2: - case 0xA3: - case 0xA4: - case 0xA5: - case 0xA6: - case 0xA7: - case 0xA8: - case 0xA9: - case 0xAA: - case 0xAB: - case 0xAC: - case 0xAD: - case 0xAE: - case 0xAF: - case 0xB0: - case 0xB1: - case 0xB2: - case 0xB3: - case 0xB4: - case 0xB5: - case 0xB6: - case 0xB7: - case 0xB8: - case 0xB9: - case 0xBA: - case 0xBB: - case 0xBC: - case 0xBD: - case 0xBE: - case 0xBF: - case 0xD9: // str 8 - case 0xDA: // str 16 - case 0xDB: // str 32 - { - string_t s; - return get_msgpack_string(s) && sax->string(s); - } - - case 0xC0: // nil - return sax->null(); - - case 0xC2: // false - return sax->boolean(false); - - case 0xC3: // true - return sax->boolean(true); - - case 0xC4: // bin 8 - case 0xC5: // bin 16 - case 0xC6: // bin 32 - case 0xC7: // ext 8 - case 0xC8: // ext 16 - case 0xC9: // ext 32 - case 0xD4: // fixext 1 - case 0xD5: // fixext 2 - case 0xD6: // fixext 4 - case 0xD7: // fixext 8 - case 0xD8: // fixext 16 - { - binary_t b; - return get_msgpack_binary(b) && sax->binary(b); - } - - case 0xCA: // float 32 - { - float number{}; - return get_number(input_format_t::msgpack, number) && sax->number_float(static_cast(number), ""); - } - - case 0xCB: // float 64 - { - double number{}; - return get_number(input_format_t::msgpack, number) && sax->number_float(static_cast(number), ""); - } - - case 0xCC: // uint 8 - { - std::uint8_t number{}; - return get_number(input_format_t::msgpack, number) && sax->number_unsigned(number); - } - - case 0xCD: // uint 16 - { - std::uint16_t number{}; - return get_number(input_format_t::msgpack, number) && sax->number_unsigned(number); - } - - case 0xCE: // uint 32 - { - std::uint32_t number{}; - return get_number(input_format_t::msgpack, number) && sax->number_unsigned(number); - } - - case 0xCF: // uint 64 - { - std::uint64_t number{}; - return get_number(input_format_t::msgpack, number) && sax->number_unsigned(number); - } - - case 0xD0: // int 8 - { - std::int8_t number{}; - return get_number(input_format_t::msgpack, number) && sax->number_integer(number); - } - - case 0xD1: // int 16 - { - std::int16_t number{}; - return get_number(input_format_t::msgpack, number) && sax->number_integer(number); - } - - case 0xD2: // int 32 - { - std::int32_t number{}; - return get_number(input_format_t::msgpack, number) && sax->number_integer(number); - } - - case 0xD3: // int 64 - { - std::int64_t number{}; - return get_number(input_format_t::msgpack, number) && sax->number_integer(number); - } - - case 0xDC: // array 16 - { - std::uint16_t len{}; - return get_number(input_format_t::msgpack, len) && get_msgpack_array(static_cast(len)); - } - - case 0xDD: // array 32 - { - std::uint32_t len{}; - return get_number(input_format_t::msgpack, len) && get_msgpack_array(static_cast(len)); - } - - case 0xDE: // map 16 - { - std::uint16_t len{}; - return get_number(input_format_t::msgpack, len) && get_msgpack_object(static_cast(len)); - } - - case 0xDF: // map 32 - { - std::uint32_t len{}; - return get_number(input_format_t::msgpack, len) && get_msgpack_object(static_cast(len)); - } - - // negative fixint - case 0xE0: - case 0xE1: - case 0xE2: - case 0xE3: - case 0xE4: - case 0xE5: - case 0xE6: - case 0xE7: - case 0xE8: - case 0xE9: - case 0xEA: - case 0xEB: - case 0xEC: - case 0xED: - case 0xEE: - case 0xEF: - case 0xF0: - case 0xF1: - case 0xF2: - case 0xF3: - case 0xF4: - case 0xF5: - case 0xF6: - case 0xF7: - case 0xF8: - case 0xF9: - case 0xFA: - case 0xFB: - case 0xFC: - case 0xFD: - case 0xFE: - case 0xFF: - return sax->number_integer(static_cast(current)); - - default: // anything else - { - auto last_token = get_token_string(); - return sax->parse_error(chars_read, last_token, parse_error::create(112, chars_read, exception_message(input_format_t::msgpack, "invalid byte: 0x" + last_token, "value"))); - } - } - } - - /*! - @brief reads a MessagePack string - - This function first reads starting bytes to determine the expected - string length and then copies this number of bytes into a string. - - @param[out] result created string - - @return whether string creation completed - */ - bool get_msgpack_string(string_t& result) - { - if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::msgpack, "string"))) - { - return false; - } - - switch (current) - { - // fixstr - case 0xA0: - case 0xA1: - case 0xA2: - case 0xA3: - case 0xA4: - case 0xA5: - case 0xA6: - case 0xA7: - case 0xA8: - case 0xA9: - case 0xAA: - case 0xAB: - case 0xAC: - case 0xAD: - case 0xAE: - case 0xAF: - case 0xB0: - case 0xB1: - case 0xB2: - case 0xB3: - case 0xB4: - case 0xB5: - case 0xB6: - case 0xB7: - case 0xB8: - case 0xB9: - case 0xBA: - case 0xBB: - case 0xBC: - case 0xBD: - case 0xBE: - case 0xBF: - { - return get_string(input_format_t::msgpack, static_cast(current) & 0x1Fu, result); - } - - case 0xD9: // str 8 - { - std::uint8_t len{}; - return get_number(input_format_t::msgpack, len) && get_string(input_format_t::msgpack, len, result); - } - - case 0xDA: // str 16 - { - std::uint16_t len{}; - return get_number(input_format_t::msgpack, len) && get_string(input_format_t::msgpack, len, result); - } - - case 0xDB: // str 32 - { - std::uint32_t len{}; - return get_number(input_format_t::msgpack, len) && get_string(input_format_t::msgpack, len, result); - } - - default: - { - auto last_token = get_token_string(); - return sax->parse_error(chars_read, last_token, parse_error::create(113, chars_read, exception_message(input_format_t::msgpack, "expected length specification (0xA0-0xBF, 0xD9-0xDB); last byte: 0x" + last_token, "string"))); - } - } - } - - /*! - @brief reads a MessagePack byte array - - This function first reads starting bytes to determine the expected - byte array length and then copies this number of bytes into a byte array. - - @param[out] result created byte array - - @return whether byte array creation completed - */ - bool get_msgpack_binary(binary_t& result) - { - // helper function to set the subtype - auto assign_and_return_true = [&result](std::int8_t subtype) - { - result.set_subtype(static_cast(subtype)); - return true; - }; - - switch (current) - { - case 0xC4: // bin 8 - { - std::uint8_t len{}; - return get_number(input_format_t::msgpack, len) && - get_binary(input_format_t::msgpack, len, result); - } - - case 0xC5: // bin 16 - { - std::uint16_t len{}; - return get_number(input_format_t::msgpack, len) && - get_binary(input_format_t::msgpack, len, result); - } - - case 0xC6: // bin 32 - { - std::uint32_t len{}; - return get_number(input_format_t::msgpack, len) && - get_binary(input_format_t::msgpack, len, result); - } - - case 0xC7: // ext 8 - { - std::uint8_t len{}; - std::int8_t subtype{}; - return get_number(input_format_t::msgpack, len) && - get_number(input_format_t::msgpack, subtype) && - get_binary(input_format_t::msgpack, len, result) && - assign_and_return_true(subtype); - } - - case 0xC8: // ext 16 - { - std::uint16_t len{}; - std::int8_t subtype{}; - return get_number(input_format_t::msgpack, len) && - get_number(input_format_t::msgpack, subtype) && - get_binary(input_format_t::msgpack, len, result) && - assign_and_return_true(subtype); - } - - case 0xC9: // ext 32 - { - std::uint32_t len{}; - std::int8_t subtype{}; - return get_number(input_format_t::msgpack, len) && - get_number(input_format_t::msgpack, subtype) && - get_binary(input_format_t::msgpack, len, result) && - assign_and_return_true(subtype); - } - - case 0xD4: // fixext 1 - { - std::int8_t subtype{}; - return get_number(input_format_t::msgpack, subtype) && - get_binary(input_format_t::msgpack, 1, result) && - assign_and_return_true(subtype); - } - - case 0xD5: // fixext 2 - { - std::int8_t subtype{}; - return get_number(input_format_t::msgpack, subtype) && - get_binary(input_format_t::msgpack, 2, result) && - assign_and_return_true(subtype); - } - - case 0xD6: // fixext 4 - { - std::int8_t subtype{}; - return get_number(input_format_t::msgpack, subtype) && - get_binary(input_format_t::msgpack, 4, result) && - assign_and_return_true(subtype); - } - - case 0xD7: // fixext 8 - { - std::int8_t subtype{}; - return get_number(input_format_t::msgpack, subtype) && - get_binary(input_format_t::msgpack, 8, result) && - assign_and_return_true(subtype); - } - - case 0xD8: // fixext 16 - { - std::int8_t subtype{}; - return get_number(input_format_t::msgpack, subtype) && - get_binary(input_format_t::msgpack, 16, result) && - assign_and_return_true(subtype); - } - - default: // LCOV_EXCL_LINE - return false; // LCOV_EXCL_LINE - } - } - - /*! - @param[in] len the length of the array - @return whether array creation completed - */ - bool get_msgpack_array(const std::size_t len) - { - if (JSON_HEDLEY_UNLIKELY(!sax->start_array(len))) - { - return false; - } - - for (std::size_t i = 0; i < len; ++i) - { - if (JSON_HEDLEY_UNLIKELY(!parse_msgpack_internal())) - { - return false; - } - } - - return sax->end_array(); - } - - /*! - @param[in] len the length of the object - @return whether object creation completed - */ - bool get_msgpack_object(const std::size_t len) - { - if (JSON_HEDLEY_UNLIKELY(!sax->start_object(len))) - { - return false; - } - - string_t key; - for (std::size_t i = 0; i < len; ++i) - { - get(); - if (JSON_HEDLEY_UNLIKELY(!get_msgpack_string(key) || !sax->key(key))) - { - return false; - } - - if (JSON_HEDLEY_UNLIKELY(!parse_msgpack_internal())) - { - return false; - } - key.clear(); - } - - return sax->end_object(); - } - - //////////// - // UBJSON // - //////////// - - /*! - @param[in] get_char whether a new character should be retrieved from the - input (true, default) or whether the last read - character should be considered instead - - @return whether a valid UBJSON value was passed to the SAX parser - */ - bool parse_ubjson_internal(const bool get_char = true) - { - return get_ubjson_value(get_char ? get_ignore_noop() : current); - } - - /*! - @brief reads a UBJSON string - - This function is either called after reading the 'S' byte explicitly - indicating a string, or in case of an object key where the 'S' byte can be - left out. - - @param[out] result created string - @param[in] get_char whether a new character should be retrieved from the - input (true, default) or whether the last read - character should be considered instead - - @return whether string creation completed - */ - bool get_ubjson_string(string_t& result, const bool get_char = true) - { - if (get_char) - { - get(); // TODO(niels): may we ignore N here? - } - - if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::ubjson, "value"))) - { - return false; - } - - switch (current) - { - case 'U': - { - std::uint8_t len{}; - return get_number(input_format_t::ubjson, len) && get_string(input_format_t::ubjson, len, result); - } - - case 'i': - { - std::int8_t len{}; - return get_number(input_format_t::ubjson, len) && get_string(input_format_t::ubjson, len, result); - } - - case 'I': - { - std::int16_t len{}; - return get_number(input_format_t::ubjson, len) && get_string(input_format_t::ubjson, len, result); - } - - case 'l': - { - std::int32_t len{}; - return get_number(input_format_t::ubjson, len) && get_string(input_format_t::ubjson, len, result); - } - - case 'L': - { - std::int64_t len{}; - return get_number(input_format_t::ubjson, len) && get_string(input_format_t::ubjson, len, result); - } - - default: - auto last_token = get_token_string(); - return sax->parse_error(chars_read, last_token, parse_error::create(113, chars_read, exception_message(input_format_t::ubjson, "expected length type specification (U, i, I, l, L); last byte: 0x" + last_token, "string"))); - } - } - - /*! - @param[out] result determined size - @return whether size determination completed - */ - bool get_ubjson_size_value(std::size_t& result) - { - switch (get_ignore_noop()) - { - case 'U': - { - std::uint8_t number{}; - if (JSON_HEDLEY_UNLIKELY(!get_number(input_format_t::ubjson, number))) - { - return false; - } - result = static_cast(number); - return true; - } - - case 'i': - { - std::int8_t number{}; - if (JSON_HEDLEY_UNLIKELY(!get_number(input_format_t::ubjson, number))) - { - return false; - } - result = static_cast(number); - return true; - } - - case 'I': - { - std::int16_t number{}; - if (JSON_HEDLEY_UNLIKELY(!get_number(input_format_t::ubjson, number))) - { - return false; - } - result = static_cast(number); - return true; - } - - case 'l': - { - std::int32_t number{}; - if (JSON_HEDLEY_UNLIKELY(!get_number(input_format_t::ubjson, number))) - { - return false; - } - result = static_cast(number); - return true; - } - - case 'L': - { - std::int64_t number{}; - if (JSON_HEDLEY_UNLIKELY(!get_number(input_format_t::ubjson, number))) - { - return false; - } - result = static_cast(number); - return true; - } - - default: - { - auto last_token = get_token_string(); - return sax->parse_error(chars_read, last_token, parse_error::create(113, chars_read, exception_message(input_format_t::ubjson, "expected length type specification (U, i, I, l, L) after '#'; last byte: 0x" + last_token, "size"))); - } - } - } - - /*! - @brief determine the type and size for a container - - In the optimized UBJSON format, a type and a size can be provided to allow - for a more compact representation. - - @param[out] result pair of the size and the type - - @return whether pair creation completed - */ - bool get_ubjson_size_type(std::pair& result) - { - result.first = string_t::npos; // size - result.second = 0; // type - - get_ignore_noop(); - - if (current == '$') - { - result.second = get(); // must not ignore 'N', because 'N' maybe the type - if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::ubjson, "type"))) - { - return false; - } - - get_ignore_noop(); - if (JSON_HEDLEY_UNLIKELY(current != '#')) - { - if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::ubjson, "value"))) - { - return false; - } - auto last_token = get_token_string(); - return sax->parse_error(chars_read, last_token, parse_error::create(112, chars_read, exception_message(input_format_t::ubjson, "expected '#' after type information; last byte: 0x" + last_token, "size"))); - } - - return get_ubjson_size_value(result.first); - } - - if (current == '#') - { - return get_ubjson_size_value(result.first); - } - - return true; - } - - /*! - @param prefix the previously read or set type prefix - @return whether value creation completed - */ - bool get_ubjson_value(const char_int_type prefix) - { - switch (prefix) - { - case std::char_traits::eof(): // EOF - return unexpect_eof(input_format_t::ubjson, "value"); - - case 'T': // true - return sax->boolean(true); - case 'F': // false - return sax->boolean(false); - - case 'Z': // null - return sax->null(); - - case 'U': - { - std::uint8_t number{}; - return get_number(input_format_t::ubjson, number) && sax->number_unsigned(number); - } - - case 'i': - { - std::int8_t number{}; - return get_number(input_format_t::ubjson, number) && sax->number_integer(number); - } - - case 'I': - { - std::int16_t number{}; - return get_number(input_format_t::ubjson, number) && sax->number_integer(number); - } - - case 'l': - { - std::int32_t number{}; - return get_number(input_format_t::ubjson, number) && sax->number_integer(number); - } - - case 'L': - { - std::int64_t number{}; - return get_number(input_format_t::ubjson, number) && sax->number_integer(number); - } - - case 'd': - { - float number{}; - return get_number(input_format_t::ubjson, number) && sax->number_float(static_cast(number), ""); - } - - case 'D': - { - double number{}; - return get_number(input_format_t::ubjson, number) && sax->number_float(static_cast(number), ""); - } - - case 'H': - { - return get_ubjson_high_precision_number(); - } - - case 'C': // char - { - get(); - if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::ubjson, "char"))) - { - return false; - } - if (JSON_HEDLEY_UNLIKELY(current > 127)) - { - auto last_token = get_token_string(); - return sax->parse_error(chars_read, last_token, parse_error::create(113, chars_read, exception_message(input_format_t::ubjson, "byte after 'C' must be in range 0x00..0x7F; last byte: 0x" + last_token, "char"))); - } - string_t s(1, static_cast(current)); - return sax->string(s); - } - - case 'S': // string - { - string_t s; - return get_ubjson_string(s) && sax->string(s); - } - - case '[': // array - return get_ubjson_array(); - - case '{': // object - return get_ubjson_object(); - - default: // anything else - { - auto last_token = get_token_string(); - return sax->parse_error(chars_read, last_token, parse_error::create(112, chars_read, exception_message(input_format_t::ubjson, "invalid byte: 0x" + last_token, "value"))); - } - } - } - - /*! - @return whether array creation completed - */ - bool get_ubjson_array() - { - std::pair size_and_type; - if (JSON_HEDLEY_UNLIKELY(!get_ubjson_size_type(size_and_type))) - { - return false; - } - - if (size_and_type.first != string_t::npos) - { - if (JSON_HEDLEY_UNLIKELY(!sax->start_array(size_and_type.first))) - { - return false; - } - - if (size_and_type.second != 0) - { - if (size_and_type.second != 'N') - { - for (std::size_t i = 0; i < size_and_type.first; ++i) - { - if (JSON_HEDLEY_UNLIKELY(!get_ubjson_value(size_and_type.second))) - { - return false; - } - } - } - } - else - { - for (std::size_t i = 0; i < size_and_type.first; ++i) - { - if (JSON_HEDLEY_UNLIKELY(!parse_ubjson_internal())) - { - return false; - } - } - } - } - else - { - if (JSON_HEDLEY_UNLIKELY(!sax->start_array(std::size_t(-1)))) - { - return false; - } - - while (current != ']') - { - if (JSON_HEDLEY_UNLIKELY(!parse_ubjson_internal(false))) - { - return false; - } - get_ignore_noop(); - } - } - - return sax->end_array(); - } - - /*! - @return whether object creation completed - */ - bool get_ubjson_object() - { - std::pair size_and_type; - if (JSON_HEDLEY_UNLIKELY(!get_ubjson_size_type(size_and_type))) - { - return false; - } - - string_t key; - if (size_and_type.first != string_t::npos) - { - if (JSON_HEDLEY_UNLIKELY(!sax->start_object(size_and_type.first))) - { - return false; - } - - if (size_and_type.second != 0) - { - for (std::size_t i = 0; i < size_and_type.first; ++i) - { - if (JSON_HEDLEY_UNLIKELY(!get_ubjson_string(key) || !sax->key(key))) - { - return false; - } - if (JSON_HEDLEY_UNLIKELY(!get_ubjson_value(size_and_type.second))) - { - return false; - } - key.clear(); - } - } - else - { - for (std::size_t i = 0; i < size_and_type.first; ++i) - { - if (JSON_HEDLEY_UNLIKELY(!get_ubjson_string(key) || !sax->key(key))) - { - return false; - } - if (JSON_HEDLEY_UNLIKELY(!parse_ubjson_internal())) - { - return false; - } - key.clear(); - } - } - } - else - { - if (JSON_HEDLEY_UNLIKELY(!sax->start_object(std::size_t(-1)))) - { - return false; - } - - while (current != '}') - { - if (JSON_HEDLEY_UNLIKELY(!get_ubjson_string(key, false) || !sax->key(key))) - { - return false; - } - if (JSON_HEDLEY_UNLIKELY(!parse_ubjson_internal())) - { - return false; - } - get_ignore_noop(); - key.clear(); - } - } - - return sax->end_object(); - } - - // Note, no reader for UBJSON binary types is implemented because they do - // not exist - - bool get_ubjson_high_precision_number() - { - // get size of following number string - std::size_t size{}; - auto res = get_ubjson_size_value(size); - if (JSON_HEDLEY_UNLIKELY(!res)) - { - return res; - } - - // get number string - std::vector number_vector; - for (std::size_t i = 0; i < size; ++i) - { - get(); - if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::ubjson, "number"))) - { - return false; - } - number_vector.push_back(static_cast(current)); - } - - // parse number string - auto number_ia = detail::input_adapter(std::forward(number_vector)); - auto number_lexer = detail::lexer(std::move(number_ia), false); - const auto result_number = number_lexer.scan(); - const auto number_string = number_lexer.get_token_string(); - const auto result_remainder = number_lexer.scan(); - - using token_type = typename detail::lexer_base::token_type; - - if (JSON_HEDLEY_UNLIKELY(result_remainder != token_type::end_of_input)) - { - return sax->parse_error(chars_read, number_string, parse_error::create(115, chars_read, exception_message(input_format_t::ubjson, "invalid number text: " + number_lexer.get_token_string(), "high-precision number"))); - } - - switch (result_number) - { - case token_type::value_integer: - return sax->number_integer(number_lexer.get_number_integer()); - case token_type::value_unsigned: - return sax->number_unsigned(number_lexer.get_number_unsigned()); - case token_type::value_float: - return sax->number_float(number_lexer.get_number_float(), std::move(number_string)); - default: - return sax->parse_error(chars_read, number_string, parse_error::create(115, chars_read, exception_message(input_format_t::ubjson, "invalid number text: " + number_lexer.get_token_string(), "high-precision number"))); - } - } - - /////////////////////// - // Utility functions // - /////////////////////// - - /*! - @brief get next character from the input - - This function provides the interface to the used input adapter. It does - not throw in case the input reached EOF, but returns a -'ve valued - `std::char_traits::eof()` in that case. - - @return character read from the input - */ - char_int_type get() - { - ++chars_read; - return current = ia.get_character(); - } - - /*! - @return character read from the input after ignoring all 'N' entries - */ - char_int_type get_ignore_noop() - { - do - { - get(); - } - while (current == 'N'); - - return current; - } - - /* - @brief read a number from the input - - @tparam NumberType the type of the number - @param[in] format the current format (for diagnostics) - @param[out] result number of type @a NumberType - - @return whether conversion completed - - @note This function needs to respect the system's endianess, because - bytes in CBOR, MessagePack, and UBJSON are stored in network order - (big endian) and therefore need reordering on little endian systems. - */ - template - bool get_number(const input_format_t format, NumberType& result) - { - // step 1: read input into array with system's byte order - std::array vec; - for (std::size_t i = 0; i < sizeof(NumberType); ++i) - { - get(); - if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(format, "number"))) - { - return false; - } - - // reverse byte order prior to conversion if necessary - if (is_little_endian != InputIsLittleEndian) - { - vec[sizeof(NumberType) - i - 1] = static_cast(current); - } - else - { - vec[i] = static_cast(current); // LCOV_EXCL_LINE - } - } - - // step 2: convert array into number of type T and return - std::memcpy(&result, vec.data(), sizeof(NumberType)); - return true; - } - - /*! - @brief create a string by reading characters from the input - - @tparam NumberType the type of the number - @param[in] format the current format (for diagnostics) - @param[in] len number of characters to read - @param[out] result string created by reading @a len bytes - - @return whether string creation completed - - @note We can not reserve @a len bytes for the result, because @a len - may be too large. Usually, @ref unexpect_eof() detects the end of - the input before we run out of string memory. - */ - template - bool get_string(const input_format_t format, - const NumberType len, - string_t& result) - { - bool success = true; - for (NumberType i = 0; i < len; i++) - { - get(); - if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(format, "string"))) - { - success = false; - break; - } - result.push_back(static_cast(current)); - }; - return success; - } - - /*! - @brief create a byte array by reading bytes from the input - - @tparam NumberType the type of the number - @param[in] format the current format (for diagnostics) - @param[in] len number of bytes to read - @param[out] result byte array created by reading @a len bytes - - @return whether byte array creation completed - - @note We can not reserve @a len bytes for the result, because @a len - may be too large. Usually, @ref unexpect_eof() detects the end of - the input before we run out of memory. - */ - template - bool get_binary(const input_format_t format, - const NumberType len, - binary_t& result) - { - bool success = true; - for (NumberType i = 0; i < len; i++) - { - get(); - if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(format, "binary"))) - { - success = false; - break; - } - result.push_back(static_cast(current)); - } - return success; - } - - /*! - @param[in] format the current format (for diagnostics) - @param[in] context further context information (for diagnostics) - @return whether the last read character is not EOF - */ - JSON_HEDLEY_NON_NULL(3) - bool unexpect_eof(const input_format_t format, const char* context) const - { - if (JSON_HEDLEY_UNLIKELY(current == std::char_traits::eof())) - { - return sax->parse_error(chars_read, "", - parse_error::create(110, chars_read, exception_message(format, "unexpected end of input", context))); - } - return true; - } - - /*! - @return a string representation of the last read byte - */ - std::string get_token_string() const - { - std::array cr{{}}; - (std::snprintf)(cr.data(), cr.size(), "%.2hhX", static_cast(current)); - return std::string{cr.data()}; - } - - /*! - @param[in] format the current format - @param[in] detail a detailed error message - @param[in] context further context information - @return a message string to use in the parse_error exceptions - */ - std::string exception_message(const input_format_t format, - const std::string& detail, - const std::string& context) const - { - std::string error_msg = "syntax error while parsing "; - - switch (format) - { - case input_format_t::cbor: - error_msg += "CBOR"; - break; - - case input_format_t::msgpack: - error_msg += "MessagePack"; - break; - - case input_format_t::ubjson: - error_msg += "UBJSON"; - break; - - case input_format_t::bson: - error_msg += "BSON"; - break; - - default: // LCOV_EXCL_LINE - JSON_ASSERT(false); // LCOV_EXCL_LINE - } - - return error_msg + " " + context + ": " + detail; - } - - private: - /// input adapter - InputAdapterType ia; - - /// the current character - char_int_type current = std::char_traits::eof(); - - /// the number of characters read - std::size_t chars_read = 0; - - /// whether we can assume little endianess - const bool is_little_endian = little_endianess(); - - /// the SAX parser - json_sax_t* sax = nullptr; -}; -} // namespace detail -} // namespace nlohmann diff --git a/nlohmann/detail/input/input_adapters.hpp b/nlohmann/detail/input/input_adapters.hpp deleted file mode 100644 index 63921ca..0000000 --- a/nlohmann/detail/input/input_adapters.hpp +++ /dev/null @@ -1,454 +0,0 @@ -#pragma once - -#include // array -#include // size_t -#include //FILE * -#include // strlen -#include // istream -#include // begin, end, iterator_traits, random_access_iterator_tag, distance, next -#include // shared_ptr, make_shared, addressof -#include // accumulate -#include // string, char_traits -#include // enable_if, is_base_of, is_pointer, is_integral, remove_pointer -#include // pair, declval - -#include -#include - -namespace nlohmann -{ -namespace detail -{ -/// the supported input formats -enum class input_format_t { json, cbor, msgpack, ubjson, bson }; - -//////////////////// -// input adapters // -//////////////////// - -/*! -Input adapter for stdio file access. This adapter read only 1 byte and do not use any - buffer. This adapter is a very low level adapter. -*/ -class file_input_adapter -{ - public: - using char_type = char; - - JSON_HEDLEY_NON_NULL(2) - explicit file_input_adapter(std::FILE* f) noexcept - : m_file(f) - {} - - // make class move-only - file_input_adapter(const file_input_adapter&) = delete; - file_input_adapter(file_input_adapter&&) = default; - file_input_adapter& operator=(const file_input_adapter&) = delete; - file_input_adapter& operator=(file_input_adapter&&) = delete; - - std::char_traits::int_type get_character() noexcept - { - return std::fgetc(m_file); - } - - private: - /// the file pointer to read from - std::FILE* m_file; -}; - - -/*! -Input adapter for a (caching) istream. Ignores a UFT Byte Order Mark at -beginning of input. Does not support changing the underlying std::streambuf -in mid-input. Maintains underlying std::istream and std::streambuf to support -subsequent use of standard std::istream operations to process any input -characters following those used in parsing the JSON input. Clears the -std::istream flags; any input errors (e.g., EOF) will be detected by the first -subsequent call for input from the std::istream. -*/ -class input_stream_adapter -{ - public: - using char_type = char; - - ~input_stream_adapter() - { - // clear stream flags; we use underlying streambuf I/O, do not - // maintain ifstream flags, except eof - if (is != nullptr) - { - is->clear(is->rdstate() & std::ios::eofbit); - } - } - - explicit input_stream_adapter(std::istream& i) - : is(&i), sb(i.rdbuf()) - {} - - // delete because of pointer members - input_stream_adapter(const input_stream_adapter&) = delete; - input_stream_adapter& operator=(input_stream_adapter&) = delete; - input_stream_adapter& operator=(input_stream_adapter&& rhs) = delete; - - input_stream_adapter(input_stream_adapter&& rhs) noexcept : is(rhs.is), sb(rhs.sb) - { - rhs.is = nullptr; - rhs.sb = nullptr; - } - - // std::istream/std::streambuf use std::char_traits::to_int_type, to - // ensure that std::char_traits::eof() and the character 0xFF do not - // end up as the same value, eg. 0xFFFFFFFF. - std::char_traits::int_type get_character() - { - auto res = sb->sbumpc(); - // set eof manually, as we don't use the istream interface. - if (JSON_HEDLEY_UNLIKELY(res == EOF)) - { - is->clear(is->rdstate() | std::ios::eofbit); - } - return res; - } - - private: - /// the associated input stream - std::istream* is = nullptr; - std::streambuf* sb = nullptr; -}; - -// General-purpose iterator-based adapter. It might not be as fast as -// theoretically possible for some containers, but it is extremely versatile. -template -class iterator_input_adapter -{ - public: - using char_type = typename std::iterator_traits::value_type; - - iterator_input_adapter(IteratorType first, IteratorType last) - : current(std::move(first)), end(std::move(last)) {} - - typename std::char_traits::int_type get_character() - { - if (JSON_HEDLEY_LIKELY(current != end)) - { - auto result = std::char_traits::to_int_type(*current); - std::advance(current, 1); - return result; - } - else - { - return std::char_traits::eof(); - } - } - - private: - IteratorType current; - IteratorType end; - - template - friend struct wide_string_input_helper; - - bool empty() const - { - return current == end; - } - -}; - - -template -struct wide_string_input_helper; - -template -struct wide_string_input_helper -{ - // UTF-32 - static void fill_buffer(BaseInputAdapter& input, - std::array::int_type, 4>& utf8_bytes, - size_t& utf8_bytes_index, - size_t& utf8_bytes_filled) - { - utf8_bytes_index = 0; - - if (JSON_HEDLEY_UNLIKELY(input.empty())) - { - utf8_bytes[0] = std::char_traits::eof(); - utf8_bytes_filled = 1; - } - else - { - // get the current character - const auto wc = input.get_character(); - - // UTF-32 to UTF-8 encoding - if (wc < 0x80) - { - utf8_bytes[0] = static_cast::int_type>(wc); - utf8_bytes_filled = 1; - } - else if (wc <= 0x7FF) - { - utf8_bytes[0] = static_cast::int_type>(0xC0u | ((static_cast(wc) >> 6u) & 0x1Fu)); - utf8_bytes[1] = static_cast::int_type>(0x80u | (static_cast(wc) & 0x3Fu)); - utf8_bytes_filled = 2; - } - else if (wc <= 0xFFFF) - { - utf8_bytes[0] = static_cast::int_type>(0xE0u | ((static_cast(wc) >> 12u) & 0x0Fu)); - utf8_bytes[1] = static_cast::int_type>(0x80u | ((static_cast(wc) >> 6u) & 0x3Fu)); - utf8_bytes[2] = static_cast::int_type>(0x80u | (static_cast(wc) & 0x3Fu)); - utf8_bytes_filled = 3; - } - else if (wc <= 0x10FFFF) - { - utf8_bytes[0] = static_cast::int_type>(0xF0u | ((static_cast(wc) >> 18u) & 0x07u)); - utf8_bytes[1] = static_cast::int_type>(0x80u | ((static_cast(wc) >> 12u) & 0x3Fu)); - utf8_bytes[2] = static_cast::int_type>(0x80u | ((static_cast(wc) >> 6u) & 0x3Fu)); - utf8_bytes[3] = static_cast::int_type>(0x80u | (static_cast(wc) & 0x3Fu)); - utf8_bytes_filled = 4; - } - else - { - // unknown character - utf8_bytes[0] = static_cast::int_type>(wc); - utf8_bytes_filled = 1; - } - } - } -}; - -template -struct wide_string_input_helper -{ - // UTF-16 - static void fill_buffer(BaseInputAdapter& input, - std::array::int_type, 4>& utf8_bytes, - size_t& utf8_bytes_index, - size_t& utf8_bytes_filled) - { - utf8_bytes_index = 0; - - if (JSON_HEDLEY_UNLIKELY(input.empty())) - { - utf8_bytes[0] = std::char_traits::eof(); - utf8_bytes_filled = 1; - } - else - { - // get the current character - const auto wc = input.get_character(); - - // UTF-16 to UTF-8 encoding - if (wc < 0x80) - { - utf8_bytes[0] = static_cast::int_type>(wc); - utf8_bytes_filled = 1; - } - else if (wc <= 0x7FF) - { - utf8_bytes[0] = static_cast::int_type>(0xC0u | ((static_cast(wc) >> 6u))); - utf8_bytes[1] = static_cast::int_type>(0x80u | (static_cast(wc) & 0x3Fu)); - utf8_bytes_filled = 2; - } - else if (0xD800 > wc || wc >= 0xE000) - { - utf8_bytes[0] = static_cast::int_type>(0xE0u | ((static_cast(wc) >> 12u))); - utf8_bytes[1] = static_cast::int_type>(0x80u | ((static_cast(wc) >> 6u) & 0x3Fu)); - utf8_bytes[2] = static_cast::int_type>(0x80u | (static_cast(wc) & 0x3Fu)); - utf8_bytes_filled = 3; - } - else - { - if (JSON_HEDLEY_UNLIKELY(!input.empty())) - { - const auto wc2 = static_cast(input.get_character()); - const auto charcode = 0x10000u + (((static_cast(wc) & 0x3FFu) << 10u) | (wc2 & 0x3FFu)); - utf8_bytes[0] = static_cast::int_type>(0xF0u | (charcode >> 18u)); - utf8_bytes[1] = static_cast::int_type>(0x80u | ((charcode >> 12u) & 0x3Fu)); - utf8_bytes[2] = static_cast::int_type>(0x80u | ((charcode >> 6u) & 0x3Fu)); - utf8_bytes[3] = static_cast::int_type>(0x80u | (charcode & 0x3Fu)); - utf8_bytes_filled = 4; - } - else - { - utf8_bytes[0] = static_cast::int_type>(wc); - utf8_bytes_filled = 1; - } - } - } - } -}; - -// Wraps another input apdater to convert wide character types into individual bytes. -template -class wide_string_input_adapter -{ - public: - using char_type = char; - - wide_string_input_adapter(BaseInputAdapter base) - : base_adapter(base) {} - - typename std::char_traits::int_type get_character() noexcept - { - // check if buffer needs to be filled - if (utf8_bytes_index == utf8_bytes_filled) - { - fill_buffer(); - - JSON_ASSERT(utf8_bytes_filled > 0); - JSON_ASSERT(utf8_bytes_index == 0); - } - - // use buffer - JSON_ASSERT(utf8_bytes_filled > 0); - JSON_ASSERT(utf8_bytes_index < utf8_bytes_filled); - return utf8_bytes[utf8_bytes_index++]; - } - - private: - BaseInputAdapter base_adapter; - - template - void fill_buffer() - { - wide_string_input_helper::fill_buffer(base_adapter, utf8_bytes, utf8_bytes_index, utf8_bytes_filled); - } - - /// a buffer for UTF-8 bytes - std::array::int_type, 4> utf8_bytes = {{0, 0, 0, 0}}; - - /// index to the utf8_codes array for the next valid byte - std::size_t utf8_bytes_index = 0; - /// number of valid bytes in the utf8_codes array - std::size_t utf8_bytes_filled = 0; -}; - - -template -struct iterator_input_adapter_factory -{ - using iterator_type = IteratorType; - using char_type = typename std::iterator_traits::value_type; - using adapter_type = iterator_input_adapter; - - static adapter_type create(IteratorType first, IteratorType last) - { - return adapter_type(std::move(first), std::move(last)); - } -}; - -template -struct is_iterator_of_multibyte -{ - using value_type = typename std::iterator_traits::value_type; - enum - { - value = sizeof(value_type) > 1 - }; -}; - -template -struct iterator_input_adapter_factory::value>> -{ - using iterator_type = IteratorType; - using char_type = typename std::iterator_traits::value_type; - using base_adapter_type = iterator_input_adapter; - using adapter_type = wide_string_input_adapter; - - static adapter_type create(IteratorType first, IteratorType last) - { - return adapter_type(base_adapter_type(std::move(first), std::move(last))); - } -}; - -// General purpose iterator-based input -template -typename iterator_input_adapter_factory::adapter_type input_adapter(IteratorType first, IteratorType last) -{ - using factory_type = iterator_input_adapter_factory; - return factory_type::create(first, last); -} - -// Convenience shorthand from container to iterator -template -auto input_adapter(const ContainerType& container) -> decltype(input_adapter(begin(container), end(container))) -{ - // Enable ADL - using std::begin; - using std::end; - - return input_adapter(begin(container), end(container)); -} - -// Special cases with fast paths -inline file_input_adapter input_adapter(std::FILE* file) -{ - return file_input_adapter(file); -} - -inline input_stream_adapter input_adapter(std::istream& stream) -{ - return input_stream_adapter(stream); -} - -inline input_stream_adapter input_adapter(std::istream&& stream) -{ - return input_stream_adapter(stream); -} - -using contiguous_bytes_input_adapter = decltype(input_adapter(std::declval(), std::declval())); - -// Null-delimited strings, and the like. -template < typename CharT, - typename std::enable_if < - std::is_pointer::value&& - !std::is_array::value&& - std::is_integral::type>::value&& - sizeof(typename std::remove_pointer::type) == 1, - int >::type = 0 > -contiguous_bytes_input_adapter input_adapter(CharT b) -{ - auto length = std::strlen(reinterpret_cast(b)); - const auto* ptr = reinterpret_cast(b); - return input_adapter(ptr, ptr + length); -} - -template -auto input_adapter(T (&array)[N]) -> decltype(input_adapter(array, array + N)) -{ - return input_adapter(array, array + N); -} - -// This class only handles inputs of input_buffer_adapter type. -// It's required so that expressions like {ptr, len} can be implicitely casted -// to the correct adapter. -class span_input_adapter -{ - public: - template < typename CharT, - typename std::enable_if < - std::is_pointer::value&& - std::is_integral::type>::value&& - sizeof(typename std::remove_pointer::type) == 1, - int >::type = 0 > - span_input_adapter(CharT b, std::size_t l) - : ia(reinterpret_cast(b), reinterpret_cast(b) + l) {} - - template::iterator_category, std::random_access_iterator_tag>::value, - int>::type = 0> - span_input_adapter(IteratorType first, IteratorType last) - : ia(input_adapter(first, last)) {} - - contiguous_bytes_input_adapter&& get() - { - return std::move(ia); - } - - private: - contiguous_bytes_input_adapter ia; -}; -} // namespace detail -} // namespace nlohmann diff --git a/nlohmann/detail/input/json_sax.hpp b/nlohmann/detail/input/json_sax.hpp deleted file mode 100644 index 9d1cb21..0000000 --- a/nlohmann/detail/input/json_sax.hpp +++ /dev/null @@ -1,696 +0,0 @@ -#pragma once - -#include -#include // string -#include // move -#include // vector - -#include -#include - -namespace nlohmann -{ - -/*! -@brief SAX interface - -This class describes the SAX interface used by @ref nlohmann::json::sax_parse. -Each function is called in different situations while the input is parsed. The -boolean return value informs the parser whether to continue processing the -input. -*/ -template -struct json_sax -{ - using number_integer_t = typename BasicJsonType::number_integer_t; - using number_unsigned_t = typename BasicJsonType::number_unsigned_t; - using number_float_t = typename BasicJsonType::number_float_t; - using string_t = typename BasicJsonType::string_t; - using binary_t = typename BasicJsonType::binary_t; - - /*! - @brief a null value was read - @return whether parsing should proceed - */ - virtual bool null() = 0; - - /*! - @brief a boolean value was read - @param[in] val boolean value - @return whether parsing should proceed - */ - virtual bool boolean(bool val) = 0; - - /*! - @brief an integer number was read - @param[in] val integer value - @return whether parsing should proceed - */ - virtual bool number_integer(number_integer_t val) = 0; - - /*! - @brief an unsigned integer number was read - @param[in] val unsigned integer value - @return whether parsing should proceed - */ - virtual bool number_unsigned(number_unsigned_t val) = 0; - - /*! - @brief an floating-point number was read - @param[in] val floating-point value - @param[in] s raw token value - @return whether parsing should proceed - */ - virtual bool number_float(number_float_t val, const string_t& s) = 0; - - /*! - @brief a string was read - @param[in] val string value - @return whether parsing should proceed - @note It is safe to move the passed string. - */ - virtual bool string(string_t& val) = 0; - - /*! - @brief a binary string was read - @param[in] val binary value - @return whether parsing should proceed - @note It is safe to move the passed binary. - */ - virtual bool binary(binary_t& val) = 0; - - /*! - @brief the beginning of an object was read - @param[in] elements number of object elements or -1 if unknown - @return whether parsing should proceed - @note binary formats may report the number of elements - */ - virtual bool start_object(std::size_t elements) = 0; - - /*! - @brief an object key was read - @param[in] val object key - @return whether parsing should proceed - @note It is safe to move the passed string. - */ - virtual bool key(string_t& val) = 0; - - /*! - @brief the end of an object was read - @return whether parsing should proceed - */ - virtual bool end_object() = 0; - - /*! - @brief the beginning of an array was read - @param[in] elements number of array elements or -1 if unknown - @return whether parsing should proceed - @note binary formats may report the number of elements - */ - virtual bool start_array(std::size_t elements) = 0; - - /*! - @brief the end of an array was read - @return whether parsing should proceed - */ - virtual bool end_array() = 0; - - /*! - @brief a parse error occurred - @param[in] position the position in the input where the error occurs - @param[in] last_token the last read token - @param[in] ex an exception object describing the error - @return whether parsing should proceed (must return false) - */ - virtual bool parse_error(std::size_t position, - const std::string& last_token, - const detail::exception& ex) = 0; - - virtual ~json_sax() = default; -}; - - -namespace detail -{ -/*! -@brief SAX implementation to create a JSON value from SAX events - -This class implements the @ref json_sax interface and processes the SAX events -to create a JSON value which makes it basically a DOM parser. The structure or -hierarchy of the JSON value is managed by the stack `ref_stack` which contains -a pointer to the respective array or object for each recursion depth. - -After successful parsing, the value that is passed by reference to the -constructor contains the parsed value. - -@tparam BasicJsonType the JSON type -*/ -template -class json_sax_dom_parser -{ - public: - using number_integer_t = typename BasicJsonType::number_integer_t; - using number_unsigned_t = typename BasicJsonType::number_unsigned_t; - using number_float_t = typename BasicJsonType::number_float_t; - using string_t = typename BasicJsonType::string_t; - using binary_t = typename BasicJsonType::binary_t; - - /*! - @param[in, out] r reference to a JSON value that is manipulated while - parsing - @param[in] allow_exceptions_ whether parse errors yield exceptions - */ - explicit json_sax_dom_parser(BasicJsonType& r, const bool allow_exceptions_ = true) - : root(r), allow_exceptions(allow_exceptions_) - {} - - // make class move-only - json_sax_dom_parser(const json_sax_dom_parser&) = delete; - json_sax_dom_parser(json_sax_dom_parser&&) = default; - json_sax_dom_parser& operator=(const json_sax_dom_parser&) = delete; - json_sax_dom_parser& operator=(json_sax_dom_parser&&) = default; - ~json_sax_dom_parser() = default; - - bool null() - { - handle_value(nullptr); - return true; - } - - bool boolean(bool val) - { - handle_value(val); - return true; - } - - bool number_integer(number_integer_t val) - { - handle_value(val); - return true; - } - - bool number_unsigned(number_unsigned_t val) - { - handle_value(val); - return true; - } - - bool number_float(number_float_t val, const string_t& /*unused*/) - { - handle_value(val); - return true; - } - - bool string(string_t& val) - { - handle_value(val); - return true; - } - - bool binary(binary_t& val) - { - handle_value(std::move(val)); - return true; - } - - bool start_object(std::size_t len) - { - ref_stack.push_back(handle_value(BasicJsonType::value_t::object)); - - if (JSON_HEDLEY_UNLIKELY(len != std::size_t(-1) && len > ref_stack.back()->max_size())) - { - JSON_THROW(out_of_range::create(408, - "excessive object size: " + std::to_string(len))); - } - - return true; - } - - bool key(string_t& val) - { - // add null at given key and store the reference for later - object_element = &(ref_stack.back()->m_value.object->operator[](val)); - return true; - } - - bool end_object() - { - ref_stack.pop_back(); - return true; - } - - bool start_array(std::size_t len) - { - ref_stack.push_back(handle_value(BasicJsonType::value_t::array)); - - if (JSON_HEDLEY_UNLIKELY(len != std::size_t(-1) && len > ref_stack.back()->max_size())) - { - JSON_THROW(out_of_range::create(408, - "excessive array size: " + std::to_string(len))); - } - - return true; - } - - bool end_array() - { - ref_stack.pop_back(); - return true; - } - - template - bool parse_error(std::size_t /*unused*/, const std::string& /*unused*/, - const Exception& ex) - { - errored = true; - static_cast(ex); - if (allow_exceptions) - - { - JSON_THROW(ex); - } - return false; - } - - constexpr bool is_errored() const - { - return errored; - } - - private: - /*! - @invariant If the ref stack is empty, then the passed value will be the new - root. - @invariant If the ref stack contains a value, then it is an array or an - object to which we can add elements - */ - template - JSON_HEDLEY_RETURNS_NON_NULL - BasicJsonType* handle_value(Value&& v) - { - if (ref_stack.empty()) - { - root = BasicJsonType(std::forward(v)); - return &root; - } - - JSON_ASSERT(ref_stack.back()->is_array() || ref_stack.back()->is_object()); - - if (ref_stack.back()->is_array()) - { - ref_stack.back()->m_value.array->emplace_back(std::forward(v)); - return &(ref_stack.back()->m_value.array->back()); - } - - JSON_ASSERT(ref_stack.back()->is_object()); - JSON_ASSERT(object_element); - *object_element = BasicJsonType(std::forward(v)); - return object_element; - } - - /// the parsed JSON value - BasicJsonType& root; - /// stack to model hierarchy of values - std::vector ref_stack {}; - /// helper to hold the reference for the next object element - BasicJsonType* object_element = nullptr; - /// whether a syntax error occurred - bool errored = false; - /// whether to throw exceptions in case of errors - const bool allow_exceptions = false; -}; - -template -class json_sax_dom_callback_parser -{ - public: - using number_integer_t = typename BasicJsonType::number_integer_t; - using number_unsigned_t = typename BasicJsonType::number_unsigned_t; - using number_float_t = typename BasicJsonType::number_float_t; - using string_t = typename BasicJsonType::string_t; - using binary_t = typename BasicJsonType::binary_t; - using parser_callback_t = typename BasicJsonType::parser_callback_t; - using parse_event_t = typename BasicJsonType::parse_event_t; - - json_sax_dom_callback_parser(BasicJsonType& r, - const parser_callback_t cb, - const bool allow_exceptions_ = true) - : root(r), callback(cb), allow_exceptions(allow_exceptions_) - { - keep_stack.push_back(true); - } - - // make class move-only - json_sax_dom_callback_parser(const json_sax_dom_callback_parser&) = delete; - json_sax_dom_callback_parser(json_sax_dom_callback_parser&&) = default; - json_sax_dom_callback_parser& operator=(const json_sax_dom_callback_parser&) = delete; - json_sax_dom_callback_parser& operator=(json_sax_dom_callback_parser&&) = default; - ~json_sax_dom_callback_parser() = default; - - bool null() - { - handle_value(nullptr); - return true; - } - - bool boolean(bool val) - { - handle_value(val); - return true; - } - - bool number_integer(number_integer_t val) - { - handle_value(val); - return true; - } - - bool number_unsigned(number_unsigned_t val) - { - handle_value(val); - return true; - } - - bool number_float(number_float_t val, const string_t& /*unused*/) - { - handle_value(val); - return true; - } - - bool string(string_t& val) - { - handle_value(val); - return true; - } - - bool binary(binary_t& val) - { - handle_value(std::move(val)); - return true; - } - - bool start_object(std::size_t len) - { - // check callback for object start - const bool keep = callback(static_cast(ref_stack.size()), parse_event_t::object_start, discarded); - keep_stack.push_back(keep); - - auto val = handle_value(BasicJsonType::value_t::object, true); - ref_stack.push_back(val.second); - - // check object limit - if (ref_stack.back() && JSON_HEDLEY_UNLIKELY(len != std::size_t(-1) && len > ref_stack.back()->max_size())) - { - JSON_THROW(out_of_range::create(408, "excessive object size: " + std::to_string(len))); - } - - return true; - } - - bool key(string_t& val) - { - BasicJsonType k = BasicJsonType(val); - - // check callback for key - const bool keep = callback(static_cast(ref_stack.size()), parse_event_t::key, k); - key_keep_stack.push_back(keep); - - // add discarded value at given key and store the reference for later - if (keep && ref_stack.back()) - { - object_element = &(ref_stack.back()->m_value.object->operator[](val) = discarded); - } - - return true; - } - - bool end_object() - { - if (ref_stack.back() && !callback(static_cast(ref_stack.size()) - 1, parse_event_t::object_end, *ref_stack.back())) - { - // discard object - *ref_stack.back() = discarded; - } - - JSON_ASSERT(!ref_stack.empty()); - JSON_ASSERT(!keep_stack.empty()); - ref_stack.pop_back(); - keep_stack.pop_back(); - - if (!ref_stack.empty() && ref_stack.back() && ref_stack.back()->is_structured()) - { - // remove discarded value - for (auto it = ref_stack.back()->begin(); it != ref_stack.back()->end(); ++it) - { - if (it->is_discarded()) - { - ref_stack.back()->erase(it); - break; - } - } - } - - return true; - } - - bool start_array(std::size_t len) - { - const bool keep = callback(static_cast(ref_stack.size()), parse_event_t::array_start, discarded); - keep_stack.push_back(keep); - - auto val = handle_value(BasicJsonType::value_t::array, true); - ref_stack.push_back(val.second); - - // check array limit - if (ref_stack.back() && JSON_HEDLEY_UNLIKELY(len != std::size_t(-1) && len > ref_stack.back()->max_size())) - { - JSON_THROW(out_of_range::create(408, "excessive array size: " + std::to_string(len))); - } - - return true; - } - - bool end_array() - { - bool keep = true; - - if (ref_stack.back()) - { - keep = callback(static_cast(ref_stack.size()) - 1, parse_event_t::array_end, *ref_stack.back()); - if (!keep) - { - // discard array - *ref_stack.back() = discarded; - } - } - - JSON_ASSERT(!ref_stack.empty()); - JSON_ASSERT(!keep_stack.empty()); - ref_stack.pop_back(); - keep_stack.pop_back(); - - // remove discarded value - if (!keep && !ref_stack.empty() && ref_stack.back()->is_array()) - { - ref_stack.back()->m_value.array->pop_back(); - } - - return true; - } - - template - bool parse_error(std::size_t /*unused*/, const std::string& /*unused*/, - const Exception& ex) - { - errored = true; - static_cast(ex); - if (allow_exceptions) - { - JSON_THROW(ex); - } - return false; - } - - constexpr bool is_errored() const - { - return errored; - } - - private: - /*! - @param[in] v value to add to the JSON value we build during parsing - @param[in] skip_callback whether we should skip calling the callback - function; this is required after start_array() and - start_object() SAX events, because otherwise we would call the - callback function with an empty array or object, respectively. - - @invariant If the ref stack is empty, then the passed value will be the new - root. - @invariant If the ref stack contains a value, then it is an array or an - object to which we can add elements - - @return pair of boolean (whether value should be kept) and pointer (to the - passed value in the ref_stack hierarchy; nullptr if not kept) - */ - template - std::pair handle_value(Value&& v, const bool skip_callback = false) - { - JSON_ASSERT(!keep_stack.empty()); - - // do not handle this value if we know it would be added to a discarded - // container - if (!keep_stack.back()) - { - return {false, nullptr}; - } - - // create value - auto value = BasicJsonType(std::forward(v)); - - // check callback - const bool keep = skip_callback || callback(static_cast(ref_stack.size()), parse_event_t::value, value); - - // do not handle this value if we just learnt it shall be discarded - if (!keep) - { - return {false, nullptr}; - } - - if (ref_stack.empty()) - { - root = std::move(value); - return {true, &root}; - } - - // skip this value if we already decided to skip the parent - // (https://github.com/nlohmann/json/issues/971#issuecomment-413678360) - if (!ref_stack.back()) - { - return {false, nullptr}; - } - - // we now only expect arrays and objects - JSON_ASSERT(ref_stack.back()->is_array() || ref_stack.back()->is_object()); - - // array - if (ref_stack.back()->is_array()) - { - ref_stack.back()->m_value.array->push_back(std::move(value)); - return {true, &(ref_stack.back()->m_value.array->back())}; - } - - // object - JSON_ASSERT(ref_stack.back()->is_object()); - // check if we should store an element for the current key - JSON_ASSERT(!key_keep_stack.empty()); - const bool store_element = key_keep_stack.back(); - key_keep_stack.pop_back(); - - if (!store_element) - { - return {false, nullptr}; - } - - JSON_ASSERT(object_element); - *object_element = std::move(value); - return {true, object_element}; - } - - /// the parsed JSON value - BasicJsonType& root; - /// stack to model hierarchy of values - std::vector ref_stack {}; - /// stack to manage which values to keep - std::vector keep_stack {}; - /// stack to manage which object keys to keep - std::vector key_keep_stack {}; - /// helper to hold the reference for the next object element - BasicJsonType* object_element = nullptr; - /// whether a syntax error occurred - bool errored = false; - /// callback function - const parser_callback_t callback = nullptr; - /// whether to throw exceptions in case of errors - const bool allow_exceptions = true; - /// a discarded value for the callback - BasicJsonType discarded = BasicJsonType::value_t::discarded; -}; - -template -class json_sax_acceptor -{ - public: - using number_integer_t = typename BasicJsonType::number_integer_t; - using number_unsigned_t = typename BasicJsonType::number_unsigned_t; - using number_float_t = typename BasicJsonType::number_float_t; - using string_t = typename BasicJsonType::string_t; - using binary_t = typename BasicJsonType::binary_t; - - bool null() - { - return true; - } - - bool boolean(bool /*unused*/) - { - return true; - } - - bool number_integer(number_integer_t /*unused*/) - { - return true; - } - - bool number_unsigned(number_unsigned_t /*unused*/) - { - return true; - } - - bool number_float(number_float_t /*unused*/, const string_t& /*unused*/) - { - return true; - } - - bool string(string_t& /*unused*/) - { - return true; - } - - bool binary(binary_t& /*unused*/) - { - return true; - } - - bool start_object(std::size_t /*unused*/ = std::size_t(-1)) - { - return true; - } - - bool key(string_t& /*unused*/) - { - return true; - } - - bool end_object() - { - return true; - } - - bool start_array(std::size_t /*unused*/ = std::size_t(-1)) - { - return true; - } - - bool end_array() - { - return true; - } - - bool parse_error(std::size_t /*unused*/, const std::string& /*unused*/, const detail::exception& /*unused*/) - { - return false; - } -}; -} // namespace detail - -} // namespace nlohmann diff --git a/nlohmann/detail/input/lexer.hpp b/nlohmann/detail/input/lexer.hpp deleted file mode 100644 index 0a96013..0000000 --- a/nlohmann/detail/input/lexer.hpp +++ /dev/null @@ -1,1623 +0,0 @@ -#pragma once - -#include // array -#include // localeconv -#include // size_t -#include // snprintf -#include // strtof, strtod, strtold, strtoll, strtoull -#include // initializer_list -#include // char_traits, string -#include // move -#include // vector - -#include -#include -#include - -namespace nlohmann -{ -namespace detail -{ -/////////// -// lexer // -/////////// - -template -class lexer_base -{ - public: - /// token types for the parser - enum class token_type - { - uninitialized, ///< indicating the scanner is uninitialized - literal_true, ///< the `true` literal - literal_false, ///< the `false` literal - literal_null, ///< the `null` literal - value_string, ///< a string -- use get_string() for actual value - value_unsigned, ///< an unsigned integer -- use get_number_unsigned() for actual value - value_integer, ///< a signed integer -- use get_number_integer() for actual value - value_float, ///< an floating point number -- use get_number_float() for actual value - begin_array, ///< the character for array begin `[` - begin_object, ///< the character for object begin `{` - end_array, ///< the character for array end `]` - end_object, ///< the character for object end `}` - name_separator, ///< the name separator `:` - value_separator, ///< the value separator `,` - parse_error, ///< indicating a parse error - end_of_input, ///< indicating the end of the input buffer - literal_or_value ///< a literal or the begin of a value (only for diagnostics) - }; - - /// return name of values of type token_type (only used for errors) - JSON_HEDLEY_RETURNS_NON_NULL - JSON_HEDLEY_CONST - static const char* token_type_name(const token_type t) noexcept - { - switch (t) - { - case token_type::uninitialized: - return ""; - case token_type::literal_true: - return "true literal"; - case token_type::literal_false: - return "false literal"; - case token_type::literal_null: - return "null literal"; - case token_type::value_string: - return "string literal"; - case token_type::value_unsigned: - case token_type::value_integer: - case token_type::value_float: - return "number literal"; - case token_type::begin_array: - return "'['"; - case token_type::begin_object: - return "'{'"; - case token_type::end_array: - return "']'"; - case token_type::end_object: - return "'}'"; - case token_type::name_separator: - return "':'"; - case token_type::value_separator: - return "','"; - case token_type::parse_error: - return ""; - case token_type::end_of_input: - return "end of input"; - case token_type::literal_or_value: - return "'[', '{', or a literal"; - // LCOV_EXCL_START - default: // catch non-enum values - return "unknown token"; - // LCOV_EXCL_STOP - } - } -}; -/*! -@brief lexical analysis - -This class organizes the lexical analysis during JSON deserialization. -*/ -template -class lexer : public lexer_base -{ - using number_integer_t = typename BasicJsonType::number_integer_t; - using number_unsigned_t = typename BasicJsonType::number_unsigned_t; - using number_float_t = typename BasicJsonType::number_float_t; - using string_t = typename BasicJsonType::string_t; - using char_type = typename InputAdapterType::char_type; - using char_int_type = typename std::char_traits::int_type; - - public: - using token_type = typename lexer_base::token_type; - - explicit lexer(InputAdapterType&& adapter, bool ignore_comments_ = false) - : ia(std::move(adapter)) - , ignore_comments(ignore_comments_) - , decimal_point_char(static_cast(get_decimal_point())) - {} - - // delete because of pointer members - lexer(const lexer&) = delete; - lexer(lexer&&) = default; - lexer& operator=(lexer&) = delete; - lexer& operator=(lexer&&) = default; - ~lexer() = default; - - private: - ///////////////////// - // locales - ///////////////////// - - /// return the locale-dependent decimal point - JSON_HEDLEY_PURE - static char get_decimal_point() noexcept - { - const auto* loc = localeconv(); - JSON_ASSERT(loc != nullptr); - return (loc->decimal_point == nullptr) ? '.' : *(loc->decimal_point); - } - - ///////////////////// - // scan functions - ///////////////////// - - /*! - @brief get codepoint from 4 hex characters following `\u` - - For input "\u c1 c2 c3 c4" the codepoint is: - (c1 * 0x1000) + (c2 * 0x0100) + (c3 * 0x0010) + c4 - = (c1 << 12) + (c2 << 8) + (c3 << 4) + (c4 << 0) - - Furthermore, the possible characters '0'..'9', 'A'..'F', and 'a'..'f' - must be converted to the integers 0x0..0x9, 0xA..0xF, 0xA..0xF, resp. The - conversion is done by subtracting the offset (0x30, 0x37, and 0x57) - between the ASCII value of the character and the desired integer value. - - @return codepoint (0x0000..0xFFFF) or -1 in case of an error (e.g. EOF or - non-hex character) - */ - int get_codepoint() - { - // this function only makes sense after reading `\u` - JSON_ASSERT(current == 'u'); - int codepoint = 0; - - const auto factors = { 12u, 8u, 4u, 0u }; - for (const auto factor : factors) - { - get(); - - if (current >= '0' && current <= '9') - { - codepoint += static_cast((static_cast(current) - 0x30u) << factor); - } - else if (current >= 'A' && current <= 'F') - { - codepoint += static_cast((static_cast(current) - 0x37u) << factor); - } - else if (current >= 'a' && current <= 'f') - { - codepoint += static_cast((static_cast(current) - 0x57u) << factor); - } - else - { - return -1; - } - } - - JSON_ASSERT(0x0000 <= codepoint && codepoint <= 0xFFFF); - return codepoint; - } - - /*! - @brief check if the next byte(s) are inside a given range - - Adds the current byte and, for each passed range, reads a new byte and - checks if it is inside the range. If a violation was detected, set up an - error message and return false. Otherwise, return true. - - @param[in] ranges list of integers; interpreted as list of pairs of - inclusive lower and upper bound, respectively - - @pre The passed list @a ranges must have 2, 4, or 6 elements; that is, - 1, 2, or 3 pairs. This precondition is enforced by an assertion. - - @return true if and only if no range violation was detected - */ - bool next_byte_in_range(std::initializer_list ranges) - { - JSON_ASSERT(ranges.size() == 2 || ranges.size() == 4 || ranges.size() == 6); - add(current); - - for (auto range = ranges.begin(); range != ranges.end(); ++range) - { - get(); - if (JSON_HEDLEY_LIKELY(*range <= current && current <= *(++range))) - { - add(current); - } - else - { - error_message = "invalid string: ill-formed UTF-8 byte"; - return false; - } - } - - return true; - } - - /*! - @brief scan a string literal - - This function scans a string according to Sect. 7 of RFC 7159. While - scanning, bytes are escaped and copied into buffer token_buffer. Then the - function returns successfully, token_buffer is *not* null-terminated (as it - may contain \0 bytes), and token_buffer.size() is the number of bytes in the - string. - - @return token_type::value_string if string could be successfully scanned, - token_type::parse_error otherwise - - @note In case of errors, variable error_message contains a textual - description. - */ - token_type scan_string() - { - // reset token_buffer (ignore opening quote) - reset(); - - // we entered the function by reading an open quote - JSON_ASSERT(current == '\"'); - - while (true) - { - // get next character - switch (get()) - { - // end of file while parsing string - case std::char_traits::eof(): - { - error_message = "invalid string: missing closing quote"; - return token_type::parse_error; - } - - // closing quote - case '\"': - { - return token_type::value_string; - } - - // escapes - case '\\': - { - switch (get()) - { - // quotation mark - case '\"': - add('\"'); - break; - // reverse solidus - case '\\': - add('\\'); - break; - // solidus - case '/': - add('/'); - break; - // backspace - case 'b': - add('\b'); - break; - // form feed - case 'f': - add('\f'); - break; - // line feed - case 'n': - add('\n'); - break; - // carriage return - case 'r': - add('\r'); - break; - // tab - case 't': - add('\t'); - break; - - // unicode escapes - case 'u': - { - const int codepoint1 = get_codepoint(); - int codepoint = codepoint1; // start with codepoint1 - - if (JSON_HEDLEY_UNLIKELY(codepoint1 == -1)) - { - error_message = "invalid string: '\\u' must be followed by 4 hex digits"; - return token_type::parse_error; - } - - // check if code point is a high surrogate - if (0xD800 <= codepoint1 && codepoint1 <= 0xDBFF) - { - // expect next \uxxxx entry - if (JSON_HEDLEY_LIKELY(get() == '\\' && get() == 'u')) - { - const int codepoint2 = get_codepoint(); - - if (JSON_HEDLEY_UNLIKELY(codepoint2 == -1)) - { - error_message = "invalid string: '\\u' must be followed by 4 hex digits"; - return token_type::parse_error; - } - - // check if codepoint2 is a low surrogate - if (JSON_HEDLEY_LIKELY(0xDC00 <= codepoint2 && codepoint2 <= 0xDFFF)) - { - // overwrite codepoint - codepoint = static_cast( - // high surrogate occupies the most significant 22 bits - (static_cast(codepoint1) << 10u) - // low surrogate occupies the least significant 15 bits - + static_cast(codepoint2) - // there is still the 0xD800, 0xDC00 and 0x10000 noise - // in the result so we have to subtract with: - // (0xD800 << 10) + DC00 - 0x10000 = 0x35FDC00 - - 0x35FDC00u); - } - else - { - error_message = "invalid string: surrogate U+D800..U+DBFF must be followed by U+DC00..U+DFFF"; - return token_type::parse_error; - } - } - else - { - error_message = "invalid string: surrogate U+D800..U+DBFF must be followed by U+DC00..U+DFFF"; - return token_type::parse_error; - } - } - else - { - if (JSON_HEDLEY_UNLIKELY(0xDC00 <= codepoint1 && codepoint1 <= 0xDFFF)) - { - error_message = "invalid string: surrogate U+DC00..U+DFFF must follow U+D800..U+DBFF"; - return token_type::parse_error; - } - } - - // result of the above calculation yields a proper codepoint - JSON_ASSERT(0x00 <= codepoint && codepoint <= 0x10FFFF); - - // translate codepoint into bytes - if (codepoint < 0x80) - { - // 1-byte characters: 0xxxxxxx (ASCII) - add(static_cast(codepoint)); - } - else if (codepoint <= 0x7FF) - { - // 2-byte characters: 110xxxxx 10xxxxxx - add(static_cast(0xC0u | (static_cast(codepoint) >> 6u))); - add(static_cast(0x80u | (static_cast(codepoint) & 0x3Fu))); - } - else if (codepoint <= 0xFFFF) - { - // 3-byte characters: 1110xxxx 10xxxxxx 10xxxxxx - add(static_cast(0xE0u | (static_cast(codepoint) >> 12u))); - add(static_cast(0x80u | ((static_cast(codepoint) >> 6u) & 0x3Fu))); - add(static_cast(0x80u | (static_cast(codepoint) & 0x3Fu))); - } - else - { - // 4-byte characters: 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx - add(static_cast(0xF0u | (static_cast(codepoint) >> 18u))); - add(static_cast(0x80u | ((static_cast(codepoint) >> 12u) & 0x3Fu))); - add(static_cast(0x80u | ((static_cast(codepoint) >> 6u) & 0x3Fu))); - add(static_cast(0x80u | (static_cast(codepoint) & 0x3Fu))); - } - - break; - } - - // other characters after escape - default: - error_message = "invalid string: forbidden character after backslash"; - return token_type::parse_error; - } - - break; - } - - // invalid control characters - case 0x00: - { - error_message = "invalid string: control character U+0000 (NUL) must be escaped to \\u0000"; - return token_type::parse_error; - } - - case 0x01: - { - error_message = "invalid string: control character U+0001 (SOH) must be escaped to \\u0001"; - return token_type::parse_error; - } - - case 0x02: - { - error_message = "invalid string: control character U+0002 (STX) must be escaped to \\u0002"; - return token_type::parse_error; - } - - case 0x03: - { - error_message = "invalid string: control character U+0003 (ETX) must be escaped to \\u0003"; - return token_type::parse_error; - } - - case 0x04: - { - error_message = "invalid string: control character U+0004 (EOT) must be escaped to \\u0004"; - return token_type::parse_error; - } - - case 0x05: - { - error_message = "invalid string: control character U+0005 (ENQ) must be escaped to \\u0005"; - return token_type::parse_error; - } - - case 0x06: - { - error_message = "invalid string: control character U+0006 (ACK) must be escaped to \\u0006"; - return token_type::parse_error; - } - - case 0x07: - { - error_message = "invalid string: control character U+0007 (BEL) must be escaped to \\u0007"; - return token_type::parse_error; - } - - case 0x08: - { - error_message = "invalid string: control character U+0008 (BS) must be escaped to \\u0008 or \\b"; - return token_type::parse_error; - } - - case 0x09: - { - error_message = "invalid string: control character U+0009 (HT) must be escaped to \\u0009 or \\t"; - return token_type::parse_error; - } - - case 0x0A: - { - error_message = "invalid string: control character U+000A (LF) must be escaped to \\u000A or \\n"; - return token_type::parse_error; - } - - case 0x0B: - { - error_message = "invalid string: control character U+000B (VT) must be escaped to \\u000B"; - return token_type::parse_error; - } - - case 0x0C: - { - error_message = "invalid string: control character U+000C (FF) must be escaped to \\u000C or \\f"; - return token_type::parse_error; - } - - case 0x0D: - { - error_message = "invalid string: control character U+000D (CR) must be escaped to \\u000D or \\r"; - return token_type::parse_error; - } - - case 0x0E: - { - error_message = "invalid string: control character U+000E (SO) must be escaped to \\u000E"; - return token_type::parse_error; - } - - case 0x0F: - { - error_message = "invalid string: control character U+000F (SI) must be escaped to \\u000F"; - return token_type::parse_error; - } - - case 0x10: - { - error_message = "invalid string: control character U+0010 (DLE) must be escaped to \\u0010"; - return token_type::parse_error; - } - - case 0x11: - { - error_message = "invalid string: control character U+0011 (DC1) must be escaped to \\u0011"; - return token_type::parse_error; - } - - case 0x12: - { - error_message = "invalid string: control character U+0012 (DC2) must be escaped to \\u0012"; - return token_type::parse_error; - } - - case 0x13: - { - error_message = "invalid string: control character U+0013 (DC3) must be escaped to \\u0013"; - return token_type::parse_error; - } - - case 0x14: - { - error_message = "invalid string: control character U+0014 (DC4) must be escaped to \\u0014"; - return token_type::parse_error; - } - - case 0x15: - { - error_message = "invalid string: control character U+0015 (NAK) must be escaped to \\u0015"; - return token_type::parse_error; - } - - case 0x16: - { - error_message = "invalid string: control character U+0016 (SYN) must be escaped to \\u0016"; - return token_type::parse_error; - } - - case 0x17: - { - error_message = "invalid string: control character U+0017 (ETB) must be escaped to \\u0017"; - return token_type::parse_error; - } - - case 0x18: - { - error_message = "invalid string: control character U+0018 (CAN) must be escaped to \\u0018"; - return token_type::parse_error; - } - - case 0x19: - { - error_message = "invalid string: control character U+0019 (EM) must be escaped to \\u0019"; - return token_type::parse_error; - } - - case 0x1A: - { - error_message = "invalid string: control character U+001A (SUB) must be escaped to \\u001A"; - return token_type::parse_error; - } - - case 0x1B: - { - error_message = "invalid string: control character U+001B (ESC) must be escaped to \\u001B"; - return token_type::parse_error; - } - - case 0x1C: - { - error_message = "invalid string: control character U+001C (FS) must be escaped to \\u001C"; - return token_type::parse_error; - } - - case 0x1D: - { - error_message = "invalid string: control character U+001D (GS) must be escaped to \\u001D"; - return token_type::parse_error; - } - - case 0x1E: - { - error_message = "invalid string: control character U+001E (RS) must be escaped to \\u001E"; - return token_type::parse_error; - } - - case 0x1F: - { - error_message = "invalid string: control character U+001F (US) must be escaped to \\u001F"; - return token_type::parse_error; - } - - // U+0020..U+007F (except U+0022 (quote) and U+005C (backspace)) - case 0x20: - case 0x21: - case 0x23: - case 0x24: - case 0x25: - case 0x26: - case 0x27: - case 0x28: - case 0x29: - case 0x2A: - case 0x2B: - case 0x2C: - case 0x2D: - case 0x2E: - case 0x2F: - case 0x30: - case 0x31: - case 0x32: - case 0x33: - case 0x34: - case 0x35: - case 0x36: - case 0x37: - case 0x38: - case 0x39: - case 0x3A: - case 0x3B: - case 0x3C: - case 0x3D: - case 0x3E: - case 0x3F: - case 0x40: - case 0x41: - case 0x42: - case 0x43: - case 0x44: - case 0x45: - case 0x46: - case 0x47: - case 0x48: - case 0x49: - case 0x4A: - case 0x4B: - case 0x4C: - case 0x4D: - case 0x4E: - case 0x4F: - case 0x50: - case 0x51: - case 0x52: - case 0x53: - case 0x54: - case 0x55: - case 0x56: - case 0x57: - case 0x58: - case 0x59: - case 0x5A: - case 0x5B: - case 0x5D: - case 0x5E: - case 0x5F: - case 0x60: - case 0x61: - case 0x62: - case 0x63: - case 0x64: - case 0x65: - case 0x66: - case 0x67: - case 0x68: - case 0x69: - case 0x6A: - case 0x6B: - case 0x6C: - case 0x6D: - case 0x6E: - case 0x6F: - case 0x70: - case 0x71: - case 0x72: - case 0x73: - case 0x74: - case 0x75: - case 0x76: - case 0x77: - case 0x78: - case 0x79: - case 0x7A: - case 0x7B: - case 0x7C: - case 0x7D: - case 0x7E: - case 0x7F: - { - add(current); - break; - } - - // U+0080..U+07FF: bytes C2..DF 80..BF - case 0xC2: - case 0xC3: - case 0xC4: - case 0xC5: - case 0xC6: - case 0xC7: - case 0xC8: - case 0xC9: - case 0xCA: - case 0xCB: - case 0xCC: - case 0xCD: - case 0xCE: - case 0xCF: - case 0xD0: - case 0xD1: - case 0xD2: - case 0xD3: - case 0xD4: - case 0xD5: - case 0xD6: - case 0xD7: - case 0xD8: - case 0xD9: - case 0xDA: - case 0xDB: - case 0xDC: - case 0xDD: - case 0xDE: - case 0xDF: - { - if (JSON_HEDLEY_UNLIKELY(!next_byte_in_range({0x80, 0xBF}))) - { - return token_type::parse_error; - } - break; - } - - // U+0800..U+0FFF: bytes E0 A0..BF 80..BF - case 0xE0: - { - if (JSON_HEDLEY_UNLIKELY(!(next_byte_in_range({0xA0, 0xBF, 0x80, 0xBF})))) - { - return token_type::parse_error; - } - break; - } - - // U+1000..U+CFFF: bytes E1..EC 80..BF 80..BF - // U+E000..U+FFFF: bytes EE..EF 80..BF 80..BF - case 0xE1: - case 0xE2: - case 0xE3: - case 0xE4: - case 0xE5: - case 0xE6: - case 0xE7: - case 0xE8: - case 0xE9: - case 0xEA: - case 0xEB: - case 0xEC: - case 0xEE: - case 0xEF: - { - if (JSON_HEDLEY_UNLIKELY(!(next_byte_in_range({0x80, 0xBF, 0x80, 0xBF})))) - { - return token_type::parse_error; - } - break; - } - - // U+D000..U+D7FF: bytes ED 80..9F 80..BF - case 0xED: - { - if (JSON_HEDLEY_UNLIKELY(!(next_byte_in_range({0x80, 0x9F, 0x80, 0xBF})))) - { - return token_type::parse_error; - } - break; - } - - // U+10000..U+3FFFF F0 90..BF 80..BF 80..BF - case 0xF0: - { - if (JSON_HEDLEY_UNLIKELY(!(next_byte_in_range({0x90, 0xBF, 0x80, 0xBF, 0x80, 0xBF})))) - { - return token_type::parse_error; - } - break; - } - - // U+40000..U+FFFFF F1..F3 80..BF 80..BF 80..BF - case 0xF1: - case 0xF2: - case 0xF3: - { - if (JSON_HEDLEY_UNLIKELY(!(next_byte_in_range({0x80, 0xBF, 0x80, 0xBF, 0x80, 0xBF})))) - { - return token_type::parse_error; - } - break; - } - - // U+100000..U+10FFFF F4 80..8F 80..BF 80..BF - case 0xF4: - { - if (JSON_HEDLEY_UNLIKELY(!(next_byte_in_range({0x80, 0x8F, 0x80, 0xBF, 0x80, 0xBF})))) - { - return token_type::parse_error; - } - break; - } - - // remaining bytes (80..C1 and F5..FF) are ill-formed - default: - { - error_message = "invalid string: ill-formed UTF-8 byte"; - return token_type::parse_error; - } - } - } - } - - /*! - * @brief scan a comment - * @return whether comment could be scanned successfully - */ - bool scan_comment() - { - switch (get()) - { - // single-line comments skip input until a newline or EOF is read - case '/': - { - while (true) - { - switch (get()) - { - case '\n': - case '\r': - case std::char_traits::eof(): - case '\0': - return true; - - default: - break; - } - } - } - - // multi-line comments skip input until */ is read - case '*': - { - while (true) - { - switch (get()) - { - case std::char_traits::eof(): - case '\0': - { - error_message = "invalid comment; missing closing '*/'"; - return false; - } - - case '*': - { - switch (get()) - { - case '/': - return true; - - default: - { - unget(); - continue; - } - } - } - - default: - continue; - } - } - } - - // unexpected character after reading '/' - default: - { - error_message = "invalid comment; expecting '/' or '*' after '/'"; - return false; - } - } - } - - JSON_HEDLEY_NON_NULL(2) - static void strtof(float& f, const char* str, char** endptr) noexcept - { - f = std::strtof(str, endptr); - } - - JSON_HEDLEY_NON_NULL(2) - static void strtof(double& f, const char* str, char** endptr) noexcept - { - f = std::strtod(str, endptr); - } - - JSON_HEDLEY_NON_NULL(2) - static void strtof(long double& f, const char* str, char** endptr) noexcept - { - f = std::strtold(str, endptr); - } - - /*! - @brief scan a number literal - - This function scans a string according to Sect. 6 of RFC 7159. - - The function is realized with a deterministic finite state machine derived - from the grammar described in RFC 7159. Starting in state "init", the - input is read and used to determined the next state. Only state "done" - accepts the number. State "error" is a trap state to model errors. In the - table below, "anything" means any character but the ones listed before. - - state | 0 | 1-9 | e E | + | - | . | anything - ---------|----------|----------|----------|---------|---------|----------|----------- - init | zero | any1 | [error] | [error] | minus | [error] | [error] - minus | zero | any1 | [error] | [error] | [error] | [error] | [error] - zero | done | done | exponent | done | done | decimal1 | done - any1 | any1 | any1 | exponent | done | done | decimal1 | done - decimal1 | decimal2 | decimal2 | [error] | [error] | [error] | [error] | [error] - decimal2 | decimal2 | decimal2 | exponent | done | done | done | done - exponent | any2 | any2 | [error] | sign | sign | [error] | [error] - sign | any2 | any2 | [error] | [error] | [error] | [error] | [error] - any2 | any2 | any2 | done | done | done | done | done - - The state machine is realized with one label per state (prefixed with - "scan_number_") and `goto` statements between them. The state machine - contains cycles, but any cycle can be left when EOF is read. Therefore, - the function is guaranteed to terminate. - - During scanning, the read bytes are stored in token_buffer. This string is - then converted to a signed integer, an unsigned integer, or a - floating-point number. - - @return token_type::value_unsigned, token_type::value_integer, or - token_type::value_float if number could be successfully scanned, - token_type::parse_error otherwise - - @note The scanner is independent of the current locale. Internally, the - locale's decimal point is used instead of `.` to work with the - locale-dependent converters. - */ - token_type scan_number() // lgtm [cpp/use-of-goto] - { - // reset token_buffer to store the number's bytes - reset(); - - // the type of the parsed number; initially set to unsigned; will be - // changed if minus sign, decimal point or exponent is read - token_type number_type = token_type::value_unsigned; - - // state (init): we just found out we need to scan a number - switch (current) - { - case '-': - { - add(current); - goto scan_number_minus; - } - - case '0': - { - add(current); - goto scan_number_zero; - } - - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - case '8': - case '9': - { - add(current); - goto scan_number_any1; - } - - // all other characters are rejected outside scan_number() - default: // LCOV_EXCL_LINE - JSON_ASSERT(false); // LCOV_EXCL_LINE - } - -scan_number_minus: - // state: we just parsed a leading minus sign - number_type = token_type::value_integer; - switch (get()) - { - case '0': - { - add(current); - goto scan_number_zero; - } - - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - case '8': - case '9': - { - add(current); - goto scan_number_any1; - } - - default: - { - error_message = "invalid number; expected digit after '-'"; - return token_type::parse_error; - } - } - -scan_number_zero: - // state: we just parse a zero (maybe with a leading minus sign) - switch (get()) - { - case '.': - { - add(decimal_point_char); - goto scan_number_decimal1; - } - - case 'e': - case 'E': - { - add(current); - goto scan_number_exponent; - } - - default: - goto scan_number_done; - } - -scan_number_any1: - // state: we just parsed a number 0-9 (maybe with a leading minus sign) - switch (get()) - { - case '0': - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - case '8': - case '9': - { - add(current); - goto scan_number_any1; - } - - case '.': - { - add(decimal_point_char); - goto scan_number_decimal1; - } - - case 'e': - case 'E': - { - add(current); - goto scan_number_exponent; - } - - default: - goto scan_number_done; - } - -scan_number_decimal1: - // state: we just parsed a decimal point - number_type = token_type::value_float; - switch (get()) - { - case '0': - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - case '8': - case '9': - { - add(current); - goto scan_number_decimal2; - } - - default: - { - error_message = "invalid number; expected digit after '.'"; - return token_type::parse_error; - } - } - -scan_number_decimal2: - // we just parsed at least one number after a decimal point - switch (get()) - { - case '0': - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - case '8': - case '9': - { - add(current); - goto scan_number_decimal2; - } - - case 'e': - case 'E': - { - add(current); - goto scan_number_exponent; - } - - default: - goto scan_number_done; - } - -scan_number_exponent: - // we just parsed an exponent - number_type = token_type::value_float; - switch (get()) - { - case '+': - case '-': - { - add(current); - goto scan_number_sign; - } - - case '0': - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - case '8': - case '9': - { - add(current); - goto scan_number_any2; - } - - default: - { - error_message = - "invalid number; expected '+', '-', or digit after exponent"; - return token_type::parse_error; - } - } - -scan_number_sign: - // we just parsed an exponent sign - switch (get()) - { - case '0': - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - case '8': - case '9': - { - add(current); - goto scan_number_any2; - } - - default: - { - error_message = "invalid number; expected digit after exponent sign"; - return token_type::parse_error; - } - } - -scan_number_any2: - // we just parsed a number after the exponent or exponent sign - switch (get()) - { - case '0': - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - case '8': - case '9': - { - add(current); - goto scan_number_any2; - } - - default: - goto scan_number_done; - } - -scan_number_done: - // unget the character after the number (we only read it to know that - // we are done scanning a number) - unget(); - - char* endptr = nullptr; - errno = 0; - - // try to parse integers first and fall back to floats - if (number_type == token_type::value_unsigned) - { - const auto x = std::strtoull(token_buffer.data(), &endptr, 10); - - // we checked the number format before - JSON_ASSERT(endptr == token_buffer.data() + token_buffer.size()); - - if (errno == 0) - { - value_unsigned = static_cast(x); - if (value_unsigned == x) - { - return token_type::value_unsigned; - } - } - } - else if (number_type == token_type::value_integer) - { - const auto x = std::strtoll(token_buffer.data(), &endptr, 10); - - // we checked the number format before - JSON_ASSERT(endptr == token_buffer.data() + token_buffer.size()); - - if (errno == 0) - { - value_integer = static_cast(x); - if (value_integer == x) - { - return token_type::value_integer; - } - } - } - - // this code is reached if we parse a floating-point number or if an - // integer conversion above failed - strtof(value_float, token_buffer.data(), &endptr); - - // we checked the number format before - JSON_ASSERT(endptr == token_buffer.data() + token_buffer.size()); - - return token_type::value_float; - } - - /*! - @param[in] literal_text the literal text to expect - @param[in] length the length of the passed literal text - @param[in] return_type the token type to return on success - */ - JSON_HEDLEY_NON_NULL(2) - token_type scan_literal(const char_type* literal_text, const std::size_t length, - token_type return_type) - { - JSON_ASSERT(std::char_traits::to_char_type(current) == literal_text[0]); - for (std::size_t i = 1; i < length; ++i) - { - if (JSON_HEDLEY_UNLIKELY(std::char_traits::to_char_type(get()) != literal_text[i])) - { - error_message = "invalid literal"; - return token_type::parse_error; - } - } - return return_type; - } - - ///////////////////// - // input management - ///////////////////// - - /// reset token_buffer; current character is beginning of token - void reset() noexcept - { - token_buffer.clear(); - token_string.clear(); - token_string.push_back(std::char_traits::to_char_type(current)); - } - - /* - @brief get next character from the input - - This function provides the interface to the used input adapter. It does - not throw in case the input reached EOF, but returns a - `std::char_traits::eof()` in that case. Stores the scanned characters - for use in error messages. - - @return character read from the input - */ - char_int_type get() - { - ++position.chars_read_total; - ++position.chars_read_current_line; - - if (next_unget) - { - // just reset the next_unget variable and work with current - next_unget = false; - } - else - { - current = ia.get_character(); - } - - if (JSON_HEDLEY_LIKELY(current != std::char_traits::eof())) - { - token_string.push_back(std::char_traits::to_char_type(current)); - } - - if (current == '\n') - { - ++position.lines_read; - position.chars_read_current_line = 0; - } - - return current; - } - - /*! - @brief unget current character (read it again on next get) - - We implement unget by setting variable next_unget to true. The input is not - changed - we just simulate ungetting by modifying chars_read_total, - chars_read_current_line, and token_string. The next call to get() will - behave as if the unget character is read again. - */ - void unget() - { - next_unget = true; - - --position.chars_read_total; - - // in case we "unget" a newline, we have to also decrement the lines_read - if (position.chars_read_current_line == 0) - { - if (position.lines_read > 0) - { - --position.lines_read; - } - } - else - { - --position.chars_read_current_line; - } - - if (JSON_HEDLEY_LIKELY(current != std::char_traits::eof())) - { - JSON_ASSERT(!token_string.empty()); - token_string.pop_back(); - } - } - - /// add a character to token_buffer - void add(char_int_type c) - { - token_buffer.push_back(static_cast(c)); - } - - public: - ///////////////////// - // value getters - ///////////////////// - - /// return integer value - constexpr number_integer_t get_number_integer() const noexcept - { - return value_integer; - } - - /// return unsigned integer value - constexpr number_unsigned_t get_number_unsigned() const noexcept - { - return value_unsigned; - } - - /// return floating-point value - constexpr number_float_t get_number_float() const noexcept - { - return value_float; - } - - /// return current string value (implicitly resets the token; useful only once) - string_t& get_string() - { - return token_buffer; - } - - ///////////////////// - // diagnostics - ///////////////////// - - /// return position of last read token - constexpr position_t get_position() const noexcept - { - return position; - } - - /// return the last read token (for errors only). Will never contain EOF - /// (an arbitrary value that is not a valid char value, often -1), because - /// 255 may legitimately occur. May contain NUL, which should be escaped. - std::string get_token_string() const - { - // escape control characters - std::string result; - for (const auto c : token_string) - { - if (static_cast(c) <= '\x1F') - { - // escape control characters - std::array cs{{}}; - (std::snprintf)(cs.data(), cs.size(), "", static_cast(c)); - result += cs.data(); - } - else - { - // add character as is - result.push_back(static_cast(c)); - } - } - - return result; - } - - /// return syntax error message - JSON_HEDLEY_RETURNS_NON_NULL - constexpr const char* get_error_message() const noexcept - { - return error_message; - } - - ///////////////////// - // actual scanner - ///////////////////// - - /*! - @brief skip the UTF-8 byte order mark - @return true iff there is no BOM or the correct BOM has been skipped - */ - bool skip_bom() - { - if (get() == 0xEF) - { - // check if we completely parse the BOM - return get() == 0xBB && get() == 0xBF; - } - - // the first character is not the beginning of the BOM; unget it to - // process is later - unget(); - return true; - } - - void skip_whitespace() - { - do - { - get(); - } - while (current == ' ' || current == '\t' || current == '\n' || current == '\r'); - } - - token_type scan() - { - // initially, skip the BOM - if (position.chars_read_total == 0 && !skip_bom()) - { - error_message = "invalid BOM; must be 0xEF 0xBB 0xBF if given"; - return token_type::parse_error; - } - - // read next character and ignore whitespace - skip_whitespace(); - - // ignore comments - while (ignore_comments && current == '/') - { - if (!scan_comment()) - { - return token_type::parse_error; - } - - // skip following whitespace - skip_whitespace(); - } - - switch (current) - { - // structural characters - case '[': - return token_type::begin_array; - case ']': - return token_type::end_array; - case '{': - return token_type::begin_object; - case '}': - return token_type::end_object; - case ':': - return token_type::name_separator; - case ',': - return token_type::value_separator; - - // literals - case 't': - { - std::array true_literal = {{'t', 'r', 'u', 'e'}}; - return scan_literal(true_literal.data(), true_literal.size(), token_type::literal_true); - } - case 'f': - { - std::array false_literal = {{'f', 'a', 'l', 's', 'e'}}; - return scan_literal(false_literal.data(), false_literal.size(), token_type::literal_false); - } - case 'n': - { - std::array null_literal = {{'n', 'u', 'l', 'l'}}; - return scan_literal(null_literal.data(), null_literal.size(), token_type::literal_null); - } - - // string - case '\"': - return scan_string(); - - // number - case '-': - case '0': - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - case '8': - case '9': - return scan_number(); - - // end of input (the null byte is needed when parsing from - // string literals) - case '\0': - case std::char_traits::eof(): - return token_type::end_of_input; - - // error - default: - error_message = "invalid literal"; - return token_type::parse_error; - } - } - - private: - /// input adapter - InputAdapterType ia; - - /// whether comments should be ignored (true) or signaled as errors (false) - const bool ignore_comments = false; - - /// the current character - char_int_type current = std::char_traits::eof(); - - /// whether the next get() call should just return current - bool next_unget = false; - - /// the start position of the current token - position_t position {}; - - /// raw input token string (for error messages) - std::vector token_string {}; - - /// buffer for variable-length tokens (numbers, strings) - string_t token_buffer {}; - - /// a description of occurred lexer errors - const char* error_message = ""; - - // number values - number_integer_t value_integer = 0; - number_unsigned_t value_unsigned = 0; - number_float_t value_float = 0; - - /// the decimal point - const char_int_type decimal_point_char = '.'; -}; -} // namespace detail -} // namespace nlohmann diff --git a/nlohmann/detail/input/parser.hpp b/nlohmann/detail/input/parser.hpp deleted file mode 100644 index ffe483a..0000000 --- a/nlohmann/detail/input/parser.hpp +++ /dev/null @@ -1,501 +0,0 @@ -#pragma once - -#include // isfinite -#include // uint8_t -#include // function -#include // string -#include // move -#include // vector - -#include -#include -#include -#include -#include -#include -#include - -namespace nlohmann -{ -namespace detail -{ -//////////// -// parser // -//////////// - -enum class parse_event_t : uint8_t -{ - /// the parser read `{` and started to process a JSON object - object_start, - /// the parser read `}` and finished processing a JSON object - object_end, - /// the parser read `[` and started to process a JSON array - array_start, - /// the parser read `]` and finished processing a JSON array - array_end, - /// the parser read a key of a value in an object - key, - /// the parser finished reading a JSON value - value -}; - -template -using parser_callback_t = - std::function; - -/*! -@brief syntax analysis - -This class implements a recursive descent parser. -*/ -template -class parser -{ - using number_integer_t = typename BasicJsonType::number_integer_t; - using number_unsigned_t = typename BasicJsonType::number_unsigned_t; - using number_float_t = typename BasicJsonType::number_float_t; - using string_t = typename BasicJsonType::string_t; - using lexer_t = lexer; - using token_type = typename lexer_t::token_type; - - public: - /// a parser reading from an input adapter - explicit parser(InputAdapterType&& adapter, - const parser_callback_t cb = nullptr, - const bool allow_exceptions_ = true, - const bool skip_comments = false) - : callback(cb) - , m_lexer(std::move(adapter), skip_comments) - , allow_exceptions(allow_exceptions_) - { - // read first token - get_token(); - } - - /*! - @brief public parser interface - - @param[in] strict whether to expect the last token to be EOF - @param[in,out] result parsed JSON value - - @throw parse_error.101 in case of an unexpected token - @throw parse_error.102 if to_unicode fails or surrogate error - @throw parse_error.103 if to_unicode fails - */ - void parse(const bool strict, BasicJsonType& result) - { - if (callback) - { - json_sax_dom_callback_parser sdp(result, callback, allow_exceptions); - sax_parse_internal(&sdp); - result.assert_invariant(); - - // in strict mode, input must be completely read - if (strict && (get_token() != token_type::end_of_input)) - { - sdp.parse_error(m_lexer.get_position(), - m_lexer.get_token_string(), - parse_error::create(101, m_lexer.get_position(), - exception_message(token_type::end_of_input, "value"))); - } - - // in case of an error, return discarded value - if (sdp.is_errored()) - { - result = value_t::discarded; - return; - } - - // set top-level value to null if it was discarded by the callback - // function - if (result.is_discarded()) - { - result = nullptr; - } - } - else - { - json_sax_dom_parser sdp(result, allow_exceptions); - sax_parse_internal(&sdp); - result.assert_invariant(); - - // in strict mode, input must be completely read - if (strict && (get_token() != token_type::end_of_input)) - { - sdp.parse_error(m_lexer.get_position(), - m_lexer.get_token_string(), - parse_error::create(101, m_lexer.get_position(), - exception_message(token_type::end_of_input, "value"))); - } - - // in case of an error, return discarded value - if (sdp.is_errored()) - { - result = value_t::discarded; - return; - } - } - } - - /*! - @brief public accept interface - - @param[in] strict whether to expect the last token to be EOF - @return whether the input is a proper JSON text - */ - bool accept(const bool strict = true) - { - json_sax_acceptor sax_acceptor; - return sax_parse(&sax_acceptor, strict); - } - - template - JSON_HEDLEY_NON_NULL(2) - bool sax_parse(SAX* sax, const bool strict = true) - { - (void)detail::is_sax_static_asserts {}; - const bool result = sax_parse_internal(sax); - - // strict mode: next byte must be EOF - if (result && strict && (get_token() != token_type::end_of_input)) - { - return sax->parse_error(m_lexer.get_position(), - m_lexer.get_token_string(), - parse_error::create(101, m_lexer.get_position(), - exception_message(token_type::end_of_input, "value"))); - } - - return result; - } - - private: - template - JSON_HEDLEY_NON_NULL(2) - bool sax_parse_internal(SAX* sax) - { - // stack to remember the hierarchy of structured values we are parsing - // true = array; false = object - std::vector states; - // value to avoid a goto (see comment where set to true) - bool skip_to_state_evaluation = false; - - while (true) - { - if (!skip_to_state_evaluation) - { - // invariant: get_token() was called before each iteration - switch (last_token) - { - case token_type::begin_object: - { - if (JSON_HEDLEY_UNLIKELY(!sax->start_object(std::size_t(-1)))) - { - return false; - } - - // closing } -> we are done - if (get_token() == token_type::end_object) - { - if (JSON_HEDLEY_UNLIKELY(!sax->end_object())) - { - return false; - } - break; - } - - // parse key - if (JSON_HEDLEY_UNLIKELY(last_token != token_type::value_string)) - { - return sax->parse_error(m_lexer.get_position(), - m_lexer.get_token_string(), - parse_error::create(101, m_lexer.get_position(), - exception_message(token_type::value_string, "object key"))); - } - if (JSON_HEDLEY_UNLIKELY(!sax->key(m_lexer.get_string()))) - { - return false; - } - - // parse separator (:) - if (JSON_HEDLEY_UNLIKELY(get_token() != token_type::name_separator)) - { - return sax->parse_error(m_lexer.get_position(), - m_lexer.get_token_string(), - parse_error::create(101, m_lexer.get_position(), - exception_message(token_type::name_separator, "object separator"))); - } - - // remember we are now inside an object - states.push_back(false); - - // parse values - get_token(); - continue; - } - - case token_type::begin_array: - { - if (JSON_HEDLEY_UNLIKELY(!sax->start_array(std::size_t(-1)))) - { - return false; - } - - // closing ] -> we are done - if (get_token() == token_type::end_array) - { - if (JSON_HEDLEY_UNLIKELY(!sax->end_array())) - { - return false; - } - break; - } - - // remember we are now inside an array - states.push_back(true); - - // parse values (no need to call get_token) - continue; - } - - case token_type::value_float: - { - const auto res = m_lexer.get_number_float(); - - if (JSON_HEDLEY_UNLIKELY(!std::isfinite(res))) - { - return sax->parse_error(m_lexer.get_position(), - m_lexer.get_token_string(), - out_of_range::create(406, "number overflow parsing '" + m_lexer.get_token_string() + "'")); - } - - if (JSON_HEDLEY_UNLIKELY(!sax->number_float(res, m_lexer.get_string()))) - { - return false; - } - - break; - } - - case token_type::literal_false: - { - if (JSON_HEDLEY_UNLIKELY(!sax->boolean(false))) - { - return false; - } - break; - } - - case token_type::literal_null: - { - if (JSON_HEDLEY_UNLIKELY(!sax->null())) - { - return false; - } - break; - } - - case token_type::literal_true: - { - if (JSON_HEDLEY_UNLIKELY(!sax->boolean(true))) - { - return false; - } - break; - } - - case token_type::value_integer: - { - if (JSON_HEDLEY_UNLIKELY(!sax->number_integer(m_lexer.get_number_integer()))) - { - return false; - } - break; - } - - case token_type::value_string: - { - if (JSON_HEDLEY_UNLIKELY(!sax->string(m_lexer.get_string()))) - { - return false; - } - break; - } - - case token_type::value_unsigned: - { - if (JSON_HEDLEY_UNLIKELY(!sax->number_unsigned(m_lexer.get_number_unsigned()))) - { - return false; - } - break; - } - - case token_type::parse_error: - { - // using "uninitialized" to avoid "expected" message - return sax->parse_error(m_lexer.get_position(), - m_lexer.get_token_string(), - parse_error::create(101, m_lexer.get_position(), - exception_message(token_type::uninitialized, "value"))); - } - - default: // the last token was unexpected - { - return sax->parse_error(m_lexer.get_position(), - m_lexer.get_token_string(), - parse_error::create(101, m_lexer.get_position(), - exception_message(token_type::literal_or_value, "value"))); - } - } - } - else - { - skip_to_state_evaluation = false; - } - - // we reached this line after we successfully parsed a value - if (states.empty()) - { - // empty stack: we reached the end of the hierarchy: done - return true; - } - - if (states.back()) // array - { - // comma -> next value - if (get_token() == token_type::value_separator) - { - // parse a new value - get_token(); - continue; - } - - // closing ] - if (JSON_HEDLEY_LIKELY(last_token == token_type::end_array)) - { - if (JSON_HEDLEY_UNLIKELY(!sax->end_array())) - { - return false; - } - - // We are done with this array. Before we can parse a - // new value, we need to evaluate the new state first. - // By setting skip_to_state_evaluation to false, we - // are effectively jumping to the beginning of this if. - JSON_ASSERT(!states.empty()); - states.pop_back(); - skip_to_state_evaluation = true; - continue; - } - - return sax->parse_error(m_lexer.get_position(), - m_lexer.get_token_string(), - parse_error::create(101, m_lexer.get_position(), - exception_message(token_type::end_array, "array"))); - } - else // object - { - // comma -> next value - if (get_token() == token_type::value_separator) - { - // parse key - if (JSON_HEDLEY_UNLIKELY(get_token() != token_type::value_string)) - { - return sax->parse_error(m_lexer.get_position(), - m_lexer.get_token_string(), - parse_error::create(101, m_lexer.get_position(), - exception_message(token_type::value_string, "object key"))); - } - - if (JSON_HEDLEY_UNLIKELY(!sax->key(m_lexer.get_string()))) - { - return false; - } - - // parse separator (:) - if (JSON_HEDLEY_UNLIKELY(get_token() != token_type::name_separator)) - { - return sax->parse_error(m_lexer.get_position(), - m_lexer.get_token_string(), - parse_error::create(101, m_lexer.get_position(), - exception_message(token_type::name_separator, "object separator"))); - } - - // parse values - get_token(); - continue; - } - - // closing } - if (JSON_HEDLEY_LIKELY(last_token == token_type::end_object)) - { - if (JSON_HEDLEY_UNLIKELY(!sax->end_object())) - { - return false; - } - - // We are done with this object. Before we can parse a - // new value, we need to evaluate the new state first. - // By setting skip_to_state_evaluation to false, we - // are effectively jumping to the beginning of this if. - JSON_ASSERT(!states.empty()); - states.pop_back(); - skip_to_state_evaluation = true; - continue; - } - - return sax->parse_error(m_lexer.get_position(), - m_lexer.get_token_string(), - parse_error::create(101, m_lexer.get_position(), - exception_message(token_type::end_object, "object"))); - } - } - } - - /// get next token from lexer - token_type get_token() - { - return last_token = m_lexer.scan(); - } - - std::string exception_message(const token_type expected, const std::string& context) - { - std::string error_msg = "syntax error "; - - if (!context.empty()) - { - error_msg += "while parsing " + context + " "; - } - - error_msg += "- "; - - if (last_token == token_type::parse_error) - { - error_msg += std::string(m_lexer.get_error_message()) + "; last read: '" + - m_lexer.get_token_string() + "'"; - } - else - { - error_msg += "unexpected " + std::string(lexer_t::token_type_name(last_token)); - } - - if (expected != token_type::uninitialized) - { - error_msg += "; expected " + std::string(lexer_t::token_type_name(expected)); - } - - return error_msg; - } - - private: - /// callback function - const parser_callback_t callback = nullptr; - /// the type of the last read token - token_type last_token = token_type::uninitialized; - /// the lexer - lexer_t m_lexer; - /// whether to throw exceptions in case of errors - const bool allow_exceptions = true; -}; -} // namespace detail -} // namespace nlohmann diff --git a/nlohmann/detail/input/position_t.hpp b/nlohmann/detail/input/position_t.hpp deleted file mode 100644 index 14e9649..0000000 --- a/nlohmann/detail/input/position_t.hpp +++ /dev/null @@ -1,27 +0,0 @@ -#pragma once - -#include // size_t - -namespace nlohmann -{ -namespace detail -{ -/// struct to capture the start position of the current token -struct position_t -{ - /// the total number of characters read - std::size_t chars_read_total = 0; - /// the number of characters read in the current line - std::size_t chars_read_current_line = 0; - /// the number of lines read - std::size_t lines_read = 0; - - /// conversion to size_t to preserve SAX interface - constexpr operator size_t() const - { - return chars_read_total; - } -}; - -} // namespace detail -} // namespace nlohmann diff --git a/nlohmann/detail/iterators/internal_iterator.hpp b/nlohmann/detail/iterators/internal_iterator.hpp deleted file mode 100644 index 2c81f72..0000000 --- a/nlohmann/detail/iterators/internal_iterator.hpp +++ /dev/null @@ -1,25 +0,0 @@ -#pragma once - -#include - -namespace nlohmann -{ -namespace detail -{ -/*! -@brief an iterator value - -@note This structure could easily be a union, but MSVC currently does not allow -unions members with complex constructors, see https://github.com/nlohmann/json/pull/105. -*/ -template struct internal_iterator -{ - /// iterator for JSON objects - typename BasicJsonType::object_t::iterator object_iterator {}; - /// iterator for JSON arrays - typename BasicJsonType::array_t::iterator array_iterator {}; - /// generic iterator for all other types - primitive_iterator_t primitive_iterator {}; -}; -} // namespace detail -} // namespace nlohmann diff --git a/nlohmann/detail/iterators/iter_impl.hpp b/nlohmann/detail/iterators/iter_impl.hpp deleted file mode 100644 index e9a394d..0000000 --- a/nlohmann/detail/iterators/iter_impl.hpp +++ /dev/null @@ -1,637 +0,0 @@ -#pragma once - -#include // iterator, random_access_iterator_tag, bidirectional_iterator_tag, advance, next -#include // conditional, is_const, remove_const - -#include -#include -#include -#include -#include -#include -#include - -namespace nlohmann -{ -namespace detail -{ -// forward declare, to be able to friend it later on -template class iteration_proxy; -template class iteration_proxy_value; - -/*! -@brief a template for a bidirectional iterator for the @ref basic_json class -This class implements a both iterators (iterator and const_iterator) for the -@ref basic_json class. -@note An iterator is called *initialized* when a pointer to a JSON value has - been set (e.g., by a constructor or a copy assignment). If the iterator is - default-constructed, it is *uninitialized* and most methods are undefined. - **The library uses assertions to detect calls on uninitialized iterators.** -@requirement The class satisfies the following concept requirements: -- -[BidirectionalIterator](https://en.cppreference.com/w/cpp/named_req/BidirectionalIterator): - The iterator that can be moved can be moved in both directions (i.e. - incremented and decremented). -@since version 1.0.0, simplified in version 2.0.9, change to bidirectional - iterators in version 3.0.0 (see https://github.com/nlohmann/json/issues/593) -*/ -template -class iter_impl -{ - /// allow basic_json to access private members - friend iter_impl::value, typename std::remove_const::type, const BasicJsonType>::type>; - friend BasicJsonType; - friend iteration_proxy; - friend iteration_proxy_value; - - using object_t = typename BasicJsonType::object_t; - using array_t = typename BasicJsonType::array_t; - // make sure BasicJsonType is basic_json or const basic_json - static_assert(is_basic_json::type>::value, - "iter_impl only accepts (const) basic_json"); - - public: - - /// The std::iterator class template (used as a base class to provide typedefs) is deprecated in C++17. - /// The C++ Standard has never required user-defined iterators to derive from std::iterator. - /// A user-defined iterator should provide publicly accessible typedefs named - /// iterator_category, value_type, difference_type, pointer, and reference. - /// Note that value_type is required to be non-const, even for constant iterators. - using iterator_category = std::bidirectional_iterator_tag; - - /// the type of the values when the iterator is dereferenced - using value_type = typename BasicJsonType::value_type; - /// a type to represent differences between iterators - using difference_type = typename BasicJsonType::difference_type; - /// defines a pointer to the type iterated over (value_type) - using pointer = typename std::conditional::value, - typename BasicJsonType::const_pointer, - typename BasicJsonType::pointer>::type; - /// defines a reference to the type iterated over (value_type) - using reference = - typename std::conditional::value, - typename BasicJsonType::const_reference, - typename BasicJsonType::reference>::type; - - /// default constructor - iter_impl() = default; - - /*! - @brief constructor for a given JSON instance - @param[in] object pointer to a JSON object for this iterator - @pre object != nullptr - @post The iterator is initialized; i.e. `m_object != nullptr`. - */ - explicit iter_impl(pointer object) noexcept : m_object(object) - { - JSON_ASSERT(m_object != nullptr); - - switch (m_object->m_type) - { - case value_t::object: - { - m_it.object_iterator = typename object_t::iterator(); - break; - } - - case value_t::array: - { - m_it.array_iterator = typename array_t::iterator(); - break; - } - - default: - { - m_it.primitive_iterator = primitive_iterator_t(); - break; - } - } - } - - /*! - @note The conventional copy constructor and copy assignment are implicitly - defined. Combined with the following converting constructor and - assignment, they support: (1) copy from iterator to iterator, (2) - copy from const iterator to const iterator, and (3) conversion from - iterator to const iterator. However conversion from const iterator - to iterator is not defined. - */ - - /*! - @brief const copy constructor - @param[in] other const iterator to copy from - @note This copy constructor had to be defined explicitly to circumvent a bug - occurring on msvc v19.0 compiler (VS 2015) debug build. For more - information refer to: https://github.com/nlohmann/json/issues/1608 - */ - iter_impl(const iter_impl& other) noexcept - : m_object(other.m_object), m_it(other.m_it) - {} - - /*! - @brief converting assignment - @param[in] other const iterator to copy from - @return const/non-const iterator - @note It is not checked whether @a other is initialized. - */ - iter_impl& operator=(const iter_impl& other) noexcept - { - m_object = other.m_object; - m_it = other.m_it; - return *this; - } - - /*! - @brief converting constructor - @param[in] other non-const iterator to copy from - @note It is not checked whether @a other is initialized. - */ - iter_impl(const iter_impl::type>& other) noexcept - : m_object(other.m_object), m_it(other.m_it) - {} - - /*! - @brief converting assignment - @param[in] other non-const iterator to copy from - @return const/non-const iterator - @note It is not checked whether @a other is initialized. - */ - iter_impl& operator=(const iter_impl::type>& other) noexcept - { - m_object = other.m_object; - m_it = other.m_it; - return *this; - } - - private: - /*! - @brief set the iterator to the first value - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - void set_begin() noexcept - { - JSON_ASSERT(m_object != nullptr); - - switch (m_object->m_type) - { - case value_t::object: - { - m_it.object_iterator = m_object->m_value.object->begin(); - break; - } - - case value_t::array: - { - m_it.array_iterator = m_object->m_value.array->begin(); - break; - } - - case value_t::null: - { - // set to end so begin()==end() is true: null is empty - m_it.primitive_iterator.set_end(); - break; - } - - default: - { - m_it.primitive_iterator.set_begin(); - break; - } - } - } - - /*! - @brief set the iterator past the last value - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - void set_end() noexcept - { - JSON_ASSERT(m_object != nullptr); - - switch (m_object->m_type) - { - case value_t::object: - { - m_it.object_iterator = m_object->m_value.object->end(); - break; - } - - case value_t::array: - { - m_it.array_iterator = m_object->m_value.array->end(); - break; - } - - default: - { - m_it.primitive_iterator.set_end(); - break; - } - } - } - - public: - /*! - @brief return a reference to the value pointed to by the iterator - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - reference operator*() const - { - JSON_ASSERT(m_object != nullptr); - - switch (m_object->m_type) - { - case value_t::object: - { - JSON_ASSERT(m_it.object_iterator != m_object->m_value.object->end()); - return m_it.object_iterator->second; - } - - case value_t::array: - { - JSON_ASSERT(m_it.array_iterator != m_object->m_value.array->end()); - return *m_it.array_iterator; - } - - case value_t::null: - JSON_THROW(invalid_iterator::create(214, "cannot get value")); - - default: - { - if (JSON_HEDLEY_LIKELY(m_it.primitive_iterator.is_begin())) - { - return *m_object; - } - - JSON_THROW(invalid_iterator::create(214, "cannot get value")); - } - } - } - - /*! - @brief dereference the iterator - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - pointer operator->() const - { - JSON_ASSERT(m_object != nullptr); - - switch (m_object->m_type) - { - case value_t::object: - { - JSON_ASSERT(m_it.object_iterator != m_object->m_value.object->end()); - return &(m_it.object_iterator->second); - } - - case value_t::array: - { - JSON_ASSERT(m_it.array_iterator != m_object->m_value.array->end()); - return &*m_it.array_iterator; - } - - default: - { - if (JSON_HEDLEY_LIKELY(m_it.primitive_iterator.is_begin())) - { - return m_object; - } - - JSON_THROW(invalid_iterator::create(214, "cannot get value")); - } - } - } - - /*! - @brief post-increment (it++) - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - iter_impl const operator++(int) - { - auto result = *this; - ++(*this); - return result; - } - - /*! - @brief pre-increment (++it) - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - iter_impl& operator++() - { - JSON_ASSERT(m_object != nullptr); - - switch (m_object->m_type) - { - case value_t::object: - { - std::advance(m_it.object_iterator, 1); - break; - } - - case value_t::array: - { - std::advance(m_it.array_iterator, 1); - break; - } - - default: - { - ++m_it.primitive_iterator; - break; - } - } - - return *this; - } - - /*! - @brief post-decrement (it--) - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - iter_impl const operator--(int) - { - auto result = *this; - --(*this); - return result; - } - - /*! - @brief pre-decrement (--it) - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - iter_impl& operator--() - { - JSON_ASSERT(m_object != nullptr); - - switch (m_object->m_type) - { - case value_t::object: - { - std::advance(m_it.object_iterator, -1); - break; - } - - case value_t::array: - { - std::advance(m_it.array_iterator, -1); - break; - } - - default: - { - --m_it.primitive_iterator; - break; - } - } - - return *this; - } - - /*! - @brief comparison: equal - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - bool operator==(const iter_impl& other) const - { - // if objects are not the same, the comparison is undefined - if (JSON_HEDLEY_UNLIKELY(m_object != other.m_object)) - { - JSON_THROW(invalid_iterator::create(212, "cannot compare iterators of different containers")); - } - - JSON_ASSERT(m_object != nullptr); - - switch (m_object->m_type) - { - case value_t::object: - return (m_it.object_iterator == other.m_it.object_iterator); - - case value_t::array: - return (m_it.array_iterator == other.m_it.array_iterator); - - default: - return (m_it.primitive_iterator == other.m_it.primitive_iterator); - } - } - - /*! - @brief comparison: not equal - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - bool operator!=(const iter_impl& other) const - { - return !operator==(other); - } - - /*! - @brief comparison: smaller - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - bool operator<(const iter_impl& other) const - { - // if objects are not the same, the comparison is undefined - if (JSON_HEDLEY_UNLIKELY(m_object != other.m_object)) - { - JSON_THROW(invalid_iterator::create(212, "cannot compare iterators of different containers")); - } - - JSON_ASSERT(m_object != nullptr); - - switch (m_object->m_type) - { - case value_t::object: - JSON_THROW(invalid_iterator::create(213, "cannot compare order of object iterators")); - - case value_t::array: - return (m_it.array_iterator < other.m_it.array_iterator); - - default: - return (m_it.primitive_iterator < other.m_it.primitive_iterator); - } - } - - /*! - @brief comparison: less than or equal - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - bool operator<=(const iter_impl& other) const - { - return !other.operator < (*this); - } - - /*! - @brief comparison: greater than - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - bool operator>(const iter_impl& other) const - { - return !operator<=(other); - } - - /*! - @brief comparison: greater than or equal - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - bool operator>=(const iter_impl& other) const - { - return !operator<(other); - } - - /*! - @brief add to iterator - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - iter_impl& operator+=(difference_type i) - { - JSON_ASSERT(m_object != nullptr); - - switch (m_object->m_type) - { - case value_t::object: - JSON_THROW(invalid_iterator::create(209, "cannot use offsets with object iterators")); - - case value_t::array: - { - std::advance(m_it.array_iterator, i); - break; - } - - default: - { - m_it.primitive_iterator += i; - break; - } - } - - return *this; - } - - /*! - @brief subtract from iterator - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - iter_impl& operator-=(difference_type i) - { - return operator+=(-i); - } - - /*! - @brief add to iterator - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - iter_impl operator+(difference_type i) const - { - auto result = *this; - result += i; - return result; - } - - /*! - @brief addition of distance and iterator - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - friend iter_impl operator+(difference_type i, const iter_impl& it) - { - auto result = it; - result += i; - return result; - } - - /*! - @brief subtract from iterator - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - iter_impl operator-(difference_type i) const - { - auto result = *this; - result -= i; - return result; - } - - /*! - @brief return difference - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - difference_type operator-(const iter_impl& other) const - { - JSON_ASSERT(m_object != nullptr); - - switch (m_object->m_type) - { - case value_t::object: - JSON_THROW(invalid_iterator::create(209, "cannot use offsets with object iterators")); - - case value_t::array: - return m_it.array_iterator - other.m_it.array_iterator; - - default: - return m_it.primitive_iterator - other.m_it.primitive_iterator; - } - } - - /*! - @brief access to successor - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - reference operator[](difference_type n) const - { - JSON_ASSERT(m_object != nullptr); - - switch (m_object->m_type) - { - case value_t::object: - JSON_THROW(invalid_iterator::create(208, "cannot use operator[] for object iterators")); - - case value_t::array: - return *std::next(m_it.array_iterator, n); - - case value_t::null: - JSON_THROW(invalid_iterator::create(214, "cannot get value")); - - default: - { - if (JSON_HEDLEY_LIKELY(m_it.primitive_iterator.get_value() == -n)) - { - return *m_object; - } - - JSON_THROW(invalid_iterator::create(214, "cannot get value")); - } - } - } - - /*! - @brief return the key of an object iterator - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - const typename object_t::key_type& key() const - { - JSON_ASSERT(m_object != nullptr); - - if (JSON_HEDLEY_LIKELY(m_object->is_object())) - { - return m_it.object_iterator->first; - } - - JSON_THROW(invalid_iterator::create(207, "cannot use key() for non-object iterators")); - } - - /*! - @brief return the value of an iterator - @pre The iterator is initialized; i.e. `m_object != nullptr`. - */ - reference value() const - { - return operator*(); - } - - private: - /// associated JSON instance - pointer m_object = nullptr; - /// the actual iterator of the associated instance - internal_iterator::type> m_it {}; -}; -} // namespace detail -} // namespace nlohmann diff --git a/nlohmann/detail/iterators/iteration_proxy.hpp b/nlohmann/detail/iterators/iteration_proxy.hpp deleted file mode 100644 index 74b4eb3..0000000 --- a/nlohmann/detail/iterators/iteration_proxy.hpp +++ /dev/null @@ -1,178 +0,0 @@ -#pragma once - -#include // size_t -#include // input_iterator_tag -#include // string, to_string -#include // tuple_size, get, tuple_element - -#include -#include - -namespace nlohmann -{ -namespace detail -{ -template -void int_to_string( string_type& target, std::size_t value ) -{ - // For ADL - using std::to_string; - target = to_string(value); -} -template class iteration_proxy_value -{ - public: - using difference_type = std::ptrdiff_t; - using value_type = iteration_proxy_value; - using pointer = value_type * ; - using reference = value_type & ; - using iterator_category = std::input_iterator_tag; - using string_type = typename std::remove_cv< typename std::remove_reference().key() ) >::type >::type; - - private: - /// the iterator - IteratorType anchor; - /// an index for arrays (used to create key names) - std::size_t array_index = 0; - /// last stringified array index - mutable std::size_t array_index_last = 0; - /// a string representation of the array index - mutable string_type array_index_str = "0"; - /// an empty string (to return a reference for primitive values) - const string_type empty_str = ""; - - public: - explicit iteration_proxy_value(IteratorType it) noexcept : anchor(it) {} - - /// dereference operator (needed for range-based for) - iteration_proxy_value& operator*() - { - return *this; - } - - /// increment operator (needed for range-based for) - iteration_proxy_value& operator++() - { - ++anchor; - ++array_index; - - return *this; - } - - /// equality operator (needed for InputIterator) - bool operator==(const iteration_proxy_value& o) const - { - return anchor == o.anchor; - } - - /// inequality operator (needed for range-based for) - bool operator!=(const iteration_proxy_value& o) const - { - return anchor != o.anchor; - } - - /// return key of the iterator - const string_type& key() const - { - JSON_ASSERT(anchor.m_object != nullptr); - - switch (anchor.m_object->type()) - { - // use integer array index as key - case value_t::array: - { - if (array_index != array_index_last) - { - int_to_string( array_index_str, array_index ); - array_index_last = array_index; - } - return array_index_str; - } - - // use key from the object - case value_t::object: - return anchor.key(); - - // use an empty key for all primitive types - default: - return empty_str; - } - } - - /// return value of the iterator - typename IteratorType::reference value() const - { - return anchor.value(); - } -}; - -/// proxy class for the items() function -template class iteration_proxy -{ - private: - /// the container to iterate - typename IteratorType::reference container; - - public: - /// construct iteration proxy from a container - explicit iteration_proxy(typename IteratorType::reference cont) noexcept - : container(cont) {} - - /// return iterator begin (needed for range-based for) - iteration_proxy_value begin() noexcept - { - return iteration_proxy_value(container.begin()); - } - - /// return iterator end (needed for range-based for) - iteration_proxy_value end() noexcept - { - return iteration_proxy_value(container.end()); - } -}; -// Structured Bindings Support -// For further reference see https://blog.tartanllama.xyz/structured-bindings/ -// And see https://github.com/nlohmann/json/pull/1391 -template = 0> -auto get(const nlohmann::detail::iteration_proxy_value& i) -> decltype(i.key()) -{ - return i.key(); -} -// Structured Bindings Support -// For further reference see https://blog.tartanllama.xyz/structured-bindings/ -// And see https://github.com/nlohmann/json/pull/1391 -template = 0> -auto get(const nlohmann::detail::iteration_proxy_value& i) -> decltype(i.value()) -{ - return i.value(); -} -} // namespace detail -} // namespace nlohmann - -// The Addition to the STD Namespace is required to add -// Structured Bindings Support to the iteration_proxy_value class -// For further reference see https://blog.tartanllama.xyz/structured-bindings/ -// And see https://github.com/nlohmann/json/pull/1391 -namespace std -{ -#if defined(__clang__) - // Fix: https://github.com/nlohmann/json/issues/1401 - #pragma clang diagnostic push - #pragma clang diagnostic ignored "-Wmismatched-tags" -#endif -template -class tuple_size<::nlohmann::detail::iteration_proxy_value> - : public std::integral_constant {}; - -template -class tuple_element> -{ - public: - using type = decltype( - get(std::declval < - ::nlohmann::detail::iteration_proxy_value> ())); -}; -#if defined(__clang__) - #pragma clang diagnostic pop -#endif -} // namespace std diff --git a/nlohmann/detail/iterators/iterator_traits.hpp b/nlohmann/detail/iterators/iterator_traits.hpp deleted file mode 100644 index da56361..0000000 --- a/nlohmann/detail/iterators/iterator_traits.hpp +++ /dev/null @@ -1,51 +0,0 @@ -#pragma once - -#include // random_access_iterator_tag - -#include -#include - -namespace nlohmann -{ -namespace detail -{ -template -struct iterator_types {}; - -template -struct iterator_types < - It, - void_t> -{ - using difference_type = typename It::difference_type; - using value_type = typename It::value_type; - using pointer = typename It::pointer; - using reference = typename It::reference; - using iterator_category = typename It::iterator_category; -}; - -// This is required as some compilers implement std::iterator_traits in a way that -// doesn't work with SFINAE. See https://github.com/nlohmann/json/issues/1341. -template -struct iterator_traits -{ -}; - -template -struct iterator_traits < T, enable_if_t < !std::is_pointer::value >> - : iterator_types -{ -}; - -template -struct iterator_traits::value>> -{ - using iterator_category = std::random_access_iterator_tag; - using value_type = T; - using difference_type = ptrdiff_t; - using pointer = T*; - using reference = T&; -}; -} // namespace detail -} // namespace nlohmann diff --git a/nlohmann/detail/iterators/json_reverse_iterator.hpp b/nlohmann/detail/iterators/json_reverse_iterator.hpp deleted file mode 100644 index f3b5b5d..0000000 --- a/nlohmann/detail/iterators/json_reverse_iterator.hpp +++ /dev/null @@ -1,119 +0,0 @@ -#pragma once - -#include // ptrdiff_t -#include // reverse_iterator -#include // declval - -namespace nlohmann -{ -namespace detail -{ -////////////////////// -// reverse_iterator // -////////////////////// - -/*! -@brief a template for a reverse iterator class - -@tparam Base the base iterator type to reverse. Valid types are @ref -iterator (to create @ref reverse_iterator) and @ref const_iterator (to -create @ref const_reverse_iterator). - -@requirement The class satisfies the following concept requirements: -- -[BidirectionalIterator](https://en.cppreference.com/w/cpp/named_req/BidirectionalIterator): - The iterator that can be moved can be moved in both directions (i.e. - incremented and decremented). -- [OutputIterator](https://en.cppreference.com/w/cpp/named_req/OutputIterator): - It is possible to write to the pointed-to element (only if @a Base is - @ref iterator). - -@since version 1.0.0 -*/ -template -class json_reverse_iterator : public std::reverse_iterator -{ - public: - using difference_type = std::ptrdiff_t; - /// shortcut to the reverse iterator adapter - using base_iterator = std::reverse_iterator; - /// the reference type for the pointed-to element - using reference = typename Base::reference; - - /// create reverse iterator from iterator - explicit json_reverse_iterator(const typename base_iterator::iterator_type& it) noexcept - : base_iterator(it) {} - - /// create reverse iterator from base class - explicit json_reverse_iterator(const base_iterator& it) noexcept : base_iterator(it) {} - - /// post-increment (it++) - json_reverse_iterator const operator++(int) - { - return static_cast(base_iterator::operator++(1)); - } - - /// pre-increment (++it) - json_reverse_iterator& operator++() - { - return static_cast(base_iterator::operator++()); - } - - /// post-decrement (it--) - json_reverse_iterator const operator--(int) - { - return static_cast(base_iterator::operator--(1)); - } - - /// pre-decrement (--it) - json_reverse_iterator& operator--() - { - return static_cast(base_iterator::operator--()); - } - - /// add to iterator - json_reverse_iterator& operator+=(difference_type i) - { - return static_cast(base_iterator::operator+=(i)); - } - - /// add to iterator - json_reverse_iterator operator+(difference_type i) const - { - return static_cast(base_iterator::operator+(i)); - } - - /// subtract from iterator - json_reverse_iterator operator-(difference_type i) const - { - return static_cast(base_iterator::operator-(i)); - } - - /// return difference - difference_type operator-(const json_reverse_iterator& other) const - { - return base_iterator(*this) - base_iterator(other); - } - - /// access to successor - reference operator[](difference_type n) const - { - return *(this->operator+(n)); - } - - /// return the key of an object iterator - auto key() const -> decltype(std::declval().key()) - { - auto it = --this->base(); - return it.key(); - } - - /// return the value of an iterator - reference value() const - { - auto it = --this->base(); - return it.operator * (); - } -}; -} // namespace detail -} // namespace nlohmann diff --git a/nlohmann/detail/iterators/primitive_iterator.hpp b/nlohmann/detail/iterators/primitive_iterator.hpp deleted file mode 100644 index 28d6f1a..0000000 --- a/nlohmann/detail/iterators/primitive_iterator.hpp +++ /dev/null @@ -1,120 +0,0 @@ -#pragma once - -#include // ptrdiff_t -#include // numeric_limits - -namespace nlohmann -{ -namespace detail -{ -/* -@brief an iterator for primitive JSON types - -This class models an iterator for primitive JSON types (boolean, number, -string). It's only purpose is to allow the iterator/const_iterator classes -to "iterate" over primitive values. Internally, the iterator is modeled by -a `difference_type` variable. Value begin_value (`0`) models the begin, -end_value (`1`) models past the end. -*/ -class primitive_iterator_t -{ - private: - using difference_type = std::ptrdiff_t; - static constexpr difference_type begin_value = 0; - static constexpr difference_type end_value = begin_value + 1; - - /// iterator as signed integer type - difference_type m_it = (std::numeric_limits::min)(); - - public: - constexpr difference_type get_value() const noexcept - { - return m_it; - } - - /// set iterator to a defined beginning - void set_begin() noexcept - { - m_it = begin_value; - } - - /// set iterator to a defined past the end - void set_end() noexcept - { - m_it = end_value; - } - - /// return whether the iterator can be dereferenced - constexpr bool is_begin() const noexcept - { - return m_it == begin_value; - } - - /// return whether the iterator is at end - constexpr bool is_end() const noexcept - { - return m_it == end_value; - } - - friend constexpr bool operator==(primitive_iterator_t lhs, primitive_iterator_t rhs) noexcept - { - return lhs.m_it == rhs.m_it; - } - - friend constexpr bool operator<(primitive_iterator_t lhs, primitive_iterator_t rhs) noexcept - { - return lhs.m_it < rhs.m_it; - } - - primitive_iterator_t operator+(difference_type n) noexcept - { - auto result = *this; - result += n; - return result; - } - - friend constexpr difference_type operator-(primitive_iterator_t lhs, primitive_iterator_t rhs) noexcept - { - return lhs.m_it - rhs.m_it; - } - - primitive_iterator_t& operator++() noexcept - { - ++m_it; - return *this; - } - - primitive_iterator_t const operator++(int) noexcept - { - auto result = *this; - ++m_it; - return result; - } - - primitive_iterator_t& operator--() noexcept - { - --m_it; - return *this; - } - - primitive_iterator_t const operator--(int) noexcept - { - auto result = *this; - --m_it; - return result; - } - - primitive_iterator_t& operator+=(difference_type n) noexcept - { - m_it += n; - return *this; - } - - primitive_iterator_t& operator-=(difference_type n) noexcept - { - m_it -= n; - return *this; - } -}; -} // namespace detail -} // namespace nlohmann diff --git a/nlohmann/detail/json_pointer.hpp b/nlohmann/detail/json_pointer.hpp deleted file mode 100644 index 78bc3a3..0000000 --- a/nlohmann/detail/json_pointer.hpp +++ /dev/null @@ -1,975 +0,0 @@ -#pragma once - -#include // all_of -#include // isdigit -#include // max -#include // accumulate -#include // string -#include // move -#include // vector - -#include -#include -#include - -namespace nlohmann -{ -template -class json_pointer -{ - // allow basic_json to access private members - NLOHMANN_BASIC_JSON_TPL_DECLARATION - friend class basic_json; - - public: - /*! - @brief create JSON pointer - - Create a JSON pointer according to the syntax described in - [Section 3 of RFC6901](https://tools.ietf.org/html/rfc6901#section-3). - - @param[in] s string representing the JSON pointer; if omitted, the empty - string is assumed which references the whole JSON value - - @throw parse_error.107 if the given JSON pointer @a s is nonempty and does - not begin with a slash (`/`); see example below - - @throw parse_error.108 if a tilde (`~`) in the given JSON pointer @a s is - not followed by `0` (representing `~`) or `1` (representing `/`); see - example below - - @liveexample{The example shows the construction several valid JSON pointers - as well as the exceptional behavior.,json_pointer} - - @since version 2.0.0 - */ - explicit json_pointer(const std::string& s = "") - : reference_tokens(split(s)) - {} - - /*! - @brief return a string representation of the JSON pointer - - @invariant For each JSON pointer `ptr`, it holds: - @code {.cpp} - ptr == json_pointer(ptr.to_string()); - @endcode - - @return a string representation of the JSON pointer - - @liveexample{The example shows the result of `to_string`.,json_pointer__to_string} - - @since version 2.0.0 - */ - std::string to_string() const - { - return std::accumulate(reference_tokens.begin(), reference_tokens.end(), - std::string{}, - [](const std::string & a, const std::string & b) - { - return a + "/" + escape(b); - }); - } - - /// @copydoc to_string() - operator std::string() const - { - return to_string(); - } - - /*! - @brief append another JSON pointer at the end of this JSON pointer - - @param[in] ptr JSON pointer to append - @return JSON pointer with @a ptr appended - - @liveexample{The example shows the usage of `operator/=`.,json_pointer__operator_add} - - @complexity Linear in the length of @a ptr. - - @sa @ref operator/=(std::string) to append a reference token - @sa @ref operator/=(std::size_t) to append an array index - @sa @ref operator/(const json_pointer&, const json_pointer&) for a binary operator - - @since version 3.6.0 - */ - json_pointer& operator/=(const json_pointer& ptr) - { - reference_tokens.insert(reference_tokens.end(), - ptr.reference_tokens.begin(), - ptr.reference_tokens.end()); - return *this; - } - - /*! - @brief append an unescaped reference token at the end of this JSON pointer - - @param[in] token reference token to append - @return JSON pointer with @a token appended without escaping @a token - - @liveexample{The example shows the usage of `operator/=`.,json_pointer__operator_add} - - @complexity Amortized constant. - - @sa @ref operator/=(const json_pointer&) to append a JSON pointer - @sa @ref operator/=(std::size_t) to append an array index - @sa @ref operator/(const json_pointer&, std::size_t) for a binary operator - - @since version 3.6.0 - */ - json_pointer& operator/=(std::string token) - { - push_back(std::move(token)); - return *this; - } - - /*! - @brief append an array index at the end of this JSON pointer - - @param[in] array_idx array index to append - @return JSON pointer with @a array_idx appended - - @liveexample{The example shows the usage of `operator/=`.,json_pointer__operator_add} - - @complexity Amortized constant. - - @sa @ref operator/=(const json_pointer&) to append a JSON pointer - @sa @ref operator/=(std::string) to append a reference token - @sa @ref operator/(const json_pointer&, std::string) for a binary operator - - @since version 3.6.0 - */ - json_pointer& operator/=(std::size_t array_idx) - { - return *this /= std::to_string(array_idx); - } - - /*! - @brief create a new JSON pointer by appending the right JSON pointer at the end of the left JSON pointer - - @param[in] lhs JSON pointer - @param[in] rhs JSON pointer - @return a new JSON pointer with @a rhs appended to @a lhs - - @liveexample{The example shows the usage of `operator/`.,json_pointer__operator_add_binary} - - @complexity Linear in the length of @a lhs and @a rhs. - - @sa @ref operator/=(const json_pointer&) to append a JSON pointer - - @since version 3.6.0 - */ - friend json_pointer operator/(const json_pointer& lhs, - const json_pointer& rhs) - { - return json_pointer(lhs) /= rhs; - } - - /*! - @brief create a new JSON pointer by appending the unescaped token at the end of the JSON pointer - - @param[in] ptr JSON pointer - @param[in] token reference token - @return a new JSON pointer with unescaped @a token appended to @a ptr - - @liveexample{The example shows the usage of `operator/`.,json_pointer__operator_add_binary} - - @complexity Linear in the length of @a ptr. - - @sa @ref operator/=(std::string) to append a reference token - - @since version 3.6.0 - */ - friend json_pointer operator/(const json_pointer& ptr, std::string token) - { - return json_pointer(ptr) /= std::move(token); - } - - /*! - @brief create a new JSON pointer by appending the array-index-token at the end of the JSON pointer - - @param[in] ptr JSON pointer - @param[in] array_idx array index - @return a new JSON pointer with @a array_idx appended to @a ptr - - @liveexample{The example shows the usage of `operator/`.,json_pointer__operator_add_binary} - - @complexity Linear in the length of @a ptr. - - @sa @ref operator/=(std::size_t) to append an array index - - @since version 3.6.0 - */ - friend json_pointer operator/(const json_pointer& ptr, std::size_t array_idx) - { - return json_pointer(ptr) /= array_idx; - } - - /*! - @brief returns the parent of this JSON pointer - - @return parent of this JSON pointer; in case this JSON pointer is the root, - the root itself is returned - - @complexity Linear in the length of the JSON pointer. - - @liveexample{The example shows the result of `parent_pointer` for different - JSON Pointers.,json_pointer__parent_pointer} - - @since version 3.6.0 - */ - json_pointer parent_pointer() const - { - if (empty()) - { - return *this; - } - - json_pointer res = *this; - res.pop_back(); - return res; - } - - /*! - @brief remove last reference token - - @pre not `empty()` - - @liveexample{The example shows the usage of `pop_back`.,json_pointer__pop_back} - - @complexity Constant. - - @throw out_of_range.405 if JSON pointer has no parent - - @since version 3.6.0 - */ - void pop_back() - { - if (JSON_HEDLEY_UNLIKELY(empty())) - { - JSON_THROW(detail::out_of_range::create(405, "JSON pointer has no parent")); - } - - reference_tokens.pop_back(); - } - - /*! - @brief return last reference token - - @pre not `empty()` - @return last reference token - - @liveexample{The example shows the usage of `back`.,json_pointer__back} - - @complexity Constant. - - @throw out_of_range.405 if JSON pointer has no parent - - @since version 3.6.0 - */ - const std::string& back() const - { - if (JSON_HEDLEY_UNLIKELY(empty())) - { - JSON_THROW(detail::out_of_range::create(405, "JSON pointer has no parent")); - } - - return reference_tokens.back(); - } - - /*! - @brief append an unescaped token at the end of the reference pointer - - @param[in] token token to add - - @complexity Amortized constant. - - @liveexample{The example shows the result of `push_back` for different - JSON Pointers.,json_pointer__push_back} - - @since version 3.6.0 - */ - void push_back(const std::string& token) - { - reference_tokens.push_back(token); - } - - /// @copydoc push_back(const std::string&) - void push_back(std::string&& token) - { - reference_tokens.push_back(std::move(token)); - } - - /*! - @brief return whether pointer points to the root document - - @return true iff the JSON pointer points to the root document - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this function never throws exceptions. - - @liveexample{The example shows the result of `empty` for different JSON - Pointers.,json_pointer__empty} - - @since version 3.6.0 - */ - bool empty() const noexcept - { - return reference_tokens.empty(); - } - - private: - /*! - @param[in] s reference token to be converted into an array index - - @return integer representation of @a s - - @throw parse_error.106 if an array index begins with '0' - @throw parse_error.109 if an array index begins not with a digit - @throw out_of_range.404 if string @a s could not be converted to an integer - @throw out_of_range.410 if an array index exceeds size_type - */ - static typename BasicJsonType::size_type array_index(const std::string& s) - { - using size_type = typename BasicJsonType::size_type; - - // error condition (cf. RFC 6901, Sect. 4) - if (JSON_HEDLEY_UNLIKELY(s.size() > 1 && s[0] == '0')) - { - JSON_THROW(detail::parse_error::create(106, 0, - "array index '" + s + - "' must not begin with '0'")); - } - - // error condition (cf. RFC 6901, Sect. 4) - if (JSON_HEDLEY_UNLIKELY(s.size() > 1 && !(s[0] >= '1' && s[0] <= '9'))) - { - JSON_THROW(detail::parse_error::create(109, 0, "array index '" + s + "' is not a number")); - } - - std::size_t processed_chars = 0; - unsigned long long res = 0; - JSON_TRY - { - res = std::stoull(s, &processed_chars); - } - JSON_CATCH(std::out_of_range&) - { - JSON_THROW(detail::out_of_range::create(404, "unresolved reference token '" + s + "'")); - } - - // check if the string was completely read - if (JSON_HEDLEY_UNLIKELY(processed_chars != s.size())) - { - JSON_THROW(detail::out_of_range::create(404, "unresolved reference token '" + s + "'")); - } - - // only triggered on special platforms (like 32bit), see also - // https://github.com/nlohmann/json/pull/2203 - if (res >= static_cast((std::numeric_limits::max)())) - { - JSON_THROW(detail::out_of_range::create(410, "array index " + s + " exceeds size_type")); // LCOV_EXCL_LINE - } - - return static_cast(res); - } - - json_pointer top() const - { - if (JSON_HEDLEY_UNLIKELY(empty())) - { - JSON_THROW(detail::out_of_range::create(405, "JSON pointer has no parent")); - } - - json_pointer result = *this; - result.reference_tokens = {reference_tokens[0]}; - return result; - } - - /*! - @brief create and return a reference to the pointed to value - - @complexity Linear in the number of reference tokens. - - @throw parse_error.109 if array index is not a number - @throw type_error.313 if value cannot be unflattened - */ - BasicJsonType& get_and_create(BasicJsonType& j) const - { - auto result = &j; - - // in case no reference tokens exist, return a reference to the JSON value - // j which will be overwritten by a primitive value - for (const auto& reference_token : reference_tokens) - { - switch (result->type()) - { - case detail::value_t::null: - { - if (reference_token == "0") - { - // start a new array if reference token is 0 - result = &result->operator[](0); - } - else - { - // start a new object otherwise - result = &result->operator[](reference_token); - } - break; - } - - case detail::value_t::object: - { - // create an entry in the object - result = &result->operator[](reference_token); - break; - } - - case detail::value_t::array: - { - // create an entry in the array - result = &result->operator[](array_index(reference_token)); - break; - } - - /* - The following code is only reached if there exists a reference - token _and_ the current value is primitive. In this case, we have - an error situation, because primitive values may only occur as - single value; that is, with an empty list of reference tokens. - */ - default: - JSON_THROW(detail::type_error::create(313, "invalid value to unflatten")); - } - } - - return *result; - } - - /*! - @brief return a reference to the pointed to value - - @note This version does not throw if a value is not present, but tries to - create nested values instead. For instance, calling this function - with pointer `"/this/that"` on a null value is equivalent to calling - `operator[]("this").operator[]("that")` on that value, effectively - changing the null value to an object. - - @param[in] ptr a JSON value - - @return reference to the JSON value pointed to by the JSON pointer - - @complexity Linear in the length of the JSON pointer. - - @throw parse_error.106 if an array index begins with '0' - @throw parse_error.109 if an array index was not a number - @throw out_of_range.404 if the JSON pointer can not be resolved - */ - BasicJsonType& get_unchecked(BasicJsonType* ptr) const - { - for (const auto& reference_token : reference_tokens) - { - // convert null values to arrays or objects before continuing - if (ptr->is_null()) - { - // check if reference token is a number - const bool nums = - std::all_of(reference_token.begin(), reference_token.end(), - [](const unsigned char x) - { - return std::isdigit(x); - }); - - // change value to array for numbers or "-" or to object otherwise - *ptr = (nums || reference_token == "-") - ? detail::value_t::array - : detail::value_t::object; - } - - switch (ptr->type()) - { - case detail::value_t::object: - { - // use unchecked object access - ptr = &ptr->operator[](reference_token); - break; - } - - case detail::value_t::array: - { - if (reference_token == "-") - { - // explicitly treat "-" as index beyond the end - ptr = &ptr->operator[](ptr->m_value.array->size()); - } - else - { - // convert array index to number; unchecked access - ptr = &ptr->operator[](array_index(reference_token)); - } - break; - } - - default: - JSON_THROW(detail::out_of_range::create(404, "unresolved reference token '" + reference_token + "'")); - } - } - - return *ptr; - } - - /*! - @throw parse_error.106 if an array index begins with '0' - @throw parse_error.109 if an array index was not a number - @throw out_of_range.402 if the array index '-' is used - @throw out_of_range.404 if the JSON pointer can not be resolved - */ - BasicJsonType& get_checked(BasicJsonType* ptr) const - { - for (const auto& reference_token : reference_tokens) - { - switch (ptr->type()) - { - case detail::value_t::object: - { - // note: at performs range check - ptr = &ptr->at(reference_token); - break; - } - - case detail::value_t::array: - { - if (JSON_HEDLEY_UNLIKELY(reference_token == "-")) - { - // "-" always fails the range check - JSON_THROW(detail::out_of_range::create(402, - "array index '-' (" + std::to_string(ptr->m_value.array->size()) + - ") is out of range")); - } - - // note: at performs range check - ptr = &ptr->at(array_index(reference_token)); - break; - } - - default: - JSON_THROW(detail::out_of_range::create(404, "unresolved reference token '" + reference_token + "'")); - } - } - - return *ptr; - } - - /*! - @brief return a const reference to the pointed to value - - @param[in] ptr a JSON value - - @return const reference to the JSON value pointed to by the JSON - pointer - - @throw parse_error.106 if an array index begins with '0' - @throw parse_error.109 if an array index was not a number - @throw out_of_range.402 if the array index '-' is used - @throw out_of_range.404 if the JSON pointer can not be resolved - */ - const BasicJsonType& get_unchecked(const BasicJsonType* ptr) const - { - for (const auto& reference_token : reference_tokens) - { - switch (ptr->type()) - { - case detail::value_t::object: - { - // use unchecked object access - ptr = &ptr->operator[](reference_token); - break; - } - - case detail::value_t::array: - { - if (JSON_HEDLEY_UNLIKELY(reference_token == "-")) - { - // "-" cannot be used for const access - JSON_THROW(detail::out_of_range::create(402, - "array index '-' (" + std::to_string(ptr->m_value.array->size()) + - ") is out of range")); - } - - // use unchecked array access - ptr = &ptr->operator[](array_index(reference_token)); - break; - } - - default: - JSON_THROW(detail::out_of_range::create(404, "unresolved reference token '" + reference_token + "'")); - } - } - - return *ptr; - } - - /*! - @throw parse_error.106 if an array index begins with '0' - @throw parse_error.109 if an array index was not a number - @throw out_of_range.402 if the array index '-' is used - @throw out_of_range.404 if the JSON pointer can not be resolved - */ - const BasicJsonType& get_checked(const BasicJsonType* ptr) const - { - for (const auto& reference_token : reference_tokens) - { - switch (ptr->type()) - { - case detail::value_t::object: - { - // note: at performs range check - ptr = &ptr->at(reference_token); - break; - } - - case detail::value_t::array: - { - if (JSON_HEDLEY_UNLIKELY(reference_token == "-")) - { - // "-" always fails the range check - JSON_THROW(detail::out_of_range::create(402, - "array index '-' (" + std::to_string(ptr->m_value.array->size()) + - ") is out of range")); - } - - // note: at performs range check - ptr = &ptr->at(array_index(reference_token)); - break; - } - - default: - JSON_THROW(detail::out_of_range::create(404, "unresolved reference token '" + reference_token + "'")); - } - } - - return *ptr; - } - - /*! - @throw parse_error.106 if an array index begins with '0' - @throw parse_error.109 if an array index was not a number - */ - bool contains(const BasicJsonType* ptr) const - { - for (const auto& reference_token : reference_tokens) - { - switch (ptr->type()) - { - case detail::value_t::object: - { - if (!ptr->contains(reference_token)) - { - // we did not find the key in the object - return false; - } - - ptr = &ptr->operator[](reference_token); - break; - } - - case detail::value_t::array: - { - if (JSON_HEDLEY_UNLIKELY(reference_token == "-")) - { - // "-" always fails the range check - return false; - } - if (JSON_HEDLEY_UNLIKELY(reference_token.size() == 1 && !("0" <= reference_token && reference_token <= "9"))) - { - // invalid char - return false; - } - if (JSON_HEDLEY_UNLIKELY(reference_token.size() > 1)) - { - if (JSON_HEDLEY_UNLIKELY(!('1' <= reference_token[0] && reference_token[0] <= '9'))) - { - // first char should be between '1' and '9' - return false; - } - for (std::size_t i = 1; i < reference_token.size(); i++) - { - if (JSON_HEDLEY_UNLIKELY(!('0' <= reference_token[i] && reference_token[i] <= '9'))) - { - // other char should be between '0' and '9' - return false; - } - } - } - - const auto idx = array_index(reference_token); - if (idx >= ptr->size()) - { - // index out of range - return false; - } - - ptr = &ptr->operator[](idx); - break; - } - - default: - { - // we do not expect primitive values if there is still a - // reference token to process - return false; - } - } - } - - // no reference token left means we found a primitive value - return true; - } - - /*! - @brief split the string input to reference tokens - - @note This function is only called by the json_pointer constructor. - All exceptions below are documented there. - - @throw parse_error.107 if the pointer is not empty or begins with '/' - @throw parse_error.108 if character '~' is not followed by '0' or '1' - */ - static std::vector split(const std::string& reference_string) - { - std::vector result; - - // special case: empty reference string -> no reference tokens - if (reference_string.empty()) - { - return result; - } - - // check if nonempty reference string begins with slash - if (JSON_HEDLEY_UNLIKELY(reference_string[0] != '/')) - { - JSON_THROW(detail::parse_error::create(107, 1, - "JSON pointer must be empty or begin with '/' - was: '" + - reference_string + "'")); - } - - // extract the reference tokens: - // - slash: position of the last read slash (or end of string) - // - start: position after the previous slash - for ( - // search for the first slash after the first character - std::size_t slash = reference_string.find_first_of('/', 1), - // set the beginning of the first reference token - start = 1; - // we can stop if start == 0 (if slash == std::string::npos) - start != 0; - // set the beginning of the next reference token - // (will eventually be 0 if slash == std::string::npos) - start = (slash == std::string::npos) ? 0 : slash + 1, - // find next slash - slash = reference_string.find_first_of('/', start)) - { - // use the text between the beginning of the reference token - // (start) and the last slash (slash). - auto reference_token = reference_string.substr(start, slash - start); - - // check reference tokens are properly escaped - for (std::size_t pos = reference_token.find_first_of('~'); - pos != std::string::npos; - pos = reference_token.find_first_of('~', pos + 1)) - { - JSON_ASSERT(reference_token[pos] == '~'); - - // ~ must be followed by 0 or 1 - if (JSON_HEDLEY_UNLIKELY(pos == reference_token.size() - 1 || - (reference_token[pos + 1] != '0' && - reference_token[pos + 1] != '1'))) - { - JSON_THROW(detail::parse_error::create(108, 0, "escape character '~' must be followed with '0' or '1'")); - } - } - - // finally, store the reference token - unescape(reference_token); - result.push_back(reference_token); - } - - return result; - } - - /*! - @brief replace all occurrences of a substring by another string - - @param[in,out] s the string to manipulate; changed so that all - occurrences of @a f are replaced with @a t - @param[in] f the substring to replace with @a t - @param[in] t the string to replace @a f - - @pre The search string @a f must not be empty. **This precondition is - enforced with an assertion.** - - @since version 2.0.0 - */ - static void replace_substring(std::string& s, const std::string& f, - const std::string& t) - { - JSON_ASSERT(!f.empty()); - for (auto pos = s.find(f); // find first occurrence of f - pos != std::string::npos; // make sure f was found - s.replace(pos, f.size(), t), // replace with t, and - pos = s.find(f, pos + t.size())) // find next occurrence of f - {} - } - - /// escape "~" to "~0" and "/" to "~1" - static std::string escape(std::string s) - { - replace_substring(s, "~", "~0"); - replace_substring(s, "/", "~1"); - return s; - } - - /// unescape "~1" to tilde and "~0" to slash (order is important!) - static void unescape(std::string& s) - { - replace_substring(s, "~1", "/"); - replace_substring(s, "~0", "~"); - } - - /*! - @param[in] reference_string the reference string to the current value - @param[in] value the value to consider - @param[in,out] result the result object to insert values to - - @note Empty objects or arrays are flattened to `null`. - */ - static void flatten(const std::string& reference_string, - const BasicJsonType& value, - BasicJsonType& result) - { - switch (value.type()) - { - case detail::value_t::array: - { - if (value.m_value.array->empty()) - { - // flatten empty array as null - result[reference_string] = nullptr; - } - else - { - // iterate array and use index as reference string - for (std::size_t i = 0; i < value.m_value.array->size(); ++i) - { - flatten(reference_string + "/" + std::to_string(i), - value.m_value.array->operator[](i), result); - } - } - break; - } - - case detail::value_t::object: - { - if (value.m_value.object->empty()) - { - // flatten empty object as null - result[reference_string] = nullptr; - } - else - { - // iterate object and use keys as reference string - for (const auto& element : *value.m_value.object) - { - flatten(reference_string + "/" + escape(element.first), element.second, result); - } - } - break; - } - - default: - { - // add primitive value with its reference string - result[reference_string] = value; - break; - } - } - } - - /*! - @param[in] value flattened JSON - - @return unflattened JSON - - @throw parse_error.109 if array index is not a number - @throw type_error.314 if value is not an object - @throw type_error.315 if object values are not primitive - @throw type_error.313 if value cannot be unflattened - */ - static BasicJsonType - unflatten(const BasicJsonType& value) - { - if (JSON_HEDLEY_UNLIKELY(!value.is_object())) - { - JSON_THROW(detail::type_error::create(314, "only objects can be unflattened")); - } - - BasicJsonType result; - - // iterate the JSON object values - for (const auto& element : *value.m_value.object) - { - if (JSON_HEDLEY_UNLIKELY(!element.second.is_primitive())) - { - JSON_THROW(detail::type_error::create(315, "values in object must be primitive")); - } - - // assign value to reference pointed to by JSON pointer; Note that if - // the JSON pointer is "" (i.e., points to the whole value), function - // get_and_create returns a reference to result itself. An assignment - // will then create a primitive value. - json_pointer(element.first).get_and_create(result) = element.second; - } - - return result; - } - - /*! - @brief compares two JSON pointers for equality - - @param[in] lhs JSON pointer to compare - @param[in] rhs JSON pointer to compare - @return whether @a lhs is equal to @a rhs - - @complexity Linear in the length of the JSON pointer - - @exceptionsafety No-throw guarantee: this function never throws exceptions. - */ - friend bool operator==(json_pointer const& lhs, - json_pointer const& rhs) noexcept - { - return lhs.reference_tokens == rhs.reference_tokens; - } - - /*! - @brief compares two JSON pointers for inequality - - @param[in] lhs JSON pointer to compare - @param[in] rhs JSON pointer to compare - @return whether @a lhs is not equal @a rhs - - @complexity Linear in the length of the JSON pointer - - @exceptionsafety No-throw guarantee: this function never throws exceptions. - */ - friend bool operator!=(json_pointer const& lhs, - json_pointer const& rhs) noexcept - { - return !(lhs == rhs); - } - - /// the reference tokens - std::vector reference_tokens; -}; -} // namespace nlohmann diff --git a/nlohmann/detail/json_ref.hpp b/nlohmann/detail/json_ref.hpp deleted file mode 100644 index c9bf6cb..0000000 --- a/nlohmann/detail/json_ref.hpp +++ /dev/null @@ -1,76 +0,0 @@ -#pragma once - -#include -#include - -#include - -namespace nlohmann -{ -namespace detail -{ -template -class json_ref -{ - public: - using value_type = BasicJsonType; - - json_ref(value_type&& value) - : owned_value(std::move(value)) - , value_ref(&owned_value) - , is_rvalue(true) - {} - - json_ref(const value_type& value) - : value_ref(const_cast(&value)) - , is_rvalue(false) - {} - - json_ref(std::initializer_list init) - : owned_value(init) - , value_ref(&owned_value) - , is_rvalue(true) - {} - - template < - class... Args, - enable_if_t::value, int> = 0 > - json_ref(Args && ... args) - : owned_value(std::forward(args)...) - , value_ref(&owned_value) - , is_rvalue(true) - {} - - // class should be movable only - json_ref(json_ref&&) = default; - json_ref(const json_ref&) = delete; - json_ref& operator=(const json_ref&) = delete; - json_ref& operator=(json_ref&&) = delete; - ~json_ref() = default; - - value_type moved_or_copied() const - { - if (is_rvalue) - { - return std::move(*value_ref); - } - return *value_ref; - } - - value_type const& operator*() const - { - return *static_cast(value_ref); - } - - value_type const* operator->() const - { - return static_cast(value_ref); - } - - private: - mutable value_type owned_value = nullptr; - value_type* value_ref = nullptr; - const bool is_rvalue = true; -}; -} // namespace detail -} // namespace nlohmann diff --git a/nlohmann/detail/macro_scope.hpp b/nlohmann/detail/macro_scope.hpp deleted file mode 100644 index b3a9cde..0000000 --- a/nlohmann/detail/macro_scope.hpp +++ /dev/null @@ -1,297 +0,0 @@ -#pragma once - -#include // pair -#include - -// This file contains all internal macro definitions -// You MUST include macro_unscope.hpp at the end of json.hpp to undef all of them - -// exclude unsupported compilers -#if !defined(JSON_SKIP_UNSUPPORTED_COMPILER_CHECK) - #if defined(__clang__) - #if (__clang_major__ * 10000 + __clang_minor__ * 100 + __clang_patchlevel__) < 30400 - #error "unsupported Clang version - see https://github.com/nlohmann/json#supported-compilers" - #endif - #elif defined(__GNUC__) && !(defined(__ICC) || defined(__INTEL_COMPILER)) - #if (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) < 40800 - #error "unsupported GCC version - see https://github.com/nlohmann/json#supported-compilers" - #endif - #endif -#endif - -// C++ language standard detection -#if (defined(__cplusplus) && __cplusplus >= 202002L) || (defined(_MSVC_LANG) && _MSVC_LANG >= 202002L) - #define JSON_HAS_CPP_20 - #define JSON_HAS_CPP_17 - #define JSON_HAS_CPP_14 -#elif (defined(__cplusplus) && __cplusplus >= 201703L) || (defined(_HAS_CXX17) && _HAS_CXX17 == 1) // fix for issue #464 - #define JSON_HAS_CPP_17 - #define JSON_HAS_CPP_14 -#elif (defined(__cplusplus) && __cplusplus >= 201402L) || (defined(_HAS_CXX14) && _HAS_CXX14 == 1) - #define JSON_HAS_CPP_14 -#endif - -// disable float-equal warnings on GCC/clang -#if defined(__clang__) || defined(__GNUC__) || defined(__GNUG__) - #pragma GCC diagnostic push - #pragma GCC diagnostic ignored "-Wfloat-equal" -#endif - -// disable documentation warnings on clang -#if defined(__clang__) - #pragma GCC diagnostic push - #pragma GCC diagnostic ignored "-Wdocumentation" -#endif - -// allow to disable exceptions -#if (defined(__cpp_exceptions) || defined(__EXCEPTIONS) || defined(_CPPUNWIND)) && !defined(JSON_NOEXCEPTION) - //#define JSON_THROW(exception) throw exception - #define JSON_THROW(exception) - #define JSON_TRY try - #define JSON_CATCH(exception) catch(exception) - #define JSON_INTERNAL_CATCH(exception) catch(exception) -#else - #include - #define JSON_THROW(exception) std::abort() - #define JSON_TRY if(true) - #define JSON_CATCH(exception) if(false) - #define JSON_INTERNAL_CATCH(exception) if(false) -#endif - -// override exception macros -#if defined(JSON_THROW_USER) - #undef JSON_THROW - #define JSON_THROW JSON_THROW_USER -#endif -#if defined(JSON_TRY_USER) - #undef JSON_TRY - #define JSON_TRY JSON_TRY_USER -#endif -#if defined(JSON_CATCH_USER) - #undef JSON_CATCH - #define JSON_CATCH JSON_CATCH_USER - #undef JSON_INTERNAL_CATCH - #define JSON_INTERNAL_CATCH JSON_CATCH_USER -#endif -#if defined(JSON_INTERNAL_CATCH_USER) - #undef JSON_INTERNAL_CATCH - #define JSON_INTERNAL_CATCH JSON_INTERNAL_CATCH_USER -#endif - -// allow to override assert -#if !defined(JSON_ASSERT) - #include // assert - #define JSON_ASSERT(x) assert(x) -#endif - -/*! -@brief macro to briefly define a mapping between an enum and JSON -@def NLOHMANN_JSON_SERIALIZE_ENUM -@since version 3.4.0 -*/ -#define NLOHMANN_JSON_SERIALIZE_ENUM(ENUM_TYPE, ...) \ - template \ - inline void to_json(BasicJsonType& j, const ENUM_TYPE& e) \ - { \ - static_assert(std::is_enum::value, #ENUM_TYPE " must be an enum!"); \ - static const std::pair m[] = __VA_ARGS__; \ - auto it = std::find_if(std::begin(m), std::end(m), \ - [e](const std::pair& ej_pair) -> bool \ - { \ - return ej_pair.first == e; \ - }); \ - j = ((it != std::end(m)) ? it : std::begin(m))->second; \ - } \ - template \ - inline void from_json(const BasicJsonType& j, ENUM_TYPE& e) \ - { \ - static_assert(std::is_enum::value, #ENUM_TYPE " must be an enum!"); \ - static const std::pair m[] = __VA_ARGS__; \ - auto it = std::find_if(std::begin(m), std::end(m), \ - [&j](const std::pair& ej_pair) -> bool \ - { \ - return ej_pair.second == j; \ - }); \ - e = ((it != std::end(m)) ? it : std::begin(m))->first; \ - } - -// Ugly macros to avoid uglier copy-paste when specializing basic_json. They -// may be removed in the future once the class is split. - -#define NLOHMANN_BASIC_JSON_TPL_DECLARATION \ - template class ObjectType, \ - template class ArrayType, \ - class StringType, class BooleanType, class NumberIntegerType, \ - class NumberUnsignedType, class NumberFloatType, \ - template class AllocatorType, \ - template class JSONSerializer, \ - class BinaryType> - -#define NLOHMANN_BASIC_JSON_TPL \ - basic_json - -// Macros to simplify conversion from/to types - -#define NLOHMANN_JSON_EXPAND( x ) x -#define NLOHMANN_JSON_GET_MACRO(_1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, _17, _18, _19, _20, _21, _22, _23, _24, _25, _26, _27, _28, _29, _30, _31, _32, _33, _34, _35, _36, _37, _38, _39, _40, _41, _42, _43, _44, _45, _46, _47, _48, _49, _50, _51, _52, _53, _54, _55, _56, _57, _58, _59, _60, _61, _62, _63, _64, NAME,...) NAME -#define NLOHMANN_JSON_PASTE(...) NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_GET_MACRO(__VA_ARGS__, \ - NLOHMANN_JSON_PASTE64, \ - NLOHMANN_JSON_PASTE63, \ - NLOHMANN_JSON_PASTE62, \ - NLOHMANN_JSON_PASTE61, \ - NLOHMANN_JSON_PASTE60, \ - NLOHMANN_JSON_PASTE59, \ - NLOHMANN_JSON_PASTE58, \ - NLOHMANN_JSON_PASTE57, \ - NLOHMANN_JSON_PASTE56, \ - NLOHMANN_JSON_PASTE55, \ - NLOHMANN_JSON_PASTE54, \ - NLOHMANN_JSON_PASTE53, \ - NLOHMANN_JSON_PASTE52, \ - NLOHMANN_JSON_PASTE51, \ - NLOHMANN_JSON_PASTE50, \ - NLOHMANN_JSON_PASTE49, \ - NLOHMANN_JSON_PASTE48, \ - NLOHMANN_JSON_PASTE47, \ - NLOHMANN_JSON_PASTE46, \ - NLOHMANN_JSON_PASTE45, \ - NLOHMANN_JSON_PASTE44, \ - NLOHMANN_JSON_PASTE43, \ - NLOHMANN_JSON_PASTE42, \ - NLOHMANN_JSON_PASTE41, \ - NLOHMANN_JSON_PASTE40, \ - NLOHMANN_JSON_PASTE39, \ - NLOHMANN_JSON_PASTE38, \ - NLOHMANN_JSON_PASTE37, \ - NLOHMANN_JSON_PASTE36, \ - NLOHMANN_JSON_PASTE35, \ - NLOHMANN_JSON_PASTE34, \ - NLOHMANN_JSON_PASTE33, \ - NLOHMANN_JSON_PASTE32, \ - NLOHMANN_JSON_PASTE31, \ - NLOHMANN_JSON_PASTE30, \ - NLOHMANN_JSON_PASTE29, \ - NLOHMANN_JSON_PASTE28, \ - NLOHMANN_JSON_PASTE27, \ - NLOHMANN_JSON_PASTE26, \ - NLOHMANN_JSON_PASTE25, \ - NLOHMANN_JSON_PASTE24, \ - NLOHMANN_JSON_PASTE23, \ - NLOHMANN_JSON_PASTE22, \ - NLOHMANN_JSON_PASTE21, \ - NLOHMANN_JSON_PASTE20, \ - NLOHMANN_JSON_PASTE19, \ - NLOHMANN_JSON_PASTE18, \ - NLOHMANN_JSON_PASTE17, \ - NLOHMANN_JSON_PASTE16, \ - NLOHMANN_JSON_PASTE15, \ - NLOHMANN_JSON_PASTE14, \ - NLOHMANN_JSON_PASTE13, \ - NLOHMANN_JSON_PASTE12, \ - NLOHMANN_JSON_PASTE11, \ - NLOHMANN_JSON_PASTE10, \ - NLOHMANN_JSON_PASTE9, \ - NLOHMANN_JSON_PASTE8, \ - NLOHMANN_JSON_PASTE7, \ - NLOHMANN_JSON_PASTE6, \ - NLOHMANN_JSON_PASTE5, \ - NLOHMANN_JSON_PASTE4, \ - NLOHMANN_JSON_PASTE3, \ - NLOHMANN_JSON_PASTE2, \ - NLOHMANN_JSON_PASTE1)(__VA_ARGS__)) -#define NLOHMANN_JSON_PASTE2(func, v1) func(v1) -#define NLOHMANN_JSON_PASTE3(func, v1, v2) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE2(func, v2) -#define NLOHMANN_JSON_PASTE4(func, v1, v2, v3) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE3(func, v2, v3) -#define NLOHMANN_JSON_PASTE5(func, v1, v2, v3, v4) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE4(func, v2, v3, v4) -#define NLOHMANN_JSON_PASTE6(func, v1, v2, v3, v4, v5) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE5(func, v2, v3, v4, v5) -#define NLOHMANN_JSON_PASTE7(func, v1, v2, v3, v4, v5, v6) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE6(func, v2, v3, v4, v5, v6) -#define NLOHMANN_JSON_PASTE8(func, v1, v2, v3, v4, v5, v6, v7) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE7(func, v2, v3, v4, v5, v6, v7) -#define NLOHMANN_JSON_PASTE9(func, v1, v2, v3, v4, v5, v6, v7, v8) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE8(func, v2, v3, v4, v5, v6, v7, v8) -#define NLOHMANN_JSON_PASTE10(func, v1, v2, v3, v4, v5, v6, v7, v8, v9) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE9(func, v2, v3, v4, v5, v6, v7, v8, v9) -#define NLOHMANN_JSON_PASTE11(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE10(func, v2, v3, v4, v5, v6, v7, v8, v9, v10) -#define NLOHMANN_JSON_PASTE12(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE11(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -#define NLOHMANN_JSON_PASTE13(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE12(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12) -#define NLOHMANN_JSON_PASTE14(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE13(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13) -#define NLOHMANN_JSON_PASTE15(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE14(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14) -#define NLOHMANN_JSON_PASTE16(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE15(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15) -#define NLOHMANN_JSON_PASTE17(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE16(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16) -#define NLOHMANN_JSON_PASTE18(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE17(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17) -#define NLOHMANN_JSON_PASTE19(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE18(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18) -#define NLOHMANN_JSON_PASTE20(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE19(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19) -#define NLOHMANN_JSON_PASTE21(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE20(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20) -#define NLOHMANN_JSON_PASTE22(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE21(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21) -#define NLOHMANN_JSON_PASTE23(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE22(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22) -#define NLOHMANN_JSON_PASTE24(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE23(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23) -#define NLOHMANN_JSON_PASTE25(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE24(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24) -#define NLOHMANN_JSON_PASTE26(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE25(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25) -#define NLOHMANN_JSON_PASTE27(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE26(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26) -#define NLOHMANN_JSON_PASTE28(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE27(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27) -#define NLOHMANN_JSON_PASTE29(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE28(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28) -#define NLOHMANN_JSON_PASTE30(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE29(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29) -#define NLOHMANN_JSON_PASTE31(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE30(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30) -#define NLOHMANN_JSON_PASTE32(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE31(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31) -#define NLOHMANN_JSON_PASTE33(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE32(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32) -#define NLOHMANN_JSON_PASTE34(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE33(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33) -#define NLOHMANN_JSON_PASTE35(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE34(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34) -#define NLOHMANN_JSON_PASTE36(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE35(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35) -#define NLOHMANN_JSON_PASTE37(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE36(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36) -#define NLOHMANN_JSON_PASTE38(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE37(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37) -#define NLOHMANN_JSON_PASTE39(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE38(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38) -#define NLOHMANN_JSON_PASTE40(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE39(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39) -#define NLOHMANN_JSON_PASTE41(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE40(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40) -#define NLOHMANN_JSON_PASTE42(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE41(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41) -#define NLOHMANN_JSON_PASTE43(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE42(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42) -#define NLOHMANN_JSON_PASTE44(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE43(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43) -#define NLOHMANN_JSON_PASTE45(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE44(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44) -#define NLOHMANN_JSON_PASTE46(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE45(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45) -#define NLOHMANN_JSON_PASTE47(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE46(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46) -#define NLOHMANN_JSON_PASTE48(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE47(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47) -#define NLOHMANN_JSON_PASTE49(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE48(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48) -#define NLOHMANN_JSON_PASTE50(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE49(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49) -#define NLOHMANN_JSON_PASTE51(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE50(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50) -#define NLOHMANN_JSON_PASTE52(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE51(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51) -#define NLOHMANN_JSON_PASTE53(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE52(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52) -#define NLOHMANN_JSON_PASTE54(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE53(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53) -#define NLOHMANN_JSON_PASTE55(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE54(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54) -#define NLOHMANN_JSON_PASTE56(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE55(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55) -#define NLOHMANN_JSON_PASTE57(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE56(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56) -#define NLOHMANN_JSON_PASTE58(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE57(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57) -#define NLOHMANN_JSON_PASTE59(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE58(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58) -#define NLOHMANN_JSON_PASTE60(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE59(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59) -#define NLOHMANN_JSON_PASTE61(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE60(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60) -#define NLOHMANN_JSON_PASTE62(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60, v61) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE61(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60, v61) -#define NLOHMANN_JSON_PASTE63(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60, v61, v62) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE62(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60, v61, v62) -#define NLOHMANN_JSON_PASTE64(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60, v61, v62, v63) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE63(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60, v61, v62, v63) - -#define NLOHMANN_JSON_TO(v1) nlohmann_json_j[#v1] = nlohmann_json_t.v1; -#define NLOHMANN_JSON_FROM(v1) nlohmann_json_j.at(#v1).get_to(nlohmann_json_t.v1); - -/*! -@brief macro -@def NLOHMANN_DEFINE_TYPE_INTRUSIVE -@since version 3.9.0 -*/ -#define NLOHMANN_DEFINE_TYPE_INTRUSIVE(Type, ...) \ - friend void to_json(nlohmann::json& nlohmann_json_j, const Type& nlohmann_json_t) { NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_PASTE(NLOHMANN_JSON_TO, __VA_ARGS__)) } \ - friend void from_json(const nlohmann::json& nlohmann_json_j, Type& nlohmann_json_t) { NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_PASTE(NLOHMANN_JSON_FROM, __VA_ARGS__)) } - -/*! -@brief macro -@def NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE -@since version 3.9.0 -*/ -#define NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(Type, ...) \ - inline void to_json(nlohmann::json& nlohmann_json_j, const Type& nlohmann_json_t) { NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_PASTE(NLOHMANN_JSON_TO, __VA_ARGS__)) } \ - inline void from_json(const nlohmann::json& nlohmann_json_j, Type& nlohmann_json_t) { NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_PASTE(NLOHMANN_JSON_FROM, __VA_ARGS__)) } - -#ifndef JSON_USE_IMPLICIT_CONVERSIONS - #define JSON_USE_IMPLICIT_CONVERSIONS 1 -#endif - -#if JSON_USE_IMPLICIT_CONVERSIONS - #define JSON_EXPLICIT -#else - #define JSON_EXPLICIT explicit -#endif diff --git a/nlohmann/detail/macro_unscope.hpp b/nlohmann/detail/macro_unscope.hpp deleted file mode 100644 index eb70651..0000000 --- a/nlohmann/detail/macro_unscope.hpp +++ /dev/null @@ -1,23 +0,0 @@ -#pragma once - -// restore GCC/clang diagnostic settings -#if defined(__clang__) || defined(__GNUC__) || defined(__GNUG__) - #pragma GCC diagnostic pop -#endif -#if defined(__clang__) - #pragma GCC diagnostic pop -#endif - -// clean up -#undef JSON_ASSERT -#undef JSON_INTERNAL_CATCH -#undef JSON_CATCH -#undef JSON_THROW -#undef JSON_TRY -#undef JSON_HAS_CPP_14 -#undef JSON_HAS_CPP_17 -#undef NLOHMANN_BASIC_JSON_TPL_DECLARATION -#undef NLOHMANN_BASIC_JSON_TPL -#undef JSON_EXPLICIT - -#include diff --git a/nlohmann/detail/meta/cpp_future.hpp b/nlohmann/detail/meta/cpp_future.hpp deleted file mode 100644 index dd929ee..0000000 --- a/nlohmann/detail/meta/cpp_future.hpp +++ /dev/null @@ -1,62 +0,0 @@ -#pragma once - -#include // size_t -#include // conditional, enable_if, false_type, integral_constant, is_constructible, is_integral, is_same, remove_cv, remove_reference, true_type - -namespace nlohmann -{ -namespace detail -{ -// alias templates to reduce boilerplate -template -using enable_if_t = typename std::enable_if::type; - -template -using uncvref_t = typename std::remove_cv::type>::type; - -// implementation of C++14 index_sequence and affiliates -// source: https://stackoverflow.com/a/32223343 -template -struct index_sequence -{ - using type = index_sequence; - using value_type = std::size_t; - static constexpr std::size_t size() noexcept - { - return sizeof...(Ints); - } -}; - -template -struct merge_and_renumber; - -template -struct merge_and_renumber, index_sequence> - : index_sequence < I1..., (sizeof...(I1) + I2)... > {}; - -template -struct make_index_sequence - : merge_and_renumber < typename make_index_sequence < N / 2 >::type, - typename make_index_sequence < N - N / 2 >::type > {}; - -template<> struct make_index_sequence<0> : index_sequence<> {}; -template<> struct make_index_sequence<1> : index_sequence<0> {}; - -template -using index_sequence_for = make_index_sequence; - -// dispatch utility (taken from ranges-v3) -template struct priority_tag : priority_tag < N - 1 > {}; -template<> struct priority_tag<0> {}; - -// taken from ranges-v3 -template -struct static_const -{ - static constexpr T value{}; -}; - -template -constexpr T static_const::value; -} // namespace detail -} // namespace nlohmann diff --git a/nlohmann/detail/meta/detected.hpp b/nlohmann/detail/meta/detected.hpp deleted file mode 100644 index 7b5a003..0000000 --- a/nlohmann/detail/meta/detected.hpp +++ /dev/null @@ -1,58 +0,0 @@ -#pragma once - -#include - -#include - -// https://en.cppreference.com/w/cpp/experimental/is_detected -namespace nlohmann -{ -namespace detail -{ -struct nonesuch -{ - nonesuch() = delete; - ~nonesuch() = delete; - nonesuch(nonesuch const&) = delete; - nonesuch(nonesuch const&&) = delete; - void operator=(nonesuch const&) = delete; - void operator=(nonesuch&&) = delete; -}; - -template class Op, - class... Args> -struct detector -{ - using value_t = std::false_type; - using type = Default; -}; - -template class Op, class... Args> -struct detector>, Op, Args...> -{ - using value_t = std::true_type; - using type = Op; -}; - -template class Op, class... Args> -using is_detected = typename detector::value_t; - -template class Op, class... Args> -using detected_t = typename detector::type; - -template class Op, class... Args> -using detected_or = detector; - -template class Op, class... Args> -using detected_or_t = typename detected_or::type; - -template class Op, class... Args> -using is_detected_exact = std::is_same>; - -template class Op, class... Args> -using is_detected_convertible = - std::is_convertible, To>; -} // namespace detail -} // namespace nlohmann diff --git a/nlohmann/detail/meta/is_sax.hpp b/nlohmann/detail/meta/is_sax.hpp deleted file mode 100644 index e1e48a0..0000000 --- a/nlohmann/detail/meta/is_sax.hpp +++ /dev/null @@ -1,149 +0,0 @@ -#pragma once - -#include // size_t -#include // declval -#include // string - -#include -#include - -namespace nlohmann -{ -namespace detail -{ -template -using null_function_t = decltype(std::declval().null()); - -template -using boolean_function_t = - decltype(std::declval().boolean(std::declval())); - -template -using number_integer_function_t = - decltype(std::declval().number_integer(std::declval())); - -template -using number_unsigned_function_t = - decltype(std::declval().number_unsigned(std::declval())); - -template -using number_float_function_t = decltype(std::declval().number_float( - std::declval(), std::declval())); - -template -using string_function_t = - decltype(std::declval().string(std::declval())); - -template -using binary_function_t = - decltype(std::declval().binary(std::declval())); - -template -using start_object_function_t = - decltype(std::declval().start_object(std::declval())); - -template -using key_function_t = - decltype(std::declval().key(std::declval())); - -template -using end_object_function_t = decltype(std::declval().end_object()); - -template -using start_array_function_t = - decltype(std::declval().start_array(std::declval())); - -template -using end_array_function_t = decltype(std::declval().end_array()); - -template -using parse_error_function_t = decltype(std::declval().parse_error( - std::declval(), std::declval(), - std::declval())); - -template -struct is_sax -{ - private: - static_assert(is_basic_json::value, - "BasicJsonType must be of type basic_json<...>"); - - using number_integer_t = typename BasicJsonType::number_integer_t; - using number_unsigned_t = typename BasicJsonType::number_unsigned_t; - using number_float_t = typename BasicJsonType::number_float_t; - using string_t = typename BasicJsonType::string_t; - using binary_t = typename BasicJsonType::binary_t; - using exception_t = typename BasicJsonType::exception; - - public: - static constexpr bool value = - is_detected_exact::value && - is_detected_exact::value && - is_detected_exact::value && - is_detected_exact::value && - is_detected_exact::value && - is_detected_exact::value && - is_detected_exact::value && - is_detected_exact::value && - is_detected_exact::value && - is_detected_exact::value && - is_detected_exact::value && - is_detected_exact::value && - is_detected_exact::value; -}; - -template -struct is_sax_static_asserts -{ - private: - static_assert(is_basic_json::value, - "BasicJsonType must be of type basic_json<...>"); - - using number_integer_t = typename BasicJsonType::number_integer_t; - using number_unsigned_t = typename BasicJsonType::number_unsigned_t; - using number_float_t = typename BasicJsonType::number_float_t; - using string_t = typename BasicJsonType::string_t; - using binary_t = typename BasicJsonType::binary_t; - using exception_t = typename BasicJsonType::exception; - - public: - static_assert(is_detected_exact::value, - "Missing/invalid function: bool null()"); - static_assert(is_detected_exact::value, - "Missing/invalid function: bool boolean(bool)"); - static_assert(is_detected_exact::value, - "Missing/invalid function: bool boolean(bool)"); - static_assert( - is_detected_exact::value, - "Missing/invalid function: bool number_integer(number_integer_t)"); - static_assert( - is_detected_exact::value, - "Missing/invalid function: bool number_unsigned(number_unsigned_t)"); - static_assert(is_detected_exact::value, - "Missing/invalid function: bool number_float(number_float_t, const string_t&)"); - static_assert( - is_detected_exact::value, - "Missing/invalid function: bool string(string_t&)"); - static_assert( - is_detected_exact::value, - "Missing/invalid function: bool binary(binary_t&)"); - static_assert(is_detected_exact::value, - "Missing/invalid function: bool start_object(std::size_t)"); - static_assert(is_detected_exact::value, - "Missing/invalid function: bool key(string_t&)"); - static_assert(is_detected_exact::value, - "Missing/invalid function: bool end_object()"); - static_assert(is_detected_exact::value, - "Missing/invalid function: bool start_array(std::size_t)"); - static_assert(is_detected_exact::value, - "Missing/invalid function: bool end_array()"); - static_assert( - is_detected_exact::value, - "Missing/invalid function: bool parse_error(std::size_t, const " - "std::string&, const exception&)"); -}; -} // namespace detail -} // namespace nlohmann diff --git a/nlohmann/detail/meta/type_traits.hpp b/nlohmann/detail/meta/type_traits.hpp deleted file mode 100644 index ac143be..0000000 --- a/nlohmann/detail/meta/type_traits.hpp +++ /dev/null @@ -1,396 +0,0 @@ -#pragma once - -#include // numeric_limits -#include // false_type, is_constructible, is_integral, is_same, true_type -#include // declval - -#include -#include -#include -#include -#include - -namespace nlohmann -{ -/*! -@brief detail namespace with internal helper functions - -This namespace collects functions that should not be exposed, -implementations of some @ref basic_json methods, and meta-programming helpers. - -@since version 2.1.0 -*/ -namespace detail -{ -///////////// -// helpers // -///////////// - -// Note to maintainers: -// -// Every trait in this file expects a non CV-qualified type. -// The only exceptions are in the 'aliases for detected' section -// (i.e. those of the form: decltype(T::member_function(std::declval()))) -// -// In this case, T has to be properly CV-qualified to constraint the function arguments -// (e.g. to_json(BasicJsonType&, const T&)) - -template struct is_basic_json : std::false_type {}; - -NLOHMANN_BASIC_JSON_TPL_DECLARATION -struct is_basic_json : std::true_type {}; - -////////////////////// -// json_ref helpers // -////////////////////// - -template -class json_ref; - -template -struct is_json_ref : std::false_type {}; - -template -struct is_json_ref> : std::true_type {}; - -////////////////////////// -// aliases for detected // -////////////////////////// - -template -using mapped_type_t = typename T::mapped_type; - -template -using key_type_t = typename T::key_type; - -template -using value_type_t = typename T::value_type; - -template -using difference_type_t = typename T::difference_type; - -template -using pointer_t = typename T::pointer; - -template -using reference_t = typename T::reference; - -template -using iterator_category_t = typename T::iterator_category; - -template -using iterator_t = typename T::iterator; - -template -using to_json_function = decltype(T::to_json(std::declval()...)); - -template -using from_json_function = decltype(T::from_json(std::declval()...)); - -template -using get_template_function = decltype(std::declval().template get()); - -// trait checking if JSONSerializer::from_json(json const&, udt&) exists -template -struct has_from_json : std::false_type {}; - -// trait checking if j.get is valid -// use this trait instead of std::is_constructible or std::is_convertible, -// both rely on, or make use of implicit conversions, and thus fail when T -// has several constructors/operator= (see https://github.com/nlohmann/json/issues/958) -template -struct is_getable -{ - static constexpr bool value = is_detected::value; -}; - -template -struct has_from_json < BasicJsonType, T, - enable_if_t < !is_basic_json::value >> -{ - using serializer = typename BasicJsonType::template json_serializer; - - static constexpr bool value = - is_detected_exact::value; -}; - -// This trait checks if JSONSerializer::from_json(json const&) exists -// this overload is used for non-default-constructible user-defined-types -template -struct has_non_default_from_json : std::false_type {}; - -template -struct has_non_default_from_json < BasicJsonType, T, enable_if_t < !is_basic_json::value >> -{ - using serializer = typename BasicJsonType::template json_serializer; - - static constexpr bool value = - is_detected_exact::value; -}; - -// This trait checks if BasicJsonType::json_serializer::to_json exists -// Do not evaluate the trait when T is a basic_json type, to avoid template instantiation infinite recursion. -template -struct has_to_json : std::false_type {}; - -template -struct has_to_json < BasicJsonType, T, enable_if_t < !is_basic_json::value >> -{ - using serializer = typename BasicJsonType::template json_serializer; - - static constexpr bool value = - is_detected_exact::value; -}; - - -/////////////////// -// is_ functions // -/////////////////// - -template -struct is_iterator_traits : std::false_type {}; - -template -struct is_iterator_traits> -{ - private: - using traits = iterator_traits; - - public: - static constexpr auto value = - is_detected::value && - is_detected::value && - is_detected::value && - is_detected::value && - is_detected::value; -}; - -// source: https://stackoverflow.com/a/37193089/4116453 - -template -struct is_complete_type : std::false_type {}; - -template -struct is_complete_type : std::true_type {}; - -template -struct is_compatible_object_type_impl : std::false_type {}; - -template -struct is_compatible_object_type_impl < - BasicJsonType, CompatibleObjectType, - enable_if_t < is_detected::value&& - is_detected::value >> -{ - - using object_t = typename BasicJsonType::object_t; - - // macOS's is_constructible does not play well with nonesuch... - static constexpr bool value = - std::is_constructible::value && - std::is_constructible::value; -}; - -template -struct is_compatible_object_type - : is_compatible_object_type_impl {}; - -template -struct is_constructible_object_type_impl : std::false_type {}; - -template -struct is_constructible_object_type_impl < - BasicJsonType, ConstructibleObjectType, - enable_if_t < is_detected::value&& - is_detected::value >> -{ - using object_t = typename BasicJsonType::object_t; - - static constexpr bool value = - (std::is_default_constructible::value && - (std::is_move_assignable::value || - std::is_copy_assignable::value) && - (std::is_constructible::value && - std::is_same < - typename object_t::mapped_type, - typename ConstructibleObjectType::mapped_type >::value)) || - (has_from_json::value || - has_non_default_from_json < - BasicJsonType, - typename ConstructibleObjectType::mapped_type >::value); -}; - -template -struct is_constructible_object_type - : is_constructible_object_type_impl {}; - -template -struct is_compatible_string_type_impl : std::false_type {}; - -template -struct is_compatible_string_type_impl < - BasicJsonType, CompatibleStringType, - enable_if_t::value >> -{ - static constexpr auto value = - std::is_constructible::value; -}; - -template -struct is_compatible_string_type - : is_compatible_string_type_impl {}; - -template -struct is_constructible_string_type_impl : std::false_type {}; - -template -struct is_constructible_string_type_impl < - BasicJsonType, ConstructibleStringType, - enable_if_t::value >> -{ - static constexpr auto value = - std::is_constructible::value; -}; - -template -struct is_constructible_string_type - : is_constructible_string_type_impl {}; - -template -struct is_compatible_array_type_impl : std::false_type {}; - -template -struct is_compatible_array_type_impl < - BasicJsonType, CompatibleArrayType, - enable_if_t < is_detected::value&& - is_detected::value&& -// This is needed because json_reverse_iterator has a ::iterator type... -// Therefore it is detected as a CompatibleArrayType. -// The real fix would be to have an Iterable concept. - !is_iterator_traits < - iterator_traits>::value >> -{ - static constexpr bool value = - std::is_constructible::value; -}; - -template -struct is_compatible_array_type - : is_compatible_array_type_impl {}; - -template -struct is_constructible_array_type_impl : std::false_type {}; - -template -struct is_constructible_array_type_impl < - BasicJsonType, ConstructibleArrayType, - enable_if_t::value >> - : std::true_type {}; - -template -struct is_constructible_array_type_impl < - BasicJsonType, ConstructibleArrayType, - enable_if_t < !std::is_same::value&& - std::is_default_constructible::value&& -(std::is_move_assignable::value || - std::is_copy_assignable::value)&& -is_detected::value&& -is_detected::value&& -is_complete_type < -detected_t>::value >> -{ - static constexpr bool value = - // This is needed because json_reverse_iterator has a ::iterator type, - // furthermore, std::back_insert_iterator (and other iterators) have a - // base class `iterator`... Therefore it is detected as a - // ConstructibleArrayType. The real fix would be to have an Iterable - // concept. - !is_iterator_traits>::value && - - (std::is_same::value || - has_from_json::value || - has_non_default_from_json < - BasicJsonType, typename ConstructibleArrayType::value_type >::value); -}; - -template -struct is_constructible_array_type - : is_constructible_array_type_impl {}; - -template -struct is_compatible_integer_type_impl : std::false_type {}; - -template -struct is_compatible_integer_type_impl < - RealIntegerType, CompatibleNumberIntegerType, - enable_if_t < std::is_integral::value&& - std::is_integral::value&& - !std::is_same::value >> -{ - // is there an assert somewhere on overflows? - using RealLimits = std::numeric_limits; - using CompatibleLimits = std::numeric_limits; - - static constexpr auto value = - std::is_constructible::value && - CompatibleLimits::is_integer && - RealLimits::is_signed == CompatibleLimits::is_signed; -}; - -template -struct is_compatible_integer_type - : is_compatible_integer_type_impl {}; - -template -struct is_compatible_type_impl: std::false_type {}; - -template -struct is_compatible_type_impl < - BasicJsonType, CompatibleType, - enable_if_t::value >> -{ - static constexpr bool value = - has_to_json::value; -}; - -template -struct is_compatible_type - : is_compatible_type_impl {}; - -// https://en.cppreference.com/w/cpp/types/conjunction -template struct conjunction : std::true_type { }; -template struct conjunction : B1 { }; -template -struct conjunction -: std::conditional, B1>::type {}; - -template -struct is_constructible_tuple : std::false_type {}; - -template -struct is_constructible_tuple> : conjunction...> {}; -} // namespace detail -} // namespace nlohmann diff --git a/nlohmann/detail/meta/void_t.hpp b/nlohmann/detail/meta/void_t.hpp deleted file mode 100644 index 4ee2c86..0000000 --- a/nlohmann/detail/meta/void_t.hpp +++ /dev/null @@ -1,13 +0,0 @@ -#pragma once - -namespace nlohmann -{ -namespace detail -{ -template struct make_void -{ - using type = void; -}; -template using void_t = typename make_void::type; -} // namespace detail -} // namespace nlohmann diff --git a/nlohmann/detail/output/binary_writer.hpp b/nlohmann/detail/output/binary_writer.hpp deleted file mode 100644 index 0c6185e..0000000 --- a/nlohmann/detail/output/binary_writer.hpp +++ /dev/null @@ -1,1595 +0,0 @@ -#pragma once - -#include // reverse -#include // array -#include // uint8_t, uint16_t, uint32_t, uint64_t -#include // memcpy -#include // numeric_limits -#include // string -#include // isnan, isinf - -#include -#include -#include - -namespace nlohmann -{ -namespace detail -{ -/////////////////// -// binary writer // -/////////////////// - -/*! -@brief serialization to CBOR and MessagePack values -*/ -template -class binary_writer -{ - using string_t = typename BasicJsonType::string_t; - using binary_t = typename BasicJsonType::binary_t; - using number_float_t = typename BasicJsonType::number_float_t; - - public: - /*! - @brief create a binary writer - - @param[in] adapter output adapter to write to - */ - explicit binary_writer(output_adapter_t adapter) : oa(adapter) - { - JSON_ASSERT(oa); - } - - /*! - @param[in] j JSON value to serialize - @pre j.type() == value_t::object - */ - void write_bson(const BasicJsonType& j) - { - switch (j.type()) - { - case value_t::object: - { - write_bson_object(*j.m_value.object); - break; - } - - default: - { - JSON_THROW(type_error::create(317, "to serialize to BSON, top-level type must be object, but is " + std::string(j.type_name()))); - } - } - } - - /*! - @param[in] j JSON value to serialize - */ - void write_cbor(const BasicJsonType& j) - { - switch (j.type()) - { - case value_t::null: - { - oa->write_character(to_char_type(0xF6)); - break; - } - - case value_t::boolean: - { - oa->write_character(j.m_value.boolean - ? to_char_type(0xF5) - : to_char_type(0xF4)); - break; - } - - case value_t::number_integer: - { - if (j.m_value.number_integer >= 0) - { - // CBOR does not differentiate between positive signed - // integers and unsigned integers. Therefore, we used the - // code from the value_t::number_unsigned case here. - if (j.m_value.number_integer <= 0x17) - { - write_number(static_cast(j.m_value.number_integer)); - } - else if (j.m_value.number_integer <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x18)); - write_number(static_cast(j.m_value.number_integer)); - } - else if (j.m_value.number_integer <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x19)); - write_number(static_cast(j.m_value.number_integer)); - } - else if (j.m_value.number_integer <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x1A)); - write_number(static_cast(j.m_value.number_integer)); - } - else - { - oa->write_character(to_char_type(0x1B)); - write_number(static_cast(j.m_value.number_integer)); - } - } - else - { - // The conversions below encode the sign in the first - // byte, and the value is converted to a positive number. - const auto positive_number = -1 - j.m_value.number_integer; - if (j.m_value.number_integer >= -24) - { - write_number(static_cast(0x20 + positive_number)); - } - else if (positive_number <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x38)); - write_number(static_cast(positive_number)); - } - else if (positive_number <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x39)); - write_number(static_cast(positive_number)); - } - else if (positive_number <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x3A)); - write_number(static_cast(positive_number)); - } - else - { - oa->write_character(to_char_type(0x3B)); - write_number(static_cast(positive_number)); - } - } - break; - } - - case value_t::number_unsigned: - { - if (j.m_value.number_unsigned <= 0x17) - { - write_number(static_cast(j.m_value.number_unsigned)); - } - else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x18)); - write_number(static_cast(j.m_value.number_unsigned)); - } - else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x19)); - write_number(static_cast(j.m_value.number_unsigned)); - } - else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x1A)); - write_number(static_cast(j.m_value.number_unsigned)); - } - else - { - oa->write_character(to_char_type(0x1B)); - write_number(static_cast(j.m_value.number_unsigned)); - } - break; - } - - case value_t::number_float: - { - if (std::isnan(j.m_value.number_float)) - { - // NaN is 0xf97e00 in CBOR - oa->write_character(to_char_type(0xF9)); - oa->write_character(to_char_type(0x7E)); - oa->write_character(to_char_type(0x00)); - } - else if (std::isinf(j.m_value.number_float)) - { - // Infinity is 0xf97c00, -Infinity is 0xf9fc00 - oa->write_character(to_char_type(0xf9)); - oa->write_character(j.m_value.number_float > 0 ? to_char_type(0x7C) : to_char_type(0xFC)); - oa->write_character(to_char_type(0x00)); - } - else - { - write_compact_float(j.m_value.number_float, detail::input_format_t::cbor); - } - break; - } - - case value_t::string: - { - // step 1: write control byte and the string length - const auto N = j.m_value.string->size(); - if (N <= 0x17) - { - write_number(static_cast(0x60 + N)); - } - else if (N <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x78)); - write_number(static_cast(N)); - } - else if (N <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x79)); - write_number(static_cast(N)); - } - else if (N <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x7A)); - write_number(static_cast(N)); - } - // LCOV_EXCL_START - else if (N <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x7B)); - write_number(static_cast(N)); - } - // LCOV_EXCL_STOP - - // step 2: write the string - oa->write_characters( - reinterpret_cast(j.m_value.string->c_str()), - j.m_value.string->size()); - break; - } - - case value_t::array: - { - // step 1: write control byte and the array size - const auto N = j.m_value.array->size(); - if (N <= 0x17) - { - write_number(static_cast(0x80 + N)); - } - else if (N <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x98)); - write_number(static_cast(N)); - } - else if (N <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x99)); - write_number(static_cast(N)); - } - else if (N <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x9A)); - write_number(static_cast(N)); - } - // LCOV_EXCL_START - else if (N <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x9B)); - write_number(static_cast(N)); - } - // LCOV_EXCL_STOP - - // step 2: write each element - for (const auto& el : *j.m_value.array) - { - write_cbor(el); - } - break; - } - - case value_t::binary: - { - if (j.m_value.binary->has_subtype()) - { - write_number(static_cast(0xd8)); - write_number(j.m_value.binary->subtype()); - } - - // step 1: write control byte and the binary array size - const auto N = j.m_value.binary->size(); - if (N <= 0x17) - { - write_number(static_cast(0x40 + N)); - } - else if (N <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x58)); - write_number(static_cast(N)); - } - else if (N <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x59)); - write_number(static_cast(N)); - } - else if (N <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x5A)); - write_number(static_cast(N)); - } - // LCOV_EXCL_START - else if (N <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0x5B)); - write_number(static_cast(N)); - } - // LCOV_EXCL_STOP - - // step 2: write each element - oa->write_characters( - reinterpret_cast(j.m_value.binary->data()), - N); - - break; - } - - case value_t::object: - { - // step 1: write control byte and the object size - const auto N = j.m_value.object->size(); - if (N <= 0x17) - { - write_number(static_cast(0xA0 + N)); - } - else if (N <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0xB8)); - write_number(static_cast(N)); - } - else if (N <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0xB9)); - write_number(static_cast(N)); - } - else if (N <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0xBA)); - write_number(static_cast(N)); - } - // LCOV_EXCL_START - else if (N <= (std::numeric_limits::max)()) - { - oa->write_character(to_char_type(0xBB)); - write_number(static_cast(N)); - } - // LCOV_EXCL_STOP - - // step 2: write each element - for (const auto& el : *j.m_value.object) - { - write_cbor(el.first); - write_cbor(el.second); - } - break; - } - - default: - break; - } - } - - /*! - @param[in] j JSON value to serialize - */ - void write_msgpack(const BasicJsonType& j) - { - switch (j.type()) - { - case value_t::null: // nil - { - oa->write_character(to_char_type(0xC0)); - break; - } - - case value_t::boolean: // true and false - { - oa->write_character(j.m_value.boolean - ? to_char_type(0xC3) - : to_char_type(0xC2)); - break; - } - - case value_t::number_integer: - { - if (j.m_value.number_integer >= 0) - { - // MessagePack does not differentiate between positive - // signed integers and unsigned integers. Therefore, we used - // the code from the value_t::number_unsigned case here. - if (j.m_value.number_unsigned < 128) - { - // positive fixnum - write_number(static_cast(j.m_value.number_integer)); - } - else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) - { - // uint 8 - oa->write_character(to_char_type(0xCC)); - write_number(static_cast(j.m_value.number_integer)); - } - else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) - { - // uint 16 - oa->write_character(to_char_type(0xCD)); - write_number(static_cast(j.m_value.number_integer)); - } - else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) - { - // uint 32 - oa->write_character(to_char_type(0xCE)); - write_number(static_cast(j.m_value.number_integer)); - } - else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) - { - // uint 64 - oa->write_character(to_char_type(0xCF)); - write_number(static_cast(j.m_value.number_integer)); - } - } - else - { - if (j.m_value.number_integer >= -32) - { - // negative fixnum - write_number(static_cast(j.m_value.number_integer)); - } - else if (j.m_value.number_integer >= (std::numeric_limits::min)() && - j.m_value.number_integer <= (std::numeric_limits::max)()) - { - // int 8 - oa->write_character(to_char_type(0xD0)); - write_number(static_cast(j.m_value.number_integer)); - } - else if (j.m_value.number_integer >= (std::numeric_limits::min)() && - j.m_value.number_integer <= (std::numeric_limits::max)()) - { - // int 16 - oa->write_character(to_char_type(0xD1)); - write_number(static_cast(j.m_value.number_integer)); - } - else if (j.m_value.number_integer >= (std::numeric_limits::min)() && - j.m_value.number_integer <= (std::numeric_limits::max)()) - { - // int 32 - oa->write_character(to_char_type(0xD2)); - write_number(static_cast(j.m_value.number_integer)); - } - else if (j.m_value.number_integer >= (std::numeric_limits::min)() && - j.m_value.number_integer <= (std::numeric_limits::max)()) - { - // int 64 - oa->write_character(to_char_type(0xD3)); - write_number(static_cast(j.m_value.number_integer)); - } - } - break; - } - - case value_t::number_unsigned: - { - if (j.m_value.number_unsigned < 128) - { - // positive fixnum - write_number(static_cast(j.m_value.number_integer)); - } - else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) - { - // uint 8 - oa->write_character(to_char_type(0xCC)); - write_number(static_cast(j.m_value.number_integer)); - } - else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) - { - // uint 16 - oa->write_character(to_char_type(0xCD)); - write_number(static_cast(j.m_value.number_integer)); - } - else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) - { - // uint 32 - oa->write_character(to_char_type(0xCE)); - write_number(static_cast(j.m_value.number_integer)); - } - else if (j.m_value.number_unsigned <= (std::numeric_limits::max)()) - { - // uint 64 - oa->write_character(to_char_type(0xCF)); - write_number(static_cast(j.m_value.number_integer)); - } - break; - } - - case value_t::number_float: - { - write_compact_float(j.m_value.number_float, detail::input_format_t::msgpack); - break; - } - - case value_t::string: - { - // step 1: write control byte and the string length - const auto N = j.m_value.string->size(); - if (N <= 31) - { - // fixstr - write_number(static_cast(0xA0 | N)); - } - else if (N <= (std::numeric_limits::max)()) - { - // str 8 - oa->write_character(to_char_type(0xD9)); - write_number(static_cast(N)); - } - else if (N <= (std::numeric_limits::max)()) - { - // str 16 - oa->write_character(to_char_type(0xDA)); - write_number(static_cast(N)); - } - else if (N <= (std::numeric_limits::max)()) - { - // str 32 - oa->write_character(to_char_type(0xDB)); - write_number(static_cast(N)); - } - - // step 2: write the string - oa->write_characters( - reinterpret_cast(j.m_value.string->c_str()), - j.m_value.string->size()); - break; - } - - case value_t::array: - { - // step 1: write control byte and the array size - const auto N = j.m_value.array->size(); - if (N <= 15) - { - // fixarray - write_number(static_cast(0x90 | N)); - } - else if (N <= (std::numeric_limits::max)()) - { - // array 16 - oa->write_character(to_char_type(0xDC)); - write_number(static_cast(N)); - } - else if (N <= (std::numeric_limits::max)()) - { - // array 32 - oa->write_character(to_char_type(0xDD)); - write_number(static_cast(N)); - } - - // step 2: write each element - for (const auto& el : *j.m_value.array) - { - write_msgpack(el); - } - break; - } - - case value_t::binary: - { - // step 0: determine if the binary type has a set subtype to - // determine whether or not to use the ext or fixext types - const bool use_ext = j.m_value.binary->has_subtype(); - - // step 1: write control byte and the byte string length - const auto N = j.m_value.binary->size(); - if (N <= (std::numeric_limits::max)()) - { - std::uint8_t output_type{}; - bool fixed = true; - if (use_ext) - { - switch (N) - { - case 1: - output_type = 0xD4; // fixext 1 - break; - case 2: - output_type = 0xD5; // fixext 2 - break; - case 4: - output_type = 0xD6; // fixext 4 - break; - case 8: - output_type = 0xD7; // fixext 8 - break; - case 16: - output_type = 0xD8; // fixext 16 - break; - default: - output_type = 0xC7; // ext 8 - fixed = false; - break; - } - - } - else - { - output_type = 0xC4; // bin 8 - fixed = false; - } - - oa->write_character(to_char_type(output_type)); - if (!fixed) - { - write_number(static_cast(N)); - } - } - else if (N <= (std::numeric_limits::max)()) - { - std::uint8_t output_type = use_ext - ? 0xC8 // ext 16 - : 0xC5; // bin 16 - - oa->write_character(to_char_type(output_type)); - write_number(static_cast(N)); - } - else if (N <= (std::numeric_limits::max)()) - { - std::uint8_t output_type = use_ext - ? 0xC9 // ext 32 - : 0xC6; // bin 32 - - oa->write_character(to_char_type(output_type)); - write_number(static_cast(N)); - } - - // step 1.5: if this is an ext type, write the subtype - if (use_ext) - { - write_number(static_cast(j.m_value.binary->subtype())); - } - - // step 2: write the byte string - oa->write_characters( - reinterpret_cast(j.m_value.binary->data()), - N); - - break; - } - - case value_t::object: - { - // step 1: write control byte and the object size - const auto N = j.m_value.object->size(); - if (N <= 15) - { - // fixmap - write_number(static_cast(0x80 | (N & 0xF))); - } - else if (N <= (std::numeric_limits::max)()) - { - // map 16 - oa->write_character(to_char_type(0xDE)); - write_number(static_cast(N)); - } - else if (N <= (std::numeric_limits::max)()) - { - // map 32 - oa->write_character(to_char_type(0xDF)); - write_number(static_cast(N)); - } - - // step 2: write each element - for (const auto& el : *j.m_value.object) - { - write_msgpack(el.first); - write_msgpack(el.second); - } - break; - } - - default: - break; - } - } - - /*! - @param[in] j JSON value to serialize - @param[in] use_count whether to use '#' prefixes (optimized format) - @param[in] use_type whether to use '$' prefixes (optimized format) - @param[in] add_prefix whether prefixes need to be used for this value - */ - void write_ubjson(const BasicJsonType& j, const bool use_count, - const bool use_type, const bool add_prefix = true) - { - switch (j.type()) - { - case value_t::null: - { - if (add_prefix) - { - oa->write_character(to_char_type('Z')); - } - break; - } - - case value_t::boolean: - { - if (add_prefix) - { - oa->write_character(j.m_value.boolean - ? to_char_type('T') - : to_char_type('F')); - } - break; - } - - case value_t::number_integer: - { - write_number_with_ubjson_prefix(j.m_value.number_integer, add_prefix); - break; - } - - case value_t::number_unsigned: - { - write_number_with_ubjson_prefix(j.m_value.number_unsigned, add_prefix); - break; - } - - case value_t::number_float: - { - write_number_with_ubjson_prefix(j.m_value.number_float, add_prefix); - break; - } - - case value_t::string: - { - if (add_prefix) - { - oa->write_character(to_char_type('S')); - } - write_number_with_ubjson_prefix(j.m_value.string->size(), true); - oa->write_characters( - reinterpret_cast(j.m_value.string->c_str()), - j.m_value.string->size()); - break; - } - - case value_t::array: - { - if (add_prefix) - { - oa->write_character(to_char_type('[')); - } - - bool prefix_required = true; - if (use_type && !j.m_value.array->empty()) - { - JSON_ASSERT(use_count); - const CharType first_prefix = ubjson_prefix(j.front()); - const bool same_prefix = std::all_of(j.begin() + 1, j.end(), - [this, first_prefix](const BasicJsonType & v) - { - return ubjson_prefix(v) == first_prefix; - }); - - if (same_prefix) - { - prefix_required = false; - oa->write_character(to_char_type('$')); - oa->write_character(first_prefix); - } - } - - if (use_count) - { - oa->write_character(to_char_type('#')); - write_number_with_ubjson_prefix(j.m_value.array->size(), true); - } - - for (const auto& el : *j.m_value.array) - { - write_ubjson(el, use_count, use_type, prefix_required); - } - - if (!use_count) - { - oa->write_character(to_char_type(']')); - } - - break; - } - - case value_t::binary: - { - if (add_prefix) - { - oa->write_character(to_char_type('[')); - } - - if (use_type && !j.m_value.binary->empty()) - { - JSON_ASSERT(use_count); - oa->write_character(to_char_type('$')); - oa->write_character('U'); - } - - if (use_count) - { - oa->write_character(to_char_type('#')); - write_number_with_ubjson_prefix(j.m_value.binary->size(), true); - } - - if (use_type) - { - oa->write_characters( - reinterpret_cast(j.m_value.binary->data()), - j.m_value.binary->size()); - } - else - { - for (size_t i = 0; i < j.m_value.binary->size(); ++i) - { - oa->write_character(to_char_type('U')); - oa->write_character(j.m_value.binary->data()[i]); - } - } - - if (!use_count) - { - oa->write_character(to_char_type(']')); - } - - break; - } - - case value_t::object: - { - if (add_prefix) - { - oa->write_character(to_char_type('{')); - } - - bool prefix_required = true; - if (use_type && !j.m_value.object->empty()) - { - JSON_ASSERT(use_count); - const CharType first_prefix = ubjson_prefix(j.front()); - const bool same_prefix = std::all_of(j.begin(), j.end(), - [this, first_prefix](const BasicJsonType & v) - { - return ubjson_prefix(v) == first_prefix; - }); - - if (same_prefix) - { - prefix_required = false; - oa->write_character(to_char_type('$')); - oa->write_character(first_prefix); - } - } - - if (use_count) - { - oa->write_character(to_char_type('#')); - write_number_with_ubjson_prefix(j.m_value.object->size(), true); - } - - for (const auto& el : *j.m_value.object) - { - write_number_with_ubjson_prefix(el.first.size(), true); - oa->write_characters( - reinterpret_cast(el.first.c_str()), - el.first.size()); - write_ubjson(el.second, use_count, use_type, prefix_required); - } - - if (!use_count) - { - oa->write_character(to_char_type('}')); - } - - break; - } - - default: - break; - } - } - - private: - ////////// - // BSON // - ////////// - - /*! - @return The size of a BSON document entry header, including the id marker - and the entry name size (and its null-terminator). - */ - static std::size_t calc_bson_entry_header_size(const string_t& name) - { - const auto it = name.find(static_cast(0)); - if (JSON_HEDLEY_UNLIKELY(it != BasicJsonType::string_t::npos)) - { - JSON_THROW(out_of_range::create(409, - "BSON key cannot contain code point U+0000 (at byte " + std::to_string(it) + ")")); - } - - return /*id*/ 1ul + name.size() + /*zero-terminator*/1u; - } - - /*! - @brief Writes the given @a element_type and @a name to the output adapter - */ - void write_bson_entry_header(const string_t& name, - const std::uint8_t element_type) - { - oa->write_character(to_char_type(element_type)); // boolean - oa->write_characters( - reinterpret_cast(name.c_str()), - name.size() + 1u); - } - - /*! - @brief Writes a BSON element with key @a name and boolean value @a value - */ - void write_bson_boolean(const string_t& name, - const bool value) - { - write_bson_entry_header(name, 0x08); - oa->write_character(value ? to_char_type(0x01) : to_char_type(0x00)); - } - - /*! - @brief Writes a BSON element with key @a name and double value @a value - */ - void write_bson_double(const string_t& name, - const double value) - { - write_bson_entry_header(name, 0x01); - write_number(value); - } - - /*! - @return The size of the BSON-encoded string in @a value - */ - static std::size_t calc_bson_string_size(const string_t& value) - { - return sizeof(std::int32_t) + value.size() + 1ul; - } - - /*! - @brief Writes a BSON element with key @a name and string value @a value - */ - void write_bson_string(const string_t& name, - const string_t& value) - { - write_bson_entry_header(name, 0x02); - - write_number(static_cast(value.size() + 1ul)); - oa->write_characters( - reinterpret_cast(value.c_str()), - value.size() + 1); - } - - /*! - @brief Writes a BSON element with key @a name and null value - */ - void write_bson_null(const string_t& name) - { - write_bson_entry_header(name, 0x0A); - } - - /*! - @return The size of the BSON-encoded integer @a value - */ - static std::size_t calc_bson_integer_size(const std::int64_t value) - { - return (std::numeric_limits::min)() <= value && value <= (std::numeric_limits::max)() - ? sizeof(std::int32_t) - : sizeof(std::int64_t); - } - - /*! - @brief Writes a BSON element with key @a name and integer @a value - */ - void write_bson_integer(const string_t& name, - const std::int64_t value) - { - if ((std::numeric_limits::min)() <= value && value <= (std::numeric_limits::max)()) - { - write_bson_entry_header(name, 0x10); // int32 - write_number(static_cast(value)); - } - else - { - write_bson_entry_header(name, 0x12); // int64 - write_number(static_cast(value)); - } - } - - /*! - @return The size of the BSON-encoded unsigned integer in @a j - */ - static constexpr std::size_t calc_bson_unsigned_size(const std::uint64_t value) noexcept - { - return (value <= static_cast((std::numeric_limits::max)())) - ? sizeof(std::int32_t) - : sizeof(std::int64_t); - } - - /*! - @brief Writes a BSON element with key @a name and unsigned @a value - */ - void write_bson_unsigned(const string_t& name, - const std::uint64_t value) - { - if (value <= static_cast((std::numeric_limits::max)())) - { - write_bson_entry_header(name, 0x10 /* int32 */); - write_number(static_cast(value)); - } - else if (value <= static_cast((std::numeric_limits::max)())) - { - write_bson_entry_header(name, 0x12 /* int64 */); - write_number(static_cast(value)); - } - else - { - JSON_THROW(out_of_range::create(407, "integer number " + std::to_string(value) + " cannot be represented by BSON as it does not fit int64")); - } - } - - /*! - @brief Writes a BSON element with key @a name and object @a value - */ - void write_bson_object_entry(const string_t& name, - const typename BasicJsonType::object_t& value) - { - write_bson_entry_header(name, 0x03); // object - write_bson_object(value); - } - - /*! - @return The size of the BSON-encoded array @a value - */ - static std::size_t calc_bson_array_size(const typename BasicJsonType::array_t& value) - { - std::size_t array_index = 0ul; - - const std::size_t embedded_document_size = std::accumulate(std::begin(value), std::end(value), std::size_t(0), [&array_index](std::size_t result, const typename BasicJsonType::array_t::value_type & el) - { - return result + calc_bson_element_size(std::to_string(array_index++), el); - }); - - return sizeof(std::int32_t) + embedded_document_size + 1ul; - } - - /*! - @return The size of the BSON-encoded binary array @a value - */ - static std::size_t calc_bson_binary_size(const typename BasicJsonType::binary_t& value) - { - return sizeof(std::int32_t) + value.size() + 1ul; - } - - /*! - @brief Writes a BSON element with key @a name and array @a value - */ - void write_bson_array(const string_t& name, - const typename BasicJsonType::array_t& value) - { - write_bson_entry_header(name, 0x04); // array - write_number(static_cast(calc_bson_array_size(value))); - - std::size_t array_index = 0ul; - - for (const auto& el : value) - { - write_bson_element(std::to_string(array_index++), el); - } - - oa->write_character(to_char_type(0x00)); - } - - /*! - @brief Writes a BSON element with key @a name and binary value @a value - */ - void write_bson_binary(const string_t& name, - const binary_t& value) - { - write_bson_entry_header(name, 0x05); - - write_number(static_cast(value.size())); - write_number(value.has_subtype() ? value.subtype() : std::uint8_t(0x00)); - - oa->write_characters(reinterpret_cast(value.data()), value.size()); - } - - /*! - @brief Calculates the size necessary to serialize the JSON value @a j with its @a name - @return The calculated size for the BSON document entry for @a j with the given @a name. - */ - static std::size_t calc_bson_element_size(const string_t& name, - const BasicJsonType& j) - { - const auto header_size = calc_bson_entry_header_size(name); - switch (j.type()) - { - case value_t::object: - return header_size + calc_bson_object_size(*j.m_value.object); - - case value_t::array: - return header_size + calc_bson_array_size(*j.m_value.array); - - case value_t::binary: - return header_size + calc_bson_binary_size(*j.m_value.binary); - - case value_t::boolean: - return header_size + 1ul; - - case value_t::number_float: - return header_size + 8ul; - - case value_t::number_integer: - return header_size + calc_bson_integer_size(j.m_value.number_integer); - - case value_t::number_unsigned: - return header_size + calc_bson_unsigned_size(j.m_value.number_unsigned); - - case value_t::string: - return header_size + calc_bson_string_size(*j.m_value.string); - - case value_t::null: - return header_size + 0ul; - - // LCOV_EXCL_START - default: - JSON_ASSERT(false); - return 0ul; - // LCOV_EXCL_STOP - } - } - - /*! - @brief Serializes the JSON value @a j to BSON and associates it with the - key @a name. - @param name The name to associate with the JSON entity @a j within the - current BSON document - @return The size of the BSON entry - */ - void write_bson_element(const string_t& name, - const BasicJsonType& j) - { - switch (j.type()) - { - case value_t::object: - return write_bson_object_entry(name, *j.m_value.object); - - case value_t::array: - return write_bson_array(name, *j.m_value.array); - - case value_t::binary: - return write_bson_binary(name, *j.m_value.binary); - - case value_t::boolean: - return write_bson_boolean(name, j.m_value.boolean); - - case value_t::number_float: - return write_bson_double(name, j.m_value.number_float); - - case value_t::number_integer: - return write_bson_integer(name, j.m_value.number_integer); - - case value_t::number_unsigned: - return write_bson_unsigned(name, j.m_value.number_unsigned); - - case value_t::string: - return write_bson_string(name, *j.m_value.string); - - case value_t::null: - return write_bson_null(name); - - // LCOV_EXCL_START - default: - JSON_ASSERT(false); - return; - // LCOV_EXCL_STOP - } - } - - /*! - @brief Calculates the size of the BSON serialization of the given - JSON-object @a j. - @param[in] j JSON value to serialize - @pre j.type() == value_t::object - */ - static std::size_t calc_bson_object_size(const typename BasicJsonType::object_t& value) - { - std::size_t document_size = std::accumulate(value.begin(), value.end(), std::size_t(0), - [](size_t result, const typename BasicJsonType::object_t::value_type & el) - { - return result += calc_bson_element_size(el.first, el.second); - }); - - return sizeof(std::int32_t) + document_size + 1ul; - } - - /*! - @param[in] j JSON value to serialize - @pre j.type() == value_t::object - */ - void write_bson_object(const typename BasicJsonType::object_t& value) - { - write_number(static_cast(calc_bson_object_size(value))); - - for (const auto& el : value) - { - write_bson_element(el.first, el.second); - } - - oa->write_character(to_char_type(0x00)); - } - - ////////// - // CBOR // - ////////// - - static constexpr CharType get_cbor_float_prefix(float /*unused*/) - { - return to_char_type(0xFA); // Single-Precision Float - } - - static constexpr CharType get_cbor_float_prefix(double /*unused*/) - { - return to_char_type(0xFB); // Double-Precision Float - } - - ///////////// - // MsgPack // - ///////////// - - static constexpr CharType get_msgpack_float_prefix(float /*unused*/) - { - return to_char_type(0xCA); // float 32 - } - - static constexpr CharType get_msgpack_float_prefix(double /*unused*/) - { - return to_char_type(0xCB); // float 64 - } - - //////////// - // UBJSON // - //////////// - - // UBJSON: write number (floating point) - template::value, int>::type = 0> - void write_number_with_ubjson_prefix(const NumberType n, - const bool add_prefix) - { - if (add_prefix) - { - oa->write_character(get_ubjson_float_prefix(n)); - } - write_number(n); - } - - // UBJSON: write number (unsigned integer) - template::value, int>::type = 0> - void write_number_with_ubjson_prefix(const NumberType n, - const bool add_prefix) - { - if (n <= static_cast((std::numeric_limits::max)())) - { - if (add_prefix) - { - oa->write_character(to_char_type('i')); // int8 - } - write_number(static_cast(n)); - } - else if (n <= (std::numeric_limits::max)()) - { - if (add_prefix) - { - oa->write_character(to_char_type('U')); // uint8 - } - write_number(static_cast(n)); - } - else if (n <= static_cast((std::numeric_limits::max)())) - { - if (add_prefix) - { - oa->write_character(to_char_type('I')); // int16 - } - write_number(static_cast(n)); - } - else if (n <= static_cast((std::numeric_limits::max)())) - { - if (add_prefix) - { - oa->write_character(to_char_type('l')); // int32 - } - write_number(static_cast(n)); - } - else if (n <= static_cast((std::numeric_limits::max)())) - { - if (add_prefix) - { - oa->write_character(to_char_type('L')); // int64 - } - write_number(static_cast(n)); - } - else - { - if (add_prefix) - { - oa->write_character(to_char_type('H')); // high-precision number - } - - const auto number = BasicJsonType(n).dump(); - write_number_with_ubjson_prefix(number.size(), true); - for (std::size_t i = 0; i < number.size(); ++i) - { - oa->write_character(to_char_type(static_cast(number[i]))); - } - } - } - - // UBJSON: write number (signed integer) - template < typename NumberType, typename std::enable_if < - std::is_signed::value&& - !std::is_floating_point::value, int >::type = 0 > - void write_number_with_ubjson_prefix(const NumberType n, - const bool add_prefix) - { - if ((std::numeric_limits::min)() <= n && n <= (std::numeric_limits::max)()) - { - if (add_prefix) - { - oa->write_character(to_char_type('i')); // int8 - } - write_number(static_cast(n)); - } - else if (static_cast((std::numeric_limits::min)()) <= n && n <= static_cast((std::numeric_limits::max)())) - { - if (add_prefix) - { - oa->write_character(to_char_type('U')); // uint8 - } - write_number(static_cast(n)); - } - else if ((std::numeric_limits::min)() <= n && n <= (std::numeric_limits::max)()) - { - if (add_prefix) - { - oa->write_character(to_char_type('I')); // int16 - } - write_number(static_cast(n)); - } - else if ((std::numeric_limits::min)() <= n && n <= (std::numeric_limits::max)()) - { - if (add_prefix) - { - oa->write_character(to_char_type('l')); // int32 - } - write_number(static_cast(n)); - } - else if ((std::numeric_limits::min)() <= n && n <= (std::numeric_limits::max)()) - { - if (add_prefix) - { - oa->write_character(to_char_type('L')); // int64 - } - write_number(static_cast(n)); - } - // LCOV_EXCL_START - else - { - if (add_prefix) - { - oa->write_character(to_char_type('H')); // high-precision number - } - - const auto number = BasicJsonType(n).dump(); - write_number_with_ubjson_prefix(number.size(), true); - for (std::size_t i = 0; i < number.size(); ++i) - { - oa->write_character(to_char_type(static_cast(number[i]))); - } - } - // LCOV_EXCL_STOP - } - - /*! - @brief determine the type prefix of container values - */ - CharType ubjson_prefix(const BasicJsonType& j) const noexcept - { - switch (j.type()) - { - case value_t::null: - return 'Z'; - - case value_t::boolean: - return j.m_value.boolean ? 'T' : 'F'; - - case value_t::number_integer: - { - if ((std::numeric_limits::min)() <= j.m_value.number_integer && j.m_value.number_integer <= (std::numeric_limits::max)()) - { - return 'i'; - } - if ((std::numeric_limits::min)() <= j.m_value.number_integer && j.m_value.number_integer <= (std::numeric_limits::max)()) - { - return 'U'; - } - if ((std::numeric_limits::min)() <= j.m_value.number_integer && j.m_value.number_integer <= (std::numeric_limits::max)()) - { - return 'I'; - } - if ((std::numeric_limits::min)() <= j.m_value.number_integer && j.m_value.number_integer <= (std::numeric_limits::max)()) - { - return 'l'; - } - if ((std::numeric_limits::min)() <= j.m_value.number_integer && j.m_value.number_integer <= (std::numeric_limits::max)()) - { - return 'L'; - } - // anything else is treated as high-precision number - return 'H'; // LCOV_EXCL_LINE - } - - case value_t::number_unsigned: - { - if (j.m_value.number_unsigned <= static_cast((std::numeric_limits::max)())) - { - return 'i'; - } - if (j.m_value.number_unsigned <= static_cast((std::numeric_limits::max)())) - { - return 'U'; - } - if (j.m_value.number_unsigned <= static_cast((std::numeric_limits::max)())) - { - return 'I'; - } - if (j.m_value.number_unsigned <= static_cast((std::numeric_limits::max)())) - { - return 'l'; - } - if (j.m_value.number_unsigned <= static_cast((std::numeric_limits::max)())) - { - return 'L'; - } - // anything else is treated as high-precision number - return 'H'; // LCOV_EXCL_LINE - } - - case value_t::number_float: - return get_ubjson_float_prefix(j.m_value.number_float); - - case value_t::string: - return 'S'; - - case value_t::array: // fallthrough - case value_t::binary: - return '['; - - case value_t::object: - return '{'; - - default: // discarded values - return 'N'; - } - } - - static constexpr CharType get_ubjson_float_prefix(float /*unused*/) - { - return 'd'; // float 32 - } - - static constexpr CharType get_ubjson_float_prefix(double /*unused*/) - { - return 'D'; // float 64 - } - - /////////////////////// - // Utility functions // - /////////////////////// - - /* - @brief write a number to output input - @param[in] n number of type @a NumberType - @tparam NumberType the type of the number - @tparam OutputIsLittleEndian Set to true if output data is - required to be little endian - - @note This function needs to respect the system's endianess, because bytes - in CBOR, MessagePack, and UBJSON are stored in network order (big - endian) and therefore need reordering on little endian systems. - */ - template - void write_number(const NumberType n) - { - // step 1: write number to array of length NumberType - std::array vec; - std::memcpy(vec.data(), &n, sizeof(NumberType)); - - // step 2: write array to output (with possible reordering) - if (is_little_endian != OutputIsLittleEndian) - { - // reverse byte order prior to conversion if necessary - std::reverse(vec.begin(), vec.end()); - } - - oa->write_characters(vec.data(), sizeof(NumberType)); - } - - void write_compact_float(const number_float_t n, detail::input_format_t format) - { - if (static_cast(n) >= static_cast(std::numeric_limits::lowest()) && - static_cast(n) <= static_cast((std::numeric_limits::max)()) && - static_cast(static_cast(n)) == static_cast(n)) - { - oa->write_character(format == detail::input_format_t::cbor - ? get_cbor_float_prefix(static_cast(n)) - : get_msgpack_float_prefix(static_cast(n))); - write_number(static_cast(n)); - } - else - { - oa->write_character(format == detail::input_format_t::cbor - ? get_cbor_float_prefix(n) - : get_msgpack_float_prefix(n)); - write_number(n); - } - } - - public: - // The following to_char_type functions are implement the conversion - // between uint8_t and CharType. In case CharType is not unsigned, - // such a conversion is required to allow values greater than 128. - // See for a discussion. - template < typename C = CharType, - enable_if_t < std::is_signed::value && std::is_signed::value > * = nullptr > - static constexpr CharType to_char_type(std::uint8_t x) noexcept - { - return *reinterpret_cast(&x); - } - - template < typename C = CharType, - enable_if_t < std::is_signed::value && std::is_unsigned::value > * = nullptr > - static CharType to_char_type(std::uint8_t x) noexcept - { - static_assert(sizeof(std::uint8_t) == sizeof(CharType), "size of CharType must be equal to std::uint8_t"); - static_assert(std::is_trivial::value, "CharType must be trivial"); - CharType result; - std::memcpy(&result, &x, sizeof(x)); - return result; - } - - template::value>* = nullptr> - static constexpr CharType to_char_type(std::uint8_t x) noexcept - { - return x; - } - - template < typename InputCharType, typename C = CharType, - enable_if_t < - std::is_signed::value && - std::is_signed::value && - std::is_same::type>::value - > * = nullptr > - static constexpr CharType to_char_type(InputCharType x) noexcept - { - return x; - } - - private: - /// whether we can assume little endianess - const bool is_little_endian = little_endianess(); - - /// the output - output_adapter_t oa = nullptr; -}; -} // namespace detail -} // namespace nlohmann diff --git a/nlohmann/detail/output/output_adapters.hpp b/nlohmann/detail/output/output_adapters.hpp deleted file mode 100644 index 71ca65b..0000000 --- a/nlohmann/detail/output/output_adapters.hpp +++ /dev/null @@ -1,123 +0,0 @@ -#pragma once - -#include // copy -#include // size_t -#include // streamsize -#include // back_inserter -#include // shared_ptr, make_shared -#include // basic_ostream -#include // basic_string -#include // vector -#include - -namespace nlohmann -{ -namespace detail -{ -/// abstract output adapter interface -template struct output_adapter_protocol -{ - virtual void write_character(CharType c) = 0; - virtual void write_characters(const CharType* s, std::size_t length) = 0; - virtual ~output_adapter_protocol() = default; -}; - -/// a type to simplify interfaces -template -using output_adapter_t = std::shared_ptr>; - -/// output adapter for byte vectors -template -class output_vector_adapter : public output_adapter_protocol -{ - public: - explicit output_vector_adapter(std::vector& vec) noexcept - : v(vec) - {} - - void write_character(CharType c) override - { - v.push_back(c); - } - - JSON_HEDLEY_NON_NULL(2) - void write_characters(const CharType* s, std::size_t length) override - { - std::copy(s, s + length, std::back_inserter(v)); - } - - private: - std::vector& v; -}; - -/// output adapter for output streams -template -class output_stream_adapter : public output_adapter_protocol -{ - public: - explicit output_stream_adapter(std::basic_ostream& s) noexcept - : stream(s) - {} - - void write_character(CharType c) override - { - stream.put(c); - } - - JSON_HEDLEY_NON_NULL(2) - void write_characters(const CharType* s, std::size_t length) override - { - stream.write(s, static_cast(length)); - } - - private: - std::basic_ostream& stream; -}; - -/// output adapter for basic_string -template> -class output_string_adapter : public output_adapter_protocol -{ - public: - explicit output_string_adapter(StringType& s) noexcept - : str(s) - {} - - void write_character(CharType c) override - { - str.push_back(c); - } - - JSON_HEDLEY_NON_NULL(2) - void write_characters(const CharType* s, std::size_t length) override - { - str.append(s, length); - } - - private: - StringType& str; -}; - -template> -class output_adapter -{ - public: - output_adapter(std::vector& vec) - : oa(std::make_shared>(vec)) {} - - output_adapter(std::basic_ostream& s) - : oa(std::make_shared>(s)) {} - - output_adapter(StringType& s) - : oa(std::make_shared>(s)) {} - - operator output_adapter_t() - { - return oa; - } - - private: - output_adapter_t oa = nullptr; -}; -} // namespace detail -} // namespace nlohmann diff --git a/nlohmann/detail/output/serializer.hpp b/nlohmann/detail/output/serializer.hpp deleted file mode 100644 index 865b890..0000000 --- a/nlohmann/detail/output/serializer.hpp +++ /dev/null @@ -1,947 +0,0 @@ -#pragma once - -#include // reverse, remove, fill, find, none_of -#include // array -#include // localeconv, lconv -#include // labs, isfinite, isnan, signbit -#include // size_t, ptrdiff_t -#include // uint8_t -#include // snprintf -#include // numeric_limits -#include // string, char_traits -#include // is_same -#include // move - -#include -#include -#include -#include -#include -#include -#include - -namespace nlohmann -{ -namespace detail -{ -/////////////////// -// serialization // -/////////////////// - -/// how to treat decoding errors -enum class error_handler_t -{ - strict, ///< throw a type_error exception in case of invalid UTF-8 - replace, ///< replace invalid UTF-8 sequences with U+FFFD - ignore ///< ignore invalid UTF-8 sequences -}; - -template -class serializer -{ - using string_t = typename BasicJsonType::string_t; - 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 binary_char_t = typename BasicJsonType::binary_t::value_type; - static constexpr std::uint8_t UTF8_ACCEPT = 0; - static constexpr std::uint8_t UTF8_REJECT = 1; - - public: - /*! - @param[in] s output stream to serialize to - @param[in] ichar indentation character to use - @param[in] error_handler_ how to react on decoding errors - */ - serializer(output_adapter_t s, const char ichar, - error_handler_t error_handler_ = error_handler_t::strict) - : o(std::move(s)) - , loc(std::localeconv()) - , thousands_sep(loc->thousands_sep == nullptr ? '\0' : std::char_traits::to_char_type(* (loc->thousands_sep))) - , decimal_point(loc->decimal_point == nullptr ? '\0' : std::char_traits::to_char_type(* (loc->decimal_point))) - , indent_char(ichar) - , indent_string(512, indent_char) - , error_handler(error_handler_) - {} - - // delete because of pointer members - serializer(const serializer&) = delete; - serializer& operator=(const serializer&) = delete; - serializer(serializer&&) = delete; - serializer& operator=(serializer&&) = delete; - ~serializer() = default; - - /*! - @brief 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 - - @param[in] val value to serialize - @param[in] pretty_print whether the output shall be pretty-printed - @param[in] ensure_ascii If @a ensure_ascii is true, all non-ASCII characters - in the output are escaped with `\uXXXX` sequences, and the result consists - of ASCII characters only. - @param[in] indent_step the indent level - @param[in] current_indent the current indent level (only used internally) - */ - void dump(const BasicJsonType& val, - const bool pretty_print, - const bool ensure_ascii, - const unsigned int indent_step, - const unsigned int current_indent = 0) - { - switch (val.m_type) - { - case value_t::object: - { - if (val.m_value.object->empty()) - { - o->write_characters("{}", 2); - return; - } - - if (pretty_print) - { - o->write_characters("{\n", 2); - - // variable to hold indentation for recursive calls - const auto new_indent = current_indent + indent_step; - if (JSON_HEDLEY_UNLIKELY(indent_string.size() < new_indent)) - { - indent_string.resize(indent_string.size() * 2, ' '); - } - - // first n-1 elements - auto i = val.m_value.object->cbegin(); - for (std::size_t cnt = 0; cnt < val.m_value.object->size() - 1; ++cnt, ++i) - { - o->write_characters(indent_string.c_str(), new_indent); - o->write_character('\"'); - dump_escaped(i->first, ensure_ascii); - o->write_characters("\": ", 3); - dump(i->second, true, ensure_ascii, indent_step, new_indent); - o->write_characters(",\n", 2); - } - - // last element - JSON_ASSERT(i != val.m_value.object->cend()); - JSON_ASSERT(std::next(i) == val.m_value.object->cend()); - o->write_characters(indent_string.c_str(), new_indent); - o->write_character('\"'); - dump_escaped(i->first, ensure_ascii); - o->write_characters("\": ", 3); - dump(i->second, true, ensure_ascii, indent_step, new_indent); - - o->write_character('\n'); - o->write_characters(indent_string.c_str(), current_indent); - o->write_character('}'); - } - else - { - o->write_character('{'); - - // first n-1 elements - auto i = val.m_value.object->cbegin(); - for (std::size_t cnt = 0; cnt < val.m_value.object->size() - 1; ++cnt, ++i) - { - o->write_character('\"'); - dump_escaped(i->first, ensure_ascii); - o->write_characters("\":", 2); - dump(i->second, false, ensure_ascii, indent_step, current_indent); - o->write_character(','); - } - - // last element - JSON_ASSERT(i != val.m_value.object->cend()); - JSON_ASSERT(std::next(i) == val.m_value.object->cend()); - o->write_character('\"'); - dump_escaped(i->first, ensure_ascii); - o->write_characters("\":", 2); - dump(i->second, false, ensure_ascii, indent_step, current_indent); - - o->write_character('}'); - } - - return; - } - - case value_t::array: - { - if (val.m_value.array->empty()) - { - o->write_characters("[]", 2); - return; - } - - if (pretty_print) - { - o->write_characters("[\n", 2); - - // variable to hold indentation for recursive calls - const auto new_indent = current_indent + indent_step; - if (JSON_HEDLEY_UNLIKELY(indent_string.size() < new_indent)) - { - indent_string.resize(indent_string.size() * 2, ' '); - } - - // first n-1 elements - for (auto i = val.m_value.array->cbegin(); - i != val.m_value.array->cend() - 1; ++i) - { - o->write_characters(indent_string.c_str(), new_indent); - dump(*i, true, ensure_ascii, indent_step, new_indent); - o->write_characters(",\n", 2); - } - - // last element - JSON_ASSERT(!val.m_value.array->empty()); - o->write_characters(indent_string.c_str(), new_indent); - dump(val.m_value.array->back(), true, ensure_ascii, indent_step, new_indent); - - o->write_character('\n'); - o->write_characters(indent_string.c_str(), current_indent); - o->write_character(']'); - } - else - { - o->write_character('['); - - // first n-1 elements - for (auto i = val.m_value.array->cbegin(); - i != val.m_value.array->cend() - 1; ++i) - { - dump(*i, false, ensure_ascii, indent_step, current_indent); - o->write_character(','); - } - - // last element - JSON_ASSERT(!val.m_value.array->empty()); - dump(val.m_value.array->back(), false, ensure_ascii, indent_step, current_indent); - - o->write_character(']'); - } - - return; - } - - case value_t::string: - { - o->write_character('\"'); - dump_escaped(*val.m_value.string, ensure_ascii); - o->write_character('\"'); - return; - } - - case value_t::binary: - { - if (pretty_print) - { - o->write_characters("{\n", 2); - - // variable to hold indentation for recursive calls - const auto new_indent = current_indent + indent_step; - if (JSON_HEDLEY_UNLIKELY(indent_string.size() < new_indent)) - { - indent_string.resize(indent_string.size() * 2, ' '); - } - - o->write_characters(indent_string.c_str(), new_indent); - - o->write_characters("\"bytes\": [", 10); - - if (!val.m_value.binary->empty()) - { - for (auto i = val.m_value.binary->cbegin(); - i != val.m_value.binary->cend() - 1; ++i) - { - dump_integer(*i); - o->write_characters(", ", 2); - } - dump_integer(val.m_value.binary->back()); - } - - o->write_characters("],\n", 3); - o->write_characters(indent_string.c_str(), new_indent); - - o->write_characters("\"subtype\": ", 11); - if (val.m_value.binary->has_subtype()) - { - dump_integer(val.m_value.binary->subtype()); - } - else - { - o->write_characters("null", 4); - } - o->write_character('\n'); - o->write_characters(indent_string.c_str(), current_indent); - o->write_character('}'); - } - else - { - o->write_characters("{\"bytes\":[", 10); - - if (!val.m_value.binary->empty()) - { - for (auto i = val.m_value.binary->cbegin(); - i != val.m_value.binary->cend() - 1; ++i) - { - dump_integer(*i); - o->write_character(','); - } - dump_integer(val.m_value.binary->back()); - } - - o->write_characters("],\"subtype\":", 12); - if (val.m_value.binary->has_subtype()) - { - dump_integer(val.m_value.binary->subtype()); - o->write_character('}'); - } - else - { - o->write_characters("null}", 5); - } - } - return; - } - - case value_t::boolean: - { - if (val.m_value.boolean) - { - o->write_characters("true", 4); - } - else - { - o->write_characters("false", 5); - } - return; - } - - case value_t::number_integer: - { - dump_integer(val.m_value.number_integer); - return; - } - - case value_t::number_unsigned: - { - dump_integer(val.m_value.number_unsigned); - return; - } - - case value_t::number_float: - { - dump_float(val.m_value.number_float); - return; - } - - case value_t::discarded: - { - o->write_characters("", 11); - return; - } - - case value_t::null: - { - o->write_characters("null", 4); - return; - } - - default: // LCOV_EXCL_LINE - JSON_ASSERT(false); // LCOV_EXCL_LINE - } - } - - private: - /*! - @brief dump escaped string - - Escape a string by replacing certain special characters by a sequence of an - escape character (backslash) and another character and other control - characters by a sequence of "\u" followed by a four-digit hex - representation. The escaped string is written to output stream @a o. - - @param[in] s the string to escape - @param[in] ensure_ascii whether to escape non-ASCII characters with - \uXXXX sequences - - @complexity Linear in the length of string @a s. - */ - void dump_escaped(const string_t& s, const bool ensure_ascii) - { - std::uint32_t codepoint; - std::uint8_t state = UTF8_ACCEPT; - std::size_t bytes = 0; // number of bytes written to string_buffer - - // number of bytes written at the point of the last valid byte - std::size_t bytes_after_last_accept = 0; - std::size_t undumped_chars = 0; - - for (std::size_t i = 0; i < s.size(); ++i) - { - const auto byte = static_cast(s[i]); - - switch (decode(state, codepoint, byte)) - { - case UTF8_ACCEPT: // decode found a new code point - { - switch (codepoint) - { - case 0x08: // backspace - { - string_buffer[bytes++] = '\\'; - string_buffer[bytes++] = 'b'; - break; - } - - case 0x09: // horizontal tab - { - string_buffer[bytes++] = '\\'; - string_buffer[bytes++] = 't'; - break; - } - - case 0x0A: // newline - { - string_buffer[bytes++] = '\\'; - string_buffer[bytes++] = 'n'; - break; - } - - case 0x0C: // formfeed - { - string_buffer[bytes++] = '\\'; - string_buffer[bytes++] = 'f'; - break; - } - - case 0x0D: // carriage return - { - string_buffer[bytes++] = '\\'; - string_buffer[bytes++] = 'r'; - break; - } - - case 0x22: // quotation mark - { - string_buffer[bytes++] = '\\'; - string_buffer[bytes++] = '\"'; - break; - } - - case 0x5C: // reverse solidus - { - string_buffer[bytes++] = '\\'; - string_buffer[bytes++] = '\\'; - break; - } - - default: - { - // escape control characters (0x00..0x1F) or, if - // ensure_ascii parameter is used, non-ASCII characters - if ((codepoint <= 0x1F) || (ensure_ascii && (codepoint >= 0x7F))) - { - if (codepoint <= 0xFFFF) - { - (std::snprintf)(string_buffer.data() + bytes, 7, "\\u%04x", - static_cast(codepoint)); - bytes += 6; - } - else - { - (std::snprintf)(string_buffer.data() + bytes, 13, "\\u%04x\\u%04x", - static_cast(0xD7C0u + (codepoint >> 10u)), - static_cast(0xDC00u + (codepoint & 0x3FFu))); - bytes += 12; - } - } - else - { - // copy byte to buffer (all previous bytes - // been copied have in default case above) - string_buffer[bytes++] = s[i]; - } - break; - } - } - - // write buffer and reset index; there must be 13 bytes - // left, as this is the maximal number of bytes to be - // written ("\uxxxx\uxxxx\0") for one code point - if (string_buffer.size() - bytes < 13) - { - o->write_characters(string_buffer.data(), bytes); - bytes = 0; - } - - // remember the byte position of this accept - bytes_after_last_accept = bytes; - undumped_chars = 0; - break; - } - - case UTF8_REJECT: // decode found invalid UTF-8 byte - { - switch (error_handler) - { - case error_handler_t::strict: - { - std::string sn(3, '\0'); - (std::snprintf)(&sn[0], sn.size(), "%.2X", byte); - JSON_THROW(type_error::create(316, "invalid UTF-8 byte at index " + std::to_string(i) + ": 0x" + sn)); - } - - case error_handler_t::ignore: - case error_handler_t::replace: - { - // in case we saw this character the first time, we - // would like to read it again, because the byte - // may be OK for itself, but just not OK for the - // previous sequence - if (undumped_chars > 0) - { - --i; - } - - // reset length buffer to the last accepted index; - // thus removing/ignoring the invalid characters - bytes = bytes_after_last_accept; - - if (error_handler == error_handler_t::replace) - { - // add a replacement character - if (ensure_ascii) - { - string_buffer[bytes++] = '\\'; - string_buffer[bytes++] = 'u'; - string_buffer[bytes++] = 'f'; - string_buffer[bytes++] = 'f'; - string_buffer[bytes++] = 'f'; - string_buffer[bytes++] = 'd'; - } - else - { - string_buffer[bytes++] = detail::binary_writer::to_char_type('\xEF'); - string_buffer[bytes++] = detail::binary_writer::to_char_type('\xBF'); - string_buffer[bytes++] = detail::binary_writer::to_char_type('\xBD'); - } - - // write buffer and reset index; there must be 13 bytes - // left, as this is the maximal number of bytes to be - // written ("\uxxxx\uxxxx\0") for one code point - if (string_buffer.size() - bytes < 13) - { - o->write_characters(string_buffer.data(), bytes); - bytes = 0; - } - - bytes_after_last_accept = bytes; - } - - undumped_chars = 0; - - // continue processing the string - state = UTF8_ACCEPT; - break; - } - - default: // LCOV_EXCL_LINE - JSON_ASSERT(false); // LCOV_EXCL_LINE - } - break; - } - - default: // decode found yet incomplete multi-byte code point - { - if (!ensure_ascii) - { - // code point will not be escaped - copy byte to buffer - string_buffer[bytes++] = s[i]; - } - ++undumped_chars; - break; - } - } - } - - // we finished processing the string - if (JSON_HEDLEY_LIKELY(state == UTF8_ACCEPT)) - { - // write buffer - if (bytes > 0) - { - o->write_characters(string_buffer.data(), bytes); - } - } - else - { - // we finish reading, but do not accept: string was incomplete - switch (error_handler) - { - case error_handler_t::strict: - { - std::string sn(3, '\0'); - (std::snprintf)(&sn[0], sn.size(), "%.2X", static_cast(s.back())); - JSON_THROW(type_error::create(316, "incomplete UTF-8 string; last byte: 0x" + sn)); - } - - case error_handler_t::ignore: - { - // write all accepted bytes - o->write_characters(string_buffer.data(), bytes_after_last_accept); - break; - } - - case error_handler_t::replace: - { - // write all accepted bytes - o->write_characters(string_buffer.data(), bytes_after_last_accept); - // add a replacement character - if (ensure_ascii) - { - o->write_characters("\\ufffd", 6); - } - else - { - o->write_characters("\xEF\xBF\xBD", 3); - } - break; - } - - default: // LCOV_EXCL_LINE - JSON_ASSERT(false); // LCOV_EXCL_LINE - } - } - } - - /*! - @brief count digits - - Count the number of decimal (base 10) digits for an input unsigned integer. - - @param[in] x unsigned integer number to count its digits - @return number of decimal digits - */ - inline unsigned int count_digits(number_unsigned_t x) noexcept - { - unsigned int n_digits = 1; - for (;;) - { - if (x < 10) - { - return n_digits; - } - if (x < 100) - { - return n_digits + 1; - } - if (x < 1000) - { - return n_digits + 2; - } - if (x < 10000) - { - return n_digits + 3; - } - x = x / 10000u; - n_digits += 4; - } - } - - /*! - @brief dump an integer - - Dump a given integer to output stream @a o. Works internally with - @a number_buffer. - - @param[in] x integer number (signed or unsigned) to dump - @tparam NumberType either @a number_integer_t or @a number_unsigned_t - */ - template < typename NumberType, detail::enable_if_t < - std::is_same::value || - std::is_same::value || - std::is_same::value, - int > = 0 > - void dump_integer(NumberType x) - { - static constexpr std::array, 100> digits_to_99 - { - { - {{'0', '0'}}, {{'0', '1'}}, {{'0', '2'}}, {{'0', '3'}}, {{'0', '4'}}, {{'0', '5'}}, {{'0', '6'}}, {{'0', '7'}}, {{'0', '8'}}, {{'0', '9'}}, - {{'1', '0'}}, {{'1', '1'}}, {{'1', '2'}}, {{'1', '3'}}, {{'1', '4'}}, {{'1', '5'}}, {{'1', '6'}}, {{'1', '7'}}, {{'1', '8'}}, {{'1', '9'}}, - {{'2', '0'}}, {{'2', '1'}}, {{'2', '2'}}, {{'2', '3'}}, {{'2', '4'}}, {{'2', '5'}}, {{'2', '6'}}, {{'2', '7'}}, {{'2', '8'}}, {{'2', '9'}}, - {{'3', '0'}}, {{'3', '1'}}, {{'3', '2'}}, {{'3', '3'}}, {{'3', '4'}}, {{'3', '5'}}, {{'3', '6'}}, {{'3', '7'}}, {{'3', '8'}}, {{'3', '9'}}, - {{'4', '0'}}, {{'4', '1'}}, {{'4', '2'}}, {{'4', '3'}}, {{'4', '4'}}, {{'4', '5'}}, {{'4', '6'}}, {{'4', '7'}}, {{'4', '8'}}, {{'4', '9'}}, - {{'5', '0'}}, {{'5', '1'}}, {{'5', '2'}}, {{'5', '3'}}, {{'5', '4'}}, {{'5', '5'}}, {{'5', '6'}}, {{'5', '7'}}, {{'5', '8'}}, {{'5', '9'}}, - {{'6', '0'}}, {{'6', '1'}}, {{'6', '2'}}, {{'6', '3'}}, {{'6', '4'}}, {{'6', '5'}}, {{'6', '6'}}, {{'6', '7'}}, {{'6', '8'}}, {{'6', '9'}}, - {{'7', '0'}}, {{'7', '1'}}, {{'7', '2'}}, {{'7', '3'}}, {{'7', '4'}}, {{'7', '5'}}, {{'7', '6'}}, {{'7', '7'}}, {{'7', '8'}}, {{'7', '9'}}, - {{'8', '0'}}, {{'8', '1'}}, {{'8', '2'}}, {{'8', '3'}}, {{'8', '4'}}, {{'8', '5'}}, {{'8', '6'}}, {{'8', '7'}}, {{'8', '8'}}, {{'8', '9'}}, - {{'9', '0'}}, {{'9', '1'}}, {{'9', '2'}}, {{'9', '3'}}, {{'9', '4'}}, {{'9', '5'}}, {{'9', '6'}}, {{'9', '7'}}, {{'9', '8'}}, {{'9', '9'}}, - } - }; - - // special case for "0" - if (x == 0) - { - o->write_character('0'); - return; - } - - // use a pointer to fill the buffer - auto buffer_ptr = number_buffer.begin(); - - const bool is_negative = std::is_same::value && !(x >= 0); // see issue #755 - number_unsigned_t abs_value; - - unsigned int n_chars; - - if (is_negative) - { - *buffer_ptr = '-'; - abs_value = remove_sign(static_cast(x)); - - // account one more byte for the minus sign - n_chars = 1 + count_digits(abs_value); - } - else - { - abs_value = static_cast(x); - n_chars = count_digits(abs_value); - } - - // spare 1 byte for '\0' - JSON_ASSERT(n_chars < number_buffer.size() - 1); - - // jump to the end to generate the string from backward - // so we later avoid reversing the result - buffer_ptr += n_chars; - - // Fast int2ascii implementation inspired by "Fastware" talk by Andrei Alexandrescu - // See: https://www.youtube.com/watch?v=o4-CwDo2zpg - while (abs_value >= 100) - { - const auto digits_index = static_cast((abs_value % 100)); - abs_value /= 100; - *(--buffer_ptr) = digits_to_99[digits_index][1]; - *(--buffer_ptr) = digits_to_99[digits_index][0]; - } - - if (abs_value >= 10) - { - const auto digits_index = static_cast(abs_value); - *(--buffer_ptr) = digits_to_99[digits_index][1]; - *(--buffer_ptr) = digits_to_99[digits_index][0]; - } - else - { - *(--buffer_ptr) = static_cast('0' + abs_value); - } - - o->write_characters(number_buffer.data(), n_chars); - } - - /*! - @brief dump a floating-point number - - Dump a given floating-point number to output stream @a o. Works internally - with @a number_buffer. - - @param[in] x floating-point number to dump - */ - void dump_float(number_float_t x) - { - // NaN / inf - if (!std::isfinite(x)) - { - o->write_characters("null", 4); - return; - } - - // If number_float_t is an IEEE-754 single or double precision number, - // use the Grisu2 algorithm to produce short numbers which are - // guaranteed to round-trip, using strtof and strtod, resp. - // - // NB: The test below works if == . - static constexpr bool is_ieee_single_or_double - = (std::numeric_limits::is_iec559 && std::numeric_limits::digits == 24 && std::numeric_limits::max_exponent == 128) || - (std::numeric_limits::is_iec559 && std::numeric_limits::digits == 53 && std::numeric_limits::max_exponent == 1024); - - dump_float(x, std::integral_constant()); - } - - void dump_float(number_float_t x, std::true_type /*is_ieee_single_or_double*/) - { - char* begin = number_buffer.data(); - char* end = ::nlohmann::detail::to_chars(begin, begin + number_buffer.size(), x); - - o->write_characters(begin, static_cast(end - begin)); - } - - void dump_float(number_float_t x, std::false_type /*is_ieee_single_or_double*/) - { - // get number of digits for a float -> text -> float round-trip - static constexpr auto d = std::numeric_limits::max_digits10; - - // the actual conversion - std::ptrdiff_t len = (std::snprintf)(number_buffer.data(), number_buffer.size(), "%.*g", d, x); - - // negative value indicates an error - JSON_ASSERT(len > 0); - // check if buffer was large enough - JSON_ASSERT(static_cast(len) < number_buffer.size()); - - // erase thousands separator - if (thousands_sep != '\0') - { - const auto end = std::remove(number_buffer.begin(), - number_buffer.begin() + len, thousands_sep); - std::fill(end, number_buffer.end(), '\0'); - JSON_ASSERT((end - number_buffer.begin()) <= len); - len = (end - number_buffer.begin()); - } - - // convert decimal point to '.' - if (decimal_point != '\0' && decimal_point != '.') - { - const auto dec_pos = std::find(number_buffer.begin(), number_buffer.end(), decimal_point); - if (dec_pos != number_buffer.end()) - { - *dec_pos = '.'; - } - } - - o->write_characters(number_buffer.data(), static_cast(len)); - - // determine if need to append ".0" - const bool value_is_int_like = - std::none_of(number_buffer.begin(), number_buffer.begin() + len + 1, - [](char c) - { - return c == '.' || c == 'e'; - }); - - if (value_is_int_like) - { - o->write_characters(".0", 2); - } - } - - /*! - @brief check whether a string is UTF-8 encoded - - The function checks each byte of a string whether it is UTF-8 encoded. The - result of the check is stored in the @a state parameter. The function must - be called initially with state 0 (accept). State 1 means the string must - be rejected, because the current byte is not allowed. If the string is - completely processed, but the state is non-zero, the string ended - prematurely; that is, the last byte indicated more bytes should have - followed. - - @param[in,out] state the state of the decoding - @param[in,out] codep codepoint (valid only if resulting state is UTF8_ACCEPT) - @param[in] byte next byte to decode - @return new state - - @note The function has been edited: a std::array is used. - - @copyright Copyright (c) 2008-2009 Bjoern Hoehrmann - @sa http://bjoern.hoehrmann.de/utf-8/decoder/dfa/ - */ - static std::uint8_t decode(std::uint8_t& state, std::uint32_t& codep, const std::uint8_t byte) noexcept - { - static const std::array utf8d = - { - { - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 00..1F - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 20..3F - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 40..5F - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 60..7F - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, // 80..9F - 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, // A0..BF - 8, 8, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, // C0..DF - 0xA, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x4, 0x3, 0x3, // E0..EF - 0xB, 0x6, 0x6, 0x6, 0x5, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, // F0..FF - 0x0, 0x1, 0x2, 0x3, 0x5, 0x8, 0x7, 0x1, 0x1, 0x1, 0x4, 0x6, 0x1, 0x1, 0x1, 0x1, // s0..s0 - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, // s1..s2 - 1, 2, 1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, // s3..s4 - 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, // s5..s6 - 1, 3, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 // s7..s8 - } - }; - - const std::uint8_t type = utf8d[byte]; - - codep = (state != UTF8_ACCEPT) - ? (byte & 0x3fu) | (codep << 6u) - : (0xFFu >> type) & (byte); - - std::size_t index = 256u + static_cast(state) * 16u + static_cast(type); - JSON_ASSERT(index < 400); - state = utf8d[index]; - return state; - } - - /* - * Overload to make the compiler happy while it is instantiating - * dump_integer for number_unsigned_t. - * Must never be called. - */ - number_unsigned_t remove_sign(number_unsigned_t x) - { - JSON_ASSERT(false); // LCOV_EXCL_LINE - return x; // LCOV_EXCL_LINE - } - - /* - * Helper function for dump_integer - * - * This function takes a negative signed integer and returns its absolute - * value as unsigned integer. The plus/minus shuffling is necessary as we can - * not directly remove the sign of an arbitrary signed integer as the - * absolute values of INT_MIN and INT_MAX are usually not the same. See - * #1708 for details. - */ - inline number_unsigned_t remove_sign(number_integer_t x) noexcept - { - JSON_ASSERT(x < 0 && x < (std::numeric_limits::max)()); - return static_cast(-(x + 1)) + 1; - } - - private: - /// the output of the serializer - output_adapter_t o = nullptr; - - /// a (hopefully) large enough character buffer - std::array number_buffer{{}}; - - /// the locale - const std::lconv* loc = nullptr; - /// the locale's thousand separator character - const char thousands_sep = '\0'; - /// the locale's decimal point character - const char decimal_point = '\0'; - - /// string buffer - std::array string_buffer{{}}; - - /// the indentation character - const char indent_char; - /// the indentation string - string_t indent_string; - - /// error_handler how to react on decoding errors - const error_handler_t error_handler; -}; -} // namespace detail -} // namespace nlohmann diff --git a/nlohmann/detail/value_t.hpp b/nlohmann/detail/value_t.hpp deleted file mode 100644 index 0383df0..0000000 --- a/nlohmann/detail/value_t.hpp +++ /dev/null @@ -1,81 +0,0 @@ -#pragma once - -#include // array -#include // size_t -#include // uint8_t -#include // string - -namespace nlohmann -{ -namespace detail -{ -/////////////////////////// -// JSON type enumeration // -/////////////////////////// - -/*! -@brief the JSON type enumeration - -This enumeration collects the different JSON types. It is internally used to -distinguish the stored values, and the functions @ref basic_json::is_null(), -@ref basic_json::is_object(), @ref basic_json::is_array(), -@ref basic_json::is_string(), @ref basic_json::is_boolean(), -@ref basic_json::is_number() (with @ref basic_json::is_number_integer(), -@ref basic_json::is_number_unsigned(), and @ref basic_json::is_number_float()), -@ref basic_json::is_discarded(), @ref basic_json::is_primitive(), and -@ref basic_json::is_structured() rely on it. - -@note There are three enumeration entries (number_integer, number_unsigned, and -number_float), because the library distinguishes these three types for numbers: -@ref basic_json::number_unsigned_t is used for unsigned integers, -@ref basic_json::number_integer_t is used for signed integers, and -@ref basic_json::number_float_t is used for floating-point numbers or to -approximate integers which do not fit in the limits of their respective type. - -@sa @ref basic_json::basic_json(const value_t value_type) -- create a JSON -value with the default value for a given type - -@since version 1.0.0 -*/ -enum class value_t : std::uint8_t -{ - null, ///< null value - object, ///< object (unordered set of name/value pairs) - array, ///< array (ordered collection of values) - string, ///< string value - boolean, ///< boolean value - number_integer, ///< number value (signed integer) - number_unsigned, ///< number value (unsigned integer) - number_float, ///< number value (floating-point) - binary, ///< binary array (ordered collection of bytes) - discarded ///< discarded by the parser callback function -}; - -/*! -@brief comparison operator for JSON types - -Returns an ordering that is similar to Python: -- order: null < boolean < number < object < array < string < binary -- furthermore, each type is not smaller than itself -- discarded values are not comparable -- binary is represented as a b"" string in python and directly comparable to a - string; however, making a binary array directly comparable with a string would - be surprising behavior in a JSON file. - -@since version 1.0.0 -*/ -inline bool operator<(const value_t lhs, const value_t rhs) noexcept -{ - static constexpr std::array order = {{ - 0 /* null */, 3 /* object */, 4 /* array */, 5 /* string */, - 1 /* boolean */, 2 /* integer */, 2 /* unsigned */, 2 /* float */, - 6 /* binary */ - } - }; - - const auto l_index = static_cast(lhs); - const auto r_index = static_cast(rhs); - return l_index < order.size() && r_index < order.size() && order[l_index] < order[r_index]; -} -} // namespace detail -} // namespace nlohmann diff --git a/nlohmann/json.hpp b/nlohmann/json.hpp deleted file mode 100644 index a9e6c76..0000000 --- a/nlohmann/json.hpp +++ /dev/null @@ -1,8791 +0,0 @@ -/* - __ _____ _____ _____ - __| | __| | | | JSON for Modern C++ -| | |__ | | | | | | version 3.9.1 -|_____|_____|_____|_|___| https://github.com/nlohmann/json - -Licensed under the MIT License . -SPDX-License-Identifier: MIT -Copyright (c) 2013-2019 Niels Lohmann . - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -*/ - -#ifndef INCLUDE_NLOHMANN_JSON_HPP_ -#define INCLUDE_NLOHMANN_JSON_HPP_ - -#define NLOHMANN_JSON_VERSION_MAJOR 3 -#define NLOHMANN_JSON_VERSION_MINOR 9 -#define NLOHMANN_JSON_VERSION_PATCH 1 - -#include // all_of, find, for_each -#include // nullptr_t, ptrdiff_t, size_t -#include // hash, less -#include // initializer_list -#include // istream, ostream -#include // random_access_iterator_tag -#include // unique_ptr -#include // accumulate -#include // string, stoi, to_string -#include // declval, forward, move, pair, swap -#include // vector - -#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 - -/*! -@brief namespace for Niels Lohmann -@see https://github.com/nlohmann -@since version 1.0.0 -*/ -namespace nlohmann -{ - -/*! -@brief a class to store JSON values - -@tparam ObjectType type for JSON objects (`std::map` by default; will be used -in @ref object_t) -@tparam ArrayType type for JSON arrays (`std::vector` by default; will be used -in @ref array_t) -@tparam StringType type for JSON strings and object keys (`std::string` by -default; will be used in @ref string_t) -@tparam BooleanType type for JSON booleans (`bool` by default; will be used -in @ref boolean_t) -@tparam NumberIntegerType type for JSON integer numbers (`int64_t` by -default; will be used in @ref number_integer_t) -@tparam NumberUnsignedType type for JSON unsigned integer numbers (@c -`uint64_t` by default; will be used in @ref number_unsigned_t) -@tparam NumberFloatType type for JSON floating-point numbers (`double` by -default; will be used in @ref number_float_t) -@tparam BinaryType type for packed binary data for compatibility with binary -serialization formats (`std::vector` by default; will be used in -@ref binary_t) -@tparam AllocatorType type of the allocator to use (`std::allocator` by -default) -@tparam JSONSerializer the serializer to resolve internal calls to `to_json()` -and `from_json()` (@ref adl_serializer by default) - -@requirement The class satisfies the following concept requirements: -- Basic - - [DefaultConstructible](https://en.cppreference.com/w/cpp/named_req/DefaultConstructible): - JSON values can be default constructed. The result will be a JSON null - value. - - [MoveConstructible](https://en.cppreference.com/w/cpp/named_req/MoveConstructible): - A JSON value can be constructed from an rvalue argument. - - [CopyConstructible](https://en.cppreference.com/w/cpp/named_req/CopyConstructible): - A JSON value can be copy-constructed from an lvalue expression. - - [MoveAssignable](https://en.cppreference.com/w/cpp/named_req/MoveAssignable): - A JSON value van be assigned from an rvalue argument. - - [CopyAssignable](https://en.cppreference.com/w/cpp/named_req/CopyAssignable): - A JSON value can be copy-assigned from an lvalue expression. - - [Destructible](https://en.cppreference.com/w/cpp/named_req/Destructible): - JSON values can be destructed. -- Layout - - [StandardLayoutType](https://en.cppreference.com/w/cpp/named_req/StandardLayoutType): - JSON values have - [standard layout](https://en.cppreference.com/w/cpp/language/data_members#Standard_layout): - All non-static data members are private and standard layout types, the - class has no virtual functions or (virtual) base classes. -- Library-wide - - [EqualityComparable](https://en.cppreference.com/w/cpp/named_req/EqualityComparable): - JSON values can be compared with `==`, see @ref - operator==(const_reference,const_reference). - - [LessThanComparable](https://en.cppreference.com/w/cpp/named_req/LessThanComparable): - JSON values can be compared with `<`, see @ref - operator<(const_reference,const_reference). - - [Swappable](https://en.cppreference.com/w/cpp/named_req/Swappable): - Any JSON lvalue or rvalue of can be swapped with any lvalue or rvalue of - other compatible types, using unqualified function call @ref swap(). - - [NullablePointer](https://en.cppreference.com/w/cpp/named_req/NullablePointer): - JSON values can be compared against `std::nullptr_t` objects which are used - to model the `null` value. -- Container - - [Container](https://en.cppreference.com/w/cpp/named_req/Container): - JSON values can be used like STL containers and provide iterator access. - - [ReversibleContainer](https://en.cppreference.com/w/cpp/named_req/ReversibleContainer); - JSON values can be used like STL containers and provide reverse iterator - access. - -@invariant The member variables @a m_value and @a m_type have the following -relationship: -- If `m_type == value_t::object`, then `m_value.object != nullptr`. -- If `m_type == value_t::array`, then `m_value.array != nullptr`. -- If `m_type == value_t::string`, then `m_value.string != nullptr`. -The invariants are checked by member function assert_invariant(). - -@internal -@note ObjectType trick from https://stackoverflow.com/a/9860911 -@endinternal - -@see [RFC 7159: The JavaScript Object Notation (JSON) Data Interchange -Format](http://rfc7159.net/rfc7159) - -@since version 1.0.0 - -@nosubgrouping -*/ -NLOHMANN_BASIC_JSON_TPL_DECLARATION -class basic_json -{ - private: - template friend struct detail::external_constructor; - friend ::nlohmann::json_pointer; - - template - friend class ::nlohmann::detail::parser; - friend ::nlohmann::detail::serializer; - template - friend class ::nlohmann::detail::iter_impl; - template - friend class ::nlohmann::detail::binary_writer; - template - friend class ::nlohmann::detail::binary_reader; - template - friend class ::nlohmann::detail::json_sax_dom_parser; - template - friend class ::nlohmann::detail::json_sax_dom_callback_parser; - - /// workaround type for MSVC - using basic_json_t = NLOHMANN_BASIC_JSON_TPL; - - // convenience aliases for types residing in namespace detail; - using lexer = ::nlohmann::detail::lexer_base; - - template - static ::nlohmann::detail::parser parser( - InputAdapterType adapter, - detail::parser_callback_tcb = nullptr, - const bool allow_exceptions = true, - const bool ignore_comments = false - ) - { - return ::nlohmann::detail::parser(std::move(adapter), - std::move(cb), allow_exceptions, ignore_comments); - } - - using primitive_iterator_t = ::nlohmann::detail::primitive_iterator_t; - template - using internal_iterator = ::nlohmann::detail::internal_iterator; - template - using iter_impl = ::nlohmann::detail::iter_impl; - template - using iteration_proxy = ::nlohmann::detail::iteration_proxy; - template using json_reverse_iterator = ::nlohmann::detail::json_reverse_iterator; - - template - using output_adapter_t = ::nlohmann::detail::output_adapter_t; - - template - using binary_reader = ::nlohmann::detail::binary_reader; - template using binary_writer = ::nlohmann::detail::binary_writer; - - using serializer = ::nlohmann::detail::serializer; - - public: - using value_t = detail::value_t; - /// JSON Pointer, see @ref nlohmann::json_pointer - using json_pointer = ::nlohmann::json_pointer; - template - using json_serializer = JSONSerializer; - /// how to treat decoding errors - using error_handler_t = detail::error_handler_t; - /// how to treat CBOR tags - using cbor_tag_handler_t = detail::cbor_tag_handler_t; - /// helper type for initializer lists of basic_json values - using initializer_list_t = std::initializer_list>; - - using input_format_t = detail::input_format_t; - /// SAX interface type, see @ref nlohmann::json_sax - using json_sax_t = json_sax; - - //////////////// - // exceptions // - //////////////// - - /// @name exceptions - /// Classes to implement user-defined exceptions. - /// @{ - - /// @copydoc detail::exception - using exception = detail::exception; - /// @copydoc detail::parse_error - using parse_error = detail::parse_error; - /// @copydoc detail::invalid_iterator - using invalid_iterator = detail::invalid_iterator; - /// @copydoc detail::type_error - using type_error = detail::type_error; - /// @copydoc detail::out_of_range - using out_of_range = detail::out_of_range; - /// @copydoc detail::other_error - using other_error = detail::other_error; - - /// @} - - - ///////////////////// - // container types // - ///////////////////// - - /// @name container types - /// The canonic container types to use @ref basic_json like any other STL - /// container. - /// @{ - - /// the type of elements in a basic_json container - using value_type = basic_json; - - /// the type of an element reference - using reference = value_type&; - /// the type of an element const reference - using const_reference = const value_type&; - - /// a type to represent differences between iterators - using difference_type = std::ptrdiff_t; - /// a type to represent container sizes - using size_type = std::size_t; - - /// the allocator type - using allocator_type = AllocatorType; - - /// the type of an element pointer - using pointer = typename std::allocator_traits::pointer; - /// the type of an element const pointer - using const_pointer = typename std::allocator_traits::const_pointer; - - /// an iterator for a basic_json container - using iterator = iter_impl; - /// a const iterator for a basic_json container - using const_iterator = iter_impl; - /// a reverse iterator for a basic_json container - using reverse_iterator = json_reverse_iterator; - /// a const reverse iterator for a basic_json container - using const_reverse_iterator = json_reverse_iterator; - - /// @} - - - /*! - @brief returns the allocator associated with the container - */ - static allocator_type get_allocator() - { - return allocator_type(); - } - - /*! - @brief returns version information on the library - - This function returns a JSON object with information about the library, - including the version number and information on the platform and compiler. - - @return JSON object holding version information - key | description - ----------- | --------------- - `compiler` | Information on the used compiler. It is an object with the following keys: `c++` (the used C++ standard), `family` (the compiler family; possible values are `clang`, `icc`, `gcc`, `ilecpp`, `msvc`, `pgcpp`, `sunpro`, and `unknown`), and `version` (the compiler version). - `copyright` | The copyright line for the library as string. - `name` | The name of the library as string. - `platform` | The used platform as string. Possible values are `win32`, `linux`, `apple`, `unix`, and `unknown`. - `url` | The URL of the project as string. - `version` | The version of the library. It is an object with the following keys: `major`, `minor`, and `patch` as defined by [Semantic Versioning](http://semver.org), and `string` (the version string). - - @liveexample{The following code shows an example output of the `meta()` - function.,meta} - - @exceptionsafety Strong guarantee: if an exception is thrown, there are no - changes to any JSON value. - - @complexity Constant. - - @since 2.1.0 - */ - JSON_HEDLEY_WARN_UNUSED_RESULT - static basic_json meta() - { - basic_json result; - - result["copyright"] = "(C) 2013-2020 Niels Lohmann"; - result["name"] = "JSON for Modern C++"; - result["url"] = "https://github.com/nlohmann/json"; - result["version"]["string"] = - std::to_string(NLOHMANN_JSON_VERSION_MAJOR) + "." + - std::to_string(NLOHMANN_JSON_VERSION_MINOR) + "." + - std::to_string(NLOHMANN_JSON_VERSION_PATCH); - result["version"]["major"] = NLOHMANN_JSON_VERSION_MAJOR; - result["version"]["minor"] = NLOHMANN_JSON_VERSION_MINOR; - result["version"]["patch"] = NLOHMANN_JSON_VERSION_PATCH; - -#ifdef _WIN32 - result["platform"] = "win32"; -#elif defined __linux__ - result["platform"] = "linux"; -#elif defined __APPLE__ - result["platform"] = "apple"; -#elif defined __unix__ - result["platform"] = "unix"; -#else - result["platform"] = "unknown"; -#endif - -#if defined(__ICC) || defined(__INTEL_COMPILER) - result["compiler"] = {{"family", "icc"}, {"version", __INTEL_COMPILER}}; -#elif defined(__clang__) - result["compiler"] = {{"family", "clang"}, {"version", __clang_version__}}; -#elif defined(__GNUC__) || defined(__GNUG__) - result["compiler"] = {{"family", "gcc"}, {"version", std::to_string(__GNUC__) + "." + std::to_string(__GNUC_MINOR__) + "." + std::to_string(__GNUC_PATCHLEVEL__)}}; -#elif defined(__HP_cc) || defined(__HP_aCC) - result["compiler"] = "hp" -#elif defined(__IBMCPP__) - result["compiler"] = {{"family", "ilecpp"}, {"version", __IBMCPP__}}; -#elif defined(_MSC_VER) - result["compiler"] = {{"family", "msvc"}, {"version", _MSC_VER}}; -#elif defined(__PGI) - result["compiler"] = {{"family", "pgcpp"}, {"version", __PGI}}; -#elif defined(__SUNPRO_CC) - result["compiler"] = {{"family", "sunpro"}, {"version", __SUNPRO_CC}}; -#else - result["compiler"] = {{"family", "unknown"}, {"version", "unknown"}}; -#endif - -#ifdef __cplusplus - result["compiler"]["c++"] = std::to_string(__cplusplus); -#else - result["compiler"]["c++"] = "unknown"; -#endif - return result; - } - - - /////////////////////////// - // JSON value data types // - /////////////////////////// - - /// @name JSON value data types - /// The data types to store a JSON value. These types are derived from - /// the template arguments passed to class @ref basic_json. - /// @{ - -#if defined(JSON_HAS_CPP_14) - // Use transparent comparator if possible, combined with perfect forwarding - // on find() and count() calls prevents unnecessary string construction. - using object_comparator_t = std::less<>; -#else - using object_comparator_t = std::less; -#endif - - /*! - @brief a type for an object - - [RFC 7159](http://rfc7159.net/rfc7159) describes JSON objects as follows: - > An object is an unordered collection of zero or more name/value pairs, - > where a name is a string and a value is a string, number, boolean, null, - > object, or array. - - To store objects in C++, a type is defined by the template parameters - described below. - - @tparam ObjectType the container to store objects (e.g., `std::map` or - `std::unordered_map`) - @tparam StringType the type of the keys or names (e.g., `std::string`). - The comparison function `std::less` is used to order elements - inside the container. - @tparam AllocatorType the allocator to use for objects (e.g., - `std::allocator`) - - #### Default type - - With the default values for @a ObjectType (`std::map`), @a StringType - (`std::string`), and @a AllocatorType (`std::allocator`), the default - value for @a object_t is: - - @code {.cpp} - std::map< - std::string, // key_type - basic_json, // value_type - std::less, // key_compare - std::allocator> // allocator_type - > - @endcode - - #### Behavior - - The choice of @a object_t influences the behavior of the JSON class. With - the default type, objects have the following behavior: - - - When all names are unique, objects will be interoperable in the sense - that all software implementations receiving that object will agree on - the name-value mappings. - - When the names within an object are not unique, it is unspecified which - one of the values for a given key will be chosen. For instance, - `{"key": 2, "key": 1}` could be equal to either `{"key": 1}` or - `{"key": 2}`. - - Internally, name/value pairs are stored in lexicographical order of the - names. Objects will also be serialized (see @ref dump) in this order. - For instance, `{"b": 1, "a": 2}` and `{"a": 2, "b": 1}` will be stored - and serialized as `{"a": 2, "b": 1}`. - - When comparing objects, the order of the name/value pairs is irrelevant. - This makes objects interoperable in the sense that they will not be - affected by these differences. For instance, `{"b": 1, "a": 2}` and - `{"a": 2, "b": 1}` will be treated as equal. - - #### Limits - - [RFC 7159](http://rfc7159.net/rfc7159) specifies: - > An implementation may set limits on the maximum depth of nesting. - - In this class, the object's limit of nesting is not explicitly constrained. - However, a maximum depth of nesting may be introduced by the compiler or - runtime environment. A theoretical limit can be queried by calling the - @ref max_size function of a JSON object. - - #### Storage - - Objects are stored as pointers in a @ref basic_json type. That is, for any - access to object values, a pointer of type `object_t*` must be - dereferenced. - - @sa @ref array_t -- type for an array value - - @since version 1.0.0 - - @note The order name/value pairs are added to the object is *not* - preserved by the library. Therefore, iterating an object may return - name/value pairs in a different order than they were originally stored. In - fact, keys will be traversed in alphabetical order as `std::map` with - `std::less` is used by default. Please note this behavior conforms to [RFC - 7159](http://rfc7159.net/rfc7159), because any order implements the - specified "unordered" nature of JSON objects. - */ - using object_t = ObjectType>>; - - /*! - @brief a type for an array - - [RFC 7159](http://rfc7159.net/rfc7159) describes JSON arrays as follows: - > An array is an ordered sequence of zero or more values. - - To store objects in C++, a type is defined by the template parameters - explained below. - - @tparam ArrayType container type to store arrays (e.g., `std::vector` or - `std::list`) - @tparam AllocatorType allocator to use for arrays (e.g., `std::allocator`) - - #### Default type - - With the default values for @a ArrayType (`std::vector`) and @a - AllocatorType (`std::allocator`), the default value for @a array_t is: - - @code {.cpp} - std::vector< - basic_json, // value_type - std::allocator // allocator_type - > - @endcode - - #### Limits - - [RFC 7159](http://rfc7159.net/rfc7159) specifies: - > An implementation may set limits on the maximum depth of nesting. - - In this class, the array's limit of nesting is not explicitly constrained. - However, a maximum depth of nesting may be introduced by the compiler or - runtime environment. A theoretical limit can be queried by calling the - @ref max_size function of a JSON array. - - #### Storage - - Arrays are stored as pointers in a @ref basic_json type. That is, for any - access to array values, a pointer of type `array_t*` must be dereferenced. - - @sa @ref object_t -- type for an object value - - @since version 1.0.0 - */ - using array_t = ArrayType>; - - /*! - @brief a type for a string - - [RFC 7159](http://rfc7159.net/rfc7159) describes JSON strings as follows: - > A string is a sequence of zero or more Unicode characters. - - To store objects in C++, a type is defined by the template parameter - described below. Unicode values are split by the JSON class into - byte-sized characters during deserialization. - - @tparam StringType the container to store strings (e.g., `std::string`). - Note this container is used for keys/names in objects, see @ref object_t. - - #### Default type - - With the default values for @a StringType (`std::string`), the default - value for @a string_t is: - - @code {.cpp} - std::string - @endcode - - #### Encoding - - Strings are stored in UTF-8 encoding. Therefore, functions like - `std::string::size()` or `std::string::length()` return the number of - bytes in the string rather than the number of characters or glyphs. - - #### String comparison - - [RFC 7159](http://rfc7159.net/rfc7159) states: - > Software implementations are typically required to test names of object - > members for equality. Implementations that transform the textual - > representation into sequences of Unicode code units and then perform the - > comparison numerically, code unit by code unit, are interoperable in the - > sense that implementations will agree in all cases on equality or - > inequality of two strings. For example, implementations that compare - > strings with escaped characters unconverted may incorrectly find that - > `"a\\b"` and `"a\u005Cb"` are not equal. - - This implementation is interoperable as it does compare strings code unit - by code unit. - - #### Storage - - String values are stored as pointers in a @ref basic_json type. That is, - for any access to string values, a pointer of type `string_t*` must be - dereferenced. - - @since version 1.0.0 - */ - using string_t = StringType; - - /*! - @brief a type for a boolean - - [RFC 7159](http://rfc7159.net/rfc7159) implicitly describes a boolean as a - type which differentiates the two literals `true` and `false`. - - To store objects in C++, a type is defined by the template parameter @a - BooleanType which chooses the type to use. - - #### Default type - - With the default values for @a BooleanType (`bool`), the default value for - @a boolean_t is: - - @code {.cpp} - bool - @endcode - - #### Storage - - Boolean values are stored directly inside a @ref basic_json type. - - @since version 1.0.0 - */ - using boolean_t = BooleanType; - - /*! - @brief a type for a number (integer) - - [RFC 7159](http://rfc7159.net/rfc7159) describes numbers as follows: - > The representation of numbers is similar to that used in most - > programming languages. A number is represented in base 10 using decimal - > digits. It contains an integer component that may be prefixed with an - > optional minus sign, which may be followed by a fraction part and/or an - > exponent part. Leading zeros are not allowed. (...) Numeric values that - > cannot be represented in the grammar below (such as Infinity and NaN) - > are not permitted. - - This description includes both integer and floating-point numbers. - However, C++ allows more precise storage if it is known whether the number - is a signed integer, an unsigned integer or a floating-point number. - Therefore, three different types, @ref number_integer_t, @ref - number_unsigned_t and @ref number_float_t are used. - - To store integer numbers in C++, a type is defined by the template - parameter @a NumberIntegerType which chooses the type to use. - - #### Default type - - With the default values for @a NumberIntegerType (`int64_t`), the default - value for @a number_integer_t is: - - @code {.cpp} - int64_t - @endcode - - #### Default behavior - - - The restrictions about leading zeros is not enforced in C++. Instead, - leading zeros in integer literals lead to an interpretation as octal - number. Internally, the value will be stored as decimal number. For - instance, the C++ integer literal `010` will be serialized to `8`. - During deserialization, leading zeros yield an error. - - Not-a-number (NaN) values will be serialized to `null`. - - #### Limits - - [RFC 7159](http://rfc7159.net/rfc7159) specifies: - > An implementation may set limits on the range and precision of numbers. - - When the default type is used, the maximal integer number that can be - stored is `9223372036854775807` (INT64_MAX) and the minimal integer number - that can be stored is `-9223372036854775808` (INT64_MIN). Integer numbers - that are out of range will yield over/underflow when used in a - constructor. During deserialization, too large or small integer numbers - will be automatically be stored as @ref number_unsigned_t or @ref - number_float_t. - - [RFC 7159](http://rfc7159.net/rfc7159) further states: - > Note that when such software is used, numbers that are integers and are - > in the range \f$[-2^{53}+1, 2^{53}-1]\f$ are interoperable in the sense - > that implementations will agree exactly on their numeric values. - - As this range is a subrange of the exactly supported range [INT64_MIN, - INT64_MAX], this class's integer type is interoperable. - - #### Storage - - Integer number values are stored directly inside a @ref basic_json type. - - @sa @ref number_float_t -- type for number values (floating-point) - - @sa @ref number_unsigned_t -- type for number values (unsigned integer) - - @since version 1.0.0 - */ - using number_integer_t = NumberIntegerType; - - /*! - @brief a type for a number (unsigned) - - [RFC 7159](http://rfc7159.net/rfc7159) describes numbers as follows: - > The representation of numbers is similar to that used in most - > programming languages. A number is represented in base 10 using decimal - > digits. It contains an integer component that may be prefixed with an - > optional minus sign, which may be followed by a fraction part and/or an - > exponent part. Leading zeros are not allowed. (...) Numeric values that - > cannot be represented in the grammar below (such as Infinity and NaN) - > are not permitted. - - This description includes both integer and floating-point numbers. - However, C++ allows more precise storage if it is known whether the number - is a signed integer, an unsigned integer or a floating-point number. - Therefore, three different types, @ref number_integer_t, @ref - number_unsigned_t and @ref number_float_t are used. - - To store unsigned integer numbers in C++, a type is defined by the - template parameter @a NumberUnsignedType which chooses the type to use. - - #### Default type - - With the default values for @a NumberUnsignedType (`uint64_t`), the - default value for @a number_unsigned_t is: - - @code {.cpp} - uint64_t - @endcode - - #### Default behavior - - - The restrictions about leading zeros is not enforced in C++. Instead, - leading zeros in integer literals lead to an interpretation as octal - number. Internally, the value will be stored as decimal number. For - instance, the C++ integer literal `010` will be serialized to `8`. - During deserialization, leading zeros yield an error. - - Not-a-number (NaN) values will be serialized to `null`. - - #### Limits - - [RFC 7159](http://rfc7159.net/rfc7159) specifies: - > An implementation may set limits on the range and precision of numbers. - - When the default type is used, the maximal integer number that can be - stored is `18446744073709551615` (UINT64_MAX) and the minimal integer - number that can be stored is `0`. Integer numbers that are out of range - will yield over/underflow when used in a constructor. During - deserialization, too large or small integer numbers will be automatically - be stored as @ref number_integer_t or @ref number_float_t. - - [RFC 7159](http://rfc7159.net/rfc7159) further states: - > Note that when such software is used, numbers that are integers and are - > in the range \f$[-2^{53}+1, 2^{53}-1]\f$ are interoperable in the sense - > that implementations will agree exactly on their numeric values. - - As this range is a subrange (when considered in conjunction with the - number_integer_t type) of the exactly supported range [0, UINT64_MAX], - this class's integer type is interoperable. - - #### Storage - - Integer number values are stored directly inside a @ref basic_json type. - - @sa @ref number_float_t -- type for number values (floating-point) - @sa @ref number_integer_t -- type for number values (integer) - - @since version 2.0.0 - */ - using number_unsigned_t = NumberUnsignedType; - - /*! - @brief a type for a number (floating-point) - - [RFC 7159](http://rfc7159.net/rfc7159) describes numbers as follows: - > The representation of numbers is similar to that used in most - > programming languages. A number is represented in base 10 using decimal - > digits. It contains an integer component that may be prefixed with an - > optional minus sign, which may be followed by a fraction part and/or an - > exponent part. Leading zeros are not allowed. (...) Numeric values that - > cannot be represented in the grammar below (such as Infinity and NaN) - > are not permitted. - - This description includes both integer and floating-point numbers. - However, C++ allows more precise storage if it is known whether the number - is a signed integer, an unsigned integer or a floating-point number. - Therefore, three different types, @ref number_integer_t, @ref - number_unsigned_t and @ref number_float_t are used. - - To store floating-point numbers in C++, a type is defined by the template - parameter @a NumberFloatType which chooses the type to use. - - #### Default type - - With the default values for @a NumberFloatType (`double`), the default - value for @a number_float_t is: - - @code {.cpp} - double - @endcode - - #### Default behavior - - - The restrictions about leading zeros is not enforced in C++. Instead, - leading zeros in floating-point literals will be ignored. Internally, - the value will be stored as decimal number. For instance, the C++ - floating-point literal `01.2` will be serialized to `1.2`. During - deserialization, leading zeros yield an error. - - Not-a-number (NaN) values will be serialized to `null`. - - #### Limits - - [RFC 7159](http://rfc7159.net/rfc7159) states: - > This specification allows implementations to set limits on the range and - > precision of numbers accepted. Since software that implements IEEE - > 754-2008 binary64 (double precision) numbers is generally available and - > widely used, good interoperability can be achieved by implementations - > that expect no more precision or range than these provide, in the sense - > that implementations will approximate JSON numbers within the expected - > precision. - - This implementation does exactly follow this approach, as it uses double - precision floating-point numbers. Note values smaller than - `-1.79769313486232e+308` and values greater than `1.79769313486232e+308` - will be stored as NaN internally and be serialized to `null`. - - #### Storage - - Floating-point number values are stored directly inside a @ref basic_json - type. - - @sa @ref number_integer_t -- type for number values (integer) - - @sa @ref number_unsigned_t -- type for number values (unsigned integer) - - @since version 1.0.0 - */ - using number_float_t = NumberFloatType; - - /*! - @brief a type for a packed binary type - - This type is a type designed to carry binary data that appears in various - serialized formats, such as CBOR's Major Type 2, MessagePack's bin, and - BSON's generic binary subtype. This type is NOT a part of standard JSON and - exists solely for compatibility with these binary types. As such, it is - simply defined as an ordered sequence of zero or more byte values. - - Additionally, as an implementation detail, the subtype of the binary data is - carried around as a `std::uint8_t`, which is compatible with both of the - binary data formats that use binary subtyping, (though the specific - numbering is incompatible with each other, and it is up to the user to - translate between them). - - [CBOR's RFC 7049](https://tools.ietf.org/html/rfc7049) describes this type - as: - > Major type 2: a byte string. The string's length in bytes is represented - > following the rules for positive integers (major type 0). - - [MessagePack's documentation on the bin type - family](https://github.com/msgpack/msgpack/blob/master/spec.md#bin-format-family) - describes this type as: - > Bin format family stores an byte array in 2, 3, or 5 bytes of extra bytes - > in addition to the size of the byte array. - - [BSON's specifications](http://bsonspec.org/spec.html) describe several - binary types; however, this type is intended to represent the generic binary - type which has the description: - > Generic binary subtype - This is the most commonly used binary subtype and - > should be the 'default' for drivers and tools. - - None of these impose any limitations on the internal representation other - than the basic unit of storage be some type of array whose parts are - decomposable into bytes. - - The default representation of this binary format is a - `std::vector`, which is a very common way to represent a byte - array in modern C++. - - #### Default type - - The default values for @a BinaryType is `std::vector` - - #### Storage - - Binary Arrays are stored as pointers in a @ref basic_json type. That is, - for any access to array values, a pointer of the type `binary_t*` must be - dereferenced. - - #### Notes on subtypes - - - CBOR - - Binary values are represented as byte strings. No subtypes are - supported and will be ignored when CBOR is written. - - MessagePack - - If a subtype is given and the binary array contains exactly 1, 2, 4, 8, - or 16 elements, the fixext family (fixext1, fixext2, fixext4, fixext8) - is used. For other sizes, the ext family (ext8, ext16, ext32) is used. - The subtype is then added as singed 8-bit integer. - - If no subtype is given, the bin family (bin8, bin16, bin32) is used. - - BSON - - If a subtype is given, it is used and added as unsigned 8-bit integer. - - If no subtype is given, the generic binary subtype 0x00 is used. - - @sa @ref binary -- create a binary array - - @since version 3.8.0 - */ - using binary_t = nlohmann::byte_container_with_subtype; - /// @} - - private: - - /// helper for exception-safe object creation - template - JSON_HEDLEY_RETURNS_NON_NULL - static T* create(Args&& ... args) - { - AllocatorType alloc; - using AllocatorTraits = std::allocator_traits>; - - auto deleter = [&](T * object) - { - AllocatorTraits::deallocate(alloc, object, 1); - }; - std::unique_ptr object(AllocatorTraits::allocate(alloc, 1), deleter); - AllocatorTraits::construct(alloc, object.get(), std::forward(args)...); - JSON_ASSERT(object != nullptr); - return object.release(); - } - - //////////////////////// - // JSON value storage // - //////////////////////// - - /*! - @brief a JSON value - - The actual storage for a JSON value of the @ref basic_json class. This - union combines the different storage types for the JSON value types - defined in @ref value_t. - - JSON type | value_t type | used type - --------- | --------------- | ------------------------ - object | object | pointer to @ref object_t - array | array | pointer to @ref array_t - string | string | pointer to @ref string_t - boolean | boolean | @ref boolean_t - number | number_integer | @ref number_integer_t - number | number_unsigned | @ref number_unsigned_t - number | number_float | @ref number_float_t - binary | binary | pointer to @ref binary_t - null | null | *no value is stored* - - @note Variable-length types (objects, arrays, and strings) are stored as - pointers. The size of the union should not exceed 64 bits if the default - value types are used. - - @since version 1.0.0 - */ - union json_value - { - /// object (stored with pointer to save storage) - object_t* object; - /// array (stored with pointer to save storage) - array_t* array; - /// string (stored with pointer to save storage) - string_t* string; - /// binary (stored with pointer to save storage) - binary_t* binary; - /// boolean - boolean_t boolean; - /// number (integer) - number_integer_t number_integer; - /// number (unsigned integer) - number_unsigned_t number_unsigned; - /// number (floating-point) - number_float_t number_float; - - /// default constructor (for null values) - json_value() = default; - /// constructor for booleans - json_value(boolean_t v) noexcept : boolean(v) {} - /// constructor for numbers (integer) - json_value(number_integer_t v) noexcept : number_integer(v) {} - /// constructor for numbers (unsigned) - json_value(number_unsigned_t v) noexcept : number_unsigned(v) {} - /// constructor for numbers (floating-point) - json_value(number_float_t v) noexcept : number_float(v) {} - /// constructor for empty values of a given type - json_value(value_t t) - { - switch (t) - { - case value_t::object: - { - object = create(); - break; - } - - case value_t::array: - { - array = create(); - break; - } - - case value_t::string: - { - string = create(""); - break; - } - - case value_t::binary: - { - binary = create(); - break; - } - - case value_t::boolean: - { - boolean = boolean_t(false); - break; - } - - case value_t::number_integer: - { - number_integer = number_integer_t(0); - break; - } - - case value_t::number_unsigned: - { - number_unsigned = number_unsigned_t(0); - break; - } - - case value_t::number_float: - { - number_float = number_float_t(0.0); - break; - } - - case value_t::null: - { - object = nullptr; // silence warning, see #821 - break; - } - - default: - { - object = nullptr; // silence warning, see #821 - if (JSON_HEDLEY_UNLIKELY(t == value_t::null)) - { - JSON_THROW(other_error::create(500, "961c151d2e87f2686a955a9be24d316f1362bf21 3.9.1")); // LCOV_EXCL_LINE - } - break; - } - } - } - - /// constructor for strings - json_value(const string_t& value) - { - string = create(value); - } - - /// constructor for rvalue strings - json_value(string_t&& value) - { - string = create(std::move(value)); - } - - /// constructor for objects - json_value(const object_t& value) - { - object = create(value); - } - - /// constructor for rvalue objects - json_value(object_t&& value) - { - object = create(std::move(value)); - } - - /// constructor for arrays - json_value(const array_t& value) - { - array = create(value); - } - - /// constructor for rvalue arrays - json_value(array_t&& value) - { - array = create(std::move(value)); - } - - /// constructor for binary arrays - json_value(const typename binary_t::container_type& value) - { - binary = create(value); - } - - /// constructor for rvalue binary arrays - json_value(typename binary_t::container_type&& value) - { - binary = create(std::move(value)); - } - - /// constructor for binary arrays (internal type) - json_value(const binary_t& value) - { - binary = create(value); - } - - /// constructor for rvalue binary arrays (internal type) - json_value(binary_t&& value) - { - binary = create(std::move(value)); - } - - void destroy(value_t t) noexcept - { - // flatten the current json_value to a heap-allocated stack - std::vector stack; - - // move the top-level items to stack - if (t == value_t::array) - { - stack.reserve(array->size()); - std::move(array->begin(), array->end(), std::back_inserter(stack)); - } - else if (t == value_t::object) - { - stack.reserve(object->size()); - for (auto&& it : *object) - { - stack.push_back(std::move(it.second)); - } - } - - while (!stack.empty()) - { - // move the last item to local variable to be processed - basic_json current_item(std::move(stack.back())); - stack.pop_back(); - - // if current_item is array/object, move - // its children to the stack to be processed later - if (current_item.is_array()) - { - std::move(current_item.m_value.array->begin(), current_item.m_value.array->end(), - std::back_inserter(stack)); - - current_item.m_value.array->clear(); - } - else if (current_item.is_object()) - { - for (auto&& it : *current_item.m_value.object) - { - stack.push_back(std::move(it.second)); - } - - current_item.m_value.object->clear(); - } - - // it's now safe that current_item get destructed - // since it doesn't have any children - } - - switch (t) - { - case value_t::object: - { - AllocatorType alloc; - std::allocator_traits::destroy(alloc, object); - std::allocator_traits::deallocate(alloc, object, 1); - break; - } - - case value_t::array: - { - AllocatorType alloc; - std::allocator_traits::destroy(alloc, array); - std::allocator_traits::deallocate(alloc, array, 1); - break; - } - - case value_t::string: - { - AllocatorType alloc; - std::allocator_traits::destroy(alloc, string); - std::allocator_traits::deallocate(alloc, string, 1); - break; - } - - case value_t::binary: - { - AllocatorType alloc; - std::allocator_traits::destroy(alloc, binary); - std::allocator_traits::deallocate(alloc, binary, 1); - break; - } - - default: - { - break; - } - } - } - }; - - /*! - @brief checks the class invariants - - This function asserts the class invariants. It needs to be called at the - end of every constructor to make sure that created objects respect the - invariant. Furthermore, it has to be called each time the type of a JSON - value is changed, because the invariant expresses a relationship between - @a m_type and @a m_value. - */ - void assert_invariant() const noexcept - { - JSON_ASSERT(m_type != value_t::object || m_value.object != nullptr); - JSON_ASSERT(m_type != value_t::array || m_value.array != nullptr); - JSON_ASSERT(m_type != value_t::string || m_value.string != nullptr); - JSON_ASSERT(m_type != value_t::binary || m_value.binary != nullptr); - } - - public: - ////////////////////////// - // JSON parser callback // - ////////////////////////// - - /*! - @brief parser event types - - The parser callback distinguishes the following events: - - `object_start`: the parser read `{` and started to process a JSON object - - `key`: the parser read a key of a value in an object - - `object_end`: the parser read `}` and finished processing a JSON object - - `array_start`: the parser read `[` and started to process a JSON array - - `array_end`: the parser read `]` and finished processing a JSON array - - `value`: the parser finished reading a JSON value - - @image html callback_events.png "Example when certain parse events are triggered" - - @sa @ref parser_callback_t for more information and examples - */ - using parse_event_t = detail::parse_event_t; - - /*! - @brief per-element parser callback type - - With a parser callback function, the result of parsing a JSON text can be - influenced. When passed to @ref parse, it is called on certain events - (passed as @ref parse_event_t via parameter @a event) with a set recursion - depth @a depth and context JSON value @a parsed. The return value of the - callback function is a boolean indicating whether the element that emitted - the callback shall be kept or not. - - We distinguish six scenarios (determined by the event type) in which the - callback function can be called. The following table describes the values - of the parameters @a depth, @a event, and @a parsed. - - parameter @a event | description | parameter @a depth | parameter @a parsed - ------------------ | ----------- | ------------------ | ------------------- - parse_event_t::object_start | the parser read `{` and started to process a JSON object | depth of the parent of the JSON object | a JSON value with type discarded - parse_event_t::key | the parser read a key of a value in an object | depth of the currently parsed JSON object | a JSON string containing the key - parse_event_t::object_end | the parser read `}` and finished processing a JSON object | depth of the parent of the JSON object | the parsed JSON object - parse_event_t::array_start | the parser read `[` and started to process a JSON array | depth of the parent of the JSON array | a JSON value with type discarded - parse_event_t::array_end | the parser read `]` and finished processing a JSON array | depth of the parent of the JSON array | the parsed JSON array - parse_event_t::value | the parser finished reading a JSON value | depth of the value | the parsed JSON value - - @image html callback_events.png "Example when certain parse events are triggered" - - Discarding a value (i.e., returning `false`) has different effects - depending on the context in which function was called: - - - Discarded values in structured types are skipped. That is, the parser - will behave as if the discarded value was never read. - - In case a value outside a structured type is skipped, it is replaced - with `null`. This case happens if the top-level element is skipped. - - @param[in] depth the depth of the recursion during parsing - - @param[in] event an event of type parse_event_t indicating the context in - the callback function has been called - - @param[in,out] parsed the current intermediate parse result; note that - writing to this value has no effect for parse_event_t::key events - - @return Whether the JSON value which called the function during parsing - should be kept (`true`) or not (`false`). In the latter case, it is either - skipped completely or replaced by an empty discarded object. - - @sa @ref parse for examples - - @since version 1.0.0 - */ - using parser_callback_t = detail::parser_callback_t; - - ////////////////// - // constructors // - ////////////////// - - /// @name constructors and destructors - /// Constructors of class @ref basic_json, copy/move constructor, copy - /// assignment, static functions creating objects, and the destructor. - /// @{ - - /*! - @brief create an empty value with a given type - - Create an empty JSON value with a given type. The value will be default - initialized with an empty value which depends on the type: - - Value type | initial value - ----------- | ------------- - null | `null` - boolean | `false` - string | `""` - number | `0` - object | `{}` - array | `[]` - binary | empty array - - @param[in] v the type of the value to create - - @complexity Constant. - - @exceptionsafety Strong guarantee: if an exception is thrown, there are no - changes to any JSON value. - - @liveexample{The following code shows the constructor for different @ref - value_t values,basic_json__value_t} - - @sa @ref clear() -- restores the postcondition of this constructor - - @since version 1.0.0 - */ - basic_json(const value_t v) - : m_type(v), m_value(v) - { - assert_invariant(); - } - - /*! - @brief create a null object - - Create a `null` JSON value. It either takes a null pointer as parameter - (explicitly creating `null`) or no parameter (implicitly creating `null`). - The passed null pointer itself is not read -- it is only used to choose - the right constructor. - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this constructor never throws - exceptions. - - @liveexample{The following code shows the constructor with and without a - null pointer parameter.,basic_json__nullptr_t} - - @since version 1.0.0 - */ - basic_json(std::nullptr_t = nullptr) noexcept - : basic_json(value_t::null) - { - assert_invariant(); - } - - /*! - @brief create a JSON value - - This is a "catch all" constructor for all compatible JSON types; that is, - types for which a `to_json()` method exists. The constructor forwards the - parameter @a val to that method (to `json_serializer::to_json` method - with `U = uncvref_t`, to be exact). - - Template type @a CompatibleType includes, but is not limited to, the - following types: - - **arrays**: @ref array_t and all kinds of compatible containers such as - `std::vector`, `std::deque`, `std::list`, `std::forward_list`, - `std::array`, `std::valarray`, `std::set`, `std::unordered_set`, - `std::multiset`, and `std::unordered_multiset` with a `value_type` from - which a @ref basic_json value can be constructed. - - **objects**: @ref object_t and all kinds of compatible associative - containers such as `std::map`, `std::unordered_map`, `std::multimap`, - and `std::unordered_multimap` with a `key_type` compatible to - @ref string_t and a `value_type` from which a @ref basic_json value can - be constructed. - - **strings**: @ref string_t, string literals, and all compatible string - containers can be used. - - **numbers**: @ref number_integer_t, @ref number_unsigned_t, - @ref number_float_t, and all convertible number types such as `int`, - `size_t`, `int64_t`, `float` or `double` can be used. - - **boolean**: @ref boolean_t / `bool` can be used. - - **binary**: @ref binary_t / `std::vector` may be used, - unfortunately because string literals cannot be distinguished from binary - character arrays by the C++ type system, all types compatible with `const - char*` will be directed to the string constructor instead. This is both - for backwards compatibility, and due to the fact that a binary type is not - a standard JSON type. - - See the examples below. - - @tparam CompatibleType a type such that: - - @a CompatibleType is not derived from `std::istream`, - - @a CompatibleType is not @ref basic_json (to avoid hijacking copy/move - constructors), - - @a CompatibleType is not a different @ref basic_json type (i.e. with different template arguments) - - @a CompatibleType is not a @ref basic_json nested type (e.g., - @ref json_pointer, @ref iterator, etc ...) - - @ref @ref json_serializer has a - `to_json(basic_json_t&, CompatibleType&&)` method - - @tparam U = `uncvref_t` - - @param[in] val the value to be forwarded to the respective constructor - - @complexity Usually linear in the size of the passed @a val, also - depending on the implementation of the called `to_json()` - method. - - @exceptionsafety Depends on the called constructor. For types directly - supported by the library (i.e., all types for which no `to_json()` function - was provided), strong guarantee holds: if an exception is thrown, there are - no changes to any JSON value. - - @liveexample{The following code shows the constructor with several - compatible types.,basic_json__CompatibleType} - - @since version 2.1.0 - */ - template < typename CompatibleType, - typename U = detail::uncvref_t, - detail::enable_if_t < - !detail::is_basic_json::value && detail::is_compatible_type::value, int > = 0 > - basic_json(CompatibleType && val) noexcept(noexcept( - JSONSerializer::to_json(std::declval(), - std::forward(val)))) - { - JSONSerializer::to_json(*this, std::forward(val)); - assert_invariant(); - } - - /*! - @brief create a JSON value from an existing one - - This is a constructor for existing @ref basic_json types. - It does not hijack copy/move constructors, since the parameter has different - template arguments than the current ones. - - The constructor tries to convert the internal @ref m_value of the parameter. - - @tparam BasicJsonType a type such that: - - @a BasicJsonType is a @ref basic_json type. - - @a BasicJsonType has different template arguments than @ref basic_json_t. - - @param[in] val the @ref basic_json value to be converted. - - @complexity Usually linear in the size of the passed @a val, also - depending on the implementation of the called `to_json()` - method. - - @exceptionsafety Depends on the called constructor. For types directly - supported by the library (i.e., all types for which no `to_json()` function - was provided), strong guarantee holds: if an exception is thrown, there are - no changes to any JSON value. - - @since version 3.2.0 - */ - template < typename BasicJsonType, - detail::enable_if_t < - detail::is_basic_json::value&& !std::is_same::value, int > = 0 > - basic_json(const BasicJsonType& val) - { - using other_boolean_t = typename BasicJsonType::boolean_t; - using other_number_float_t = typename BasicJsonType::number_float_t; - using other_number_integer_t = typename BasicJsonType::number_integer_t; - using other_number_unsigned_t = typename BasicJsonType::number_unsigned_t; - using other_string_t = typename BasicJsonType::string_t; - using other_object_t = typename BasicJsonType::object_t; - using other_array_t = typename BasicJsonType::array_t; - using other_binary_t = typename BasicJsonType::binary_t; - - switch (val.type()) - { - case value_t::boolean: - JSONSerializer::to_json(*this, val.template get()); - break; - case value_t::number_float: - JSONSerializer::to_json(*this, val.template get()); - break; - case value_t::number_integer: - JSONSerializer::to_json(*this, val.template get()); - break; - case value_t::number_unsigned: - JSONSerializer::to_json(*this, val.template get()); - break; - case value_t::string: - JSONSerializer::to_json(*this, val.template get_ref()); - break; - case value_t::object: - JSONSerializer::to_json(*this, val.template get_ref()); - break; - case value_t::array: - JSONSerializer::to_json(*this, val.template get_ref()); - break; - case value_t::binary: - JSONSerializer::to_json(*this, val.template get_ref()); - break; - case value_t::null: - *this = nullptr; - break; - case value_t::discarded: - m_type = value_t::discarded; - break; - default: // LCOV_EXCL_LINE - JSON_ASSERT(false); // LCOV_EXCL_LINE - } - assert_invariant(); - } - - /*! - @brief create a container (array or object) from an initializer list - - Creates a JSON value of type array or object from the passed initializer - list @a init. In case @a type_deduction is `true` (default), the type of - the JSON value to be created is deducted from the initializer list @a init - according to the following rules: - - 1. If the list is empty, an empty JSON object value `{}` is created. - 2. If the list consists of pairs whose first element is a string, a JSON - object value is created where the first elements of the pairs are - treated as keys and the second elements are as values. - 3. In all other cases, an array is created. - - The rules aim to create the best fit between a C++ initializer list and - JSON values. The rationale is as follows: - - 1. The empty initializer list is written as `{}` which is exactly an empty - JSON object. - 2. C++ has no way of describing mapped types other than to list a list of - pairs. As JSON requires that keys must be of type string, rule 2 is the - weakest constraint one can pose on initializer lists to interpret them - as an object. - 3. In all other cases, the initializer list could not be interpreted as - JSON object type, so interpreting it as JSON array type is safe. - - With the rules described above, the following JSON values cannot be - expressed by an initializer list: - - - the empty array (`[]`): use @ref array(initializer_list_t) - with an empty initializer list in this case - - arrays whose elements satisfy rule 2: use @ref - array(initializer_list_t) with the same initializer list - in this case - - @note When used without parentheses around an empty initializer list, @ref - basic_json() is called instead of this function, yielding the JSON null - value. - - @param[in] init initializer list with JSON values - - @param[in] type_deduction internal parameter; when set to `true`, the type - of the JSON value is deducted from the initializer list @a init; when set - to `false`, the type provided via @a manual_type is forced. This mode is - used by the functions @ref array(initializer_list_t) and - @ref object(initializer_list_t). - - @param[in] manual_type internal parameter; when @a type_deduction is set - to `false`, the created JSON value will use the provided type (only @ref - value_t::array and @ref value_t::object are valid); when @a type_deduction - is set to `true`, this parameter has no effect - - @throw type_error.301 if @a type_deduction is `false`, @a manual_type is - `value_t::object`, but @a init contains an element which is not a pair - whose first element is a string. In this case, the constructor could not - create an object. If @a type_deduction would have be `true`, an array - would have been created. See @ref object(initializer_list_t) - for an example. - - @complexity Linear in the size of the initializer list @a init. - - @exceptionsafety Strong guarantee: if an exception is thrown, there are no - changes to any JSON value. - - @liveexample{The example below shows how JSON values are created from - initializer lists.,basic_json__list_init_t} - - @sa @ref array(initializer_list_t) -- create a JSON array - value from an initializer list - @sa @ref object(initializer_list_t) -- create a JSON object - value from an initializer list - - @since version 1.0.0 - */ - basic_json(initializer_list_t init, - bool type_deduction = true, - value_t manual_type = value_t::array) - { - // check if each element is an array with two elements whose first - // element is a string - bool is_an_object = std::all_of(init.begin(), init.end(), - [](const detail::json_ref& element_ref) - { - return element_ref->is_array() && element_ref->size() == 2 && (*element_ref)[0].is_string(); - }); - - // adjust type if type deduction is not wanted - if (!type_deduction) - { - // if array is wanted, do not create an object though possible - if (manual_type == value_t::array) - { - is_an_object = false; - } - - // if object is wanted but impossible, throw an exception - if (JSON_HEDLEY_UNLIKELY(manual_type == value_t::object && !is_an_object)) - { - JSON_THROW(type_error::create(301, "cannot create object from initializer list")); - } - } - - if (is_an_object) - { - // the initializer list is a list of pairs -> create object - m_type = value_t::object; - m_value = value_t::object; - - std::for_each(init.begin(), init.end(), [this](const detail::json_ref& element_ref) - { - auto element = element_ref.moved_or_copied(); - m_value.object->emplace( - std::move(*((*element.m_value.array)[0].m_value.string)), - std::move((*element.m_value.array)[1])); - }); - } - else - { - // the initializer list describes an array -> create array - m_type = value_t::array; - m_value.array = create(init.begin(), init.end()); - } - - assert_invariant(); - } - - /*! - @brief explicitly create a binary array (without subtype) - - Creates a JSON binary array value from a given binary container. Binary - values are part of various binary formats, such as CBOR, MessagePack, and - BSON. This constructor is used to create a value for serialization to those - formats. - - @note Note, this function exists because of the difficulty in correctly - specifying the correct template overload in the standard value ctor, as both - JSON arrays and JSON binary arrays are backed with some form of a - `std::vector`. Because JSON binary arrays are a non-standard extension it - was decided that it would be best to prevent automatic initialization of a - binary array type, for backwards compatibility and so it does not happen on - accident. - - @param[in] init container containing bytes to use as binary type - - @return JSON binary array value - - @complexity Linear in the size of @a init. - - @exceptionsafety Strong guarantee: if an exception is thrown, there are no - changes to any JSON value. - - @since version 3.8.0 - */ - JSON_HEDLEY_WARN_UNUSED_RESULT - static basic_json binary(const typename binary_t::container_type& init) - { - auto res = basic_json(); - res.m_type = value_t::binary; - res.m_value = init; - return res; - } - - /*! - @brief explicitly create a binary array (with subtype) - - Creates a JSON binary array value from a given binary container. Binary - values are part of various binary formats, such as CBOR, MessagePack, and - BSON. This constructor is used to create a value for serialization to those - formats. - - @note Note, this function exists because of the difficulty in correctly - specifying the correct template overload in the standard value ctor, as both - JSON arrays and JSON binary arrays are backed with some form of a - `std::vector`. Because JSON binary arrays are a non-standard extension it - was decided that it would be best to prevent automatic initialization of a - binary array type, for backwards compatibility and so it does not happen on - accident. - - @param[in] init container containing bytes to use as binary type - @param[in] subtype subtype to use in MessagePack and BSON - - @return JSON binary array value - - @complexity Linear in the size of @a init. - - @exceptionsafety Strong guarantee: if an exception is thrown, there are no - changes to any JSON value. - - @since version 3.8.0 - */ - JSON_HEDLEY_WARN_UNUSED_RESULT - static basic_json binary(const typename binary_t::container_type& init, std::uint8_t subtype) - { - auto res = basic_json(); - res.m_type = value_t::binary; - res.m_value = binary_t(init, subtype); - return res; - } - - /// @copydoc binary(const typename binary_t::container_type&) - JSON_HEDLEY_WARN_UNUSED_RESULT - static basic_json binary(typename binary_t::container_type&& init) - { - auto res = basic_json(); - res.m_type = value_t::binary; - res.m_value = std::move(init); - return res; - } - - /// @copydoc binary(const typename binary_t::container_type&, std::uint8_t) - JSON_HEDLEY_WARN_UNUSED_RESULT - static basic_json binary(typename binary_t::container_type&& init, std::uint8_t subtype) - { - auto res = basic_json(); - res.m_type = value_t::binary; - res.m_value = binary_t(std::move(init), subtype); - return res; - } - - /*! - @brief explicitly create an array from an initializer list - - Creates a JSON array value from a given initializer list. That is, given a - list of values `a, b, c`, creates the JSON value `[a, b, c]`. If the - initializer list is empty, the empty array `[]` is created. - - @note This function is only needed to express two edge cases that cannot - be realized with the initializer list constructor (@ref - basic_json(initializer_list_t, bool, value_t)). These cases - are: - 1. creating an array whose elements are all pairs whose first element is a - string -- in this case, the initializer list constructor would create an - object, taking the first elements as keys - 2. creating an empty array -- passing the empty initializer list to the - initializer list constructor yields an empty object - - @param[in] init initializer list with JSON values to create an array from - (optional) - - @return JSON array value - - @complexity Linear in the size of @a init. - - @exceptionsafety Strong guarantee: if an exception is thrown, there are no - changes to any JSON value. - - @liveexample{The following code shows an example for the `array` - function.,array} - - @sa @ref basic_json(initializer_list_t, bool, value_t) -- - create a JSON value from an initializer list - @sa @ref object(initializer_list_t) -- create a JSON object - value from an initializer list - - @since version 1.0.0 - */ - JSON_HEDLEY_WARN_UNUSED_RESULT - static basic_json array(initializer_list_t init = {}) - { - return basic_json(init, false, value_t::array); - } - - /*! - @brief explicitly create an object from an initializer list - - Creates a JSON object value from a given initializer list. The initializer - lists elements must be pairs, and their first elements must be strings. If - the initializer list is empty, the empty object `{}` is created. - - @note This function is only added for symmetry reasons. In contrast to the - related function @ref array(initializer_list_t), there are - no cases which can only be expressed by this function. That is, any - initializer list @a init can also be passed to the initializer list - constructor @ref basic_json(initializer_list_t, bool, value_t). - - @param[in] init initializer list to create an object from (optional) - - @return JSON object value - - @throw type_error.301 if @a init is not a list of pairs whose first - elements are strings. In this case, no object can be created. When such a - value is passed to @ref basic_json(initializer_list_t, bool, value_t), - an array would have been created from the passed initializer list @a init. - See example below. - - @complexity Linear in the size of @a init. - - @exceptionsafety Strong guarantee: if an exception is thrown, there are no - changes to any JSON value. - - @liveexample{The following code shows an example for the `object` - function.,object} - - @sa @ref basic_json(initializer_list_t, bool, value_t) -- - create a JSON value from an initializer list - @sa @ref array(initializer_list_t) -- create a JSON array - value from an initializer list - - @since version 1.0.0 - */ - JSON_HEDLEY_WARN_UNUSED_RESULT - static basic_json object(initializer_list_t init = {}) - { - return basic_json(init, false, value_t::object); - } - - /*! - @brief construct an array with count copies of given value - - Constructs a JSON array value by creating @a cnt copies of a passed value. - In case @a cnt is `0`, an empty array is created. - - @param[in] cnt the number of JSON copies of @a val to create - @param[in] val the JSON value to copy - - @post `std::distance(begin(),end()) == cnt` holds. - - @complexity Linear in @a cnt. - - @exceptionsafety Strong guarantee: if an exception is thrown, there are no - changes to any JSON value. - - @liveexample{The following code shows examples for the @ref - basic_json(size_type\, const basic_json&) - constructor.,basic_json__size_type_basic_json} - - @since version 1.0.0 - */ - basic_json(size_type cnt, const basic_json& val) - : m_type(value_t::array) - { - m_value.array = create(cnt, val); - assert_invariant(); - } - - /*! - @brief construct a JSON container given an iterator range - - Constructs the JSON value with the contents of the range `[first, last)`. - The semantics depends on the different types a JSON value can have: - - In case of a null type, invalid_iterator.206 is thrown. - - In case of other primitive types (number, boolean, or string), @a first - must be `begin()` and @a last must be `end()`. In this case, the value is - copied. Otherwise, invalid_iterator.204 is thrown. - - In case of structured types (array, object), the constructor behaves as - similar versions for `std::vector` or `std::map`; that is, a JSON array - or object is constructed from the values in the range. - - @tparam InputIT an input iterator type (@ref iterator or @ref - const_iterator) - - @param[in] first begin of the range to copy from (included) - @param[in] last end of the range to copy from (excluded) - - @pre Iterators @a first and @a last must be initialized. **This - precondition is enforced with an assertion (see warning).** If - assertions are switched off, a violation of this precondition yields - undefined behavior. - - @pre Range `[first, last)` is valid. Usually, this precondition cannot be - checked efficiently. Only certain edge cases are detected; see the - description of the exceptions below. A violation of this precondition - yields undefined behavior. - - @warning A precondition is enforced with a runtime assertion that will - result in calling `std::abort` if this precondition is not met. - Assertions can be disabled by defining `NDEBUG` at compile time. - See https://en.cppreference.com/w/cpp/error/assert for more - information. - - @throw invalid_iterator.201 if iterators @a first and @a last are not - compatible (i.e., do not belong to the same JSON value). In this case, - the range `[first, last)` is undefined. - @throw invalid_iterator.204 if iterators @a first and @a last belong to a - primitive type (number, boolean, or string), but @a first does not point - to the first element any more. In this case, the range `[first, last)` is - undefined. See example code below. - @throw invalid_iterator.206 if iterators @a first and @a last belong to a - null value. In this case, the range `[first, last)` is undefined. - - @complexity Linear in distance between @a first and @a last. - - @exceptionsafety Strong guarantee: if an exception is thrown, there are no - changes to any JSON value. - - @liveexample{The example below shows several ways to create JSON values by - specifying a subrange with iterators.,basic_json__InputIt_InputIt} - - @since version 1.0.0 - */ - template < class InputIT, typename std::enable_if < - std::is_same::value || - std::is_same::value, int >::type = 0 > - basic_json(InputIT first, InputIT last) - { - JSON_ASSERT(first.m_object != nullptr); - JSON_ASSERT(last.m_object != nullptr); - - // make sure iterator fits the current value - if (JSON_HEDLEY_UNLIKELY(first.m_object != last.m_object)) - { - JSON_THROW(invalid_iterator::create(201, "iterators are not compatible")); - } - - // copy type from first iterator - m_type = first.m_object->m_type; - - // check if iterator range is complete for primitive values - switch (m_type) - { - case value_t::boolean: - case value_t::number_float: - case value_t::number_integer: - case value_t::number_unsigned: - case value_t::string: - { - if (JSON_HEDLEY_UNLIKELY(!first.m_it.primitive_iterator.is_begin() - || !last.m_it.primitive_iterator.is_end())) - { - JSON_THROW(invalid_iterator::create(204, "iterators out of range")); - } - break; - } - - default: - break; - } - - switch (m_type) - { - case value_t::number_integer: - { - m_value.number_integer = first.m_object->m_value.number_integer; - break; - } - - case value_t::number_unsigned: - { - m_value.number_unsigned = first.m_object->m_value.number_unsigned; - break; - } - - case value_t::number_float: - { - m_value.number_float = first.m_object->m_value.number_float; - break; - } - - case value_t::boolean: - { - m_value.boolean = first.m_object->m_value.boolean; - break; - } - - case value_t::string: - { - m_value = *first.m_object->m_value.string; - break; - } - - case value_t::object: - { - m_value.object = create(first.m_it.object_iterator, - last.m_it.object_iterator); - break; - } - - case value_t::array: - { - m_value.array = create(first.m_it.array_iterator, - last.m_it.array_iterator); - break; - } - - case value_t::binary: - { - m_value = *first.m_object->m_value.binary; - break; - } - - default: - JSON_THROW(invalid_iterator::create(206, "cannot construct with iterators from " + - std::string(first.m_object->type_name()))); - } - - assert_invariant(); - } - - - /////////////////////////////////////// - // other constructors and destructor // - /////////////////////////////////////// - - template, - std::is_same>::value, int> = 0 > - basic_json(const JsonRef& ref) : basic_json(ref.moved_or_copied()) {} - - /*! - @brief copy constructor - - Creates a copy of a given JSON value. - - @param[in] other the JSON value to copy - - @post `*this == other` - - @complexity Linear in the size of @a other. - - @exceptionsafety Strong guarantee: if an exception is thrown, there are no - changes to any JSON value. - - @requirement This function helps `basic_json` satisfying the - [Container](https://en.cppreference.com/w/cpp/named_req/Container) - requirements: - - The complexity is linear. - - As postcondition, it holds: `other == basic_json(other)`. - - @liveexample{The following code shows an example for the copy - constructor.,basic_json__basic_json} - - @since version 1.0.0 - */ - basic_json(const basic_json& other) - : m_type(other.m_type) - { - // check of passed value is valid - other.assert_invariant(); - - switch (m_type) - { - case value_t::object: - { - m_value = *other.m_value.object; - break; - } - - case value_t::array: - { - m_value = *other.m_value.array; - break; - } - - case value_t::string: - { - m_value = *other.m_value.string; - break; - } - - case value_t::boolean: - { - m_value = other.m_value.boolean; - break; - } - - case value_t::number_integer: - { - m_value = other.m_value.number_integer; - break; - } - - case value_t::number_unsigned: - { - m_value = other.m_value.number_unsigned; - break; - } - - case value_t::number_float: - { - m_value = other.m_value.number_float; - break; - } - - case value_t::binary: - { - m_value = *other.m_value.binary; - break; - } - - default: - break; - } - - assert_invariant(); - } - - /*! - @brief move constructor - - Move constructor. Constructs a JSON value with the contents of the given - value @a other using move semantics. It "steals" the resources from @a - other and leaves it as JSON null value. - - @param[in,out] other value to move to this object - - @post `*this` has the same value as @a other before the call. - @post @a other is a JSON null value. - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this constructor never throws - exceptions. - - @requirement This function helps `basic_json` satisfying the - [MoveConstructible](https://en.cppreference.com/w/cpp/named_req/MoveConstructible) - requirements. - - @liveexample{The code below shows the move constructor explicitly called - via std::move.,basic_json__moveconstructor} - - @since version 1.0.0 - */ - basic_json(basic_json&& other) noexcept - : m_type(std::move(other.m_type)), - m_value(std::move(other.m_value)) - { - // check that passed value is valid - other.assert_invariant(); - - // invalidate payload - other.m_type = value_t::null; - other.m_value = {}; - - assert_invariant(); - } - - /*! - @brief copy assignment - - Copy assignment operator. Copies a JSON value via the "copy and swap" - strategy: It is expressed in terms of the copy constructor, destructor, - and the `swap()` member function. - - @param[in] other value to copy from - - @complexity Linear. - - @requirement This function helps `basic_json` satisfying the - [Container](https://en.cppreference.com/w/cpp/named_req/Container) - requirements: - - The complexity is linear. - - @liveexample{The code below shows and example for the copy assignment. It - creates a copy of value `a` which is then swapped with `b`. Finally\, the - copy of `a` (which is the null value after the swap) is - destroyed.,basic_json__copyassignment} - - @since version 1.0.0 - */ - basic_json& operator=(basic_json other) noexcept ( - std::is_nothrow_move_constructible::value&& - std::is_nothrow_move_assignable::value&& - std::is_nothrow_move_constructible::value&& - std::is_nothrow_move_assignable::value - ) - { - // check that passed value is valid - other.assert_invariant(); - - using std::swap; - swap(m_type, other.m_type); - swap(m_value, other.m_value); - - assert_invariant(); - return *this; - } - - /*! - @brief destructor - - Destroys the JSON value and frees all allocated memory. - - @complexity Linear. - - @requirement This function helps `basic_json` satisfying the - [Container](https://en.cppreference.com/w/cpp/named_req/Container) - requirements: - - The complexity is linear. - - All stored elements are destroyed and all memory is freed. - - @since version 1.0.0 - */ - ~basic_json() noexcept - { - assert_invariant(); - m_value.destroy(m_type); - } - - /// @} - - public: - /////////////////////// - // object inspection // - /////////////////////// - - /// @name object inspection - /// Functions to inspect the type of a JSON value. - /// @{ - - /*! - @brief serialization - - Serialization function for JSON values. The function tries to mimic - Python's `json.dumps()` function, and currently supports its @a indent - and @a ensure_ascii parameters. - - @param[in] indent If indent is nonnegative, then array elements and object - members will be pretty-printed with that indent level. An indent level of - `0` will only insert newlines. `-1` (the default) selects the most compact - representation. - @param[in] indent_char The character to use for indentation if @a indent is - greater than `0`. The default is ` ` (space). - @param[in] ensure_ascii If @a ensure_ascii is true, all non-ASCII characters - in the output are escaped with `\uXXXX` sequences, and the result consists - of ASCII characters only. - @param[in] error_handler how to react on decoding errors; there are three - possible values: `strict` (throws and exception in case a decoding error - occurs; default), `replace` (replace invalid UTF-8 sequences with U+FFFD), - and `ignore` (ignore invalid UTF-8 sequences during serialization; all - bytes are copied to the output unchanged). - - @return string containing the serialization of the JSON value - - @throw type_error.316 if a string stored inside the JSON value is not - UTF-8 encoded and @a error_handler is set to strict - - @note Binary values are serialized as object containing two keys: - - "bytes": an array of bytes as integers - - "subtype": the subtype as integer or "null" if the binary has no subtype - - @complexity Linear. - - @exceptionsafety Strong guarantee: if an exception is thrown, there are no - changes in the JSON value. - - @liveexample{The following example shows the effect of different @a indent\, - @a indent_char\, and @a ensure_ascii parameters to the result of the - serialization.,dump} - - @see https://docs.python.org/2/library/json.html#json.dump - - @since version 1.0.0; indentation character @a indent_char, option - @a ensure_ascii and exceptions added in version 3.0.0; error - handlers added in version 3.4.0; serialization of binary values added - in version 3.8.0. - */ - string_t dump(const int indent = -1, - const char indent_char = ' ', - const bool ensure_ascii = false, - const error_handler_t error_handler = error_handler_t::strict) const - { - string_t result; - serializer s(detail::output_adapter(result), indent_char, error_handler); - - if (indent >= 0) - { - s.dump(*this, true, ensure_ascii, static_cast(indent)); - } - else - { - s.dump(*this, false, ensure_ascii, 0); - } - - return result; - } - - /*! - @brief return the type of the JSON value (explicit) - - Return the type of the JSON value as a value from the @ref value_t - enumeration. - - @return the type of the JSON value - Value type | return value - ------------------------- | ------------------------- - null | value_t::null - boolean | value_t::boolean - string | value_t::string - number (integer) | value_t::number_integer - number (unsigned integer) | value_t::number_unsigned - number (floating-point) | value_t::number_float - object | value_t::object - array | value_t::array - binary | value_t::binary - discarded | value_t::discarded - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this member function never throws - exceptions. - - @liveexample{The following code exemplifies `type()` for all JSON - types.,type} - - @sa @ref operator value_t() -- return the type of the JSON value (implicit) - @sa @ref type_name() -- return the type as string - - @since version 1.0.0 - */ - constexpr value_t type() const noexcept - { - return m_type; - } - - /*! - @brief return whether type is primitive - - This function returns true if and only if the JSON type is primitive - (string, number, boolean, or null). - - @return `true` if type is primitive (string, number, boolean, or null), - `false` otherwise. - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this member function never throws - exceptions. - - @liveexample{The following code exemplifies `is_primitive()` for all JSON - types.,is_primitive} - - @sa @ref is_structured() -- returns whether JSON value is structured - @sa @ref is_null() -- returns whether JSON value is `null` - @sa @ref is_string() -- returns whether JSON value is a string - @sa @ref is_boolean() -- returns whether JSON value is a boolean - @sa @ref is_number() -- returns whether JSON value is a number - @sa @ref is_binary() -- returns whether JSON value is a binary array - - @since version 1.0.0 - */ - constexpr bool is_primitive() const noexcept - { - return is_null() || is_string() || is_boolean() || is_number() || is_binary(); - } - - /*! - @brief return whether type is structured - - This function returns true if and only if the JSON type is structured - (array or object). - - @return `true` if type is structured (array or object), `false` otherwise. - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this member function never throws - exceptions. - - @liveexample{The following code exemplifies `is_structured()` for all JSON - types.,is_structured} - - @sa @ref is_primitive() -- returns whether value is primitive - @sa @ref is_array() -- returns whether value is an array - @sa @ref is_object() -- returns whether value is an object - - @since version 1.0.0 - */ - constexpr bool is_structured() const noexcept - { - return is_array() || is_object(); - } - - /*! - @brief return whether value is null - - This function returns true if and only if the JSON value is null. - - @return `true` if type is null, `false` otherwise. - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this member function never throws - exceptions. - - @liveexample{The following code exemplifies `is_null()` for all JSON - types.,is_null} - - @since version 1.0.0 - */ - constexpr bool is_null() const noexcept - { - return m_type == value_t::null; - } - - /*! - @brief return whether value is a boolean - - This function returns true if and only if the JSON value is a boolean. - - @return `true` if type is boolean, `false` otherwise. - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this member function never throws - exceptions. - - @liveexample{The following code exemplifies `is_boolean()` for all JSON - types.,is_boolean} - - @since version 1.0.0 - */ - constexpr bool is_boolean() const noexcept - { - return m_type == value_t::boolean; - } - - /*! - @brief return whether value is a number - - This function returns true if and only if the JSON value is a number. This - includes both integer (signed and unsigned) and floating-point values. - - @return `true` if type is number (regardless whether integer, unsigned - integer or floating-type), `false` otherwise. - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this member function never throws - exceptions. - - @liveexample{The following code exemplifies `is_number()` for all JSON - types.,is_number} - - @sa @ref is_number_integer() -- check if value is an integer or unsigned - integer number - @sa @ref is_number_unsigned() -- check if value is an unsigned integer - number - @sa @ref is_number_float() -- check if value is a floating-point number - - @since version 1.0.0 - */ - constexpr bool is_number() const noexcept - { - return is_number_integer() || is_number_float(); - } - - /*! - @brief return whether value is an integer number - - This function returns true if and only if the JSON value is a signed or - unsigned integer number. This excludes floating-point values. - - @return `true` if type is an integer or unsigned integer number, `false` - otherwise. - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this member function never throws - exceptions. - - @liveexample{The following code exemplifies `is_number_integer()` for all - JSON types.,is_number_integer} - - @sa @ref is_number() -- check if value is a number - @sa @ref is_number_unsigned() -- check if value is an unsigned integer - number - @sa @ref is_number_float() -- check if value is a floating-point number - - @since version 1.0.0 - */ - constexpr bool is_number_integer() const noexcept - { - return m_type == value_t::number_integer || m_type == value_t::number_unsigned; - } - - /*! - @brief return whether value is an unsigned integer number - - This function returns true if and only if the JSON value is an unsigned - integer number. This excludes floating-point and signed integer values. - - @return `true` if type is an unsigned integer number, `false` otherwise. - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this member function never throws - exceptions. - - @liveexample{The following code exemplifies `is_number_unsigned()` for all - JSON types.,is_number_unsigned} - - @sa @ref is_number() -- check if value is a number - @sa @ref is_number_integer() -- check if value is an integer or unsigned - integer number - @sa @ref is_number_float() -- check if value is a floating-point number - - @since version 2.0.0 - */ - constexpr bool is_number_unsigned() const noexcept - { - return m_type == value_t::number_unsigned; - } - - /*! - @brief return whether value is a floating-point number - - This function returns true if and only if the JSON value is a - floating-point number. This excludes signed and unsigned integer values. - - @return `true` if type is a floating-point number, `false` otherwise. - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this member function never throws - exceptions. - - @liveexample{The following code exemplifies `is_number_float()` for all - JSON types.,is_number_float} - - @sa @ref is_number() -- check if value is number - @sa @ref is_number_integer() -- check if value is an integer number - @sa @ref is_number_unsigned() -- check if value is an unsigned integer - number - - @since version 1.0.0 - */ - constexpr bool is_number_float() const noexcept - { - return m_type == value_t::number_float; - } - - /*! - @brief return whether value is an object - - This function returns true if and only if the JSON value is an object. - - @return `true` if type is object, `false` otherwise. - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this member function never throws - exceptions. - - @liveexample{The following code exemplifies `is_object()` for all JSON - types.,is_object} - - @since version 1.0.0 - */ - constexpr bool is_object() const noexcept - { - return m_type == value_t::object; - } - - /*! - @brief return whether value is an array - - This function returns true if and only if the JSON value is an array. - - @return `true` if type is array, `false` otherwise. - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this member function never throws - exceptions. - - @liveexample{The following code exemplifies `is_array()` for all JSON - types.,is_array} - - @since version 1.0.0 - */ - constexpr bool is_array() const noexcept - { - return m_type == value_t::array; - } - - /*! - @brief return whether value is a string - - This function returns true if and only if the JSON value is a string. - - @return `true` if type is string, `false` otherwise. - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this member function never throws - exceptions. - - @liveexample{The following code exemplifies `is_string()` for all JSON - types.,is_string} - - @since version 1.0.0 - */ - constexpr bool is_string() const noexcept - { - return m_type == value_t::string; - } - - /*! - @brief return whether value is a binary array - - This function returns true if and only if the JSON value is a binary array. - - @return `true` if type is binary array, `false` otherwise. - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this member function never throws - exceptions. - - @liveexample{The following code exemplifies `is_binary()` for all JSON - types.,is_binary} - - @since version 3.8.0 - */ - constexpr bool is_binary() const noexcept - { - return m_type == value_t::binary; - } - - /*! - @brief return whether value is discarded - - This function returns true if and only if the JSON value was discarded - during parsing with a callback function (see @ref parser_callback_t). - - @note This function will always be `false` for JSON values after parsing. - That is, discarded values can only occur during parsing, but will be - removed when inside a structured value or replaced by null in other cases. - - @return `true` if type is discarded, `false` otherwise. - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this member function never throws - exceptions. - - @liveexample{The following code exemplifies `is_discarded()` for all JSON - types.,is_discarded} - - @since version 1.0.0 - */ - constexpr bool is_discarded() const noexcept - { - return m_type == value_t::discarded; - } - - /*! - @brief return the type of the JSON value (implicit) - - Implicitly return the type of the JSON value as a value from the @ref - value_t enumeration. - - @return the type of the JSON value - - @complexity Constant. - - @exceptionsafety No-throw guarantee: this member function never throws - exceptions. - - @liveexample{The following code exemplifies the @ref value_t operator for - all JSON types.,operator__value_t} - - @sa @ref type() -- return the type of the JSON value (explicit) - @sa @ref type_name() -- return the type as string - - @since version 1.0.0 - */ - constexpr operator value_t() const noexcept - { - return m_type; - } - - /// @} - - private: - ////////////////// - // value access // - ////////////////// - - /// get a boolean (explicit) - boolean_t get_impl(boolean_t* /*unused*/) const - { - if (JSON_HEDLEY_LIKELY(is_boolean())) - { - return m_value.boolean; - } - - JSON_THROW(type_error::create(302, "type must be boolean, but is " + std::string(type_name()))); - } - - /// get a pointer to the value (object) - object_t* get_impl_ptr(object_t* /*unused*/) noexcept - { - return is_object() ? m_value.object : nullptr; - } - - /// get a pointer to the value (object) - constexpr const object_t* get_impl_ptr(const object_t* /*unused*/) const noexcept - { - return is_object() ? m_value.object : nullptr; - } - - /// get a pointer to the value (array) - array_t* get_impl_ptr(array_t* /*unused*/) noexcept - { - return is_array() ? m_value.array : nullptr; - } - - /// get a pointer to the value (array) - constexpr const array_t* get_impl_ptr(const array_t* /*unused*/) const noexcept - { - return is_array() ? m_value.array : nullptr; - } - - /// get a pointer to the value (string) - string_t* get_impl_ptr(string_t* /*unused*/) noexcept - { - return is_string() ? m_value.string : nullptr; - } - - /// get a pointer to the value (string) - constexpr const string_t* get_impl_ptr(const string_t* /*unused*/) const noexcept - { - return is_string() ? m_value.string : nullptr; - } - - /// get a pointer to the value (boolean) - boolean_t* get_impl_ptr(boolean_t* /*unused*/) noexcept - { - return is_boolean() ? &m_value.boolean : nullptr; - } - - /// get a pointer to the value (boolean) - constexpr const boolean_t* get_impl_ptr(const boolean_t* /*unused*/) const noexcept - { - return is_boolean() ? &m_value.boolean : nullptr; - } - - /// get a pointer to the value (integer number) - number_integer_t* get_impl_ptr(number_integer_t* /*unused*/) noexcept - { - return is_number_integer() ? &m_value.number_integer : nullptr; - } - - /// get a pointer to the value (integer number) - constexpr const number_integer_t* get_impl_ptr(const number_integer_t* /*unused*/) const noexcept - { - return is_number_integer() ? &m_value.number_integer : nullptr; - } - - /// get a pointer to the value (unsigned number) - number_unsigned_t* get_impl_ptr(number_unsigned_t* /*unused*/) noexcept - { - return is_number_unsigned() ? &m_value.number_unsigned : nullptr; - } - - /// get a pointer to the value (unsigned number) - constexpr const number_unsigned_t* get_impl_ptr(const number_unsigned_t* /*unused*/) const noexcept - { - return is_number_unsigned() ? &m_value.number_unsigned : nullptr; - } - - /// get a pointer to the value (floating-point number) - number_float_t* get_impl_ptr(number_float_t* /*unused*/) noexcept - { - return is_number_float() ? &m_value.number_float : nullptr; - } - - /// get a pointer to the value (floating-point number) - constexpr const number_float_t* get_impl_ptr(const number_float_t* /*unused*/) const noexcept - { - return is_number_float() ? &m_value.number_float : nullptr; - } - - /// get a pointer to the value (binary) - binary_t* get_impl_ptr(binary_t* /*unused*/) noexcept - { - return is_binary() ? m_value.binary : nullptr; - } - - /// get a pointer to the value (binary) - constexpr const binary_t* get_impl_ptr(const binary_t* /*unused*/) const noexcept - { - return is_binary() ? m_value.binary : nullptr; - } - - /*! - @brief helper function to implement get_ref() - - This function helps to implement get_ref() without code duplication for - const and non-const overloads - - @tparam ThisType will be deduced as `basic_json` or `const basic_json` - - @throw type_error.303 if ReferenceType does not match underlying value - type of the current JSON - */ - template - static ReferenceType get_ref_impl(ThisType& obj) - { - // delegate the call to get_ptr<>() - auto ptr = obj.template get_ptr::type>(); - - if (JSON_HEDLEY_LIKELY(ptr != nullptr)) - { - return *ptr; - } - - JSON_THROW(type_error::create(303, "incompatible ReferenceType for get_ref, actual type is " + std::string(obj.type_name()))); - } - - public: - /// @name value access - /// Direct access to the stored value of a JSON value. - /// @{ - - /*! - @brief get special-case overload - - This overloads avoids a lot of template boilerplate, it can be seen as the - identity method - - @tparam BasicJsonType == @ref basic_json - - @return a copy of *this - - @complexity Constant. - - @since version 2.1.0 - */ - template::type, basic_json_t>::value, - int> = 0> - basic_json get() const - { - return *this; - } - - /*! - @brief get special-case overload - - This overloads converts the current @ref basic_json in a different - @ref basic_json type - - @tparam BasicJsonType == @ref basic_json - - @return a copy of *this, converted into @tparam BasicJsonType - - @complexity Depending on the implementation of the called `from_json()` - method. - - @since version 3.2.0 - */ - template < typename BasicJsonType, detail::enable_if_t < - !std::is_same::value&& - detail::is_basic_json::value, int > = 0 > - BasicJsonType get() const - { - return *this; - } - - /*! - @brief get a value (explicit) - - Explicit type conversion between the JSON value and a compatible value - which is [CopyConstructible](https://en.cppreference.com/w/cpp/named_req/CopyConstructible) - and [DefaultConstructible](https://en.cppreference.com/w/cpp/named_req/DefaultConstructible). - The value is converted by calling the @ref json_serializer - `from_json()` method. - - The function is equivalent to executing - @code {.cpp} - ValueType ret; - JSONSerializer::from_json(*this, ret); - return ret; - @endcode - - This overloads is chosen if: - - @a ValueType is not @ref basic_json, - - @ref json_serializer has a `from_json()` method of the form - `void from_json(const basic_json&, ValueType&)`, and - - @ref json_serializer does not have a `from_json()` method of - the form `ValueType from_json(const basic_json&)` - - @tparam ValueTypeCV the provided value type - @tparam ValueType the returned value type - - @return copy of the JSON value, converted to @a ValueType - - @throw what @ref json_serializer `from_json()` method throws - - @liveexample{The example below shows several conversions from JSON values - to other types. There a few things to note: (1) Floating-point numbers can - be converted to integers\, (2) A JSON array can be converted to a standard - `std::vector`\, (3) A JSON object can be converted to C++ - associative containers such as `std::unordered_map`.,get__ValueType_const} - - @since version 2.1.0 - */ - template < typename ValueTypeCV, typename ValueType = detail::uncvref_t, - detail::enable_if_t < - !detail::is_basic_json::value && - detail::has_from_json::value && - !detail::has_non_default_from_json::value, - int > = 0 > - ValueType get() const noexcept(noexcept( - JSONSerializer::from_json(std::declval(), std::declval()))) - { - // we cannot static_assert on ValueTypeCV being non-const, because - // there is support for get(), which is why we - // still need the uncvref - static_assert(!std::is_reference::value, - "get() cannot be used with reference types, you might want to use get_ref()"); - static_assert(std::is_default_constructible::value, - "types must be DefaultConstructible when used with get()"); - - ValueType ret; - JSONSerializer::from_json(*this, ret); - return ret; - } - - /*! - @brief get a value (explicit); special case - - Explicit type conversion between the JSON value and a compatible value - which is **not** [CopyConstructible](https://en.cppreference.com/w/cpp/named_req/CopyConstructible) - and **not** [DefaultConstructible](https://en.cppreference.com/w/cpp/named_req/DefaultConstructible). - The value is converted by calling the @ref json_serializer - `from_json()` method. - - The function is equivalent to executing - @code {.cpp} - return JSONSerializer::from_json(*this); - @endcode - - This overloads is chosen if: - - @a ValueType is not @ref basic_json and - - @ref json_serializer has a `from_json()` method of the form - `ValueType from_json(const basic_json&)` - - @note If @ref json_serializer has both overloads of - `from_json()`, this one is chosen. - - @tparam ValueTypeCV the provided value type - @tparam ValueType the returned value type - - @return copy of the JSON value, converted to @a ValueType - - @throw what @ref json_serializer `from_json()` method throws - - @since version 2.1.0 - */ - template < typename ValueTypeCV, typename ValueType = detail::uncvref_t, - detail::enable_if_t < !std::is_same::value && - detail::has_non_default_from_json::value, - int > = 0 > - ValueType get() const noexcept(noexcept( - JSONSerializer::from_json(std::declval()))) - { - static_assert(!std::is_reference::value, - "get() cannot be used with reference types, you might want to use get_ref()"); - return JSONSerializer::from_json(*this); - } - - /*! - @brief get a value (explicit) - - Explicit type conversion between the JSON value and a compatible value. - The value is filled into the input parameter by calling the @ref json_serializer - `from_json()` method. - - The function is equivalent to executing - @code {.cpp} - ValueType v; - JSONSerializer::from_json(*this, v); - @endcode - - This overloads is chosen if: - - @a ValueType is not @ref basic_json, - - @ref json_serializer has a `from_json()` method of the form - `void from_json(const basic_json&, ValueType&)`, and - - @tparam ValueType the input parameter type. - - @return the input parameter, allowing chaining calls. - - @throw what @ref json_serializer `from_json()` method throws - - @liveexample{The example below shows several conversions from JSON values - to other types. There a few things to note: (1) Floating-point numbers can - be converted to integers\, (2) A JSON array can be converted to a standard - `std::vector`\, (3) A JSON object can be converted to C++ - associative containers such as `std::unordered_map`.,get_to} - - @since version 3.3.0 - */ - template < typename ValueType, - detail::enable_if_t < - !detail::is_basic_json::value&& - detail::has_from_json::value, - int > = 0 > - ValueType & get_to(ValueType& v) const noexcept(noexcept( - JSONSerializer::from_json(std::declval(), v))) - { - JSONSerializer::from_json(*this, v); - return v; - } - - // specialization to allow to call get_to with a basic_json value - // see https://github.com/nlohmann/json/issues/2175 - template::value, - int> = 0> - ValueType & get_to(ValueType& v) const - { - v = *this; - return v; - } - - template < - typename T, std::size_t N, - typename Array = T (&)[N], - detail::enable_if_t < - detail::has_from_json::value, int > = 0 > - Array get_to(T (&v)[N]) const - noexcept(noexcept(JSONSerializer::from_json( - std::declval(), v))) - { - JSONSerializer::from_json(*this, v); - return v; - } - - - /*! - @brief get a pointer value (implicit) - - Implicit pointer access to the internally stored JSON value. No copies are - made. - - @warning Writing data to the pointee of the result yields an undefined - state. - - @tparam PointerType pointer type; must be a pointer to @ref array_t, @ref - object_t, @ref string_t, @ref boolean_t, @ref number_integer_t, - @ref number_unsigned_t, or @ref number_float_t. Enforced by a static - assertion. - - @return pointer to the internally stored JSON value if the requested - pointer type @a PointerType fits to the JSON value; `nullptr` otherwise - - @complexity Constant. - - @liveexample{The example below shows how pointers to internal values of a - JSON value can be requested. Note that no type conversions are made and a - `nullptr` is returned if the value and the requested pointer type does not - match.,get_ptr} - - @since version 1.0.0 - */ - template::value, int>::type = 0> - auto get_ptr() noexcept -> decltype(std::declval().get_impl_ptr(std::declval())) - { - // delegate the call to get_impl_ptr<>() - return get_impl_ptr(static_cast(nullptr)); - } - - /*! - @brief get a pointer value (implicit) - @copydoc get_ptr() - */ - template < typename PointerType, typename std::enable_if < - std::is_pointer::value&& - std::is_const::type>::value, int >::type = 0 > - constexpr auto get_ptr() const noexcept -> decltype(std::declval().get_impl_ptr(std::declval())) - { - // delegate the call to get_impl_ptr<>() const - return get_impl_ptr(static_cast(nullptr)); - } - - /*! - @brief get a pointer value (explicit) - - Explicit pointer access to the internally stored JSON value. No copies are - made. - - @warning The pointer becomes invalid if the underlying JSON object - changes. - - @tparam PointerType pointer type; must be a pointer to @ref array_t, @ref - object_t, @ref string_t, @ref boolean_t, @ref number_integer_t, - @ref number_unsigned_t, or @ref number_float_t. - - @return pointer to the internally stored JSON value if the requested - pointer type @a PointerType fits to the JSON value; `nullptr` otherwise - - @complexity Constant. - - @liveexample{The example below shows how pointers to internal values of a - JSON value can be requested. Note that no type conversions are made and a - `nullptr` is returned if the value and the requested pointer type does not - match.,get__PointerType} - - @sa @ref get_ptr() for explicit pointer-member access - - @since version 1.0.0 - */ - template::value, int>::type = 0> - auto get() noexcept -> decltype(std::declval().template get_ptr()) - { - // delegate the call to get_ptr - return get_ptr(); - } - - /*! - @brief get a pointer value (explicit) - @copydoc get() - */ - template::value, int>::type = 0> - constexpr auto get() const noexcept -> decltype(std::declval().template get_ptr()) - { - // delegate the call to get_ptr - return get_ptr(); - } - - /*! - @brief get a reference value (implicit) - - Implicit reference access to the internally stored JSON value. No copies - are made. - - @warning Writing data to the referee of the result yields an undefined - state. - - @tparam ReferenceType reference type; must be a reference to @ref array_t, - @ref object_t, @ref string_t, @ref boolean_t, @ref number_integer_t, or - @ref number_float_t. Enforced by static assertion. - - @return reference to the internally stored JSON value if the requested - reference type @a ReferenceType fits to the JSON value; throws - type_error.303 otherwise - - @throw type_error.303 in case passed type @a ReferenceType is incompatible - with the stored JSON value; see example below - - @complexity Constant. - - @liveexample{The example shows several calls to `get_ref()`.,get_ref} - - @since version 1.1.0 - */ - template::value, int>::type = 0> - ReferenceType get_ref() - { - // delegate call to get_ref_impl - return get_ref_impl(*this); - } - - /*! - @brief get a reference value (implicit) - @copydoc get_ref() - */ - template < typename ReferenceType, typename std::enable_if < - std::is_reference::value&& - std::is_const::type>::value, int >::type = 0 > - ReferenceType get_ref() const - { - // delegate call to get_ref_impl - return get_ref_impl(*this); - } - - /*! - @brief get a value (implicit) - - Implicit type conversion between the JSON value and a compatible value. - The call is realized by calling @ref get() const. - - @tparam ValueType non-pointer type compatible to the JSON value, for - instance `int` for JSON integer numbers, `bool` for JSON booleans, or - `std::vector` types for JSON arrays. The character type of @ref string_t - as well as an initializer list of this type is excluded to avoid - ambiguities as these types implicitly convert to `std::string`. - - @return copy of the JSON value, converted to type @a ValueType - - @throw type_error.302 in case passed type @a ValueType is incompatible - to the JSON value type (e.g., the JSON value is of type boolean, but a - string is requested); see example below - - @complexity Linear in the size of the JSON value. - - @liveexample{The example below shows several conversions from JSON values - to other types. There a few things to note: (1) Floating-point numbers can - be converted to integers\, (2) A JSON array can be converted to a standard - `std::vector`\, (3) A JSON object can be converted to C++ - associative containers such as `std::unordered_map`.,operator__ValueType} - - @since version 1.0.0 - */ - template < typename ValueType, typename std::enable_if < - !std::is_pointer::value&& - !std::is_same>::value&& - !std::is_same::value&& - !detail::is_basic_json::value - && !std::is_same>::value -#if defined(JSON_HAS_CPP_17) && (defined(__GNUC__) || (defined(_MSC_VER) && _MSC_VER >= 1910 && _MSC_VER <= 1914)) - && !std::is_same::value -#endif - && detail::is_detected::value - , int >::type = 0 > - JSON_EXPLICIT operator ValueType() const - { - // delegate the call to get<>() const - return get(); - } - - /*! - @return reference to the binary value - - @throw type_error.302 if the value is not binary - - @sa @ref is_binary() to check if the value is binary - - @since version 3.8.0 - */ - binary_t& get_binary() - { - if (!is_binary()) - { - JSON_THROW(type_error::create(302, "type must be binary, but is " + std::string(type_name()))); - } - - return *get_ptr(); - } - - /// @copydoc get_binary() - const binary_t& get_binary() const - { - if (!is_binary()) - { - JSON_THROW(type_error::create(302, "type must be binary, but is " + std::string(type_name()))); - } - - return *get_ptr(); - } - - /// @} - - - //////////////////// - // element access // - //////////////////// - - /// @name element access - /// Access to the JSON value. - /// @{ - - /*! - @brief access specified array element with bounds checking - - Returns a reference to the element at specified location @a idx, with - bounds checking. - - @param[in] idx index of the element to access - - @return reference to the element at index @a idx - - @throw type_error.304 if the JSON value is not an array; in this case, - calling `at` with an index makes no sense. See example below. - @throw out_of_range.401 if the index @a idx is out of range of the array; - that is, `idx >= size()`. See example below. - - @exceptionsafety Strong guarantee: if an exception is thrown, there are no - changes in the JSON value. - - @complexity Constant. - - @since version 1.0.0 - - @liveexample{The example below shows how array elements can be read and - written using `at()`. It also demonstrates the different exceptions that - can be thrown.,at__size_type} - */ - reference at(size_type idx) - { - // at only works for arrays - if (JSON_HEDLEY_LIKELY(is_array())) - { - JSON_TRY - { - return m_value.array->at(idx); - } - JSON_CATCH (std::out_of_range&) - { - // create better exception explanation - JSON_THROW(out_of_range::create(401, "array index " + std::to_string(idx) + " is out of range")); - } - } - else - { - JSON_THROW(type_error::create(304, "cannot use at() with " + std::string(type_name()))); - } - } - - /*! - @brief access specified array element with bounds checking - - Returns a const reference to the element at specified location @a idx, - with bounds checking. - - @param[in] idx index of the element to access - - @return const reference to the element at index @a idx - - @throw type_error.304 if the JSON value is not an array; in this case, - calling `at` with an index makes no sense. See example below. - @throw out_of_range.401 if the index @a idx is out of range of the array; - that is, `idx >= size()`. See example below. - - @exceptionsafety Strong guarantee: if an exception is thrown, there are no - changes in the JSON value. - - @complexity Constant. - - @since version 1.0.0 - - @liveexample{The example below shows how array elements can be read using - `at()`. It also demonstrates the different exceptions that can be thrown., - at__size_type_const} - */ - const_reference at(size_type idx) const - { - // at only works for arrays - if (JSON_HEDLEY_LIKELY(is_array())) - { - JSON_TRY - { - return m_value.array->at(idx); - } - JSON_CATCH (std::out_of_range&) - { - // create better exception explanation - JSON_THROW(out_of_range::create(401, "array index " + std::to_string(idx) + " is out of range")); - } - } - else - { - JSON_THROW(type_error::create(304, "cannot use at() with " + std::string(type_name()))); - } - } - - /*! - @brief access specified object element with bounds checking - - Returns a reference to the element at with specified key @a key, with - bounds checking. - - @param[in] key key of the element to access - - @return reference to the element at key @a key - - @throw type_error.304 if the JSON value is not an object; in this case, - calling `at` with a key makes no sense. See example below. - @throw out_of_range.403 if the key @a key is is not stored in the object; - that is, `find(key) == end()`. See example below. - - @exceptionsafety Strong guarantee: if an exception is thrown, there are no - changes in the JSON value. - - @complexity Logarithmic in the size of the container. - - @sa @ref operator[](const typename object_t::key_type&) for unchecked - access by reference - @sa @ref value() for access by value with a default value - - @since version 1.0.0 - - @liveexample{The example below shows how object elements can be read and - written using `at()`. It also demonstrates the different exceptions that - can be thrown.,at__object_t_key_type} - */ - reference at(const typename object_t::key_type& key) - { - // at only works for objects - if (JSON_HEDLEY_LIKELY(is_object())) - { - JSON_TRY - { - return m_value.object->at(key); - } - JSON_CATCH (std::out_of_range&) - { - // create better exception explanation - JSON_THROW(out_of_range::create(403, "key '" + key + "' not found")); - } - } - else - { - JSON_THROW(type_error::create(304, "cannot use at() with " + std::string(type_name()))); - } - } - - /*! - @brief access specified object element with bounds checking - - Returns a const reference to the element at with specified key @a key, - with bounds checking. - - @param[in] key key of the element to access - - @return const reference to the element at key @a key - - @throw type_error.304 if the JSON value is not an object; in this case, - calling `at` with a key makes no sense. See example below. - @throw out_of_range.403 if the key @a key is is not stored in the object; - that is, `find(key) == end()`. See example below. - - @exceptionsafety Strong guarantee: if an exception is thrown, there are no - changes in the JSON value. - - @complexity Logarithmic in the size of the container. - - @sa @ref operator[](const typename object_t::key_type&) for unchecked - access by reference - @sa @ref value() for access by value with a default value - - @since version 1.0.0 - - @liveexample{The example below shows how object elements can be read using - `at()`. It also demonstrates the different exceptions that can be thrown., - at__object_t_key_type_const} - */ - const_reference at(const typename object_t::key_type& key) const - { - // at only works for objects - if (JSON_HEDLEY_LIKELY(is_object())) - { - JSON_TRY - { - return m_value.object->at(key); - } - JSON_CATCH (std::out_of_range&) - { - // create better exception explanation - JSON_THROW(out_of_range::create(403, "key '" + key + "' not found")); - } - } - else - { - JSON_THROW(type_error::create(304, "cannot use at() with " + std::string(type_name()))); - } - } - - /*! - @brief access specified array element - - Returns a reference to the element at specified location @a idx. - - @note If @a idx is beyond the range of the array (i.e., `idx >= size()`), - then the array is silently filled up with `null` values to make `idx` a - valid reference to the last stored element. - - @param[in] idx index of the element to access - - @return reference to the element at index @a idx - - @throw type_error.305 if the JSON value is not an array or null; in that - cases, using the [] operator with an index makes no sense. - - @complexity Constant if @a idx is in the range of the array. Otherwise - linear in `idx - size()`. - - @liveexample{The example below shows how array elements can be read and - written using `[]` operator. Note the addition of `null` - values.,operatorarray__size_type} - - @since version 1.0.0 - */ - reference operator[](size_type idx) - { - // implicitly convert null value to an empty array - if (is_null()) - { - m_type = value_t::array; - m_value.array = create(); - assert_invariant(); - } - - // operator[] only works for arrays - if (JSON_HEDLEY_LIKELY(is_array())) - { - // fill up array with null values if given idx is outside range - if (idx >= m_value.array->size()) - { - m_value.array->insert(m_value.array->end(), - idx - m_value.array->size() + 1, - basic_json()); - } - - return m_value.array->operator[](idx); - } - - JSON_THROW(type_error::create(305, "cannot use operator[] with a numeric argument with " + std::string(type_name()))); - } - - /*! - @brief access specified array element - - Returns a const reference to the element at specified location @a idx. - - @param[in] idx index of the element to access - - @return const reference to the element at index @a idx - - @throw type_error.305 if the JSON value is not an array; in that case, - using the [] operator with an index makes no sense. - - @complexity Constant. - - @liveexample{The example below shows how array elements can be read using - the `[]` operator.,operatorarray__size_type_const} - - @since version 1.0.0 - */ - const_reference operator[](size_type idx) const - { - // const operator[] only works for arrays - if (JSON_HEDLEY_LIKELY(is_array())) - { - return m_value.array->operator[](idx); - } - - JSON_THROW(type_error::create(305, "cannot use operator[] with a numeric argument with " + std::string(type_name()))); - } - - /*! - @brief access specified object element - - Returns a reference to the element at with specified key @a key. - - @note If @a key is not found in the object, then it is silently added to - the object and filled with a `null` value to make `key` a valid reference. - In case the value was `null` before, it is converted to an object. - - @param[in] key key of the element to access - - @return reference to the element at key @a key - - @throw type_error.305 if the JSON value is not an object or null; in that - cases, using the [] operator with a key makes no sense. - - @complexity Logarithmic in the size of the container. - - @liveexample{The example below shows how object elements can be read and - written using the `[]` operator.,operatorarray__key_type} - - @sa @ref at(const typename object_t::key_type&) for access by reference - with range checking - @sa @ref value() for access by value with a default value - - @since version 1.0.0 - */ - reference operator[](const typename object_t::key_type& key) - { - // implicitly convert null value to an empty object - if (is_null()) - { - m_type = value_t::object; - m_value.object = create(); - assert_invariant(); - } - - // operator[] only works for objects - if (JSON_HEDLEY_LIKELY(is_object())) - { - return m_value.object->operator[](key); - } - - JSON_THROW(type_error::create(305, "cannot use operator[] with a string argument with " + std::string(type_name()))); - } - - /*! - @brief read-only access specified object element - - Returns a const reference to the element at with specified key @a key. No - bounds checking is performed. - - @warning If the element with key @a key does not exist, the behavior is - undefined. - - @param[in] key key of the element to access - - @return const reference to the element at key @a key - - @pre The element with key @a key must exist. **This precondition is - enforced with an assertion.** - - @throw type_error.305 if the JSON value is not an object; in that case, - using the [] operator with a key makes no sense. - - @complexity Logarithmic in the size of the container. - - @liveexample{The example below shows how object elements can be read using - the `[]` operator.,operatorarray__key_type_const} - - @sa @ref at(const typename object_t::key_type&) for access by reference - with range checking - @sa @ref value() for access by value with a default value - - @since version 1.0.0 - */ - const_reference operator[](const typename object_t::key_type& key) const - { - // const operator[] only works for objects - if (JSON_HEDLEY_LIKELY(is_object())) - { - JSON_ASSERT(m_value.object->find(key) != m_value.object->end()); - return m_value.object->find(key)->second; - } - - JSON_THROW(type_error::create(305, "cannot use operator[] with a string argument with " + std::string(type_name()))); - } - - /*! - @brief access specified object element - - Returns a reference to the element at with specified key @a key. - - @note If @a key is not found in the object, then it is silently added to - the object and filled with a `null` value to make `key` a valid reference. - In case the value was `null` before, it is converted to an object. - - @param[in] key key of the element to access - - @return reference to the element at key @a key - - @throw type_error.305 if the JSON value is not an object or null; in that - cases, using the [] operator with a key makes no sense. - - @complexity Logarithmic in the size of the container. - - @liveexample{The example below shows how object elements can be read and - written using the `[]` operator.,operatorarray__key_type} - - @sa @ref at(const typename object_t::key_type&) for access by reference - with range checking - @sa @ref value() for access by value with a default value - - @since version 1.1.0 - */ - template - JSON_HEDLEY_NON_NULL(2) - reference operator[](T* key) - { - // implicitly convert null to object - if (is_null()) - { - m_type = value_t::object; - m_value = value_t::object; - assert_invariant(); - } - - // at only works for objects - if (JSON_HEDLEY_LIKELY(is_object())) - { - return m_value.object->operator[](key); - } - - JSON_THROW(type_error::create(305, "cannot use operator[] with a string argument with " + std::string(type_name()))); - } - - /*! - @brief read-only access specified object element - - Returns a const reference to the element at with specified key @a key. No - bounds checking is performed. - - @warning If the element with key @a key does not exist, the behavior is - undefined. - - @param[in] key key of the element to access - - @return const reference to the element at key @a key - - @pre The element with key @a key must exist. **This precondition is - enforced with an assertion.** - - @throw type_error.305 if the JSON value is not an object; in that case, - using the [] operator with a key makes no sense. - - @complexity Logarithmic in the size of the container. - - @liveexample{The example below shows how object elements can be read using - the `[]` operator.,operatorarray__key_type_const} - - @sa @ref at(const typename object_t::key_type&) for access by reference - with range checking - @sa @ref value() for access by value with a default value - - @since version 1.1.0 - */ - template - JSON_HEDLEY_NON_NULL(2) - const_reference operator[](T* key) const - { - // at only works for objects - if (JSON_HEDLEY_LIKELY(is_object())) - { - JSON_ASSERT(m_value.object->find(key) != m_value.object->end()); - return m_value.object->find(key)->second; - } - - JSON_THROW(type_error::create(305, "cannot use operator[] with a string argument with " + std::string(type_name()))); - } - - /*! - @brief access specified object element with default value - - Returns either a copy of an object's element at the specified key @a key - or a given default value if no element with key @a key exists. - - The function is basically equivalent to executing - @code {.cpp} - try { - return at(key); - } catch(out_of_range) { - return default_value; - } - @endcode - - @note Unlike @ref at(const typename object_t::key_type&), this function - does not throw if the given key @a key was not found. - - @note Unlike @ref operator[](const typename object_t::key_type& key), this - function does not implicitly add an element to the position defined by @a - key. This function is furthermore also applicable to const objects. - - @param[in] key key of the element to access - @param[in] default_value the value to return if @a key is not found - - @tparam ValueType type compatible to JSON values, for instance `int` for - JSON integer numbers, `bool` for JSON booleans, or `std::vector` types for - JSON arrays. Note the type of the expected value at @a key and the default - value @a default_value must be compatible. - - @return copy of the element at key @a key or @a default_value if @a key - is not found - - @throw type_error.302 if @a default_value does not match the type of the - value at @a key - @throw type_error.306 if the JSON value is not an object; in that case, - using `value()` with a key makes no sense. - - @complexity Logarithmic in the size of the container. - - @liveexample{The example below shows how object elements can be queried - with a default value.,basic_json__value} - - @sa @ref at(const typename object_t::key_type&) for access by reference - with range checking - @sa @ref operator[](const typename object_t::key_type&) for unchecked - access by reference - - @since version 1.0.0 - */ - // using std::is_convertible in a std::enable_if will fail when using explicit conversions - template < class ValueType, typename std::enable_if < - detail::is_getable::value - && !std::is_same::value, int >::type = 0 > - ValueType value(const typename object_t::key_type& key, const ValueType& default_value) const - { - // at only works for objects - if (JSON_HEDLEY_LIKELY(is_object())) - { - // if key is found, return value and given default value otherwise - const auto it = find(key); - if (it != end()) - { - return it->template get(); - } - - return default_value; - } - - JSON_THROW(type_error::create(306, "cannot use value() with " + std::string(type_name()))); - } - - /*! - @brief overload for a default value of type const char* - @copydoc basic_json::value(const typename object_t::key_type&, const ValueType&) const - */ - string_t value(const typename object_t::key_type& key, const char* default_value) const - { - return value(key, string_t(default_value)); - } - - /*! - @brief access specified object element via JSON Pointer with default value - - Returns either a copy of an object's element at the specified key @a key - or a given default value if no element with key @a key exists. - - The function is basically equivalent to executing - @code {.cpp} - try { - return at(ptr); - } catch(out_of_range) { - return default_value; - } - @endcode - - @note Unlike @ref at(const json_pointer&), this function does not throw - if the given key @a key was not found. - - @param[in] ptr a JSON pointer to the element to access - @param[in] default_value the value to return if @a ptr found no value - - @tparam ValueType type compatible to JSON values, for instance `int` for - JSON integer numbers, `bool` for JSON booleans, or `std::vector` types for - JSON arrays. Note the type of the expected value at @a key and the default - value @a default_value must be compatible. - - @return copy of the element at key @a key or @a default_value if @a key - is not found - - @throw type_error.302 if @a default_value does not match the type of the - value at @a ptr - @throw type_error.306 if the JSON value is not an object; in that case, - using `value()` with a key makes no sense. - - @complexity Logarithmic in the size of the container. - - @liveexample{The example below shows how object elements can be queried - with a default value.,basic_json__value_ptr} - - @sa @ref operator[](const json_pointer&) for unchecked access by reference - - @since version 2.0.2 - */ - template::value, int>::type = 0> - ValueType value(const json_pointer& ptr, const ValueType& default_value) const - { - // at only works for objects - if (JSON_HEDLEY_LIKELY(is_object())) - { - // if pointer resolves a value, return it or use default value - JSON_TRY - { - return ptr.get_checked(this).template get(); - } - JSON_INTERNAL_CATCH (out_of_range&) - { - return default_value; - } - } - - JSON_THROW(type_error::create(306, "cannot use value() with " + std::string(type_name()))); - } - - /*! - @brief overload for a default value of type const char* - @copydoc basic_json::value(const json_pointer&, ValueType) const - */ - JSON_HEDLEY_NON_NULL(3) - string_t value(const json_pointer& ptr, const char* default_value) const - { - return value(ptr, string_t(default_value)); - } - - /*! - @brief access the first element - - Returns a reference to the first element in the container. For a JSON - container `c`, the expression `c.front()` is equivalent to `*c.begin()`. - - @return In case of a structured type (array or object), a reference to the - first element is returned. In case of number, string, boolean, or binary - values, a reference to the value is returned. - - @complexity Constant. - - @pre The JSON value must not be `null` (would throw `std::out_of_range`) - or an empty array or object (undefined behavior, **guarded by - assertions**). - @post The JSON value remains unchanged. - - @throw invalid_iterator.214 when called on `null` value - - @liveexample{The following code shows an example for `front()`.,front} - - @sa @ref back() -- access the last element - - @since version 1.0.0 - */ - reference front() - { - return *begin(); - } - - /*! - @copydoc basic_json::front() - */ - const_reference front() const - { - return *cbegin(); - } - - /*! - @brief access the last element - - Returns a reference to the last element in the container. For a JSON - container `c`, the expression `c.back()` is equivalent to - @code {.cpp} - auto tmp = c.end(); - --tmp; - return *tmp; - @endcode - - @return In case of a structured type (array or object), a reference to the - last element is returned. In case of number, string, boolean, or binary - values, a reference to the value is returned. - - @complexity Constant. - - @pre The JSON value must not be `null` (would throw `std::out_of_range`) - or an empty array or object (undefined behavior, **guarded by - assertions**). - @post The JSON value remains unchanged. - - @throw invalid_iterator.214 when called on a `null` value. See example - below. - - @liveexample{The following code shows an example for `back()`.,back} - - @sa @ref front() -- access the first element - - @since version 1.0.0 - */ - reference back() - { - auto tmp = end(); - --tmp; - return *tmp; - } - - /*! - @copydoc basic_json::back() - */ - const_reference back() const - { - auto tmp = cend(); - --tmp; - return *tmp; - } - - /*! - @brief remove element given an iterator - - Removes the element specified by iterator @a pos. The iterator @a pos must - be valid and dereferenceable. Thus the `end()` iterator (which is valid, - but is not dereferenceable) cannot be used as a value for @a pos. - - If called on a primitive type other than `null`, the resulting JSON value - will be `null`. - - @param[in] pos iterator to the element to remove - @return Iterator following the last removed element. If the iterator @a - pos refers to the last element, the `end()` iterator is returned. - - @tparam IteratorType an @ref iterator or @ref const_iterator - - @post Invalidates iterators and references at or after the point of the - erase, including the `end()` iterator. - - @throw type_error.307 if called on a `null` value; example: `"cannot use - erase() with null"` - @throw invalid_iterator.202 if called on an iterator which does not belong - to the current JSON value; example: `"iterator does not fit current - value"` - @throw invalid_iterator.205 if called on a primitive type with invalid - iterator (i.e., any iterator which is not `begin()`); example: `"iterator - out of range"` - - @complexity The complexity depends on the type: - - objects: amortized constant - - arrays: linear in distance between @a pos and the end of the container - - strings and binary: linear in the length of the member - - other types: constant - - @liveexample{The example shows the result of `erase()` for different JSON - types.,erase__IteratorType} - - @sa @ref erase(IteratorType, IteratorType) -- removes the elements in - the given range - @sa @ref erase(const typename object_t::key_type&) -- removes the element - from an object at the given key - @sa @ref erase(const size_type) -- removes the element from an array at - the given index - - @since version 1.0.0 - */ - template < class IteratorType, typename std::enable_if < - std::is_same::value || - std::is_same::value, int >::type - = 0 > - IteratorType erase(IteratorType pos) - { - // make sure iterator fits the current value - if (JSON_HEDLEY_UNLIKELY(this != pos.m_object)) - { - JSON_THROW(invalid_iterator::create(202, "iterator does not fit current value")); - } - - IteratorType result = end(); - - switch (m_type) - { - case value_t::boolean: - case value_t::number_float: - case value_t::number_integer: - case value_t::number_unsigned: - case value_t::string: - case value_t::binary: - { - if (JSON_HEDLEY_UNLIKELY(!pos.m_it.primitive_iterator.is_begin())) - { - JSON_THROW(invalid_iterator::create(205, "iterator out of range")); - } - - if (is_string()) - { - AllocatorType alloc; - std::allocator_traits::destroy(alloc, m_value.string); - std::allocator_traits::deallocate(alloc, m_value.string, 1); - m_value.string = nullptr; - } - else if (is_binary()) - { - AllocatorType alloc; - std::allocator_traits::destroy(alloc, m_value.binary); - std::allocator_traits::deallocate(alloc, m_value.binary, 1); - m_value.binary = nullptr; - } - - m_type = value_t::null; - assert_invariant(); - break; - } - - case value_t::object: - { - result.m_it.object_iterator = m_value.object->erase(pos.m_it.object_iterator); - break; - } - - case value_t::array: - { - result.m_it.array_iterator = m_value.array->erase(pos.m_it.array_iterator); - break; - } - - default: - JSON_THROW(type_error::create(307, "cannot use erase() with " + std::string(type_name()))); - } - - return result; - } - - /*! - @brief remove elements given an iterator range - - Removes the element specified by the range `[first; last)`. The iterator - @a first does not need to be dereferenceable if `first == last`: erasing - an empty range is a no-op. - - If called on a primitive type other than `null`, the resulting JSON value - will be `null`. - - @param[in] first iterator to the beginning of the range to remove - @param[in] last iterator past the end of the range to remove - @return Iterator following the last removed element. If the iterator @a - second refers to the last element, the `end()` iterator is returned. - - @tparam IteratorType an @ref iterator or @ref const_iterator - - @post Invalidates iterators and references at or after the point of the - erase, including the `end()` iterator. - - @throw type_error.307 if called on a `null` value; example: `"cannot use - erase() with null"` - @throw invalid_iterator.203 if called on iterators which does not belong - to the current JSON value; example: `"iterators do not fit current value"` - @throw invalid_iterator.204 if called on a primitive type with invalid - iterators (i.e., if `first != begin()` and `last != end()`); example: - `"iterators out of range"` - - @complexity The complexity depends on the type: - - objects: `log(size()) + std::distance(first, last)` - - arrays: linear in the distance between @a first and @a last, plus linear - in the distance between @a last and end of the container - - strings and binary: linear in the length of the member - - other types: constant - - @liveexample{The example shows the result of `erase()` for different JSON - types.,erase__IteratorType_IteratorType} - - @sa @ref erase(IteratorType) -- removes the element at a given position - @sa @ref erase(const typename object_t::key_type&) -- removes the element - from an object at the given key - @sa @ref erase(const size_type) -- removes the element from an array at - the given index - - @since version 1.0.0 - */ - template < class IteratorType, typename std::enable_if < - std::is_same::value || - std::is_same::value, int >::type - = 0 > - IteratorType erase(IteratorType first, IteratorType last) - { - // make sure iterator fits the current value - if (JSON_HEDLEY_UNLIKELY(this != first.m_object || this != last.m_object)) - { - JSON_THROW(invalid_iterator::create(203, "iterators do not fit current value")); - } - - IteratorType result = end(); - - switch (m_type) - { - case value_t::boolean: - case value_t::number_float: - case value_t::number_integer: - case value_t::number_unsigned: - case value_t::string: - case value_t::binary: - { - if (JSON_HEDLEY_LIKELY(!first.m_it.primitive_iterator.is_begin() - || !last.m_it.primitive_iterator.is_end())) - { - JSON_THROW(invalid_iterator::create(204, "iterators out of range")); - } - - if (is_string()) - { - AllocatorType alloc; - std::allocator_traits::destroy(alloc, m_value.string); - std::allocator_traits::deallocate(alloc, m_value.string, 1); - m_value.string = nullptr; - } - else if (is_binary()) - { - AllocatorType alloc; - std::allocator_traits::destroy(alloc, m_value.binary); - std::allocator_traits::deallocate(alloc, m_value.binary, 1); - m_value.binary = nullptr; - } - - m_type = value_t::null; - assert_invariant(); - break; - } - - case value_t::object: - { - result.m_it.object_iterator = m_value.object->erase(first.m_it.object_iterator, - last.m_it.object_iterator); - break; - } - - case value_t::array: - { - result.m_it.array_iterator = m_value.array->erase(first.m_it.array_iterator, - last.m_it.array_iterator); - break; - } - - default: - JSON_THROW(type_error::create(307, "cannot use erase() with " + std::string(type_name()))); - } - - return result; - } - - /*! - @brief remove element from a JSON object given a key - - Removes elements from a JSON object with the key value @a key. - - @param[in] key value of the elements to remove - - @return Number of elements removed. If @a ObjectType is the default - `std::map` type, the return value will always be `0` (@a key was not - found) or `1` (@a key was found). - - @post References and iterators to the erased elements are invalidated. - Other references and iterators are not affected. - - @throw type_error.307 when called on a type other than JSON object; - example: `"cannot use erase() with null"` - - @complexity `log(size()) + count(key)` - - @liveexample{The example shows the effect of `erase()`.,erase__key_type} - - @sa @ref erase(IteratorType) -- removes the element at a given position - @sa @ref erase(IteratorType, IteratorType) -- removes the elements in - the given range - @sa @ref erase(const size_type) -- removes the element from an array at - the given index - - @since version 1.0.0 - */ - size_type erase(const typename object_t::key_type& key) - { - // this erase only works for objects - if (JSON_HEDLEY_LIKELY(is_object())) - { - return m_value.object->erase(key); - } - - JSON_THROW(type_error::create(307, "cannot use erase() with " + std::string(type_name()))); - } - - /*! - @brief remove element from a JSON array given an index - - Removes element from a JSON array at the index @a idx. - - @param[in] idx index of the element to remove - - @throw type_error.307 when called on a type other than JSON object; - example: `"cannot use erase() with null"` - @throw out_of_range.401 when `idx >= size()`; example: `"array index 17 - is out of range"` - - @complexity Linear in distance between @a idx and the end of the container. - - @liveexample{The example shows the effect of `erase()`.,erase__size_type} - - @sa @ref erase(IteratorType) -- removes the element at a given position - @sa @ref erase(IteratorType, IteratorType) -- removes the elements in - the given range - @sa @ref erase(const typename object_t::key_type&) -- removes the element - from an object at the given key - - @since version 1.0.0 - */ - void erase(const size_type idx) - { - // this erase only works for arrays - if (JSON_HEDLEY_LIKELY(is_array())) - { - if (JSON_HEDLEY_UNLIKELY(idx >= size())) - { - JSON_THROW(out_of_range::create(401, "array index " + std::to_string(idx) + " is out of range")); - } - - m_value.array->erase(m_value.array->begin() + static_cast(idx)); - } - else - { - JSON_THROW(type_error::create(307, "cannot use erase() with " + std::string(type_name()))); - } - } - - /// @} - - - //////////// - // lookup // - //////////// - - /// @name lookup - /// @{ - - /*! - @brief find an element in a JSON object - - Finds an element in a JSON object with key equivalent to @a key. If the - element is not found or the JSON value is not an object, end() is - returned. - - @note This method always returns @ref end() when executed on a JSON type - that is not an object. - - @param[in] key key value of the element to search for. - - @return Iterator to an element with key equivalent to @a key. If no such - element is found or the JSON value is not an object, past-the-end (see - @ref end()) iterator is returned. - - @complexity Logarithmic in the size of the JSON object. - - @liveexample{The example shows how `find()` is used.,find__key_type} - - @sa @ref contains(KeyT&&) const -- checks whether a key exists - - @since version 1.0.0 - */ - template - iterator find(KeyT&& key) - { - auto result = end(); - - if (is_object()) - { - result.m_it.object_iterator = m_value.object->find(std::forward(key)); - } - - return result; - } - - /*! - @brief find an element in a JSON object - @copydoc find(KeyT&&) - */ - template - const_iterator find(KeyT&& key) const - { - auto result = cend(); - - if (is_object()) - { - result.m_it.object_iterator = m_value.object->find(std::forward(key)); - } - - return result; - } - - /*! - @brief returns the number of occurrences of a key in a JSON object - - Returns the number of elements with key @a key. If ObjectType is the - default `std::map` type, the return value will always be `0` (@a key was - not found) or `1` (@a key was found). - - @note This method always returns `0` when executed on a JSON type that is - not an object. - - @param[in] key key value of the element to count - - @return Number of elements with key @a key. If the JSON value is not an - object, the return value will be `0`. - - @complexity Logarithmic in the size of the JSON object. - - @liveexample{The example shows how `count()` is used.,count} - - @since version 1.0.0 - */ - template - size_type count(KeyT&& key) const - { - // return 0 for all nonobject types - return is_object() ? m_value.object->count(std::forward(key)) : 0; - } - - /*! - @brief check the existence of an element in a JSON object - - Check whether an element exists in a JSON object with key equivalent to - @a key. If the element is not found or the JSON value is not an object, - false is returned. - - @note This method always returns false when executed on a JSON type - that is not an object. - - @param[in] key key value to check its existence. - - @return true if an element with specified @a key exists. If no such - element with such key is found or the JSON value is not an object, - false is returned. - - @complexity Logarithmic in the size of the JSON object. - - @liveexample{The following code shows an example for `contains()`.,contains} - - @sa @ref find(KeyT&&) -- returns an iterator to an object element - @sa @ref contains(const json_pointer&) const -- checks the existence for a JSON pointer - - @since version 3.6.0 - */ - template < typename KeyT, typename std::enable_if < - !std::is_same::type, json_pointer>::value, int >::type = 0 > - bool contains(KeyT && key) const - { - return is_object() && m_value.object->find(std::forward(key)) != m_value.object->end(); - } - - /*! - @brief check the existence of an element in a JSON object given a JSON pointer - - Check whether the given JSON pointer @a ptr can be resolved in the current - JSON value. - - @note This method can be executed on any JSON value type. - - @param[in] ptr JSON pointer to check its existence. - - @return true if the JSON pointer can be resolved to a stored value, false - otherwise. - - @post If `j.contains(ptr)` returns true, it is safe to call `j[ptr]`. - - @throw parse_error.106 if an array index begins with '0' - @throw parse_error.109 if an array index was not a number - - @complexity Logarithmic in the size of the JSON object. - - @liveexample{The following code shows an example for `contains()`.,contains_json_pointer} - - @sa @ref contains(KeyT &&) const -- checks the existence of a key - - @since version 3.7.0 - */ - bool contains(const json_pointer& ptr) const - { - return ptr.contains(this); - } - - /// @} - - - /////////////// - // iterators // - /////////////// - - /// @name iterators - /// @{ - - /*! - @brief returns an iterator to the first element - - Returns an iterator to the first element. - - @image html range-begin-end.svg "Illustration from cppreference.com" - - @return iterator to the first element - - @complexity Constant. - - @requirement This function helps `basic_json` satisfying the - [Container](https://en.cppreference.com/w/cpp/named_req/Container) - requirements: - - The complexity is constant. - - @liveexample{The following code shows an example for `begin()`.,begin} - - @sa @ref cbegin() -- returns a const iterator to the beginning - @sa @ref end() -- returns an iterator to the end - @sa @ref cend() -- returns a const iterator to the end - - @since version 1.0.0 - */ - iterator begin() noexcept - { - iterator result(this); - result.set_begin(); - return result; - } - - /*! - @copydoc basic_json::cbegin() - */ - const_iterator begin() const noexcept - { - return cbegin(); - } - - /*! - @brief returns a const iterator to the first element - - Returns a const iterator to the first element. - - @image html range-begin-end.svg "Illustration from cppreference.com" - - @return const iterator to the first element - - @complexity Constant. - - @requirement This function helps `basic_json` satisfying the - [Container](https://en.cppreference.com/w/cpp/named_req/Container) - requirements: - - The complexity is constant. - - Has the semantics of `const_cast(*this).begin()`. - - @liveexample{The following code shows an example for `cbegin()`.,cbegin} - - @sa @ref begin() -- returns an iterator to the beginning - @sa @ref end() -- returns an iterator to the end - @sa @ref cend() -- returns a const iterator to the end - - @since version 1.0.0 - */ - const_iterator cbegin() const noexcept - { - const_iterator result(this); - result.set_begin(); - return result; - } - - /*! - @brief returns an iterator to one past the last element - - Returns an iterator to one past the last element. - - @image html range-begin-end.svg "Illustration from cppreference.com" - - @return iterator one past the last element - - @complexity Constant. - - @requirement This function helps `basic_json` satisfying the - [Container](https://en.cppreference.com/w/cpp/named_req/Container) - requirements: - - The complexity is constant. - - @liveexample{The following code shows an example for `end()`.,end} - - @sa @ref cend() -- returns a const iterator to the end - @sa @ref begin() -- returns an iterator to the beginning - @sa @ref cbegin() -- returns a const iterator to the beginning - - @since version 1.0.0 - */ - iterator end() noexcept - { - iterator result(this); - result.set_end(); - return result; - } - - /*! - @copydoc basic_json::cend() - */ - const_iterator end() const noexcept - { - return cend(); - } - - /*! - @brief returns a const iterator to one past the last element - - Returns a const iterator to one past the last element. - - @image html range-begin-end.svg "Illustration from cppreference.com" - - @return const iterator one past the last element - - @complexity Constant. - - @requirement This function helps `basic_json` satisfying the - [Container](https://en.cppreference.com/w/cpp/named_req/Container) - requirements: - - The complexity is constant. - - Has the semantics of `const_cast(*this).end()`. - - @liveexample{The following code shows an example for `cend()`.,cend} - - @sa @ref end() -- returns an iterator to the end - @sa @ref begin() -- returns an iterator to the beginning - @sa @ref cbegin() -- returns a const iterator to the beginning - - @since version 1.0.0 - */ - const_iterator cend() const noexcept - { - const_iterator result(this); - result.set_end(); - return result; - } - - /*! - @brief returns an iterator to the reverse-beginning - - Returns an iterator to the reverse-beginning; that is, the last element. - - @image html range-rbegin-rend.svg "Illustration from cppreference.com" - - @complexity Constant. - - @requirement This function helps `basic_json` satisfying the - [ReversibleContainer](https://en.cppreference.com/w/cpp/named_req/ReversibleContainer) - requirements: - - The complexity is constant. - - Has the semantics of `reverse_iterator(end())`. - - @liveexample{The following code shows an example for `rbegin()`.,rbegin} - - @sa @ref crbegin() -- returns a const reverse iterator to the beginning - @sa @ref rend() -- returns a reverse iterator to the end - @sa @ref crend() -- returns a const reverse iterator to the end - - @since version 1.0.0 - */ - reverse_iterator rbegin() noexcept - { - return reverse_iterator(end()); - } - - /*! - @copydoc basic_json::crbegin() - */ - const_reverse_iterator rbegin() const noexcept - { - return crbegin(); - } - - /*! - @brief returns an iterator to the reverse-end - - Returns an iterator to the reverse-end; that is, one before the first - element. - - @image html range-rbegin-rend.svg "Illustration from cppreference.com" - - @complexity Constant. - - @requirement This function helps `basic_json` satisfying the - [ReversibleContainer](https://en.cppreference.com/w/cpp/named_req/ReversibleContainer) - requirements: - - The complexity is constant. - - Has the semantics of `reverse_iterator(begin())`. - - @liveexample{The following code shows an example for `rend()`.,rend} - - @sa @ref crend() -- returns a const reverse iterator to the end - @sa @ref rbegin() -- returns a reverse iterator to the beginning - @sa @ref crbegin() -- returns a const reverse iterator to the beginning - - @since version 1.0.0 - */ - reverse_iterator rend() noexcept - { - return reverse_iterator(begin()); - } - - /*! - @copydoc basic_json::crend() - */ - const_reverse_iterator rend() const noexcept - { - return crend(); - } - - /*! - @brief returns a const reverse iterator to the last element - - Returns a const iterator to the reverse-beginning; that is, the last - element. - - @image html range-rbegin-rend.svg "Illustration from cppreference.com" - - @complexity Constant. - - @requirement This function helps `basic_json` satisfying the - [ReversibleContainer](https://en.cppreference.com/w/cpp/named_req/ReversibleContainer) - requirements: - - The complexity is constant. - - Has the semantics of `const_cast(*this).rbegin()`. - - @liveexample{The following code shows an example for `crbegin()`.,crbegin} - - @sa @ref rbegin() -- returns a reverse iterator to the beginning - @sa @ref rend() -- returns a reverse iterator to the end - @sa @ref crend() -- returns a const reverse iterator to the end - - @since version 1.0.0 - */ - const_reverse_iterator crbegin() const noexcept - { - return const_reverse_iterator(cend()); - } - - /*! - @brief returns a const reverse iterator to one before the first - - Returns a const reverse iterator to the reverse-end; that is, one before - the first element. - - @image html range-rbegin-rend.svg "Illustration from cppreference.com" - - @complexity Constant. - - @requirement This function helps `basic_json` satisfying the - [ReversibleContainer](https://en.cppreference.com/w/cpp/named_req/ReversibleContainer) - requirements: - - The complexity is constant. - - Has the semantics of `const_cast(*this).rend()`. - - @liveexample{The following code shows an example for `crend()`.,crend} - - @sa @ref rend() -- returns a reverse iterator to the end - @sa @ref rbegin() -- returns a reverse iterator to the beginning - @sa @ref crbegin() -- returns a const reverse iterator to the beginning - - @since version 1.0.0 - */ - const_reverse_iterator crend() const noexcept - { - return const_reverse_iterator(cbegin()); - } - - public: - /*! - @brief wrapper to access iterator member functions in range-based for - - This function allows to access @ref iterator::key() and @ref - iterator::value() during range-based for loops. In these loops, a - reference to the JSON values is returned, so there is no access to the - underlying iterator. - - For loop without iterator_wrapper: - - @code{cpp} - for (auto it = j_object.begin(); it != j_object.end(); ++it) - { - std::cout << "key: " << it.key() << ", value:" << it.value() << '\n'; - } - @endcode - - Range-based for loop without iterator proxy: - - @code{cpp} - for (auto it : j_object) - { - // "it" is of type json::reference and has no key() member - std::cout << "value: " << it << '\n'; - } - @endcode - - Range-based for loop with iterator proxy: - - @code{cpp} - for (auto it : json::iterator_wrapper(j_object)) - { - std::cout << "key: " << it.key() << ", value:" << it.value() << '\n'; - } - @endcode - - @note When iterating over an array, `key()` will return the index of the - element as string (see example). - - @param[in] ref reference to a JSON value - @return iteration proxy object wrapping @a ref with an interface to use in - range-based for loops - - @liveexample{The following code shows how the wrapper is used,iterator_wrapper} - - @exceptionsafety Strong guarantee: if an exception is thrown, there are no - changes in the JSON value. - - @complexity Constant. - - @note The name of this function is not yet final and may change in the - future. - - @deprecated This stream operator is deprecated and will be removed in - future 4.0.0 of the library. Please use @ref items() instead; - that is, replace `json::iterator_wrapper(j)` with `j.items()`. - */ - JSON_HEDLEY_DEPRECATED_FOR(3.1.0, items()) - static iteration_proxy iterator_wrapper(reference ref) noexcept - { - return ref.items(); - } - - /*! - @copydoc iterator_wrapper(reference) - */ - JSON_HEDLEY_DEPRECATED_FOR(3.1.0, items()) - static iteration_proxy iterator_wrapper(const_reference ref) noexcept - { - return ref.items(); - } - - /*! - @brief helper to access iterator member functions in range-based for - - This function allows to access @ref iterator::key() and @ref - iterator::value() during range-based for loops. In these loops, a - reference to the JSON values is returned, so there is no access to the - underlying iterator. - - For loop without `items()` function: - - @code{cpp} - for (auto it = j_object.begin(); it != j_object.end(); ++it) - { - std::cout << "key: " << it.key() << ", value:" << it.value() << '\n'; - } - @endcode - - Range-based for loop without `items()` function: - - @code{cpp} - for (auto it : j_object) - { - // "it" is of type json::reference and has no key() member - std::cout << "value: " << it << '\n'; - } - @endcode - - Range-based for loop with `items()` function: - - @code{cpp} - for (auto& el : j_object.items()) - { - std::cout << "key: " << el.key() << ", value:" << el.value() << '\n'; - } - @endcode - - The `items()` function also allows to use - [structured bindings](https://en.cppreference.com/w/cpp/language/structured_binding) - (C++17): - - @code{cpp} - for (auto& [key, val] : j_object.items()) - { - std::cout << "key: " << key << ", value:" << val << '\n'; - } - @endcode - - @note When iterating over an array, `key()` will return the index of the - element as string (see example). For primitive types (e.g., numbers), - `key()` returns an empty string. - - @warning Using `items()` on temporary objects is dangerous. Make sure the - object's lifetime exeeds the iteration. See - for more - information. - - @return iteration proxy object wrapping @a ref with an interface to use in - range-based for loops - - @liveexample{The following code shows how the function is used.,items} - - @exceptionsafety Strong guarantee: if an exception is thrown, there are no - changes in the JSON value. - - @complexity Constant. - - @since version 3.1.0, structured bindings support since 3.5.0. - */ - iteration_proxy items() noexcept - { - return iteration_proxy(*this); - } - - /*! - @copydoc items() - */ - iteration_proxy items() const noexcept - { - return iteration_proxy(*this); - } - - /// @} - - - ////////////// - // capacity // - ////////////// - - /// @name capacity - /// @{ - - /*! - @brief checks whether the container is empty. - - Checks if a JSON value has no elements (i.e. whether its @ref size is `0`). - - @return The return value depends on the different types and is - defined as follows: - Value type | return value - ----------- | ------------- - null | `true` - boolean | `false` - string | `false` - number | `false` - binary | `false` - object | result of function `object_t::empty()` - array | result of function `array_t::empty()` - - @liveexample{The following code uses `empty()` to check if a JSON - object contains any elements.,empty} - - @complexity Constant, as long as @ref array_t and @ref object_t satisfy - the Container concept; that is, their `empty()` functions have constant - complexity. - - @iterators No changes. - - @exceptionsafety No-throw guarantee: this function never throws exceptions. - - @note This function does not return whether a string stored as JSON value - is empty - it returns whether the JSON container itself is empty which is - false in the case of a string. - - @requirement This function helps `basic_json` satisfying the - [Container](https://en.cppreference.com/w/cpp/named_req/Container) - requirements: - - The complexity is constant. - - Has the semantics of `begin() == end()`. - - @sa @ref size() -- returns the number of elements - - @since version 1.0.0 - */ - bool empty() const noexcept - { - switch (m_type) - { - case value_t::null: - { - // null values are empty - return true; - } - - case value_t::array: - { - // delegate call to array_t::empty() - return m_value.array->empty(); - } - - case value_t::object: - { - // delegate call to object_t::empty() - return m_value.object->empty(); - } - - default: - { - // all other types are nonempty - return false; - } - } - } - - /*! - @brief returns the number of elements - - Returns the number of elements in a JSON value. - - @return The return value depends on the different types and is - defined as follows: - Value type | return value - ----------- | ------------- - null | `0` - boolean | `1` - string | `1` - number | `1` - binary | `1` - object | result of function object_t::size() - array | result of function array_t::size() - - @liveexample{The following code calls `size()` on the different value - types.,size} - - @complexity Constant, as long as @ref array_t and @ref object_t satisfy - the Container concept; that is, their size() functions have constant - complexity. - - @iterators No changes. - - @exceptionsafety No-throw guarantee: this function never throws exceptions. - - @note This function does not return the length of a string stored as JSON - value - it returns the number of elements in the JSON value which is 1 in - the case of a string. - - @requirement This function helps `basic_json` satisfying the - [Container](https://en.cppreference.com/w/cpp/named_req/Container) - requirements: - - The complexity is constant. - - Has the semantics of `std::distance(begin(), end())`. - - @sa @ref empty() -- checks whether the container is empty - @sa @ref max_size() -- returns the maximal number of elements - - @since version 1.0.0 - */ - size_type size() const noexcept - { - switch (m_type) - { - case value_t::null: - { - // null values are empty - return 0; - } - - case value_t::array: - { - // delegate call to array_t::size() - return m_value.array->size(); - } - - case value_t::object: - { - // delegate call to object_t::size() - return m_value.object->size(); - } - - default: - { - // all other types have size 1 - return 1; - } - } - } - - /*! - @brief returns the maximum possible number of elements - - Returns the maximum number of elements a JSON value is able to hold due to - system or library implementation limitations, i.e. `std::distance(begin(), - end())` for the JSON value. - - @return The return value depends on the different types and is - defined as follows: - Value type | return value - ----------- | ------------- - null | `0` (same as `size()`) - boolean | `1` (same as `size()`) - string | `1` (same as `size()`) - number | `1` (same as `size()`) - binary | `1` (same as `size()`) - object | result of function `object_t::max_size()` - array | result of function `array_t::max_size()` - - @liveexample{The following code calls `max_size()` on the different value - types. Note the output is implementation specific.,max_size} - - @complexity Constant, as long as @ref array_t and @ref object_t satisfy - the Container concept; that is, their `max_size()` functions have constant - complexity. - - @iterators No changes. - - @exceptionsafety No-throw guarantee: this function never throws exceptions. - - @requirement This function helps `basic_json` satisfying the - [Container](https://en.cppreference.com/w/cpp/named_req/Container) - requirements: - - The complexity is constant. - - Has the semantics of returning `b.size()` where `b` is the largest - possible JSON value. - - @sa @ref size() -- returns the number of elements - - @since version 1.0.0 - */ - size_type max_size() const noexcept - { - switch (m_type) - { - case value_t::array: - { - // delegate call to array_t::max_size() - return m_value.array->max_size(); - } - - case value_t::object: - { - // delegate call to object_t::max_size() - return m_value.object->max_size(); - } - - default: - { - // all other types have max_size() == size() - return size(); - } - } - } - - /// @} - - - /////////////// - // modifiers // - /////////////// - - /// @name modifiers - /// @{ - - /*! - @brief clears the contents - - Clears the content of a JSON value and resets it to the default value as - if @ref basic_json(value_t) would have been called with the current value - type from @ref type(): - - Value type | initial value - ----------- | ------------- - null | `null` - boolean | `false` - string | `""` - number | `0` - binary | An empty byte vector - object | `{}` - array | `[]` - - @post Has the same effect as calling - @code {.cpp} - *this = basic_json(type()); - @endcode - - @liveexample{The example below shows the effect of `clear()` to different - JSON types.,clear} - - @complexity Linear in the size of the JSON value. - - @iterators All iterators, pointers and references related to this container - are invalidated. - - @exceptionsafety No-throw guarantee: this function never throws exceptions. - - @sa @ref basic_json(value_t) -- constructor that creates an object with the - same value than calling `clear()` - - @since version 1.0.0 - */ - void clear() noexcept - { - switch (m_type) - { - case value_t::number_integer: - { - m_value.number_integer = 0; - break; - } - - case value_t::number_unsigned: - { - m_value.number_unsigned = 0; - break; - } - - case value_t::number_float: - { - m_value.number_float = 0.0; - break; - } - - case value_t::boolean: - { - m_value.boolean = false; - break; - } - - case value_t::string: - { - m_value.string->clear(); - break; - } - - case value_t::binary: - { - m_value.binary->clear(); - break; - } - - case value_t::array: - { - m_value.array->clear(); - break; - } - - case value_t::object: - { - m_value.object->clear(); - break; - } - - default: - break; - } - } - - /*! - @brief add an object to an array - - Appends the given element @a val to the end of the JSON value. If the - function is called on a JSON null value, an empty array is created before - appending @a val. - - @param[in] val the value to add to the JSON array - - @throw type_error.308 when called on a type other than JSON array or - null; example: `"cannot use push_back() with number"` - - @complexity Amortized constant. - - @liveexample{The example shows how `push_back()` and `+=` can be used to - add elements to a JSON array. Note how the `null` value was silently - converted to a JSON array.,push_back} - - @since version 1.0.0 - */ - void push_back(basic_json&& val) - { - // push_back only works for null objects or arrays - if (JSON_HEDLEY_UNLIKELY(!(is_null() || is_array()))) - { - JSON_THROW(type_error::create(308, "cannot use push_back() with " + std::string(type_name()))); - } - - // transform null object into an array - if (is_null()) - { - m_type = value_t::array; - m_value = value_t::array; - assert_invariant(); - } - - // add element to array (move semantics) - m_value.array->push_back(std::move(val)); - // if val is moved from, basic_json move constructor marks it null so we do not call the destructor - } - - /*! - @brief add an object to an array - @copydoc push_back(basic_json&&) - */ - reference operator+=(basic_json&& val) - { - push_back(std::move(val)); - return *this; - } - - /*! - @brief add an object to an array - @copydoc push_back(basic_json&&) - */ - void push_back(const basic_json& val) - { - // push_back only works for null objects or arrays - if (JSON_HEDLEY_UNLIKELY(!(is_null() || is_array()))) - { - JSON_THROW(type_error::create(308, "cannot use push_back() with " + std::string(type_name()))); - } - - // transform null object into an array - if (is_null()) - { - m_type = value_t::array; - m_value = value_t::array; - assert_invariant(); - } - - // add element to array - m_value.array->push_back(val); - } - - /*! - @brief add an object to an array - @copydoc push_back(basic_json&&) - */ - reference operator+=(const basic_json& val) - { - push_back(val); - return *this; - } - - /*! - @brief add an object to an object - - Inserts the given element @a val to the JSON object. If the function is - called on a JSON null value, an empty object is created before inserting - @a val. - - @param[in] val the value to add to the JSON object - - @throw type_error.308 when called on a type other than JSON object or - null; example: `"cannot use push_back() with number"` - - @complexity Logarithmic in the size of the container, O(log(`size()`)). - - @liveexample{The example shows how `push_back()` and `+=` can be used to - add elements to a JSON object. Note how the `null` value was silently - converted to a JSON object.,push_back__object_t__value} - - @since version 1.0.0 - */ - void push_back(const typename object_t::value_type& val) - { - // push_back only works for null objects or objects - if (JSON_HEDLEY_UNLIKELY(!(is_null() || is_object()))) - { - JSON_THROW(type_error::create(308, "cannot use push_back() with " + std::string(type_name()))); - } - - // transform null object into an object - if (is_null()) - { - m_type = value_t::object; - m_value = value_t::object; - assert_invariant(); - } - - // add element to array - m_value.object->insert(val); - } - - /*! - @brief add an object to an object - @copydoc push_back(const typename object_t::value_type&) - */ - reference operator+=(const typename object_t::value_type& val) - { - push_back(val); - return *this; - } - - /*! - @brief add an object to an object - - This function allows to use `push_back` with an initializer list. In case - - 1. the current value is an object, - 2. the initializer list @a init contains only two elements, and - 3. the first element of @a init is a string, - - @a init is converted into an object element and added using - @ref push_back(const typename object_t::value_type&). Otherwise, @a init - is converted to a JSON value and added using @ref push_back(basic_json&&). - - @param[in] init an initializer list - - @complexity Linear in the size of the initializer list @a init. - - @note This function is required to resolve an ambiguous overload error, - because pairs like `{"key", "value"}` can be both interpreted as - `object_t::value_type` or `std::initializer_list`, see - https://github.com/nlohmann/json/issues/235 for more information. - - @liveexample{The example shows how initializer lists are treated as - objects when possible.,push_back__initializer_list} - */ - void push_back(initializer_list_t init) - { - if (is_object() && init.size() == 2 && (*init.begin())->is_string()) - { - basic_json&& key = init.begin()->moved_or_copied(); - push_back(typename object_t::value_type( - std::move(key.get_ref()), (init.begin() + 1)->moved_or_copied())); - } - else - { - push_back(basic_json(init)); - } - } - - /*! - @brief add an object to an object - @copydoc push_back(initializer_list_t) - */ - reference operator+=(initializer_list_t init) - { - push_back(init); - return *this; - } - - /*! - @brief add an object to an array - - Creates a JSON value from the passed parameters @a args to the end of the - JSON value. If the function is called on a JSON null value, an empty array - is created before appending the value created from @a args. - - @param[in] args arguments to forward to a constructor of @ref basic_json - @tparam Args compatible types to create a @ref basic_json object - - @return reference to the inserted element - - @throw type_error.311 when called on a type other than JSON array or - null; example: `"cannot use emplace_back() with number"` - - @complexity Amortized constant. - - @liveexample{The example shows how `push_back()` can be used to add - elements to a JSON array. Note how the `null` value was silently converted - to a JSON array.,emplace_back} - - @since version 2.0.8, returns reference since 3.7.0 - */ - template - reference emplace_back(Args&& ... args) - { - // emplace_back only works for null objects or arrays - if (JSON_HEDLEY_UNLIKELY(!(is_null() || is_array()))) - { - JSON_THROW(type_error::create(311, "cannot use emplace_back() with " + std::string(type_name()))); - } - - // transform null object into an array - if (is_null()) - { - m_type = value_t::array; - m_value = value_t::array; - assert_invariant(); - } - - // add element to array (perfect forwarding) -#ifdef JSON_HAS_CPP_17 - return m_value.array->emplace_back(std::forward(args)...); -#else - m_value.array->emplace_back(std::forward(args)...); - return m_value.array->back(); -#endif - } - - /*! - @brief add an object to an object if key does not exist - - Inserts a new element into a JSON object constructed in-place with the - given @a args if there is no element with the key in the container. If the - function is called on a JSON null value, an empty object is created before - appending the value created from @a args. - - @param[in] args arguments to forward to a constructor of @ref basic_json - @tparam Args compatible types to create a @ref basic_json object - - @return a pair consisting of an iterator to the inserted element, or the - already-existing element if no insertion happened, and a bool - denoting whether the insertion took place. - - @throw type_error.311 when called on a type other than JSON object or - null; example: `"cannot use emplace() with number"` - - @complexity Logarithmic in the size of the container, O(log(`size()`)). - - @liveexample{The example shows how `emplace()` can be used to add elements - to a JSON object. Note how the `null` value was silently converted to a - JSON object. Further note how no value is added if there was already one - value stored with the same key.,emplace} - - @since version 2.0.8 - */ - template - std::pair emplace(Args&& ... args) - { - // emplace only works for null objects or arrays - if (JSON_HEDLEY_UNLIKELY(!(is_null() || is_object()))) - { - JSON_THROW(type_error::create(311, "cannot use emplace() with " + std::string(type_name()))); - } - - // transform null object into an object - if (is_null()) - { - m_type = value_t::object; - m_value = value_t::object; - assert_invariant(); - } - - // add element to array (perfect forwarding) - auto res = m_value.object->emplace(std::forward(args)...); - // create result iterator and set iterator to the result of emplace - auto it = begin(); - it.m_it.object_iterator = res.first; - - // return pair of iterator and boolean - return {it, res.second}; - } - - /// Helper for insertion of an iterator - /// @note: This uses std::distance to support GCC 4.8, - /// see https://github.com/nlohmann/json/pull/1257 - template - iterator insert_iterator(const_iterator pos, Args&& ... args) - { - iterator result(this); - JSON_ASSERT(m_value.array != nullptr); - - auto insert_pos = std::distance(m_value.array->begin(), pos.m_it.array_iterator); - m_value.array->insert(pos.m_it.array_iterator, std::forward(args)...); - result.m_it.array_iterator = m_value.array->begin() + insert_pos; - - // This could have been written as: - // result.m_it.array_iterator = m_value.array->insert(pos.m_it.array_iterator, cnt, val); - // but the return value of insert is missing in GCC 4.8, so it is written this way instead. - - return result; - } - - /*! - @brief inserts element - - Inserts element @a val before iterator @a pos. - - @param[in] pos iterator before which the content will be inserted; may be - the end() iterator - @param[in] val element to insert - @return iterator pointing to the inserted @a val. - - @throw type_error.309 if called on JSON values other than arrays; - example: `"cannot use insert() with string"` - @throw invalid_iterator.202 if @a pos is not an iterator of *this; - example: `"iterator does not fit current value"` - - @complexity Constant plus linear in the distance between @a pos and end of - the container. - - @liveexample{The example shows how `insert()` is used.,insert} - - @since version 1.0.0 - */ - iterator insert(const_iterator pos, const basic_json& val) - { - // insert only works for arrays - if (JSON_HEDLEY_LIKELY(is_array())) - { - // check if iterator pos fits to this JSON value - if (JSON_HEDLEY_UNLIKELY(pos.m_object != this)) - { - JSON_THROW(invalid_iterator::create(202, "iterator does not fit current value")); - } - - // insert to array and return iterator - return insert_iterator(pos, val); - } - - JSON_THROW(type_error::create(309, "cannot use insert() with " + std::string(type_name()))); - } - - /*! - @brief inserts element - @copydoc insert(const_iterator, const basic_json&) - */ - iterator insert(const_iterator pos, basic_json&& val) - { - return insert(pos, val); - } - - /*! - @brief inserts elements - - Inserts @a cnt copies of @a val before iterator @a pos. - - @param[in] pos iterator before which the content will be inserted; may be - the end() iterator - @param[in] cnt number of copies of @a val to insert - @param[in] val element to insert - @return iterator pointing to the first element inserted, or @a pos if - `cnt==0` - - @throw type_error.309 if called on JSON values other than arrays; example: - `"cannot use insert() with string"` - @throw invalid_iterator.202 if @a pos is not an iterator of *this; - example: `"iterator does not fit current value"` - - @complexity Linear in @a cnt plus linear in the distance between @a pos - and end of the container. - - @liveexample{The example shows how `insert()` is used.,insert__count} - - @since version 1.0.0 - */ - iterator insert(const_iterator pos, size_type cnt, const basic_json& val) - { - // insert only works for arrays - if (JSON_HEDLEY_LIKELY(is_array())) - { - // check if iterator pos fits to this JSON value - if (JSON_HEDLEY_UNLIKELY(pos.m_object != this)) - { - JSON_THROW(invalid_iterator::create(202, "iterator does not fit current value")); - } - - // insert to array and return iterator - return insert_iterator(pos, cnt, val); - } - - JSON_THROW(type_error::create(309, "cannot use insert() with " + std::string(type_name()))); - } - - /*! - @brief inserts elements - - Inserts elements from range `[first, last)` before iterator @a pos. - - @param[in] pos iterator before which the content will be inserted; may be - the end() iterator - @param[in] first begin of the range of elements to insert - @param[in] last end of the range of elements to insert - - @throw type_error.309 if called on JSON values other than arrays; example: - `"cannot use insert() with string"` - @throw invalid_iterator.202 if @a pos is not an iterator of *this; - example: `"iterator does not fit current value"` - @throw invalid_iterator.210 if @a first and @a last do not belong to the - same JSON value; example: `"iterators do not fit"` - @throw invalid_iterator.211 if @a first or @a last are iterators into - container for which insert is called; example: `"passed iterators may not - belong to container"` - - @return iterator pointing to the first element inserted, or @a pos if - `first==last` - - @complexity Linear in `std::distance(first, last)` plus linear in the - distance between @a pos and end of the container. - - @liveexample{The example shows how `insert()` is used.,insert__range} - - @since version 1.0.0 - */ - iterator insert(const_iterator pos, const_iterator first, const_iterator last) - { - // insert only works for arrays - if (JSON_HEDLEY_UNLIKELY(!is_array())) - { - JSON_THROW(type_error::create(309, "cannot use insert() with " + std::string(type_name()))); - } - - // check if iterator pos fits to this JSON value - if (JSON_HEDLEY_UNLIKELY(pos.m_object != this)) - { - JSON_THROW(invalid_iterator::create(202, "iterator does not fit current value")); - } - - // check if range iterators belong to the same JSON object - if (JSON_HEDLEY_UNLIKELY(first.m_object != last.m_object)) - { - JSON_THROW(invalid_iterator::create(210, "iterators do not fit")); - } - - if (JSON_HEDLEY_UNLIKELY(first.m_object == this)) - { - JSON_THROW(invalid_iterator::create(211, "passed iterators may not belong to container")); - } - - // insert to array and return iterator - return insert_iterator(pos, first.m_it.array_iterator, last.m_it.array_iterator); - } - - /*! - @brief inserts elements - - Inserts elements from initializer list @a ilist before iterator @a pos. - - @param[in] pos iterator before which the content will be inserted; may be - the end() iterator - @param[in] ilist initializer list to insert the values from - - @throw type_error.309 if called on JSON values other than arrays; example: - `"cannot use insert() with string"` - @throw invalid_iterator.202 if @a pos is not an iterator of *this; - example: `"iterator does not fit current value"` - - @return iterator pointing to the first element inserted, or @a pos if - `ilist` is empty - - @complexity Linear in `ilist.size()` plus linear in the distance between - @a pos and end of the container. - - @liveexample{The example shows how `insert()` is used.,insert__ilist} - - @since version 1.0.0 - */ - iterator insert(const_iterator pos, initializer_list_t ilist) - { - // insert only works for arrays - if (JSON_HEDLEY_UNLIKELY(!is_array())) - { - JSON_THROW(type_error::create(309, "cannot use insert() with " + std::string(type_name()))); - } - - // check if iterator pos fits to this JSON value - if (JSON_HEDLEY_UNLIKELY(pos.m_object != this)) - { - JSON_THROW(invalid_iterator::create(202, "iterator does not fit current value")); - } - - // insert to array and return iterator - return insert_iterator(pos, ilist.begin(), ilist.end()); - } - - /*! - @brief inserts elements - - Inserts elements from range `[first, last)`. - - @param[in] first begin of the range of elements to insert - @param[in] last end of the range of elements to insert - - @throw type_error.309 if called on JSON values other than objects; example: - `"cannot use insert() with string"` - @throw invalid_iterator.202 if iterator @a first or @a last does does not - point to an object; example: `"iterators first and last must point to - objects"` - @throw invalid_iterator.210 if @a first and @a last do not belong to the - same JSON value; example: `"iterators do not fit"` - - @complexity Logarithmic: `O(N*log(size() + N))`, where `N` is the number - of elements to insert. - - @liveexample{The example shows how `insert()` is used.,insert__range_object} - - @since version 3.0.0 - */ - void insert(const_iterator first, const_iterator last) - { - // insert only works for objects - if (JSON_HEDLEY_UNLIKELY(!is_object())) - { - JSON_THROW(type_error::create(309, "cannot use insert() with " + std::string(type_name()))); - } - - // check if range iterators belong to the same JSON object - if (JSON_HEDLEY_UNLIKELY(first.m_object != last.m_object)) - { - JSON_THROW(invalid_iterator::create(210, "iterators do not fit")); - } - - // passed iterators must belong to objects - if (JSON_HEDLEY_UNLIKELY(!first.m_object->is_object())) - { - JSON_THROW(invalid_iterator::create(202, "iterators first and last must point to objects")); - } - - m_value.object->insert(first.m_it.object_iterator, last.m_it.object_iterator); - } - - /*! - @brief updates a JSON object from another object, overwriting existing keys - - Inserts all values from JSON object @a j and overwrites existing keys. - - @param[in] j JSON object to read values from - - @throw type_error.312 if called on JSON values other than objects; example: - `"cannot use update() with string"` - - @complexity O(N*log(size() + N)), where N is the number of elements to - insert. - - @liveexample{The example shows how `update()` is used.,update} - - @sa https://docs.python.org/3.6/library/stdtypes.html#dict.update - - @since version 3.0.0 - */ - void update(const_reference j) - { - // implicitly convert null value to an empty object - if (is_null()) - { - m_type = value_t::object; - m_value.object = create(); - assert_invariant(); - } - - if (JSON_HEDLEY_UNLIKELY(!is_object())) - { - JSON_THROW(type_error::create(312, "cannot use update() with " + std::string(type_name()))); - } - if (JSON_HEDLEY_UNLIKELY(!j.is_object())) - { - JSON_THROW(type_error::create(312, "cannot use update() with " + std::string(j.type_name()))); - } - - for (auto it = j.cbegin(); it != j.cend(); ++it) - { - m_value.object->operator[](it.key()) = it.value(); - } - } - - /*! - @brief updates a JSON object from another object, overwriting existing keys - - Inserts all values from from range `[first, last)` and overwrites existing - keys. - - @param[in] first begin of the range of elements to insert - @param[in] last end of the range of elements to insert - - @throw type_error.312 if called on JSON values other than objects; example: - `"cannot use update() with string"` - @throw invalid_iterator.202 if iterator @a first or @a last does does not - point to an object; example: `"iterators first and last must point to - objects"` - @throw invalid_iterator.210 if @a first and @a last do not belong to the - same JSON value; example: `"iterators do not fit"` - - @complexity O(N*log(size() + N)), where N is the number of elements to - insert. - - @liveexample{The example shows how `update()` is used__range.,update} - - @sa https://docs.python.org/3.6/library/stdtypes.html#dict.update - - @since version 3.0.0 - */ - void update(const_iterator first, const_iterator last) - { - // implicitly convert null value to an empty object - if (is_null()) - { - m_type = value_t::object; - m_value.object = create(); - assert_invariant(); - } - - if (JSON_HEDLEY_UNLIKELY(!is_object())) - { - JSON_THROW(type_error::create(312, "cannot use update() with " + std::string(type_name()))); - } - - // check if range iterators belong to the same JSON object - if (JSON_HEDLEY_UNLIKELY(first.m_object != last.m_object)) - { - JSON_THROW(invalid_iterator::create(210, "iterators do not fit")); - } - - // passed iterators must belong to objects - if (JSON_HEDLEY_UNLIKELY(!first.m_object->is_object() - || !last.m_object->is_object())) - { - JSON_THROW(invalid_iterator::create(202, "iterators first and last must point to objects")); - } - - for (auto it = first; it != last; ++it) - { - m_value.object->operator[](it.key()) = it.value(); - } - } - - /*! - @brief exchanges the values - - Exchanges the contents of the JSON value with those of @a other. Does not - invoke any move, copy, or swap operations on individual elements. All - iterators and references remain valid. The past-the-end iterator is - invalidated. - - @param[in,out] other JSON value to exchange the contents with - - @complexity Constant. - - @liveexample{The example below shows how JSON values can be swapped with - `swap()`.,swap__reference} - - @since version 1.0.0 - */ - void swap(reference other) noexcept ( - std::is_nothrow_move_constructible::value&& - std::is_nothrow_move_assignable::value&& - std::is_nothrow_move_constructible::value&& - std::is_nothrow_move_assignable::value - ) - { - std::swap(m_type, other.m_type); - std::swap(m_value, other.m_value); - assert_invariant(); - } - - /*! - @brief exchanges the values - - Exchanges the contents of the JSON value from @a left with those of @a right. Does not - invoke any move, copy, or swap operations on individual elements. All - iterators and references remain valid. The past-the-end iterator is - invalidated. implemented as a friend function callable via ADL. - - @param[in,out] left JSON value to exchange the contents with - @param[in,out] right JSON value to exchange the contents with - - @complexity Constant. - - @liveexample{The example below shows how JSON values can be swapped with - `swap()`.,swap__reference} - - @since version 1.0.0 - */ - friend void swap(reference left, reference right) noexcept ( - std::is_nothrow_move_constructible::value&& - std::is_nothrow_move_assignable::value&& - std::is_nothrow_move_constructible::value&& - std::is_nothrow_move_assignable::value - ) - { - left.swap(right); - } - - /*! - @brief exchanges the values - - Exchanges the contents of a JSON array with those of @a other. Does not - invoke any move, copy, or swap operations on individual elements. All - iterators and references remain valid. The past-the-end iterator is - invalidated. - - @param[in,out] other array to exchange the contents with - - @throw type_error.310 when JSON value is not an array; example: `"cannot - use swap() with string"` - - @complexity Constant. - - @liveexample{The example below shows how arrays can be swapped with - `swap()`.,swap__array_t} - - @since version 1.0.0 - */ - void swap(array_t& other) - { - // swap only works for arrays - if (JSON_HEDLEY_LIKELY(is_array())) - { - std::swap(*(m_value.array), other); - } - else - { - JSON_THROW(type_error::create(310, "cannot use swap() with " + std::string(type_name()))); - } - } - - /*! - @brief exchanges the values - - Exchanges the contents of a JSON object with those of @a other. Does not - invoke any move, copy, or swap operations on individual elements. All - iterators and references remain valid. The past-the-end iterator is - invalidated. - - @param[in,out] other object to exchange the contents with - - @throw type_error.310 when JSON value is not an object; example: - `"cannot use swap() with string"` - - @complexity Constant. - - @liveexample{The example below shows how objects can be swapped with - `swap()`.,swap__object_t} - - @since version 1.0.0 - */ - void swap(object_t& other) - { - // swap only works for objects - if (JSON_HEDLEY_LIKELY(is_object())) - { - std::swap(*(m_value.object), other); - } - else - { - JSON_THROW(type_error::create(310, "cannot use swap() with " + std::string(type_name()))); - } - } - - /*! - @brief exchanges the values - - Exchanges the contents of a JSON string with those of @a other. Does not - invoke any move, copy, or swap operations on individual elements. All - iterators and references remain valid. The past-the-end iterator is - invalidated. - - @param[in,out] other string to exchange the contents with - - @throw type_error.310 when JSON value is not a string; example: `"cannot - use swap() with boolean"` - - @complexity Constant. - - @liveexample{The example below shows how strings can be swapped with - `swap()`.,swap__string_t} - - @since version 1.0.0 - */ - void swap(string_t& other) - { - // swap only works for strings - if (JSON_HEDLEY_LIKELY(is_string())) - { - std::swap(*(m_value.string), other); - } - else - { - JSON_THROW(type_error::create(310, "cannot use swap() with " + std::string(type_name()))); - } - } - - /*! - @brief exchanges the values - - Exchanges the contents of a JSON string with those of @a other. Does not - invoke any move, copy, or swap operations on individual elements. All - iterators and references remain valid. The past-the-end iterator is - invalidated. - - @param[in,out] other binary to exchange the contents with - - @throw type_error.310 when JSON value is not a string; example: `"cannot - use swap() with boolean"` - - @complexity Constant. - - @liveexample{The example below shows how strings can be swapped with - `swap()`.,swap__binary_t} - - @since version 3.8.0 - */ - void swap(binary_t& other) - { - // swap only works for strings - if (JSON_HEDLEY_LIKELY(is_binary())) - { - std::swap(*(m_value.binary), other); - } - else - { - JSON_THROW(type_error::create(310, "cannot use swap() with " + std::string(type_name()))); - } - } - - /// @copydoc swap(binary_t) - void swap(typename binary_t::container_type& other) - { - // swap only works for strings - if (JSON_HEDLEY_LIKELY(is_binary())) - { - std::swap(*(m_value.binary), other); - } - else - { - JSON_THROW(type_error::create(310, "cannot use swap() with " + std::string(type_name()))); - } - } - - /// @} - - public: - ////////////////////////////////////////// - // lexicographical comparison operators // - ////////////////////////////////////////// - - /// @name lexicographical comparison operators - /// @{ - - /*! - @brief comparison: equal - - Compares two JSON values for equality according to the following rules: - - Two JSON values are equal if (1) they are from the same type and (2) - their stored values are the same according to their respective - `operator==`. - - Integer and floating-point numbers are automatically converted before - comparison. Note that two NaN values are always treated as unequal. - - Two JSON null values are equal. - - @note Floating-point inside JSON values numbers are compared with - `json::number_float_t::operator==` which is `double::operator==` by - default. To compare floating-point while respecting an epsilon, an alternative - [comparison function](https://github.com/mariokonrad/marnav/blob/master/include/marnav/math/floatingpoint.hpp#L34-#L39) - could be used, for instance - @code {.cpp} - template::value, T>::type> - inline bool is_same(T a, T b, T epsilon = std::numeric_limits::epsilon()) noexcept - { - return std::abs(a - b) <= epsilon; - } - @endcode - Or you can self-defined operator equal function like this: - @code {.cpp} - bool my_equal(const_reference lhs, const_reference rhs) { - const auto lhs_type lhs.type(); - const auto rhs_type rhs.type(); - if (lhs_type == rhs_type) { - switch(lhs_type) - // self_defined case - case value_t::number_float: - return std::abs(lhs - rhs) <= std::numeric_limits::epsilon(); - // other cases remain the same with the original - ... - } - ... - } - @endcode - - @note NaN values never compare equal to themselves or to other NaN values. - - @param[in] lhs first JSON value to consider - @param[in] rhs second JSON value to consider - @return whether the values @a lhs and @a rhs are equal - - @exceptionsafety No-throw guarantee: this function never throws exceptions. - - @complexity Linear. - - @liveexample{The example demonstrates comparing several JSON - types.,operator__equal} - - @since version 1.0.0 - */ - friend bool operator==(const_reference lhs, const_reference rhs) noexcept - { - const auto lhs_type = lhs.type(); - const auto rhs_type = rhs.type(); - - if (lhs_type == rhs_type) - { - switch (lhs_type) - { - case value_t::array: - return *lhs.m_value.array == *rhs.m_value.array; - - case value_t::object: - return *lhs.m_value.object == *rhs.m_value.object; - - case value_t::null: - return true; - - case value_t::string: - return *lhs.m_value.string == *rhs.m_value.string; - - case value_t::boolean: - return lhs.m_value.boolean == rhs.m_value.boolean; - - case value_t::number_integer: - return lhs.m_value.number_integer == rhs.m_value.number_integer; - - case value_t::number_unsigned: - return lhs.m_value.number_unsigned == rhs.m_value.number_unsigned; - - case value_t::number_float: - return lhs.m_value.number_float == rhs.m_value.number_float; - - case value_t::binary: - return *lhs.m_value.binary == *rhs.m_value.binary; - - default: - return false; - } - } - else if (lhs_type == value_t::number_integer && rhs_type == value_t::number_float) - { - return static_cast(lhs.m_value.number_integer) == rhs.m_value.number_float; - } - else if (lhs_type == value_t::number_float && rhs_type == value_t::number_integer) - { - return lhs.m_value.number_float == static_cast(rhs.m_value.number_integer); - } - else if (lhs_type == value_t::number_unsigned && rhs_type == value_t::number_float) - { - return static_cast(lhs.m_value.number_unsigned) == rhs.m_value.number_float; - } - else if (lhs_type == value_t::number_float && rhs_type == value_t::number_unsigned) - { - return lhs.m_value.number_float == static_cast(rhs.m_value.number_unsigned); - } - else if (lhs_type == value_t::number_unsigned && rhs_type == value_t::number_integer) - { - return static_cast(lhs.m_value.number_unsigned) == rhs.m_value.number_integer; - } - else if (lhs_type == value_t::number_integer && rhs_type == value_t::number_unsigned) - { - return lhs.m_value.number_integer == static_cast(rhs.m_value.number_unsigned); - } - - return false; - } - - /*! - @brief comparison: equal - @copydoc operator==(const_reference, const_reference) - */ - template::value, int>::type = 0> - friend bool operator==(const_reference lhs, const ScalarType rhs) noexcept - { - return lhs == basic_json(rhs); - } - - /*! - @brief comparison: equal - @copydoc operator==(const_reference, const_reference) - */ - template::value, int>::type = 0> - friend bool operator==(const ScalarType lhs, const_reference rhs) noexcept - { - return basic_json(lhs) == rhs; - } - - /*! - @brief comparison: not equal - - Compares two JSON values for inequality by calculating `not (lhs == rhs)`. - - @param[in] lhs first JSON value to consider - @param[in] rhs second JSON value to consider - @return whether the values @a lhs and @a rhs are not equal - - @complexity Linear. - - @exceptionsafety No-throw guarantee: this function never throws exceptions. - - @liveexample{The example demonstrates comparing several JSON - types.,operator__notequal} - - @since version 1.0.0 - */ - friend bool operator!=(const_reference lhs, const_reference rhs) noexcept - { - return !(lhs == rhs); - } - - /*! - @brief comparison: not equal - @copydoc operator!=(const_reference, const_reference) - */ - template::value, int>::type = 0> - friend bool operator!=(const_reference lhs, const ScalarType rhs) noexcept - { - return lhs != basic_json(rhs); - } - - /*! - @brief comparison: not equal - @copydoc operator!=(const_reference, const_reference) - */ - template::value, int>::type = 0> - friend bool operator!=(const ScalarType lhs, const_reference rhs) noexcept - { - return basic_json(lhs) != rhs; - } - - /*! - @brief comparison: less than - - Compares whether one JSON value @a lhs is less than another JSON value @a - rhs according to the following rules: - - If @a lhs and @a rhs have the same type, the values are compared using - the default `<` operator. - - Integer and floating-point numbers are automatically converted before - comparison - - In case @a lhs and @a rhs have different types, the values are ignored - and the order of the types is considered, see - @ref operator<(const value_t, const value_t). - - @param[in] lhs first JSON value to consider - @param[in] rhs second JSON value to consider - @return whether @a lhs is less than @a rhs - - @complexity Linear. - - @exceptionsafety No-throw guarantee: this function never throws exceptions. - - @liveexample{The example demonstrates comparing several JSON - types.,operator__less} - - @since version 1.0.0 - */ - friend bool operator<(const_reference lhs, const_reference rhs) noexcept - { - const auto lhs_type = lhs.type(); - const auto rhs_type = rhs.type(); - - if (lhs_type == rhs_type) - { - switch (lhs_type) - { - case value_t::array: - // note parentheses are necessary, see - // https://github.com/nlohmann/json/issues/1530 - return (*lhs.m_value.array) < (*rhs.m_value.array); - - case value_t::object: - return (*lhs.m_value.object) < (*rhs.m_value.object); - - case value_t::null: - return false; - - case value_t::string: - return (*lhs.m_value.string) < (*rhs.m_value.string); - - case value_t::boolean: - return (lhs.m_value.boolean) < (rhs.m_value.boolean); - - case value_t::number_integer: - return (lhs.m_value.number_integer) < (rhs.m_value.number_integer); - - case value_t::number_unsigned: - return (lhs.m_value.number_unsigned) < (rhs.m_value.number_unsigned); - - case value_t::number_float: - return (lhs.m_value.number_float) < (rhs.m_value.number_float); - - case value_t::binary: - return (*lhs.m_value.binary) < (*rhs.m_value.binary); - - default: - return false; - } - } - else if (lhs_type == value_t::number_integer && rhs_type == value_t::number_float) - { - return static_cast(lhs.m_value.number_integer) < rhs.m_value.number_float; - } - else if (lhs_type == value_t::number_float && rhs_type == value_t::number_integer) - { - return lhs.m_value.number_float < static_cast(rhs.m_value.number_integer); - } - else if (lhs_type == value_t::number_unsigned && rhs_type == value_t::number_float) - { - return static_cast(lhs.m_value.number_unsigned) < rhs.m_value.number_float; - } - else if (lhs_type == value_t::number_float && rhs_type == value_t::number_unsigned) - { - return lhs.m_value.number_float < static_cast(rhs.m_value.number_unsigned); - } - else if (lhs_type == value_t::number_integer && rhs_type == value_t::number_unsigned) - { - return lhs.m_value.number_integer < static_cast(rhs.m_value.number_unsigned); - } - else if (lhs_type == value_t::number_unsigned && rhs_type == value_t::number_integer) - { - return static_cast(lhs.m_value.number_unsigned) < rhs.m_value.number_integer; - } - - // We only reach this line if we cannot compare values. In that case, - // we compare types. Note we have to call the operator explicitly, - // because MSVC has problems otherwise. - return operator<(lhs_type, rhs_type); - } - - /*! - @brief comparison: less than - @copydoc operator<(const_reference, const_reference) - */ - template::value, int>::type = 0> - friend bool operator<(const_reference lhs, const ScalarType rhs) noexcept - { - return lhs < basic_json(rhs); - } - - /*! - @brief comparison: less than - @copydoc operator<(const_reference, const_reference) - */ - template::value, int>::type = 0> - friend bool operator<(const ScalarType lhs, const_reference rhs) noexcept - { - return basic_json(lhs) < rhs; - } - - /*! - @brief comparison: less than or equal - - Compares whether one JSON value @a lhs is less than or equal to another - JSON value by calculating `not (rhs < lhs)`. - - @param[in] lhs first JSON value to consider - @param[in] rhs second JSON value to consider - @return whether @a lhs is less than or equal to @a rhs - - @complexity Linear. - - @exceptionsafety No-throw guarantee: this function never throws exceptions. - - @liveexample{The example demonstrates comparing several JSON - types.,operator__greater} - - @since version 1.0.0 - */ - friend bool operator<=(const_reference lhs, const_reference rhs) noexcept - { - return !(rhs < lhs); - } - - /*! - @brief comparison: less than or equal - @copydoc operator<=(const_reference, const_reference) - */ - template::value, int>::type = 0> - friend bool operator<=(const_reference lhs, const ScalarType rhs) noexcept - { - return lhs <= basic_json(rhs); - } - - /*! - @brief comparison: less than or equal - @copydoc operator<=(const_reference, const_reference) - */ - template::value, int>::type = 0> - friend bool operator<=(const ScalarType lhs, const_reference rhs) noexcept - { - return basic_json(lhs) <= rhs; - } - - /*! - @brief comparison: greater than - - Compares whether one JSON value @a lhs is greater than another - JSON value by calculating `not (lhs <= rhs)`. - - @param[in] lhs first JSON value to consider - @param[in] rhs second JSON value to consider - @return whether @a lhs is greater than to @a rhs - - @complexity Linear. - - @exceptionsafety No-throw guarantee: this function never throws exceptions. - - @liveexample{The example demonstrates comparing several JSON - types.,operator__lessequal} - - @since version 1.0.0 - */ - friend bool operator>(const_reference lhs, const_reference rhs) noexcept - { - return !(lhs <= rhs); - } - - /*! - @brief comparison: greater than - @copydoc operator>(const_reference, const_reference) - */ - template::value, int>::type = 0> - friend bool operator>(const_reference lhs, const ScalarType rhs) noexcept - { - return lhs > basic_json(rhs); - } - - /*! - @brief comparison: greater than - @copydoc operator>(const_reference, const_reference) - */ - template::value, int>::type = 0> - friend bool operator>(const ScalarType lhs, const_reference rhs) noexcept - { - return basic_json(lhs) > rhs; - } - - /*! - @brief comparison: greater than or equal - - Compares whether one JSON value @a lhs is greater than or equal to another - JSON value by calculating `not (lhs < rhs)`. - - @param[in] lhs first JSON value to consider - @param[in] rhs second JSON value to consider - @return whether @a lhs is greater than or equal to @a rhs - - @complexity Linear. - - @exceptionsafety No-throw guarantee: this function never throws exceptions. - - @liveexample{The example demonstrates comparing several JSON - types.,operator__greaterequal} - - @since version 1.0.0 - */ - friend bool operator>=(const_reference lhs, const_reference rhs) noexcept - { - return !(lhs < rhs); - } - - /*! - @brief comparison: greater than or equal - @copydoc operator>=(const_reference, const_reference) - */ - template::value, int>::type = 0> - friend bool operator>=(const_reference lhs, const ScalarType rhs) noexcept - { - return lhs >= basic_json(rhs); - } - - /*! - @brief comparison: greater than or equal - @copydoc operator>=(const_reference, const_reference) - */ - template::value, int>::type = 0> - friend bool operator>=(const ScalarType lhs, const_reference rhs) noexcept - { - return basic_json(lhs) >= rhs; - } - - /// @} - - /////////////////// - // serialization // - /////////////////// - - /// @name serialization - /// @{ - - /*! - @brief serialize to stream - - Serialize the given JSON value @a j to the output stream @a o. The JSON - value will be serialized using the @ref dump member function. - - - The indentation of the output can be controlled with the member variable - `width` of the output stream @a o. For instance, using the manipulator - `std::setw(4)` on @a o sets the indentation level to `4` and the - serialization result is the same as calling `dump(4)`. - - - The indentation character can be controlled with the member variable - `fill` of the output stream @a o. For instance, the manipulator - `std::setfill('\\t')` sets indentation to use a tab character rather than - the default space character. - - @param[in,out] o stream to serialize to - @param[in] j JSON value to serialize - - @return the stream @a o - - @throw type_error.316 if a string stored inside the JSON value is not - UTF-8 encoded - - @complexity Linear. - - @liveexample{The example below shows the serialization with different - parameters to `width` to adjust the indentation level.,operator_serialize} - - @since version 1.0.0; indentation character added in version 3.0.0 - */ - friend std::ostream& operator<<(std::ostream& o, const basic_json& j) - { - // read width member and use it as indentation parameter if nonzero - const bool pretty_print = o.width() > 0; - const auto indentation = pretty_print ? o.width() : 0; - - // reset width to 0 for subsequent calls to this stream - o.width(0); - - // do the actual serialization - serializer s(detail::output_adapter(o), o.fill()); - s.dump(j, pretty_print, false, static_cast(indentation)); - return o; - } - - /*! - @brief serialize to stream - @deprecated This stream operator is deprecated and will be removed in - future 4.0.0 of the library. Please use - @ref operator<<(std::ostream&, const basic_json&) - instead; that is, replace calls like `j >> o;` with `o << j;`. - @since version 1.0.0; deprecated since version 3.0.0 - */ - JSON_HEDLEY_DEPRECATED_FOR(3.0.0, operator<<(std::ostream&, const basic_json&)) - friend std::ostream& operator>>(const basic_json& j, std::ostream& o) - { - return o << j; - } - - /// @} - - - ///////////////////// - // deserialization // - ///////////////////// - - /// @name deserialization - /// @{ - - /*! - @brief deserialize from a compatible input - - @tparam InputType A compatible input, for instance - - an std::istream object - - a FILE pointer - - a C-style array of characters - - a pointer to a null-terminated string of single byte characters - - an object obj for which begin(obj) and end(obj) produces a valid pair of - iterators. - - @param[in] i input to read from - @param[in] cb a parser callback function of type @ref parser_callback_t - which is used to control the deserialization by filtering unwanted values - (optional) - @param[in] allow_exceptions whether to throw exceptions in case of a - parse error (optional, true by default) - @param[in] ignore_comments whether comments should be ignored and treated - like whitespace (true) or yield a parse error (true); (optional, false by - default) - - @return deserialized JSON value; in case of a parse error and - @a allow_exceptions set to `false`, the return value will be - value_t::discarded. - - @throw parse_error.101 if a parse error occurs; example: `""unexpected end - of input; expected string literal""` - @throw parse_error.102 if to_unicode fails or surrogate error - @throw parse_error.103 if to_unicode fails - - @complexity Linear in the length of the input. The parser is a predictive - LL(1) parser. The complexity can be higher if the parser callback function - @a cb or reading from the input @a i has a super-linear complexity. - - @note A UTF-8 byte order mark is silently ignored. - - @liveexample{The example below demonstrates the `parse()` function reading - from an array.,parse__array__parser_callback_t} - - @liveexample{The example below demonstrates the `parse()` function with - and without callback function.,parse__string__parser_callback_t} - - @liveexample{The example below demonstrates the `parse()` function with - and without callback function.,parse__istream__parser_callback_t} - - @liveexample{The example below demonstrates the `parse()` function reading - from a contiguous container.,parse__contiguouscontainer__parser_callback_t} - - @since version 2.0.3 (contiguous containers); version 3.9.0 allowed to - ignore comments. - */ - template - JSON_HEDLEY_WARN_UNUSED_RESULT - static basic_json parse(InputType&& i, - const parser_callback_t cb = nullptr, - const bool allow_exceptions = true, - const bool ignore_comments = false) - { - basic_json result; - parser(detail::input_adapter(std::forward(i)), cb, allow_exceptions, ignore_comments).parse(true, result); - return result; - } - - /*! - @brief deserialize from a pair of character iterators - - The value_type of the iterator must be a integral type with size of 1, 2 or - 4 bytes, which will be interpreted respectively as UTF-8, UTF-16 and UTF-32. - - @param[in] first iterator to start of character range - @param[in] last iterator to end of character range - @param[in] cb a parser callback function of type @ref parser_callback_t - which is used to control the deserialization by filtering unwanted values - (optional) - @param[in] allow_exceptions whether to throw exceptions in case of a - parse error (optional, true by default) - @param[in] ignore_comments whether comments should be ignored and treated - like whitespace (true) or yield a parse error (true); (optional, false by - default) - - @return deserialized JSON value; in case of a parse error and - @a allow_exceptions set to `false`, the return value will be - value_t::discarded. - - @throw parse_error.101 if a parse error occurs; example: `""unexpected end - of input; expected string literal""` - @throw parse_error.102 if to_unicode fails or surrogate error - @throw parse_error.103 if to_unicode fails - */ - template - JSON_HEDLEY_WARN_UNUSED_RESULT - static basic_json parse(IteratorType first, - IteratorType last, - const parser_callback_t cb = nullptr, - const bool allow_exceptions = true, - const bool ignore_comments = false) - { - basic_json result; - parser(detail::input_adapter(std::move(first), std::move(last)), cb, allow_exceptions, ignore_comments).parse(true, result); - return result; - } - - JSON_HEDLEY_WARN_UNUSED_RESULT - JSON_HEDLEY_DEPRECATED_FOR(3.8.0, parse(ptr, ptr + len)) - static basic_json parse(detail::span_input_adapter&& i, - const parser_callback_t cb = nullptr, - const bool allow_exceptions = true, - const bool ignore_comments = false) - { - basic_json result; - parser(i.get(), cb, allow_exceptions, ignore_comments).parse(true, result); - return result; - } - - /*! - @brief check if the input is valid JSON - - Unlike the @ref parse(InputType&&, const parser_callback_t,const bool) - function, this function neither throws an exception in case of invalid JSON - input (i.e., a parse error) nor creates diagnostic information. - - @tparam InputType A compatible input, for instance - - an std::istream object - - a FILE pointer - - a C-style array of characters - - a pointer to a null-terminated string of single byte characters - - an object obj for which begin(obj) and end(obj) produces a valid pair of - iterators. - - @param[in] i input to read from - @param[in] ignore_comments whether comments should be ignored and treated - like whitespace (true) or yield a parse error (true); (optional, false by - default) - - @return Whether the input read from @a i is valid JSON. - - @complexity Linear in the length of the input. The parser is a predictive - LL(1) parser. - - @note A UTF-8 byte order mark is silently ignored. - - @liveexample{The example below demonstrates the `accept()` function reading - from a string.,accept__string} - */ - template - static bool accept(InputType&& i, - const bool ignore_comments = false) - { - return parser(detail::input_adapter(std::forward(i)), nullptr, false, ignore_comments).accept(true); - } - - template - static bool accept(IteratorType first, IteratorType last, - const bool ignore_comments = false) - { - return parser(detail::input_adapter(std::move(first), std::move(last)), nullptr, false, ignore_comments).accept(true); - } - - JSON_HEDLEY_WARN_UNUSED_RESULT - JSON_HEDLEY_DEPRECATED_FOR(3.8.0, accept(ptr, ptr + len)) - static bool accept(detail::span_input_adapter&& i, - const bool ignore_comments = false) - { - return parser(i.get(), nullptr, false, ignore_comments).accept(true); - } - - /*! - @brief generate SAX events - - The SAX event lister must follow the interface of @ref json_sax. - - This function reads from a compatible input. Examples are: - - an std::istream object - - a FILE pointer - - a C-style array of characters - - a pointer to a null-terminated string of single byte characters - - an object obj for which begin(obj) and end(obj) produces a valid pair of - iterators. - - @param[in] i input to read from - @param[in,out] sax SAX event listener - @param[in] format the format to parse (JSON, CBOR, MessagePack, or UBJSON) - @param[in] strict whether the input has to be consumed completely - @param[in] ignore_comments whether comments should be ignored and treated - like whitespace (true) or yield a parse error (true); (optional, false by - default); only applies to the JSON file format. - - @return return value of the last processed SAX event - - @throw parse_error.101 if a parse error occurs; example: `""unexpected end - of input; expected string literal""` - @throw parse_error.102 if to_unicode fails or surrogate error - @throw parse_error.103 if to_unicode fails - - @complexity Linear in the length of the input. The parser is a predictive - LL(1) parser. The complexity can be higher if the SAX consumer @a sax has - a super-linear complexity. - - @note A UTF-8 byte order mark is silently ignored. - - @liveexample{The example below demonstrates the `sax_parse()` function - reading from string and processing the events with a user-defined SAX - event consumer.,sax_parse} - - @since version 3.2.0 - */ - template - JSON_HEDLEY_NON_NULL(2) - static bool sax_parse(InputType&& i, SAX* sax, - input_format_t format = input_format_t::json, - const bool strict = true, - const bool ignore_comments = false) - { - auto ia = detail::input_adapter(std::forward(i)); - return format == input_format_t::json - ? parser(std::move(ia), nullptr, true, ignore_comments).sax_parse(sax, strict) - : detail::binary_reader(std::move(ia)).sax_parse(format, sax, strict); - } - - template - JSON_HEDLEY_NON_NULL(3) - static bool sax_parse(IteratorType first, IteratorType last, SAX* sax, - input_format_t format = input_format_t::json, - const bool strict = true, - const bool ignore_comments = false) - { - auto ia = detail::input_adapter(std::move(first), std::move(last)); - return format == input_format_t::json - ? parser(std::move(ia), nullptr, true, ignore_comments).sax_parse(sax, strict) - : detail::binary_reader(std::move(ia)).sax_parse(format, sax, strict); - } - - template - JSON_HEDLEY_DEPRECATED_FOR(3.8.0, sax_parse(ptr, ptr + len, ...)) - JSON_HEDLEY_NON_NULL(2) - static bool sax_parse(detail::span_input_adapter&& i, SAX* sax, - input_format_t format = input_format_t::json, - const bool strict = true, - const bool ignore_comments = false) - { - auto ia = i.get(); - return format == input_format_t::json - ? parser(std::move(ia), nullptr, true, ignore_comments).sax_parse(sax, strict) - : detail::binary_reader(std::move(ia)).sax_parse(format, sax, strict); - } - - /*! - @brief deserialize from stream - @deprecated This stream operator is deprecated and will be removed in - version 4.0.0 of the library. Please use - @ref operator>>(std::istream&, basic_json&) - instead; that is, replace calls like `j << i;` with `i >> j;`. - @since version 1.0.0; deprecated since version 3.0.0 - */ - JSON_HEDLEY_DEPRECATED_FOR(3.0.0, operator>>(std::istream&, basic_json&)) - friend std::istream& operator<<(basic_json& j, std::istream& i) - { - return operator>>(i, j); - } - - /*! - @brief deserialize from stream - - Deserializes an input stream to a JSON value. - - @param[in,out] i input stream to read a serialized JSON value from - @param[in,out] j JSON value to write the deserialized input to - - @throw parse_error.101 in case of an unexpected token - @throw parse_error.102 if to_unicode fails or surrogate error - @throw parse_error.103 if to_unicode fails - - @complexity Linear in the length of the input. The parser is a predictive - LL(1) parser. - - @note A UTF-8 byte order mark is silently ignored. - - @liveexample{The example below shows how a JSON value is constructed by - reading a serialization from a stream.,operator_deserialize} - - @sa parse(std::istream&, const parser_callback_t) for a variant with a - parser callback function to filter values while parsing - - @since version 1.0.0 - */ - friend std::istream& operator>>(std::istream& i, basic_json& j) - { - parser(detail::input_adapter(i)).parse(false, j); - return i; - } - - /// @} - - /////////////////////////// - // convenience functions // - /////////////////////////// - - /*! - @brief return the type as string - - Returns the type name as string to be used in error messages - usually to - indicate that a function was called on a wrong JSON type. - - @return a string representation of a the @a m_type member: - Value type | return value - ----------- | ------------- - null | `"null"` - boolean | `"boolean"` - string | `"string"` - number | `"number"` (for all number types) - object | `"object"` - array | `"array"` - binary | `"binary"` - discarded | `"discarded"` - - @exceptionsafety No-throw guarantee: this function never throws exceptions. - - @complexity Constant. - - @liveexample{The following code exemplifies `type_name()` for all JSON - types.,type_name} - - @sa @ref type() -- return the type of the JSON value - @sa @ref operator value_t() -- return the type of the JSON value (implicit) - - @since version 1.0.0, public since 2.1.0, `const char*` and `noexcept` - since 3.0.0 - */ - JSON_HEDLEY_RETURNS_NON_NULL - const char* type_name() const noexcept - { - { - switch (m_type) - { - case value_t::null: - return "null"; - case value_t::object: - return "object"; - case value_t::array: - return "array"; - case value_t::string: - return "string"; - case value_t::boolean: - return "boolean"; - case value_t::binary: - return "binary"; - case value_t::discarded: - return "discarded"; - default: - return "number"; - } - } - } - - - private: - ////////////////////// - // member variables // - ////////////////////// - - /// the type of the current element - value_t m_type = value_t::null; - - /// the value of the current element - json_value m_value = {}; - - ////////////////////////////////////////// - // binary serialization/deserialization // - ////////////////////////////////////////// - - /// @name binary serialization/deserialization support - /// @{ - - public: - /*! - @brief create a CBOR serialization of a given JSON value - - Serializes a given JSON value @a j to a byte vector using the CBOR (Concise - Binary Object Representation) serialization format. CBOR is a binary - serialization format which aims to be more compact than JSON itself, yet - more efficient to parse. - - The library uses the following mapping from JSON values types to - CBOR types according to the CBOR specification (RFC 7049): - - JSON value type | value/range | CBOR type | first byte - --------------- | ------------------------------------------ | ---------------------------------- | --------------- - null | `null` | Null | 0xF6 - boolean | `true` | True | 0xF5 - boolean | `false` | False | 0xF4 - number_integer | -9223372036854775808..-2147483649 | Negative integer (8 bytes follow) | 0x3B - number_integer | -2147483648..-32769 | Negative integer (4 bytes follow) | 0x3A - number_integer | -32768..-129 | Negative integer (2 bytes follow) | 0x39 - number_integer | -128..-25 | Negative integer (1 byte follow) | 0x38 - number_integer | -24..-1 | Negative integer | 0x20..0x37 - number_integer | 0..23 | Integer | 0x00..0x17 - number_integer | 24..255 | Unsigned integer (1 byte follow) | 0x18 - number_integer | 256..65535 | Unsigned integer (2 bytes follow) | 0x19 - number_integer | 65536..4294967295 | Unsigned integer (4 bytes follow) | 0x1A - number_integer | 4294967296..18446744073709551615 | Unsigned integer (8 bytes follow) | 0x1B - number_unsigned | 0..23 | Integer | 0x00..0x17 - number_unsigned | 24..255 | Unsigned integer (1 byte follow) | 0x18 - number_unsigned | 256..65535 | Unsigned integer (2 bytes follow) | 0x19 - number_unsigned | 65536..4294967295 | Unsigned integer (4 bytes follow) | 0x1A - number_unsigned | 4294967296..18446744073709551615 | Unsigned integer (8 bytes follow) | 0x1B - number_float | *any value representable by a float* | Single-Precision Float | 0xFA - number_float | *any value NOT representable by a float* | Double-Precision Float | 0xFB - string | *length*: 0..23 | UTF-8 string | 0x60..0x77 - string | *length*: 23..255 | UTF-8 string (1 byte follow) | 0x78 - string | *length*: 256..65535 | UTF-8 string (2 bytes follow) | 0x79 - string | *length*: 65536..4294967295 | UTF-8 string (4 bytes follow) | 0x7A - string | *length*: 4294967296..18446744073709551615 | UTF-8 string (8 bytes follow) | 0x7B - array | *size*: 0..23 | array | 0x80..0x97 - array | *size*: 23..255 | array (1 byte follow) | 0x98 - array | *size*: 256..65535 | array (2 bytes follow) | 0x99 - array | *size*: 65536..4294967295 | array (4 bytes follow) | 0x9A - array | *size*: 4294967296..18446744073709551615 | array (8 bytes follow) | 0x9B - object | *size*: 0..23 | map | 0xA0..0xB7 - object | *size*: 23..255 | map (1 byte follow) | 0xB8 - object | *size*: 256..65535 | map (2 bytes follow) | 0xB9 - object | *size*: 65536..4294967295 | map (4 bytes follow) | 0xBA - object | *size*: 4294967296..18446744073709551615 | map (8 bytes follow) | 0xBB - binary | *size*: 0..23 | byte string | 0x40..0x57 - binary | *size*: 23..255 | byte string (1 byte follow) | 0x58 - binary | *size*: 256..65535 | byte string (2 bytes follow) | 0x59 - binary | *size*: 65536..4294967295 | byte string (4 bytes follow) | 0x5A - binary | *size*: 4294967296..18446744073709551615 | byte string (8 bytes follow) | 0x5B - - @note The mapping is **complete** in the sense that any JSON value type - can be converted to a CBOR value. - - @note If NaN or Infinity are stored inside a JSON number, they are - serialized properly. This behavior differs from the @ref dump() - function which serializes NaN or Infinity to `null`. - - @note The following CBOR types are not used in the conversion: - - UTF-8 strings terminated by "break" (0x7F) - - arrays terminated by "break" (0x9F) - - maps terminated by "break" (0xBF) - - byte strings terminated by "break" (0x5F) - - date/time (0xC0..0xC1) - - bignum (0xC2..0xC3) - - decimal fraction (0xC4) - - bigfloat (0xC5) - - expected conversions (0xD5..0xD7) - - simple values (0xE0..0xF3, 0xF8) - - undefined (0xF7) - - half-precision floats (0xF9) - - break (0xFF) - - @param[in] j JSON value to serialize - @return CBOR serialization as byte vector - - @complexity Linear in the size of the JSON value @a j. - - @liveexample{The example shows the serialization of a JSON value to a byte - vector in CBOR format.,to_cbor} - - @sa http://cbor.io - @sa @ref from_cbor(detail::input_adapter&&, const bool, const bool, const cbor_tag_handler_t) for the - analogous deserialization - @sa @ref to_msgpack(const basic_json&) for the related MessagePack format - @sa @ref to_ubjson(const basic_json&, const bool, const bool) for the - related UBJSON format - - @since version 2.0.9; compact representation of floating-point numbers - since version 3.8.0 - */ - static std::vector to_cbor(const basic_json& j) - { - std::vector result; - to_cbor(j, result); - return result; - } - - static void to_cbor(const basic_json& j, detail::output_adapter o) - { - binary_writer(o).write_cbor(j); - } - - static void to_cbor(const basic_json& j, detail::output_adapter o) - { - binary_writer(o).write_cbor(j); - } - - /*! - @brief create a MessagePack serialization of a given JSON value - - Serializes a given JSON value @a j to a byte vector using the MessagePack - serialization format. MessagePack is a binary serialization format which - aims to be more compact than JSON itself, yet more efficient to parse. - - The library uses the following mapping from JSON values types to - MessagePack types according to the MessagePack specification: - - JSON value type | value/range | MessagePack type | first byte - --------------- | --------------------------------- | ---------------- | ---------- - null | `null` | nil | 0xC0 - boolean | `true` | true | 0xC3 - boolean | `false` | false | 0xC2 - number_integer | -9223372036854775808..-2147483649 | int64 | 0xD3 - number_integer | -2147483648..-32769 | int32 | 0xD2 - number_integer | -32768..-129 | int16 | 0xD1 - number_integer | -128..-33 | int8 | 0xD0 - number_integer | -32..-1 | negative fixint | 0xE0..0xFF - number_integer | 0..127 | positive fixint | 0x00..0x7F - number_integer | 128..255 | uint 8 | 0xCC - number_integer | 256..65535 | uint 16 | 0xCD - number_integer | 65536..4294967295 | uint 32 | 0xCE - number_integer | 4294967296..18446744073709551615 | uint 64 | 0xCF - number_unsigned | 0..127 | positive fixint | 0x00..0x7F - number_unsigned | 128..255 | uint 8 | 0xCC - number_unsigned | 256..65535 | uint 16 | 0xCD - number_unsigned | 65536..4294967295 | uint 32 | 0xCE - number_unsigned | 4294967296..18446744073709551615 | uint 64 | 0xCF - number_float | *any value representable by a float* | float 32 | 0xCA - number_float | *any value NOT representable by a float* | float 64 | 0xCB - string | *length*: 0..31 | fixstr | 0xA0..0xBF - string | *length*: 32..255 | str 8 | 0xD9 - string | *length*: 256..65535 | str 16 | 0xDA - string | *length*: 65536..4294967295 | str 32 | 0xDB - array | *size*: 0..15 | fixarray | 0x90..0x9F - array | *size*: 16..65535 | array 16 | 0xDC - array | *size*: 65536..4294967295 | array 32 | 0xDD - object | *size*: 0..15 | fix map | 0x80..0x8F - object | *size*: 16..65535 | map 16 | 0xDE - object | *size*: 65536..4294967295 | map 32 | 0xDF - binary | *size*: 0..255 | bin 8 | 0xC4 - binary | *size*: 256..65535 | bin 16 | 0xC5 - binary | *size*: 65536..4294967295 | bin 32 | 0xC6 - - @note The mapping is **complete** in the sense that any JSON value type - can be converted to a MessagePack value. - - @note The following values can **not** be converted to a MessagePack value: - - strings with more than 4294967295 bytes - - byte strings with more than 4294967295 bytes - - arrays with more than 4294967295 elements - - objects with more than 4294967295 elements - - @note Any MessagePack output created @ref to_msgpack can be successfully - parsed by @ref from_msgpack. - - @note If NaN or Infinity are stored inside a JSON number, they are - serialized properly. This behavior differs from the @ref dump() - function which serializes NaN or Infinity to `null`. - - @param[in] j JSON value to serialize - @return MessagePack serialization as byte vector - - @complexity Linear in the size of the JSON value @a j. - - @liveexample{The example shows the serialization of a JSON value to a byte - vector in MessagePack format.,to_msgpack} - - @sa http://msgpack.org - @sa @ref from_msgpack for the analogous deserialization - @sa @ref to_cbor(const basic_json& for the related CBOR format - @sa @ref to_ubjson(const basic_json&, const bool, const bool) for the - related UBJSON format - - @since version 2.0.9 - */ - static std::vector to_msgpack(const basic_json& j) - { - std::vector result; - to_msgpack(j, result); - return result; - } - - static void to_msgpack(const basic_json& j, detail::output_adapter o) - { - binary_writer(o).write_msgpack(j); - } - - static void to_msgpack(const basic_json& j, detail::output_adapter o) - { - binary_writer(o).write_msgpack(j); - } - - /*! - @brief create a UBJSON serialization of a given JSON value - - Serializes a given JSON value @a j to a byte vector using the UBJSON - (Universal Binary JSON) serialization format. UBJSON aims to be more compact - than JSON itself, yet more efficient to parse. - - The library uses the following mapping from JSON values types to - UBJSON types according to the UBJSON specification: - - JSON value type | value/range | UBJSON type | marker - --------------- | --------------------------------- | ----------- | ------ - null | `null` | null | `Z` - boolean | `true` | true | `T` - boolean | `false` | false | `F` - number_integer | -9223372036854775808..-2147483649 | int64 | `L` - number_integer | -2147483648..-32769 | int32 | `l` - number_integer | -32768..-129 | int16 | `I` - number_integer | -128..127 | int8 | `i` - number_integer | 128..255 | uint8 | `U` - number_integer | 256..32767 | int16 | `I` - number_integer | 32768..2147483647 | int32 | `l` - number_integer | 2147483648..9223372036854775807 | int64 | `L` - number_unsigned | 0..127 | int8 | `i` - number_unsigned | 128..255 | uint8 | `U` - number_unsigned | 256..32767 | int16 | `I` - number_unsigned | 32768..2147483647 | int32 | `l` - number_unsigned | 2147483648..9223372036854775807 | int64 | `L` - number_unsigned | 2147483649..18446744073709551615 | high-precision | `H` - number_float | *any value* | float64 | `D` - string | *with shortest length indicator* | string | `S` - array | *see notes on optimized format* | array | `[` - object | *see notes on optimized format* | map | `{` - - @note The mapping is **complete** in the sense that any JSON value type - can be converted to a UBJSON value. - - @note The following values can **not** be converted to a UBJSON value: - - strings with more than 9223372036854775807 bytes (theoretical) - - @note The following markers are not used in the conversion: - - `Z`: no-op values are not created. - - `C`: single-byte strings are serialized with `S` markers. - - @note Any UBJSON output created @ref to_ubjson can be successfully parsed - by @ref from_ubjson. - - @note If NaN or Infinity are stored inside a JSON number, they are - serialized properly. This behavior differs from the @ref dump() - function which serializes NaN or Infinity to `null`. - - @note The optimized formats for containers are supported: Parameter - @a use_size adds size information to the beginning of a container and - removes the closing marker. Parameter @a use_type further checks - whether all elements of a container have the same type and adds the - type marker to the beginning of the container. The @a use_type - parameter must only be used together with @a use_size = true. Note - that @a use_size = true alone may result in larger representations - - the benefit of this parameter is that the receiving side is - immediately informed on the number of elements of the container. - - @note If the JSON data contains the binary type, the value stored is a list - of integers, as suggested by the UBJSON documentation. In particular, - this means that serialization and the deserialization of a JSON - containing binary values into UBJSON and back will result in a - different JSON object. - - @param[in] j JSON value to serialize - @param[in] use_size whether to add size annotations to container types - @param[in] use_type whether to add type annotations to container types - (must be combined with @a use_size = true) - @return UBJSON serialization as byte vector - - @complexity Linear in the size of the JSON value @a j. - - @liveexample{The example shows the serialization of a JSON value to a byte - vector in UBJSON format.,to_ubjson} - - @sa http://ubjson.org - @sa @ref from_ubjson(detail::input_adapter&&, const bool, const bool) for the - analogous deserialization - @sa @ref to_cbor(const basic_json& for the related CBOR format - @sa @ref to_msgpack(const basic_json&) for the related MessagePack format - - @since version 3.1.0 - */ - static std::vector to_ubjson(const basic_json& j, - const bool use_size = false, - const bool use_type = false) - { - std::vector result; - to_ubjson(j, result, use_size, use_type); - return result; - } - - static void to_ubjson(const basic_json& j, detail::output_adapter o, - const bool use_size = false, const bool use_type = false) - { - binary_writer(o).write_ubjson(j, use_size, use_type); - } - - static void to_ubjson(const basic_json& j, detail::output_adapter o, - const bool use_size = false, const bool use_type = false) - { - binary_writer(o).write_ubjson(j, use_size, use_type); - } - - - /*! - @brief Serializes the given JSON object `j` to BSON and returns a vector - containing the corresponding BSON-representation. - - BSON (Binary JSON) is a binary format in which zero or more ordered key/value pairs are - stored as a single entity (a so-called document). - - The library uses the following mapping from JSON values types to BSON types: - - JSON value type | value/range | BSON type | marker - --------------- | --------------------------------- | ----------- | ------ - null | `null` | null | 0x0A - boolean | `true`, `false` | boolean | 0x08 - number_integer | -9223372036854775808..-2147483649 | int64 | 0x12 - number_integer | -2147483648..2147483647 | int32 | 0x10 - number_integer | 2147483648..9223372036854775807 | int64 | 0x12 - number_unsigned | 0..2147483647 | int32 | 0x10 - number_unsigned | 2147483648..9223372036854775807 | int64 | 0x12 - number_unsigned | 9223372036854775808..18446744073709551615| -- | -- - number_float | *any value* | double | 0x01 - string | *any value* | string | 0x02 - array | *any value* | document | 0x04 - object | *any value* | document | 0x03 - binary | *any value* | binary | 0x05 - - @warning The mapping is **incomplete**, since only JSON-objects (and things - contained therein) can be serialized to BSON. - Also, integers larger than 9223372036854775807 cannot be serialized to BSON, - and the keys may not contain U+0000, since they are serialized a - zero-terminated c-strings. - - @throw out_of_range.407 if `j.is_number_unsigned() && j.get() > 9223372036854775807` - @throw out_of_range.409 if a key in `j` contains a NULL (U+0000) - @throw type_error.317 if `!j.is_object()` - - @pre The input `j` is required to be an object: `j.is_object() == true`. - - @note Any BSON output created via @ref to_bson can be successfully parsed - by @ref from_bson. - - @param[in] j JSON value to serialize - @return BSON serialization as byte vector - - @complexity Linear in the size of the JSON value @a j. - - @liveexample{The example shows the serialization of a JSON value to a byte - vector in BSON format.,to_bson} - - @sa http://bsonspec.org/spec.html - @sa @ref from_bson(detail::input_adapter&&, const bool strict) for the - analogous deserialization - @sa @ref to_ubjson(const basic_json&, const bool, const bool) for the - related UBJSON format - @sa @ref to_cbor(const basic_json&) for the related CBOR format - @sa @ref to_msgpack(const basic_json&) for the related MessagePack format - */ - static std::vector to_bson(const basic_json& j) - { - std::vector result; - to_bson(j, result); - return result; - } - - /*! - @brief Serializes the given JSON object `j` to BSON and forwards the - corresponding BSON-representation to the given output_adapter `o`. - @param j The JSON object to convert to BSON. - @param o The output adapter that receives the binary BSON representation. - @pre The input `j` shall be an object: `j.is_object() == true` - @sa @ref to_bson(const basic_json&) - */ - static void to_bson(const basic_json& j, detail::output_adapter o) - { - binary_writer(o).write_bson(j); - } - - /*! - @copydoc to_bson(const basic_json&, detail::output_adapter) - */ - static void to_bson(const basic_json& j, detail::output_adapter o) - { - binary_writer(o).write_bson(j); - } - - - /*! - @brief create a JSON value from an input in CBOR format - - Deserializes a given input @a i to a JSON value using the CBOR (Concise - Binary Object Representation) serialization format. - - The library maps CBOR types to JSON value types as follows: - - CBOR type | JSON value type | first byte - ---------------------- | --------------- | ---------- - Integer | number_unsigned | 0x00..0x17 - Unsigned integer | number_unsigned | 0x18 - Unsigned integer | number_unsigned | 0x19 - Unsigned integer | number_unsigned | 0x1A - Unsigned integer | number_unsigned | 0x1B - Negative integer | number_integer | 0x20..0x37 - Negative integer | number_integer | 0x38 - Negative integer | number_integer | 0x39 - Negative integer | number_integer | 0x3A - Negative integer | number_integer | 0x3B - Byte string | binary | 0x40..0x57 - Byte string | binary | 0x58 - Byte string | binary | 0x59 - Byte string | binary | 0x5A - Byte string | binary | 0x5B - UTF-8 string | string | 0x60..0x77 - UTF-8 string | string | 0x78 - UTF-8 string | string | 0x79 - UTF-8 string | string | 0x7A - UTF-8 string | string | 0x7B - UTF-8 string | string | 0x7F - array | array | 0x80..0x97 - array | array | 0x98 - array | array | 0x99 - array | array | 0x9A - array | array | 0x9B - array | array | 0x9F - map | object | 0xA0..0xB7 - map | object | 0xB8 - map | object | 0xB9 - map | object | 0xBA - map | object | 0xBB - map | object | 0xBF - False | `false` | 0xF4 - True | `true` | 0xF5 - Null | `null` | 0xF6 - Half-Precision Float | number_float | 0xF9 - Single-Precision Float | number_float | 0xFA - Double-Precision Float | number_float | 0xFB - - @warning The mapping is **incomplete** in the sense that not all CBOR - types can be converted to a JSON value. The following CBOR types - are not supported and will yield parse errors (parse_error.112): - - date/time (0xC0..0xC1) - - bignum (0xC2..0xC3) - - decimal fraction (0xC4) - - bigfloat (0xC5) - - expected conversions (0xD5..0xD7) - - simple values (0xE0..0xF3, 0xF8) - - undefined (0xF7) - - @warning CBOR allows map keys of any type, whereas JSON only allows - strings as keys in object values. Therefore, CBOR maps with keys - other than UTF-8 strings are rejected (parse_error.113). - - @note Any CBOR output created @ref to_cbor can be successfully parsed by - @ref from_cbor. - - @param[in] i an input in CBOR format convertible to an input adapter - @param[in] strict whether to expect the input to be consumed until EOF - (true by default) - @param[in] allow_exceptions whether to throw exceptions in case of a - parse error (optional, true by default) - @param[in] tag_handler how to treat CBOR tags (optional, error by default) - - @return deserialized JSON value; in case of a parse error and - @a allow_exceptions set to `false`, the return value will be - value_t::discarded. - - @throw parse_error.110 if the given input ends prematurely or the end of - file was not reached when @a strict was set to true - @throw parse_error.112 if unsupported features from CBOR were - used in the given input @a v or if the input is not valid CBOR - @throw parse_error.113 if a string was expected as map key, but not found - - @complexity Linear in the size of the input @a i. - - @liveexample{The example shows the deserialization of a byte vector in CBOR - format to a JSON value.,from_cbor} - - @sa http://cbor.io - @sa @ref to_cbor(const basic_json&) for the analogous serialization - @sa @ref from_msgpack(detail::input_adapter&&, const bool, const bool) for the - related MessagePack format - @sa @ref from_ubjson(detail::input_adapter&&, const bool, const bool) for the - related UBJSON format - - @since version 2.0.9; parameter @a start_index since 2.1.1; changed to - consume input adapters, removed start_index parameter, and added - @a strict parameter since 3.0.0; added @a allow_exceptions parameter - since 3.2.0; added @a tag_handler parameter since 3.9.0. - */ - template - JSON_HEDLEY_WARN_UNUSED_RESULT - static basic_json from_cbor(InputType&& i, - const bool strict = true, - const bool allow_exceptions = true, - const cbor_tag_handler_t tag_handler = cbor_tag_handler_t::error) - { - basic_json result; - detail::json_sax_dom_parser sdp(result, allow_exceptions); - auto ia = detail::input_adapter(std::forward(i)); - const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::cbor, &sdp, strict, tag_handler); - return res ? result : basic_json(value_t::discarded); - } - - /*! - @copydoc from_cbor(detail::input_adapter&&, const bool, const bool, const cbor_tag_handler_t) - */ - template - JSON_HEDLEY_WARN_UNUSED_RESULT - static basic_json from_cbor(IteratorType first, IteratorType last, - const bool strict = true, - const bool allow_exceptions = true, - const cbor_tag_handler_t tag_handler = cbor_tag_handler_t::error) - { - basic_json result; - detail::json_sax_dom_parser sdp(result, allow_exceptions); - auto ia = detail::input_adapter(std::move(first), std::move(last)); - const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::cbor, &sdp, strict, tag_handler); - return res ? result : basic_json(value_t::discarded); - } - - template - JSON_HEDLEY_WARN_UNUSED_RESULT - JSON_HEDLEY_DEPRECATED_FOR(3.8.0, from_cbor(ptr, ptr + len)) - static basic_json from_cbor(const T* ptr, std::size_t len, - const bool strict = true, - const bool allow_exceptions = true, - const cbor_tag_handler_t tag_handler = cbor_tag_handler_t::error) - { - return from_cbor(ptr, ptr + len, strict, allow_exceptions, tag_handler); - } - - - JSON_HEDLEY_WARN_UNUSED_RESULT - JSON_HEDLEY_DEPRECATED_FOR(3.8.0, from_cbor(ptr, ptr + len)) - static basic_json from_cbor(detail::span_input_adapter&& i, - const bool strict = true, - const bool allow_exceptions = true, - const cbor_tag_handler_t tag_handler = cbor_tag_handler_t::error) - { - basic_json result; - detail::json_sax_dom_parser sdp(result, allow_exceptions); - auto ia = i.get(); - const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::cbor, &sdp, strict, tag_handler); - return res ? result : basic_json(value_t::discarded); - } - - /*! - @brief create a JSON value from an input in MessagePack format - - Deserializes a given input @a i to a JSON value using the MessagePack - serialization format. - - The library maps MessagePack types to JSON value types as follows: - - MessagePack type | JSON value type | first byte - ---------------- | --------------- | ---------- - positive fixint | number_unsigned | 0x00..0x7F - fixmap | object | 0x80..0x8F - fixarray | array | 0x90..0x9F - fixstr | string | 0xA0..0xBF - nil | `null` | 0xC0 - false | `false` | 0xC2 - true | `true` | 0xC3 - float 32 | number_float | 0xCA - float 64 | number_float | 0xCB - uint 8 | number_unsigned | 0xCC - uint 16 | number_unsigned | 0xCD - uint 32 | number_unsigned | 0xCE - uint 64 | number_unsigned | 0xCF - int 8 | number_integer | 0xD0 - int 16 | number_integer | 0xD1 - int 32 | number_integer | 0xD2 - int 64 | number_integer | 0xD3 - str 8 | string | 0xD9 - str 16 | string | 0xDA - str 32 | string | 0xDB - array 16 | array | 0xDC - array 32 | array | 0xDD - map 16 | object | 0xDE - map 32 | object | 0xDF - bin 8 | binary | 0xC4 - bin 16 | binary | 0xC5 - bin 32 | binary | 0xC6 - ext 8 | binary | 0xC7 - ext 16 | binary | 0xC8 - ext 32 | binary | 0xC9 - fixext 1 | binary | 0xD4 - fixext 2 | binary | 0xD5 - fixext 4 | binary | 0xD6 - fixext 8 | binary | 0xD7 - fixext 16 | binary | 0xD8 - negative fixint | number_integer | 0xE0-0xFF - - @note Any MessagePack output created @ref to_msgpack can be successfully - parsed by @ref from_msgpack. - - @param[in] i an input in MessagePack format convertible to an input - adapter - @param[in] strict whether to expect the input to be consumed until EOF - (true by default) - @param[in] allow_exceptions whether to throw exceptions in case of a - parse error (optional, true by default) - - @return deserialized JSON value; in case of a parse error and - @a allow_exceptions set to `false`, the return value will be - value_t::discarded. - - @throw parse_error.110 if the given input ends prematurely or the end of - file was not reached when @a strict was set to true - @throw parse_error.112 if unsupported features from MessagePack were - used in the given input @a i or if the input is not valid MessagePack - @throw parse_error.113 if a string was expected as map key, but not found - - @complexity Linear in the size of the input @a i. - - @liveexample{The example shows the deserialization of a byte vector in - MessagePack format to a JSON value.,from_msgpack} - - @sa http://msgpack.org - @sa @ref to_msgpack(const basic_json&) for the analogous serialization - @sa @ref from_cbor(detail::input_adapter&&, const bool, const bool, const cbor_tag_handler_t) for the - related CBOR format - @sa @ref from_ubjson(detail::input_adapter&&, const bool, const bool) for - the related UBJSON format - @sa @ref from_bson(detail::input_adapter&&, const bool, const bool) for - the related BSON format - - @since version 2.0.9; parameter @a start_index since 2.1.1; changed to - consume input adapters, removed start_index parameter, and added - @a strict parameter since 3.0.0; added @a allow_exceptions parameter - since 3.2.0 - */ - template - JSON_HEDLEY_WARN_UNUSED_RESULT - static basic_json from_msgpack(InputType&& i, - const bool strict = true, - const bool allow_exceptions = true) - { - basic_json result; - detail::json_sax_dom_parser sdp(result, allow_exceptions); - auto ia = detail::input_adapter(std::forward(i)); - const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::msgpack, &sdp, strict); - return res ? result : basic_json(value_t::discarded); - } - - /*! - @copydoc from_msgpack(detail::input_adapter&&, const bool, const bool) - */ - template - JSON_HEDLEY_WARN_UNUSED_RESULT - static basic_json from_msgpack(IteratorType first, IteratorType last, - const bool strict = true, - const bool allow_exceptions = true) - { - basic_json result; - detail::json_sax_dom_parser sdp(result, allow_exceptions); - auto ia = detail::input_adapter(std::move(first), std::move(last)); - const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::msgpack, &sdp, strict); - return res ? result : basic_json(value_t::discarded); - } - - - template - JSON_HEDLEY_WARN_UNUSED_RESULT - JSON_HEDLEY_DEPRECATED_FOR(3.8.0, from_msgpack(ptr, ptr + len)) - static basic_json from_msgpack(const T* ptr, std::size_t len, - const bool strict = true, - const bool allow_exceptions = true) - { - return from_msgpack(ptr, ptr + len, strict, allow_exceptions); - } - - JSON_HEDLEY_WARN_UNUSED_RESULT - JSON_HEDLEY_DEPRECATED_FOR(3.8.0, from_msgpack(ptr, ptr + len)) - static basic_json from_msgpack(detail::span_input_adapter&& i, - const bool strict = true, - const bool allow_exceptions = true) - { - basic_json result; - detail::json_sax_dom_parser sdp(result, allow_exceptions); - auto ia = i.get(); - const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::msgpack, &sdp, strict); - return res ? result : basic_json(value_t::discarded); - } - - - /*! - @brief create a JSON value from an input in UBJSON format - - Deserializes a given input @a i to a JSON value using the UBJSON (Universal - Binary JSON) serialization format. - - The library maps UBJSON types to JSON value types as follows: - - UBJSON type | JSON value type | marker - ----------- | --------------------------------------- | ------ - no-op | *no value, next value is read* | `N` - null | `null` | `Z` - false | `false` | `F` - true | `true` | `T` - float32 | number_float | `d` - float64 | number_float | `D` - uint8 | number_unsigned | `U` - int8 | number_integer | `i` - int16 | number_integer | `I` - int32 | number_integer | `l` - int64 | number_integer | `L` - high-precision number | number_integer, number_unsigned, or number_float - depends on number string | 'H' - string | string | `S` - char | string | `C` - array | array (optimized values are supported) | `[` - object | object (optimized values are supported) | `{` - - @note The mapping is **complete** in the sense that any UBJSON value can - be converted to a JSON value. - - @param[in] i an input in UBJSON format convertible to an input adapter - @param[in] strict whether to expect the input to be consumed until EOF - (true by default) - @param[in] allow_exceptions whether to throw exceptions in case of a - parse error (optional, true by default) - - @return deserialized JSON value; in case of a parse error and - @a allow_exceptions set to `false`, the return value will be - value_t::discarded. - - @throw parse_error.110 if the given input ends prematurely or the end of - file was not reached when @a strict was set to true - @throw parse_error.112 if a parse error occurs - @throw parse_error.113 if a string could not be parsed successfully - - @complexity Linear in the size of the input @a i. - - @liveexample{The example shows the deserialization of a byte vector in - UBJSON format to a JSON value.,from_ubjson} - - @sa http://ubjson.org - @sa @ref to_ubjson(const basic_json&, const bool, const bool) for the - analogous serialization - @sa @ref from_cbor(detail::input_adapter&&, const bool, const bool, const cbor_tag_handler_t) for the - related CBOR format - @sa @ref from_msgpack(detail::input_adapter&&, const bool, const bool) for - the related MessagePack format - @sa @ref from_bson(detail::input_adapter&&, const bool, const bool) for - the related BSON format - - @since version 3.1.0; added @a allow_exceptions parameter since 3.2.0 - */ - template - JSON_HEDLEY_WARN_UNUSED_RESULT - static basic_json from_ubjson(InputType&& i, - const bool strict = true, - const bool allow_exceptions = true) - { - basic_json result; - detail::json_sax_dom_parser sdp(result, allow_exceptions); - auto ia = detail::input_adapter(std::forward(i)); - const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::ubjson, &sdp, strict); - return res ? result : basic_json(value_t::discarded); - } - - /*! - @copydoc from_ubjson(detail::input_adapter&&, const bool, const bool) - */ - template - JSON_HEDLEY_WARN_UNUSED_RESULT - static basic_json from_ubjson(IteratorType first, IteratorType last, - const bool strict = true, - const bool allow_exceptions = true) - { - basic_json result; - detail::json_sax_dom_parser sdp(result, allow_exceptions); - auto ia = detail::input_adapter(std::move(first), std::move(last)); - const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::ubjson, &sdp, strict); - return res ? result : basic_json(value_t::discarded); - } - - template - JSON_HEDLEY_WARN_UNUSED_RESULT - JSON_HEDLEY_DEPRECATED_FOR(3.8.0, from_ubjson(ptr, ptr + len)) - static basic_json from_ubjson(const T* ptr, std::size_t len, - const bool strict = true, - const bool allow_exceptions = true) - { - return from_ubjson(ptr, ptr + len, strict, allow_exceptions); - } - - JSON_HEDLEY_WARN_UNUSED_RESULT - JSON_HEDLEY_DEPRECATED_FOR(3.8.0, from_ubjson(ptr, ptr + len)) - static basic_json from_ubjson(detail::span_input_adapter&& i, - const bool strict = true, - const bool allow_exceptions = true) - { - basic_json result; - detail::json_sax_dom_parser sdp(result, allow_exceptions); - auto ia = i.get(); - const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::ubjson, &sdp, strict); - return res ? result : basic_json(value_t::discarded); - } - - - /*! - @brief Create a JSON value from an input in BSON format - - Deserializes a given input @a i to a JSON value using the BSON (Binary JSON) - serialization format. - - The library maps BSON record types to JSON value types as follows: - - BSON type | BSON marker byte | JSON value type - --------------- | ---------------- | --------------------------- - double | 0x01 | number_float - string | 0x02 | string - document | 0x03 | object - array | 0x04 | array - binary | 0x05 | still unsupported - undefined | 0x06 | still unsupported - ObjectId | 0x07 | still unsupported - boolean | 0x08 | boolean - UTC Date-Time | 0x09 | still unsupported - null | 0x0A | null - Regular Expr. | 0x0B | still unsupported - DB Pointer | 0x0C | still unsupported - JavaScript Code | 0x0D | still unsupported - Symbol | 0x0E | still unsupported - JavaScript Code | 0x0F | still unsupported - int32 | 0x10 | number_integer - Timestamp | 0x11 | still unsupported - 128-bit decimal float | 0x13 | still unsupported - Max Key | 0x7F | still unsupported - Min Key | 0xFF | still unsupported - - @warning The mapping is **incomplete**. The unsupported mappings - are indicated in the table above. - - @param[in] i an input in BSON format convertible to an input adapter - @param[in] strict whether to expect the input to be consumed until EOF - (true by default) - @param[in] allow_exceptions whether to throw exceptions in case of a - parse error (optional, true by default) - - @return deserialized JSON value; in case of a parse error and - @a allow_exceptions set to `false`, the return value will be - value_t::discarded. - - @throw parse_error.114 if an unsupported BSON record type is encountered - - @complexity Linear in the size of the input @a i. - - @liveexample{The example shows the deserialization of a byte vector in - BSON format to a JSON value.,from_bson} - - @sa http://bsonspec.org/spec.html - @sa @ref to_bson(const basic_json&) for the analogous serialization - @sa @ref from_cbor(detail::input_adapter&&, const bool, const bool, const cbor_tag_handler_t) for the - related CBOR format - @sa @ref from_msgpack(detail::input_adapter&&, const bool, const bool) for - the related MessagePack format - @sa @ref from_ubjson(detail::input_adapter&&, const bool, const bool) for the - related UBJSON format - */ - template - JSON_HEDLEY_WARN_UNUSED_RESULT - static basic_json from_bson(InputType&& i, - const bool strict = true, - const bool allow_exceptions = true) - { - basic_json result; - detail::json_sax_dom_parser sdp(result, allow_exceptions); - auto ia = detail::input_adapter(std::forward(i)); - const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::bson, &sdp, strict); - return res ? result : basic_json(value_t::discarded); - } - - /*! - @copydoc from_bson(detail::input_adapter&&, const bool, const bool) - */ - template - JSON_HEDLEY_WARN_UNUSED_RESULT - static basic_json from_bson(IteratorType first, IteratorType last, - const bool strict = true, - const bool allow_exceptions = true) - { - basic_json result; - detail::json_sax_dom_parser sdp(result, allow_exceptions); - auto ia = detail::input_adapter(std::move(first), std::move(last)); - const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::bson, &sdp, strict); - return res ? result : basic_json(value_t::discarded); - } - - template - JSON_HEDLEY_WARN_UNUSED_RESULT - JSON_HEDLEY_DEPRECATED_FOR(3.8.0, from_bson(ptr, ptr + len)) - static basic_json from_bson(const T* ptr, std::size_t len, - const bool strict = true, - const bool allow_exceptions = true) - { - return from_bson(ptr, ptr + len, strict, allow_exceptions); - } - - JSON_HEDLEY_WARN_UNUSED_RESULT - JSON_HEDLEY_DEPRECATED_FOR(3.8.0, from_bson(ptr, ptr + len)) - static basic_json from_bson(detail::span_input_adapter&& i, - const bool strict = true, - const bool allow_exceptions = true) - { - basic_json result; - detail::json_sax_dom_parser sdp(result, allow_exceptions); - auto ia = i.get(); - const bool res = binary_reader(std::move(ia)).sax_parse(input_format_t::bson, &sdp, strict); - return res ? result : basic_json(value_t::discarded); - } - /// @} - - ////////////////////////// - // JSON Pointer support // - ////////////////////////// - - /// @name JSON Pointer functions - /// @{ - - /*! - @brief access specified element via JSON Pointer - - Uses a JSON pointer to retrieve a reference to the respective JSON value. - No bound checking is performed. Similar to @ref operator[](const typename - object_t::key_type&), `null` values are created in arrays and objects if - necessary. - - In particular: - - If the JSON pointer points to an object key that does not exist, it - is created an filled with a `null` value before a reference to it - is returned. - - If the JSON pointer points to an array index that does not exist, it - is created an filled with a `null` value before a reference to it - is returned. All indices between the current maximum and the given - index are also filled with `null`. - - The special value `-` is treated as a synonym for the index past the - end. - - @param[in] ptr a JSON pointer - - @return reference to the element pointed to by @a ptr - - @complexity Constant. - - @throw parse_error.106 if an array index begins with '0' - @throw parse_error.109 if an array index was not a number - @throw out_of_range.404 if the JSON pointer can not be resolved - - @liveexample{The behavior is shown in the example.,operatorjson_pointer} - - @since version 2.0.0 - */ - reference operator[](const json_pointer& ptr) - { - return ptr.get_unchecked(this); - } - - /*! - @brief access specified element via JSON Pointer - - Uses a JSON pointer to retrieve a reference to the respective JSON value. - No bound checking is performed. The function does not change the JSON - value; no `null` values are created. In particular, the special value - `-` yields an exception. - - @param[in] ptr JSON pointer to the desired element - - @return const reference to the element pointed to by @a ptr - - @complexity Constant. - - @throw parse_error.106 if an array index begins with '0' - @throw parse_error.109 if an array index was not a number - @throw out_of_range.402 if the array index '-' is used - @throw out_of_range.404 if the JSON pointer can not be resolved - - @liveexample{The behavior is shown in the example.,operatorjson_pointer_const} - - @since version 2.0.0 - */ - const_reference operator[](const json_pointer& ptr) const - { - return ptr.get_unchecked(this); - } - - /*! - @brief access specified element via JSON Pointer - - Returns a reference to the element at with specified JSON pointer @a ptr, - with bounds checking. - - @param[in] ptr JSON pointer to the desired element - - @return reference to the element pointed to by @a ptr - - @throw parse_error.106 if an array index in the passed JSON pointer @a ptr - begins with '0'. See example below. - - @throw parse_error.109 if an array index in the passed JSON pointer @a ptr - is not a number. See example below. - - @throw out_of_range.401 if an array index in the passed JSON pointer @a ptr - is out of range. See example below. - - @throw out_of_range.402 if the array index '-' is used in the passed JSON - pointer @a ptr. As `at` provides checked access (and no elements are - implicitly inserted), the index '-' is always invalid. See example below. - - @throw out_of_range.403 if the JSON pointer describes a key of an object - which cannot be found. See example below. - - @throw out_of_range.404 if the JSON pointer @a ptr can not be resolved. - See example below. - - @exceptionsafety Strong guarantee: if an exception is thrown, there are no - changes in the JSON value. - - @complexity Constant. - - @since version 2.0.0 - - @liveexample{The behavior is shown in the example.,at_json_pointer} - */ - reference at(const json_pointer& ptr) - { - return ptr.get_checked(this); - } - - /*! - @brief access specified element via JSON Pointer - - Returns a const reference to the element at with specified JSON pointer @a - ptr, with bounds checking. - - @param[in] ptr JSON pointer to the desired element - - @return reference to the element pointed to by @a ptr - - @throw parse_error.106 if an array index in the passed JSON pointer @a ptr - begins with '0'. See example below. - - @throw parse_error.109 if an array index in the passed JSON pointer @a ptr - is not a number. See example below. - - @throw out_of_range.401 if an array index in the passed JSON pointer @a ptr - is out of range. See example below. - - @throw out_of_range.402 if the array index '-' is used in the passed JSON - pointer @a ptr. As `at` provides checked access (and no elements are - implicitly inserted), the index '-' is always invalid. See example below. - - @throw out_of_range.403 if the JSON pointer describes a key of an object - which cannot be found. See example below. - - @throw out_of_range.404 if the JSON pointer @a ptr can not be resolved. - See example below. - - @exceptionsafety Strong guarantee: if an exception is thrown, there are no - changes in the JSON value. - - @complexity Constant. - - @since version 2.0.0 - - @liveexample{The behavior is shown in the example.,at_json_pointer_const} - */ - const_reference at(const json_pointer& ptr) const - { - return ptr.get_checked(this); - } - - /*! - @brief return flattened JSON value - - The function creates a JSON object whose keys are JSON pointers (see [RFC - 6901](https://tools.ietf.org/html/rfc6901)) and whose values are all - primitive. The original JSON value can be restored using the @ref - unflatten() function. - - @return an object that maps JSON pointers to primitive values - - @note Empty objects and arrays are flattened to `null` and will not be - reconstructed correctly by the @ref unflatten() function. - - @complexity Linear in the size the JSON value. - - @liveexample{The following code shows how a JSON object is flattened to an - object whose keys consist of JSON pointers.,flatten} - - @sa @ref unflatten() for the reverse function - - @since version 2.0.0 - */ - basic_json flatten() const - { - basic_json result(value_t::object); - json_pointer::flatten("", *this, result); - return result; - } - - /*! - @brief unflatten a previously flattened JSON value - - The function restores the arbitrary nesting of a JSON value that has been - flattened before using the @ref flatten() function. The JSON value must - meet certain constraints: - 1. The value must be an object. - 2. The keys must be JSON pointers (see - [RFC 6901](https://tools.ietf.org/html/rfc6901)) - 3. The mapped values must be primitive JSON types. - - @return the original JSON from a flattened version - - @note Empty objects and arrays are flattened by @ref flatten() to `null` - values and can not unflattened to their original type. Apart from - this example, for a JSON value `j`, the following is always true: - `j == j.flatten().unflatten()`. - - @complexity Linear in the size the JSON value. - - @throw type_error.314 if value is not an object - @throw type_error.315 if object values are not primitive - - @liveexample{The following code shows how a flattened JSON object is - unflattened into the original nested JSON object.,unflatten} - - @sa @ref flatten() for the reverse function - - @since version 2.0.0 - */ - basic_json unflatten() const - { - return json_pointer::unflatten(*this); - } - - /// @} - - ////////////////////////// - // JSON Patch functions // - ////////////////////////// - - /// @name JSON Patch functions - /// @{ - - /*! - @brief applies a JSON patch - - [JSON Patch](http://jsonpatch.com) defines a JSON document structure for - expressing a sequence of operations to apply to a JSON) document. With - this function, a JSON Patch is applied to the current JSON value by - executing all operations from the patch. - - @param[in] json_patch JSON patch document - @return patched document - - @note The application of a patch is atomic: Either all operations succeed - and the patched document is returned or an exception is thrown. In - any case, the original value is not changed: the patch is applied - to a copy of the value. - - @throw parse_error.104 if the JSON patch does not consist of an array of - objects - - @throw parse_error.105 if the JSON patch is malformed (e.g., mandatory - attributes are missing); example: `"operation add must have member path"` - - @throw out_of_range.401 if an array index is out of range. - - @throw out_of_range.403 if a JSON pointer inside the patch could not be - resolved successfully in the current JSON value; example: `"key baz not - found"` - - @throw out_of_range.405 if JSON pointer has no parent ("add", "remove", - "move") - - @throw other_error.501 if "test" operation was unsuccessful - - @complexity Linear in the size of the JSON value and the length of the - JSON patch. As usually only a fraction of the JSON value is affected by - the patch, the complexity can usually be neglected. - - @liveexample{The following code shows how a JSON patch is applied to a - value.,patch} - - @sa @ref diff -- create a JSON patch by comparing two JSON values - - @sa [RFC 6902 (JSON Patch)](https://tools.ietf.org/html/rfc6902) - @sa [RFC 6901 (JSON Pointer)](https://tools.ietf.org/html/rfc6901) - - @since version 2.0.0 - */ - basic_json patch(const basic_json& json_patch) const - { - // make a working copy to apply the patch to - basic_json result = *this; - - // the valid JSON Patch operations - enum class patch_operations {add, remove, replace, move, copy, test, invalid}; - - const auto get_op = [](const std::string & op) - { - if (op == "add") - { - return patch_operations::add; - } - if (op == "remove") - { - return patch_operations::remove; - } - if (op == "replace") - { - return patch_operations::replace; - } - if (op == "move") - { - return patch_operations::move; - } - if (op == "copy") - { - return patch_operations::copy; - } - if (op == "test") - { - return patch_operations::test; - } - - return patch_operations::invalid; - }; - - // wrapper for "add" operation; add value at ptr - const auto operation_add = [&result](json_pointer & ptr, basic_json val) - { - // adding to the root of the target document means replacing it - if (ptr.empty()) - { - result = val; - return; - } - - // make sure the top element of the pointer exists - json_pointer top_pointer = ptr.top(); - if (top_pointer != ptr) - { - result.at(top_pointer); - } - - // get reference to parent of JSON pointer ptr - const auto last_path = ptr.back(); - ptr.pop_back(); - basic_json& parent = result[ptr]; - - switch (parent.m_type) - { - case value_t::null: - case value_t::object: - { - // use operator[] to add value - parent[last_path] = val; - break; - } - - case value_t::array: - { - if (last_path == "-") - { - // special case: append to back - parent.push_back(val); - } - else - { - const auto idx = json_pointer::array_index(last_path); - if (JSON_HEDLEY_UNLIKELY(idx > parent.size())) - { - // avoid undefined behavior - JSON_THROW(out_of_range::create(401, "array index " + std::to_string(idx) + " is out of range")); - } - - // default case: insert add offset - parent.insert(parent.begin() + static_cast(idx), val); - } - break; - } - - // if there exists a parent it cannot be primitive - default: // LCOV_EXCL_LINE - JSON_ASSERT(false); // LCOV_EXCL_LINE - } - }; - - // wrapper for "remove" operation; remove value at ptr - const auto operation_remove = [&result](json_pointer & ptr) - { - // get reference to parent of JSON pointer ptr - const auto last_path = ptr.back(); - ptr.pop_back(); - basic_json& parent = result.at(ptr); - - // remove child - if (parent.is_object()) - { - // perform range check - auto it = parent.find(last_path); - if (JSON_HEDLEY_LIKELY(it != parent.end())) - { - parent.erase(it); - } - else - { - JSON_THROW(out_of_range::create(403, "key '" + last_path + "' not found")); - } - } - else if (parent.is_array()) - { - // note erase performs range check - parent.erase(json_pointer::array_index(last_path)); - } - }; - - // type check: top level value must be an array - if (JSON_HEDLEY_UNLIKELY(!json_patch.is_array())) - { - JSON_THROW(parse_error::create(104, 0, "JSON patch must be an array of objects")); - } - - // iterate and apply the operations - for (const auto& val : json_patch) - { - // wrapper to get a value for an operation - const auto get_value = [&val](const std::string & op, - const std::string & member, - bool string_type) -> basic_json & - { - // find value - auto it = val.m_value.object->find(member); - - // context-sensitive error message - const auto error_msg = (op == "op") ? "operation" : "operation '" + op + "'"; - - // check if desired value is present - if (JSON_HEDLEY_UNLIKELY(it == val.m_value.object->end())) - { - JSON_THROW(parse_error::create(105, 0, error_msg + " must have member '" + member + "'")); - } - - // check if result is of type string - if (JSON_HEDLEY_UNLIKELY(string_type && !it->second.is_string())) - { - JSON_THROW(parse_error::create(105, 0, error_msg + " must have string member '" + member + "'")); - } - - // no error: return value - return it->second; - }; - - // type check: every element of the array must be an object - if (JSON_HEDLEY_UNLIKELY(!val.is_object())) - { - JSON_THROW(parse_error::create(104, 0, "JSON patch must be an array of objects")); - } - - // collect mandatory members - const auto op = get_value("op", "op", true).template get(); - const auto path = get_value(op, "path", true).template get(); - json_pointer ptr(path); - - switch (get_op(op)) - { - case patch_operations::add: - { - operation_add(ptr, get_value("add", "value", false)); - break; - } - - case patch_operations::remove: - { - operation_remove(ptr); - break; - } - - case patch_operations::replace: - { - // the "path" location must exist - use at() - result.at(ptr) = get_value("replace", "value", false); - break; - } - - case patch_operations::move: - { - const auto from_path = get_value("move", "from", true).template get(); - json_pointer from_ptr(from_path); - - // the "from" location must exist - use at() - basic_json v = result.at(from_ptr); - - // The move operation is functionally identical to a - // "remove" operation on the "from" location, followed - // immediately by an "add" operation at the target - // location with the value that was just removed. - operation_remove(from_ptr); - operation_add(ptr, v); - break; - } - - case patch_operations::copy: - { - const auto from_path = get_value("copy", "from", true).template get(); - const json_pointer from_ptr(from_path); - - // the "from" location must exist - use at() - basic_json v = result.at(from_ptr); - - // The copy is functionally identical to an "add" - // operation at the target location using the value - // specified in the "from" member. - operation_add(ptr, v); - break; - } - - case patch_operations::test: - { - bool success = false; - JSON_TRY - { - // check if "value" matches the one at "path" - // the "path" location must exist - use at() - success = (result.at(ptr) == get_value("test", "value", false)); - } - JSON_INTERNAL_CATCH (out_of_range&) - { - // ignore out of range errors: success remains false - } - - // throw an exception if test fails - if (JSON_HEDLEY_UNLIKELY(!success)) - { - JSON_THROW(other_error::create(501, "unsuccessful: " + val.dump())); - } - - break; - } - - default: - { - // op must be "add", "remove", "replace", "move", "copy", or - // "test" - JSON_THROW(parse_error::create(105, 0, "operation value '" + op + "' is invalid")); - } - } - } - - return result; - } - - /*! - @brief creates a diff as a JSON patch - - Creates a [JSON Patch](http://jsonpatch.com) so that value @a source can - be changed into the value @a target by calling @ref patch function. - - @invariant For two JSON values @a source and @a target, the following code - yields always `true`: - @code {.cpp} - source.patch(diff(source, target)) == target; - @endcode - - @note Currently, only `remove`, `add`, and `replace` operations are - generated. - - @param[in] source JSON value to compare from - @param[in] target JSON value to compare against - @param[in] path helper value to create JSON pointers - - @return a JSON patch to convert the @a source to @a target - - @complexity Linear in the lengths of @a source and @a target. - - @liveexample{The following code shows how a JSON patch is created as a - diff for two JSON values.,diff} - - @sa @ref patch -- apply a JSON patch - @sa @ref merge_patch -- apply a JSON Merge Patch - - @sa [RFC 6902 (JSON Patch)](https://tools.ietf.org/html/rfc6902) - - @since version 2.0.0 - */ - JSON_HEDLEY_WARN_UNUSED_RESULT - static basic_json diff(const basic_json& source, const basic_json& target, - const std::string& path = "") - { - // the patch - basic_json result(value_t::array); - - // if the values are the same, return empty patch - if (source == target) - { - return result; - } - - if (source.type() != target.type()) - { - // different types: replace value - result.push_back( - { - {"op", "replace"}, {"path", path}, {"value", target} - }); - return result; - } - - switch (source.type()) - { - case value_t::array: - { - // first pass: traverse common elements - std::size_t i = 0; - while (i < source.size() && i < target.size()) - { - // recursive call to compare array values at index i - auto temp_diff = diff(source[i], target[i], path + "/" + std::to_string(i)); - result.insert(result.end(), temp_diff.begin(), temp_diff.end()); - ++i; - } - - // i now reached the end of at least one array - // in a second pass, traverse the remaining elements - - // remove my remaining elements - const auto end_index = static_cast(result.size()); - while (i < source.size()) - { - // add operations in reverse order to avoid invalid - // indices - result.insert(result.begin() + end_index, object( - { - {"op", "remove"}, - {"path", path + "/" + std::to_string(i)} - })); - ++i; - } - - // add other remaining elements - while (i < target.size()) - { - result.push_back( - { - {"op", "add"}, - {"path", path + "/-"}, - {"value", target[i]} - }); - ++i; - } - - break; - } - - case value_t::object: - { - // first pass: traverse this object's elements - for (auto it = source.cbegin(); it != source.cend(); ++it) - { - // escape the key name to be used in a JSON patch - const auto key = json_pointer::escape(it.key()); - - if (target.find(it.key()) != target.end()) - { - // recursive call to compare object values at key it - auto temp_diff = diff(it.value(), target[it.key()], path + "/" + key); - result.insert(result.end(), temp_diff.begin(), temp_diff.end()); - } - else - { - // found a key that is not in o -> remove it - result.push_back(object( - { - {"op", "remove"}, {"path", path + "/" + key} - })); - } - } - - // second pass: traverse other object's elements - for (auto it = target.cbegin(); it != target.cend(); ++it) - { - if (source.find(it.key()) == source.end()) - { - // found a key that is not in this -> add it - const auto key = json_pointer::escape(it.key()); - result.push_back( - { - {"op", "add"}, {"path", path + "/" + key}, - {"value", it.value()} - }); - } - } - - break; - } - - default: - { - // both primitive type: replace value - result.push_back( - { - {"op", "replace"}, {"path", path}, {"value", target} - }); - break; - } - } - - return result; - } - - /// @} - - //////////////////////////////// - // JSON Merge Patch functions // - //////////////////////////////// - - /// @name JSON Merge Patch functions - /// @{ - - /*! - @brief applies a JSON Merge Patch - - The merge patch format is primarily intended for use with the HTTP PATCH - method as a means of describing a set of modifications to a target - resource's content. This function applies a merge patch to the current - JSON value. - - The function implements the following algorithm from Section 2 of - [RFC 7396 (JSON Merge Patch)](https://tools.ietf.org/html/rfc7396): - - ``` - define MergePatch(Target, Patch): - if Patch is an Object: - if Target is not an Object: - Target = {} // Ignore the contents and set it to an empty Object - for each Name/Value pair in Patch: - if Value is null: - if Name exists in Target: - remove the Name/Value pair from Target - else: - Target[Name] = MergePatch(Target[Name], Value) - return Target - else: - return Patch - ``` - - Thereby, `Target` is the current object; that is, the patch is applied to - the current value. - - @param[in] apply_patch the patch to apply - - @complexity Linear in the lengths of @a patch. - - @liveexample{The following code shows how a JSON Merge Patch is applied to - a JSON document.,merge_patch} - - @sa @ref patch -- apply a JSON patch - @sa [RFC 7396 (JSON Merge Patch)](https://tools.ietf.org/html/rfc7396) - - @since version 3.0.0 - */ - void merge_patch(const basic_json& apply_patch) - { - if (apply_patch.is_object()) - { - if (!is_object()) - { - *this = object(); - } - for (auto it = apply_patch.begin(); it != apply_patch.end(); ++it) - { - if (it.value().is_null()) - { - erase(it.key()); - } - else - { - operator[](it.key()).merge_patch(it.value()); - } - } - } - else - { - *this = apply_patch; - } - } - - /// @} -}; - -/*! -@brief user-defined to_string function for JSON values - -This function implements a user-defined to_string for JSON objects. - -@param[in] j a JSON object -@return a std::string object -*/ - -NLOHMANN_BASIC_JSON_TPL_DECLARATION -std::string to_string(const NLOHMANN_BASIC_JSON_TPL& j) -{ - return j.dump(); -} -} // namespace nlohmann - -/////////////////////// -// nonmember support // -/////////////////////// - -// specialization of std::swap, and std::hash -namespace std -{ - -/// hash value for JSON objects -template<> -struct hash -{ - /*! - @brief return a hash value for a JSON object - - @since version 1.0.0 - */ - std::size_t operator()(const nlohmann::json& j) const - { - return nlohmann::detail::hash(j); - } -}; - -/// specialization for std::less -/// @note: do not remove the space after '<', -/// see https://github.com/nlohmann/json/pull/679 -template<> -struct less<::nlohmann::detail::value_t> -{ - /*! - @brief compare two value_t enum values - @since version 3.0.0 - */ - bool operator()(nlohmann::detail::value_t lhs, - nlohmann::detail::value_t rhs) const noexcept - { - return nlohmann::detail::operator<(lhs, rhs); - } -}; - -// C++20 prohibit function specialization in the std namespace. -#ifndef JSON_HAS_CPP_20 - -/*! -@brief exchanges the values of two JSON objects - -@since version 1.0.0 -*/ -template<> -inline void swap(nlohmann::json& j1, nlohmann::json& j2) noexcept( - is_nothrow_move_constructible::value&& - is_nothrow_move_assignable::value -) -{ - j1.swap(j2); -} - -#endif - -} // namespace std - -/*! -@brief user-defined string literal for JSON values - -This operator implements a user-defined string literal for JSON objects. It -can be used by adding `"_json"` to a string literal and returns a JSON object -if no parse error occurred. - -@param[in] s a string representation of a JSON object -@param[in] n the length of string @a s -@return a JSON object - -@since version 1.0.0 -*/ -JSON_HEDLEY_NON_NULL(1) -inline nlohmann::json operator "" _json(const char* s, std::size_t n) -{ - return nlohmann::json::parse(s, s + n); -} - -/*! -@brief user-defined string literal for JSON pointer - -This operator implements a user-defined string literal for JSON Pointers. It -can be used by adding `"_json_pointer"` to a string literal and returns a JSON pointer -object if no parse error occurred. - -@param[in] s a string representation of a JSON Pointer -@param[in] n the length of string @a s -@return a JSON pointer object - -@since version 2.0.0 -*/ -JSON_HEDLEY_NON_NULL(1) -inline nlohmann::json::json_pointer operator "" _json_pointer(const char* s, std::size_t n) -{ - return nlohmann::json::json_pointer(std::string(s, n)); -} - -#include - -#endif // INCLUDE_NLOHMANN_JSON_HPP_ diff --git a/nlohmann/json_fwd.hpp b/nlohmann/json_fwd.hpp deleted file mode 100644 index 332227c..0000000 --- a/nlohmann/json_fwd.hpp +++ /dev/null @@ -1,78 +0,0 @@ -#ifndef INCLUDE_NLOHMANN_JSON_FWD_HPP_ -#define INCLUDE_NLOHMANN_JSON_FWD_HPP_ - -#include // int64_t, uint64_t -#include // map -#include // allocator -#include // string -#include // vector - -/*! -@brief namespace for Niels Lohmann -@see https://github.com/nlohmann -@since version 1.0.0 -*/ -namespace nlohmann -{ -/*! -@brief default JSONSerializer template argument - -This serializer ignores the template arguments and uses ADL -([argument-dependent lookup](https://en.cppreference.com/w/cpp/language/adl)) -for serialization. -*/ -template -struct adl_serializer; - -template class ObjectType = - std::map, - template class ArrayType = std::vector, - class StringType = std::string, class BooleanType = bool, - class NumberIntegerType = std::int64_t, - class NumberUnsignedType = std::uint64_t, - class NumberFloatType = double, - template class AllocatorType = std::allocator, - template class JSONSerializer = - adl_serializer, - class BinaryType = std::vector> -class basic_json; - -/*! -@brief JSON Pointer - -A JSON pointer defines a string syntax for identifying a specific value -within a JSON document. It can be used with functions `at` and -`operator[]`. Furthermore, JSON pointers are the base for JSON patches. - -@sa [RFC 6901](https://tools.ietf.org/html/rfc6901) - -@since version 2.0.0 -*/ -template -class json_pointer; - -/*! -@brief default JSON class - -This type is the default specialization of the @ref basic_json class which -uses the standard template types. - -@since version 1.0.0 -*/ -using json = basic_json<>; - -template -struct ordered_map; - -/*! -@brief ordered JSON class - -This type preserves the insertion order of object keys. - -@since version 3.9.0 -*/ -using ordered_json = basic_json; - -} // namespace nlohmann - -#endif // INCLUDE_NLOHMANN_JSON_FWD_HPP_ diff --git a/nlohmann/ordered_map.hpp b/nlohmann/ordered_map.hpp deleted file mode 100644 index 5767909..0000000 --- a/nlohmann/ordered_map.hpp +++ /dev/null @@ -1,171 +0,0 @@ -#pragma once - -#include // less -#include // allocator -#include // pair -#include // vector - -namespace nlohmann -{ - -/// ordered_map: a minimal map-like container that preserves insertion order -/// for use within nlohmann::basic_json -template , - class Allocator = std::allocator>> - struct ordered_map : std::vector, Allocator> -{ - using key_type = Key; - using mapped_type = T; - using Container = std::vector, Allocator>; - using typename Container::iterator; - using typename Container::const_iterator; - using typename Container::size_type; - using typename Container::value_type; - - // Explicit constructors instead of `using Container::Container` - // otherwise older compilers choke on it (GCC <= 5.5, xcode <= 9.4) - ordered_map(const Allocator& alloc = Allocator()) : Container{alloc} {} - template - ordered_map(It first, It last, const Allocator& alloc = Allocator()) - : Container{first, last, alloc} {} - ordered_map(std::initializer_list init, const Allocator& alloc = Allocator() ) - : Container{init, alloc} {} - - std::pair emplace(const key_type& key, T&& t) - { - for (auto it = this->begin(); it != this->end(); ++it) - { - if (it->first == key) - { - return {it, false}; - } - } - Container::emplace_back(key, t); - return {--this->end(), true}; - } - - T& operator[](const Key& key) - { - return emplace(key, T{}).first->second; - } - - const T& operator[](const Key& key) const - { - return at(key); - } - - T& at(const Key& key) - { - for (auto it = this->begin(); it != this->end(); ++it) - { - if (it->first == key) - { - return it->second; - } - } - - throw std::out_of_range("key not found"); - } - - const T& at(const Key& key) const - { - for (auto it = this->begin(); it != this->end(); ++it) - { - if (it->first == key) - { - return it->second; - } - } - - throw std::out_of_range("key not found"); - } - - size_type erase(const Key& key) - { - for (auto it = this->begin(); it != this->end(); ++it) - { - if (it->first == key) - { - // Since we cannot move const Keys, re-construct them in place - for (auto next = it; ++next != this->end(); ++it) - { - it->~value_type(); // Destroy but keep allocation - new (&*it) value_type{std::move(*next)}; - } - Container::pop_back(); - return 1; - } - } - return 0; - } - - iterator erase(iterator pos) - { - auto it = pos; - - // Since we cannot move const Keys, re-construct them in place - for (auto next = it; ++next != this->end(); ++it) - { - it->~value_type(); // Destroy but keep allocation - new (&*it) value_type{std::move(*next)}; - } - Container::pop_back(); - return pos; - } - - size_type count(const Key& key) const - { - for (auto it = this->begin(); it != this->end(); ++it) - { - if (it->first == key) - { - return 1; - } - } - return 0; - } - - iterator find(const Key& key) - { - for (auto it = this->begin(); it != this->end(); ++it) - { - if (it->first == key) - { - return it; - } - } - return Container::end(); - } - - const_iterator find(const Key& key) const - { - for (auto it = this->begin(); it != this->end(); ++it) - { - if (it->first == key) - { - return it; - } - } - return Container::end(); - } - - std::pair insert( value_type&& value ) - { - return emplace(value.first, std::move(value.second)); - } - - std::pair insert( const value_type& value ) - { - for (auto it = this->begin(); it != this->end(); ++it) - { - if (it->first == value.first) - { - return {it, false}; - } - } - Container::push_back(value); - return {--this->end(), true}; - } -}; - -} // namespace nlohmann diff --git a/nlohmann/thirdparty/hedley/hedley.hpp b/nlohmann/thirdparty/hedley/hedley.hpp deleted file mode 100644 index 521c78f..0000000 --- a/nlohmann/thirdparty/hedley/hedley.hpp +++ /dev/null @@ -1,1911 +0,0 @@ -/* Hedley - https://nemequ.github.io/hedley - * Created by Evan Nemerson - * - * To the extent possible under law, the author(s) have dedicated all - * copyright and related and neighboring rights to this software to - * the public domain worldwide. This software is distributed without - * any warranty. - * - * For details, see . - * SPDX-License-Identifier: CC0-1.0 - */ - -#if !defined(JSON_HEDLEY_VERSION) || (JSON_HEDLEY_VERSION < 13) -#if defined(JSON_HEDLEY_VERSION) - #undef JSON_HEDLEY_VERSION -#endif -#define JSON_HEDLEY_VERSION 13 - -#if defined(JSON_HEDLEY_STRINGIFY_EX) - #undef JSON_HEDLEY_STRINGIFY_EX -#endif -#define JSON_HEDLEY_STRINGIFY_EX(x) #x - -#if defined(JSON_HEDLEY_STRINGIFY) - #undef JSON_HEDLEY_STRINGIFY -#endif -#define JSON_HEDLEY_STRINGIFY(x) JSON_HEDLEY_STRINGIFY_EX(x) - -#if defined(JSON_HEDLEY_CONCAT_EX) - #undef JSON_HEDLEY_CONCAT_EX -#endif -#define JSON_HEDLEY_CONCAT_EX(a,b) a##b - -#if defined(JSON_HEDLEY_CONCAT) - #undef JSON_HEDLEY_CONCAT -#endif -#define JSON_HEDLEY_CONCAT(a,b) JSON_HEDLEY_CONCAT_EX(a,b) - -#if defined(JSON_HEDLEY_CONCAT3_EX) - #undef JSON_HEDLEY_CONCAT3_EX -#endif -#define JSON_HEDLEY_CONCAT3_EX(a,b,c) a##b##c - -#if defined(JSON_HEDLEY_CONCAT3) - #undef JSON_HEDLEY_CONCAT3 -#endif -#define JSON_HEDLEY_CONCAT3(a,b,c) JSON_HEDLEY_CONCAT3_EX(a,b,c) - -#if defined(JSON_HEDLEY_VERSION_ENCODE) - #undef JSON_HEDLEY_VERSION_ENCODE -#endif -#define JSON_HEDLEY_VERSION_ENCODE(major,minor,revision) (((major) * 1000000) + ((minor) * 1000) + (revision)) - -#if defined(JSON_HEDLEY_VERSION_DECODE_MAJOR) - #undef JSON_HEDLEY_VERSION_DECODE_MAJOR -#endif -#define JSON_HEDLEY_VERSION_DECODE_MAJOR(version) ((version) / 1000000) - -#if defined(JSON_HEDLEY_VERSION_DECODE_MINOR) - #undef JSON_HEDLEY_VERSION_DECODE_MINOR -#endif -#define JSON_HEDLEY_VERSION_DECODE_MINOR(version) (((version) % 1000000) / 1000) - -#if defined(JSON_HEDLEY_VERSION_DECODE_REVISION) - #undef JSON_HEDLEY_VERSION_DECODE_REVISION -#endif -#define JSON_HEDLEY_VERSION_DECODE_REVISION(version) ((version) % 1000) - -#if defined(JSON_HEDLEY_GNUC_VERSION) - #undef JSON_HEDLEY_GNUC_VERSION -#endif -#if defined(__GNUC__) && defined(__GNUC_PATCHLEVEL__) - #define JSON_HEDLEY_GNUC_VERSION JSON_HEDLEY_VERSION_ENCODE(__GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__) -#elif defined(__GNUC__) - #define JSON_HEDLEY_GNUC_VERSION JSON_HEDLEY_VERSION_ENCODE(__GNUC__, __GNUC_MINOR__, 0) -#endif - -#if defined(JSON_HEDLEY_GNUC_VERSION_CHECK) - #undef JSON_HEDLEY_GNUC_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_GNUC_VERSION) - #define JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_GNUC_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_MSVC_VERSION) - #undef JSON_HEDLEY_MSVC_VERSION -#endif -#if defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 140000000) - #define JSON_HEDLEY_MSVC_VERSION JSON_HEDLEY_VERSION_ENCODE(_MSC_FULL_VER / 10000000, (_MSC_FULL_VER % 10000000) / 100000, (_MSC_FULL_VER % 100000) / 100) -#elif defined(_MSC_FULL_VER) - #define JSON_HEDLEY_MSVC_VERSION JSON_HEDLEY_VERSION_ENCODE(_MSC_FULL_VER / 1000000, (_MSC_FULL_VER % 1000000) / 10000, (_MSC_FULL_VER % 10000) / 10) -#elif defined(_MSC_VER) - #define JSON_HEDLEY_MSVC_VERSION JSON_HEDLEY_VERSION_ENCODE(_MSC_VER / 100, _MSC_VER % 100, 0) -#endif - -#if defined(JSON_HEDLEY_MSVC_VERSION_CHECK) - #undef JSON_HEDLEY_MSVC_VERSION_CHECK -#endif -#if !defined(_MSC_VER) - #define JSON_HEDLEY_MSVC_VERSION_CHECK(major,minor,patch) (0) -#elif defined(_MSC_VER) && (_MSC_VER >= 1400) - #define JSON_HEDLEY_MSVC_VERSION_CHECK(major,minor,patch) (_MSC_FULL_VER >= ((major * 10000000) + (minor * 100000) + (patch))) -#elif defined(_MSC_VER) && (_MSC_VER >= 1200) - #define JSON_HEDLEY_MSVC_VERSION_CHECK(major,minor,patch) (_MSC_FULL_VER >= ((major * 1000000) + (minor * 10000) + (patch))) -#else - #define JSON_HEDLEY_MSVC_VERSION_CHECK(major,minor,patch) (_MSC_VER >= ((major * 100) + (minor))) -#endif - -#if defined(JSON_HEDLEY_INTEL_VERSION) - #undef JSON_HEDLEY_INTEL_VERSION -#endif -#if defined(__INTEL_COMPILER) && defined(__INTEL_COMPILER_UPDATE) - #define JSON_HEDLEY_INTEL_VERSION JSON_HEDLEY_VERSION_ENCODE(__INTEL_COMPILER / 100, __INTEL_COMPILER % 100, __INTEL_COMPILER_UPDATE) -#elif defined(__INTEL_COMPILER) - #define JSON_HEDLEY_INTEL_VERSION JSON_HEDLEY_VERSION_ENCODE(__INTEL_COMPILER / 100, __INTEL_COMPILER % 100, 0) -#endif - -#if defined(JSON_HEDLEY_INTEL_VERSION_CHECK) - #undef JSON_HEDLEY_INTEL_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_INTEL_VERSION) - #define JSON_HEDLEY_INTEL_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_INTEL_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_INTEL_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_PGI_VERSION) - #undef JSON_HEDLEY_PGI_VERSION -#endif -#if defined(__PGI) && defined(__PGIC__) && defined(__PGIC_MINOR__) && defined(__PGIC_PATCHLEVEL__) - #define JSON_HEDLEY_PGI_VERSION JSON_HEDLEY_VERSION_ENCODE(__PGIC__, __PGIC_MINOR__, __PGIC_PATCHLEVEL__) -#endif - -#if defined(JSON_HEDLEY_PGI_VERSION_CHECK) - #undef JSON_HEDLEY_PGI_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_PGI_VERSION) - #define JSON_HEDLEY_PGI_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_PGI_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_PGI_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_SUNPRO_VERSION) - #undef JSON_HEDLEY_SUNPRO_VERSION -#endif -#if defined(__SUNPRO_C) && (__SUNPRO_C > 0x1000) - #define JSON_HEDLEY_SUNPRO_VERSION JSON_HEDLEY_VERSION_ENCODE((((__SUNPRO_C >> 16) & 0xf) * 10) + ((__SUNPRO_C >> 12) & 0xf), (((__SUNPRO_C >> 8) & 0xf) * 10) + ((__SUNPRO_C >> 4) & 0xf), (__SUNPRO_C & 0xf) * 10) -#elif defined(__SUNPRO_C) - #define JSON_HEDLEY_SUNPRO_VERSION JSON_HEDLEY_VERSION_ENCODE((__SUNPRO_C >> 8) & 0xf, (__SUNPRO_C >> 4) & 0xf, (__SUNPRO_C) & 0xf) -#elif defined(__SUNPRO_CC) && (__SUNPRO_CC > 0x1000) - #define JSON_HEDLEY_SUNPRO_VERSION JSON_HEDLEY_VERSION_ENCODE((((__SUNPRO_CC >> 16) & 0xf) * 10) + ((__SUNPRO_CC >> 12) & 0xf), (((__SUNPRO_CC >> 8) & 0xf) * 10) + ((__SUNPRO_CC >> 4) & 0xf), (__SUNPRO_CC & 0xf) * 10) -#elif defined(__SUNPRO_CC) - #define JSON_HEDLEY_SUNPRO_VERSION JSON_HEDLEY_VERSION_ENCODE((__SUNPRO_CC >> 8) & 0xf, (__SUNPRO_CC >> 4) & 0xf, (__SUNPRO_CC) & 0xf) -#endif - -#if defined(JSON_HEDLEY_SUNPRO_VERSION_CHECK) - #undef JSON_HEDLEY_SUNPRO_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_SUNPRO_VERSION) - #define JSON_HEDLEY_SUNPRO_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_SUNPRO_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_SUNPRO_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_EMSCRIPTEN_VERSION) - #undef JSON_HEDLEY_EMSCRIPTEN_VERSION -#endif -#if defined(__EMSCRIPTEN__) - #define JSON_HEDLEY_EMSCRIPTEN_VERSION JSON_HEDLEY_VERSION_ENCODE(__EMSCRIPTEN_major__, __EMSCRIPTEN_minor__, __EMSCRIPTEN_tiny__) -#endif - -#if defined(JSON_HEDLEY_EMSCRIPTEN_VERSION_CHECK) - #undef JSON_HEDLEY_EMSCRIPTEN_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_EMSCRIPTEN_VERSION) - #define JSON_HEDLEY_EMSCRIPTEN_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_EMSCRIPTEN_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_EMSCRIPTEN_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_ARM_VERSION) - #undef JSON_HEDLEY_ARM_VERSION -#endif -#if defined(__CC_ARM) && defined(__ARMCOMPILER_VERSION) - #define JSON_HEDLEY_ARM_VERSION JSON_HEDLEY_VERSION_ENCODE(__ARMCOMPILER_VERSION / 1000000, (__ARMCOMPILER_VERSION % 1000000) / 10000, (__ARMCOMPILER_VERSION % 10000) / 100) -#elif defined(__CC_ARM) && defined(__ARMCC_VERSION) - #define JSON_HEDLEY_ARM_VERSION JSON_HEDLEY_VERSION_ENCODE(__ARMCC_VERSION / 1000000, (__ARMCC_VERSION % 1000000) / 10000, (__ARMCC_VERSION % 10000) / 100) -#endif - -#if defined(JSON_HEDLEY_ARM_VERSION_CHECK) - #undef JSON_HEDLEY_ARM_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_ARM_VERSION) - #define JSON_HEDLEY_ARM_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_ARM_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_ARM_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_IBM_VERSION) - #undef JSON_HEDLEY_IBM_VERSION -#endif -#if defined(__ibmxl__) - #define JSON_HEDLEY_IBM_VERSION JSON_HEDLEY_VERSION_ENCODE(__ibmxl_version__, __ibmxl_release__, __ibmxl_modification__) -#elif defined(__xlC__) && defined(__xlC_ver__) - #define JSON_HEDLEY_IBM_VERSION JSON_HEDLEY_VERSION_ENCODE(__xlC__ >> 8, __xlC__ & 0xff, (__xlC_ver__ >> 8) & 0xff) -#elif defined(__xlC__) - #define JSON_HEDLEY_IBM_VERSION JSON_HEDLEY_VERSION_ENCODE(__xlC__ >> 8, __xlC__ & 0xff, 0) -#endif - -#if defined(JSON_HEDLEY_IBM_VERSION_CHECK) - #undef JSON_HEDLEY_IBM_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_IBM_VERSION) - #define JSON_HEDLEY_IBM_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_IBM_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_IBM_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_TI_VERSION) - #undef JSON_HEDLEY_TI_VERSION -#endif -#if \ - defined(__TI_COMPILER_VERSION__) && \ - ( \ - defined(__TMS470__) || defined(__TI_ARM__) || \ - defined(__MSP430__) || \ - defined(__TMS320C2000__) \ - ) -#if (__TI_COMPILER_VERSION__ >= 16000000) - #define JSON_HEDLEY_TI_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) -#endif -#endif - -#if defined(JSON_HEDLEY_TI_VERSION_CHECK) - #undef JSON_HEDLEY_TI_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_TI_VERSION) - #define JSON_HEDLEY_TI_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_TI_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_TI_CL2000_VERSION) - #undef JSON_HEDLEY_TI_CL2000_VERSION -#endif -#if defined(__TI_COMPILER_VERSION__) && defined(__TMS320C2000__) - #define JSON_HEDLEY_TI_CL2000_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) -#endif - -#if defined(JSON_HEDLEY_TI_CL2000_VERSION_CHECK) - #undef JSON_HEDLEY_TI_CL2000_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_TI_CL2000_VERSION) - #define JSON_HEDLEY_TI_CL2000_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_CL2000_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_TI_CL2000_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_TI_CL430_VERSION) - #undef JSON_HEDLEY_TI_CL430_VERSION -#endif -#if defined(__TI_COMPILER_VERSION__) && defined(__MSP430__) - #define JSON_HEDLEY_TI_CL430_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) -#endif - -#if defined(JSON_HEDLEY_TI_CL430_VERSION_CHECK) - #undef JSON_HEDLEY_TI_CL430_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_TI_CL430_VERSION) - #define JSON_HEDLEY_TI_CL430_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_CL430_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_TI_CL430_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_TI_ARMCL_VERSION) - #undef JSON_HEDLEY_TI_ARMCL_VERSION -#endif -#if defined(__TI_COMPILER_VERSION__) && (defined(__TMS470__) || defined(__TI_ARM__)) - #define JSON_HEDLEY_TI_ARMCL_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) -#endif - -#if defined(JSON_HEDLEY_TI_ARMCL_VERSION_CHECK) - #undef JSON_HEDLEY_TI_ARMCL_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_TI_ARMCL_VERSION) - #define JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_ARMCL_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_TI_CL6X_VERSION) - #undef JSON_HEDLEY_TI_CL6X_VERSION -#endif -#if defined(__TI_COMPILER_VERSION__) && defined(__TMS320C6X__) - #define JSON_HEDLEY_TI_CL6X_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) -#endif - -#if defined(JSON_HEDLEY_TI_CL6X_VERSION_CHECK) - #undef JSON_HEDLEY_TI_CL6X_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_TI_CL6X_VERSION) - #define JSON_HEDLEY_TI_CL6X_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_CL6X_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_TI_CL6X_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_TI_CL7X_VERSION) - #undef JSON_HEDLEY_TI_CL7X_VERSION -#endif -#if defined(__TI_COMPILER_VERSION__) && defined(__C7000__) - #define JSON_HEDLEY_TI_CL7X_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) -#endif - -#if defined(JSON_HEDLEY_TI_CL7X_VERSION_CHECK) - #undef JSON_HEDLEY_TI_CL7X_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_TI_CL7X_VERSION) - #define JSON_HEDLEY_TI_CL7X_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_CL7X_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_TI_CL7X_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_TI_CLPRU_VERSION) - #undef JSON_HEDLEY_TI_CLPRU_VERSION -#endif -#if defined(__TI_COMPILER_VERSION__) && defined(__PRU__) - #define JSON_HEDLEY_TI_CLPRU_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) -#endif - -#if defined(JSON_HEDLEY_TI_CLPRU_VERSION_CHECK) - #undef JSON_HEDLEY_TI_CLPRU_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_TI_CLPRU_VERSION) - #define JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_CLPRU_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_CRAY_VERSION) - #undef JSON_HEDLEY_CRAY_VERSION -#endif -#if defined(_CRAYC) - #if defined(_RELEASE_PATCHLEVEL) - #define JSON_HEDLEY_CRAY_VERSION JSON_HEDLEY_VERSION_ENCODE(_RELEASE_MAJOR, _RELEASE_MINOR, _RELEASE_PATCHLEVEL) - #else - #define JSON_HEDLEY_CRAY_VERSION JSON_HEDLEY_VERSION_ENCODE(_RELEASE_MAJOR, _RELEASE_MINOR, 0) - #endif -#endif - -#if defined(JSON_HEDLEY_CRAY_VERSION_CHECK) - #undef JSON_HEDLEY_CRAY_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_CRAY_VERSION) - #define JSON_HEDLEY_CRAY_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_CRAY_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_CRAY_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_IAR_VERSION) - #undef JSON_HEDLEY_IAR_VERSION -#endif -#if defined(__IAR_SYSTEMS_ICC__) - #if __VER__ > 1000 - #define JSON_HEDLEY_IAR_VERSION JSON_HEDLEY_VERSION_ENCODE((__VER__ / 1000000), ((__VER__ / 1000) % 1000), (__VER__ % 1000)) - #else - #define JSON_HEDLEY_IAR_VERSION JSON_HEDLEY_VERSION_ENCODE(VER / 100, __VER__ % 100, 0) - #endif -#endif - -#if defined(JSON_HEDLEY_IAR_VERSION_CHECK) - #undef JSON_HEDLEY_IAR_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_IAR_VERSION) - #define JSON_HEDLEY_IAR_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_IAR_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_IAR_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_TINYC_VERSION) - #undef JSON_HEDLEY_TINYC_VERSION -#endif -#if defined(__TINYC__) - #define JSON_HEDLEY_TINYC_VERSION JSON_HEDLEY_VERSION_ENCODE(__TINYC__ / 1000, (__TINYC__ / 100) % 10, __TINYC__ % 100) -#endif - -#if defined(JSON_HEDLEY_TINYC_VERSION_CHECK) - #undef JSON_HEDLEY_TINYC_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_TINYC_VERSION) - #define JSON_HEDLEY_TINYC_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TINYC_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_TINYC_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_DMC_VERSION) - #undef JSON_HEDLEY_DMC_VERSION -#endif -#if defined(__DMC__) - #define JSON_HEDLEY_DMC_VERSION JSON_HEDLEY_VERSION_ENCODE(__DMC__ >> 8, (__DMC__ >> 4) & 0xf, __DMC__ & 0xf) -#endif - -#if defined(JSON_HEDLEY_DMC_VERSION_CHECK) - #undef JSON_HEDLEY_DMC_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_DMC_VERSION) - #define JSON_HEDLEY_DMC_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_DMC_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_DMC_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_COMPCERT_VERSION) - #undef JSON_HEDLEY_COMPCERT_VERSION -#endif -#if defined(__COMPCERT_VERSION__) - #define JSON_HEDLEY_COMPCERT_VERSION JSON_HEDLEY_VERSION_ENCODE(__COMPCERT_VERSION__ / 10000, (__COMPCERT_VERSION__ / 100) % 100, __COMPCERT_VERSION__ % 100) -#endif - -#if defined(JSON_HEDLEY_COMPCERT_VERSION_CHECK) - #undef JSON_HEDLEY_COMPCERT_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_COMPCERT_VERSION) - #define JSON_HEDLEY_COMPCERT_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_COMPCERT_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_COMPCERT_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_PELLES_VERSION) - #undef JSON_HEDLEY_PELLES_VERSION -#endif -#if defined(__POCC__) - #define JSON_HEDLEY_PELLES_VERSION JSON_HEDLEY_VERSION_ENCODE(__POCC__ / 100, __POCC__ % 100, 0) -#endif - -#if defined(JSON_HEDLEY_PELLES_VERSION_CHECK) - #undef JSON_HEDLEY_PELLES_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_PELLES_VERSION) - #define JSON_HEDLEY_PELLES_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_PELLES_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_PELLES_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_GCC_VERSION) - #undef JSON_HEDLEY_GCC_VERSION -#endif -#if \ - defined(JSON_HEDLEY_GNUC_VERSION) && \ - !defined(__clang__) && \ - !defined(JSON_HEDLEY_INTEL_VERSION) && \ - !defined(JSON_HEDLEY_PGI_VERSION) && \ - !defined(JSON_HEDLEY_ARM_VERSION) && \ - !defined(JSON_HEDLEY_TI_VERSION) && \ - !defined(JSON_HEDLEY_TI_ARMCL_VERSION) && \ - !defined(JSON_HEDLEY_TI_CL430_VERSION) && \ - !defined(JSON_HEDLEY_TI_CL2000_VERSION) && \ - !defined(JSON_HEDLEY_TI_CL6X_VERSION) && \ - !defined(JSON_HEDLEY_TI_CL7X_VERSION) && \ - !defined(JSON_HEDLEY_TI_CLPRU_VERSION) && \ - !defined(__COMPCERT__) - #define JSON_HEDLEY_GCC_VERSION JSON_HEDLEY_GNUC_VERSION -#endif - -#if defined(JSON_HEDLEY_GCC_VERSION_CHECK) - #undef JSON_HEDLEY_GCC_VERSION_CHECK -#endif -#if defined(JSON_HEDLEY_GCC_VERSION) - #define JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_GCC_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) -#else - #define JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) (0) -#endif - -#if defined(JSON_HEDLEY_HAS_ATTRIBUTE) - #undef JSON_HEDLEY_HAS_ATTRIBUTE -#endif -#if defined(__has_attribute) - #define JSON_HEDLEY_HAS_ATTRIBUTE(attribute) __has_attribute(attribute) -#else - #define JSON_HEDLEY_HAS_ATTRIBUTE(attribute) (0) -#endif - -#if defined(JSON_HEDLEY_GNUC_HAS_ATTRIBUTE) - #undef JSON_HEDLEY_GNUC_HAS_ATTRIBUTE -#endif -#if defined(__has_attribute) - #define JSON_HEDLEY_GNUC_HAS_ATTRIBUTE(attribute,major,minor,patch) __has_attribute(attribute) -#else - #define JSON_HEDLEY_GNUC_HAS_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) -#endif - -#if defined(JSON_HEDLEY_GCC_HAS_ATTRIBUTE) - #undef JSON_HEDLEY_GCC_HAS_ATTRIBUTE -#endif -#if defined(__has_attribute) - #define JSON_HEDLEY_GCC_HAS_ATTRIBUTE(attribute,major,minor,patch) __has_attribute(attribute) -#else - #define JSON_HEDLEY_GCC_HAS_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) -#endif - -#if defined(JSON_HEDLEY_HAS_CPP_ATTRIBUTE) - #undef JSON_HEDLEY_HAS_CPP_ATTRIBUTE -#endif -#if \ - defined(__has_cpp_attribute) && \ - defined(__cplusplus) && \ - (!defined(JSON_HEDLEY_SUNPRO_VERSION) || JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,15,0)) - #define JSON_HEDLEY_HAS_CPP_ATTRIBUTE(attribute) __has_cpp_attribute(attribute) -#else - #define JSON_HEDLEY_HAS_CPP_ATTRIBUTE(attribute) (0) -#endif - -#if defined(JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS) - #undef JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS -#endif -#if !defined(__cplusplus) || !defined(__has_cpp_attribute) - #define JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS(ns,attribute) (0) -#elif \ - !defined(JSON_HEDLEY_PGI_VERSION) && \ - !defined(JSON_HEDLEY_IAR_VERSION) && \ - (!defined(JSON_HEDLEY_SUNPRO_VERSION) || JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,15,0)) && \ - (!defined(JSON_HEDLEY_MSVC_VERSION) || JSON_HEDLEY_MSVC_VERSION_CHECK(19,20,0)) - #define JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS(ns,attribute) JSON_HEDLEY_HAS_CPP_ATTRIBUTE(ns::attribute) -#else - #define JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS(ns,attribute) (0) -#endif - -#if defined(JSON_HEDLEY_GNUC_HAS_CPP_ATTRIBUTE) - #undef JSON_HEDLEY_GNUC_HAS_CPP_ATTRIBUTE -#endif -#if defined(__has_cpp_attribute) && defined(__cplusplus) - #define JSON_HEDLEY_GNUC_HAS_CPP_ATTRIBUTE(attribute,major,minor,patch) __has_cpp_attribute(attribute) -#else - #define JSON_HEDLEY_GNUC_HAS_CPP_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) -#endif - -#if defined(JSON_HEDLEY_GCC_HAS_CPP_ATTRIBUTE) - #undef JSON_HEDLEY_GCC_HAS_CPP_ATTRIBUTE -#endif -#if defined(__has_cpp_attribute) && defined(__cplusplus) - #define JSON_HEDLEY_GCC_HAS_CPP_ATTRIBUTE(attribute,major,minor,patch) __has_cpp_attribute(attribute) -#else - #define JSON_HEDLEY_GCC_HAS_CPP_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) -#endif - -#if defined(JSON_HEDLEY_HAS_BUILTIN) - #undef JSON_HEDLEY_HAS_BUILTIN -#endif -#if defined(__has_builtin) - #define JSON_HEDLEY_HAS_BUILTIN(builtin) __has_builtin(builtin) -#else - #define JSON_HEDLEY_HAS_BUILTIN(builtin) (0) -#endif - -#if defined(JSON_HEDLEY_GNUC_HAS_BUILTIN) - #undef JSON_HEDLEY_GNUC_HAS_BUILTIN -#endif -#if defined(__has_builtin) - #define JSON_HEDLEY_GNUC_HAS_BUILTIN(builtin,major,minor,patch) __has_builtin(builtin) -#else - #define JSON_HEDLEY_GNUC_HAS_BUILTIN(builtin,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) -#endif - -#if defined(JSON_HEDLEY_GCC_HAS_BUILTIN) - #undef JSON_HEDLEY_GCC_HAS_BUILTIN -#endif -#if defined(__has_builtin) - #define JSON_HEDLEY_GCC_HAS_BUILTIN(builtin,major,minor,patch) __has_builtin(builtin) -#else - #define JSON_HEDLEY_GCC_HAS_BUILTIN(builtin,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) -#endif - -#if defined(JSON_HEDLEY_HAS_FEATURE) - #undef JSON_HEDLEY_HAS_FEATURE -#endif -#if defined(__has_feature) - #define JSON_HEDLEY_HAS_FEATURE(feature) __has_feature(feature) -#else - #define JSON_HEDLEY_HAS_FEATURE(feature) (0) -#endif - -#if defined(JSON_HEDLEY_GNUC_HAS_FEATURE) - #undef JSON_HEDLEY_GNUC_HAS_FEATURE -#endif -#if defined(__has_feature) - #define JSON_HEDLEY_GNUC_HAS_FEATURE(feature,major,minor,patch) __has_feature(feature) -#else - #define JSON_HEDLEY_GNUC_HAS_FEATURE(feature,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) -#endif - -#if defined(JSON_HEDLEY_GCC_HAS_FEATURE) - #undef JSON_HEDLEY_GCC_HAS_FEATURE -#endif -#if defined(__has_feature) - #define JSON_HEDLEY_GCC_HAS_FEATURE(feature,major,minor,patch) __has_feature(feature) -#else - #define JSON_HEDLEY_GCC_HAS_FEATURE(feature,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) -#endif - -#if defined(JSON_HEDLEY_HAS_EXTENSION) - #undef JSON_HEDLEY_HAS_EXTENSION -#endif -#if defined(__has_extension) - #define JSON_HEDLEY_HAS_EXTENSION(extension) __has_extension(extension) -#else - #define JSON_HEDLEY_HAS_EXTENSION(extension) (0) -#endif - -#if defined(JSON_HEDLEY_GNUC_HAS_EXTENSION) - #undef JSON_HEDLEY_GNUC_HAS_EXTENSION -#endif -#if defined(__has_extension) - #define JSON_HEDLEY_GNUC_HAS_EXTENSION(extension,major,minor,patch) __has_extension(extension) -#else - #define JSON_HEDLEY_GNUC_HAS_EXTENSION(extension,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) -#endif - -#if defined(JSON_HEDLEY_GCC_HAS_EXTENSION) - #undef JSON_HEDLEY_GCC_HAS_EXTENSION -#endif -#if defined(__has_extension) - #define JSON_HEDLEY_GCC_HAS_EXTENSION(extension,major,minor,patch) __has_extension(extension) -#else - #define JSON_HEDLEY_GCC_HAS_EXTENSION(extension,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) -#endif - -#if defined(JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE) - #undef JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE -#endif -#if defined(__has_declspec_attribute) - #define JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE(attribute) __has_declspec_attribute(attribute) -#else - #define JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE(attribute) (0) -#endif - -#if defined(JSON_HEDLEY_GNUC_HAS_DECLSPEC_ATTRIBUTE) - #undef JSON_HEDLEY_GNUC_HAS_DECLSPEC_ATTRIBUTE -#endif -#if defined(__has_declspec_attribute) - #define JSON_HEDLEY_GNUC_HAS_DECLSPEC_ATTRIBUTE(attribute,major,minor,patch) __has_declspec_attribute(attribute) -#else - #define JSON_HEDLEY_GNUC_HAS_DECLSPEC_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) -#endif - -#if defined(JSON_HEDLEY_GCC_HAS_DECLSPEC_ATTRIBUTE) - #undef JSON_HEDLEY_GCC_HAS_DECLSPEC_ATTRIBUTE -#endif -#if defined(__has_declspec_attribute) - #define JSON_HEDLEY_GCC_HAS_DECLSPEC_ATTRIBUTE(attribute,major,minor,patch) __has_declspec_attribute(attribute) -#else - #define JSON_HEDLEY_GCC_HAS_DECLSPEC_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) -#endif - -#if defined(JSON_HEDLEY_HAS_WARNING) - #undef JSON_HEDLEY_HAS_WARNING -#endif -#if defined(__has_warning) - #define JSON_HEDLEY_HAS_WARNING(warning) __has_warning(warning) -#else - #define JSON_HEDLEY_HAS_WARNING(warning) (0) -#endif - -#if defined(JSON_HEDLEY_GNUC_HAS_WARNING) - #undef JSON_HEDLEY_GNUC_HAS_WARNING -#endif -#if defined(__has_warning) - #define JSON_HEDLEY_GNUC_HAS_WARNING(warning,major,minor,patch) __has_warning(warning) -#else - #define JSON_HEDLEY_GNUC_HAS_WARNING(warning,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) -#endif - -#if defined(JSON_HEDLEY_GCC_HAS_WARNING) - #undef JSON_HEDLEY_GCC_HAS_WARNING -#endif -#if defined(__has_warning) - #define JSON_HEDLEY_GCC_HAS_WARNING(warning,major,minor,patch) __has_warning(warning) -#else - #define JSON_HEDLEY_GCC_HAS_WARNING(warning,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) -#endif - -/* JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_ is for - HEDLEY INTERNAL USE ONLY. API subject to change without notice. */ -#if defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_) - #undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_ -#endif -#if defined(__cplusplus) -# if JSON_HEDLEY_HAS_WARNING("-Wc++98-compat") -# if JSON_HEDLEY_HAS_WARNING("-Wc++17-extensions") -# define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(xpr) \ - JSON_HEDLEY_DIAGNOSTIC_PUSH \ - _Pragma("clang diagnostic ignored \"-Wc++98-compat\"") \ - _Pragma("clang diagnostic ignored \"-Wc++17-extensions\"") \ - xpr \ - JSON_HEDLEY_DIAGNOSTIC_POP -# else -# define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(xpr) \ - JSON_HEDLEY_DIAGNOSTIC_PUSH \ - _Pragma("clang diagnostic ignored \"-Wc++98-compat\"") \ - xpr \ - JSON_HEDLEY_DIAGNOSTIC_POP -# endif -# endif -#endif -#if !defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(x) x -#endif - -#if defined(JSON_HEDLEY_CONST_CAST) - #undef JSON_HEDLEY_CONST_CAST -#endif -#if defined(__cplusplus) -# define JSON_HEDLEY_CONST_CAST(T, expr) (const_cast(expr)) -#elif \ - JSON_HEDLEY_HAS_WARNING("-Wcast-qual") || \ - JSON_HEDLEY_GCC_VERSION_CHECK(4,6,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) -# define JSON_HEDLEY_CONST_CAST(T, expr) (__extension__ ({ \ - JSON_HEDLEY_DIAGNOSTIC_PUSH \ - JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL \ - ((T) (expr)); \ - JSON_HEDLEY_DIAGNOSTIC_POP \ - })) -#else -# define JSON_HEDLEY_CONST_CAST(T, expr) ((T) (expr)) -#endif - -#if defined(JSON_HEDLEY_REINTERPRET_CAST) - #undef JSON_HEDLEY_REINTERPRET_CAST -#endif -#if defined(__cplusplus) - #define JSON_HEDLEY_REINTERPRET_CAST(T, expr) (reinterpret_cast(expr)) -#else - #define JSON_HEDLEY_REINTERPRET_CAST(T, expr) ((T) (expr)) -#endif - -#if defined(JSON_HEDLEY_STATIC_CAST) - #undef JSON_HEDLEY_STATIC_CAST -#endif -#if defined(__cplusplus) - #define JSON_HEDLEY_STATIC_CAST(T, expr) (static_cast(expr)) -#else - #define JSON_HEDLEY_STATIC_CAST(T, expr) ((T) (expr)) -#endif - -#if defined(JSON_HEDLEY_CPP_CAST) - #undef JSON_HEDLEY_CPP_CAST -#endif -#if defined(__cplusplus) -# if JSON_HEDLEY_HAS_WARNING("-Wold-style-cast") -# define JSON_HEDLEY_CPP_CAST(T, expr) \ - JSON_HEDLEY_DIAGNOSTIC_PUSH \ - _Pragma("clang diagnostic ignored \"-Wold-style-cast\"") \ - ((T) (expr)) \ - JSON_HEDLEY_DIAGNOSTIC_POP -# elif JSON_HEDLEY_IAR_VERSION_CHECK(8,3,0) -# define JSON_HEDLEY_CPP_CAST(T, expr) \ - JSON_HEDLEY_DIAGNOSTIC_PUSH \ - _Pragma("diag_suppress=Pe137") \ - JSON_HEDLEY_DIAGNOSTIC_POP \ -# else -# define JSON_HEDLEY_CPP_CAST(T, expr) ((T) (expr)) -# endif -#else -# define JSON_HEDLEY_CPP_CAST(T, expr) (expr) -#endif - -#if \ - (defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)) || \ - defined(__clang__) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(3,0,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ - JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) || \ - JSON_HEDLEY_PGI_VERSION_CHECK(18,4,0) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ - JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ - JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,7,0) || \ - JSON_HEDLEY_TI_CL430_VERSION_CHECK(2,0,1) || \ - JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,1,0) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,0,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ - JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ - JSON_HEDLEY_CRAY_VERSION_CHECK(5,0,0) || \ - JSON_HEDLEY_TINYC_VERSION_CHECK(0,9,17) || \ - JSON_HEDLEY_SUNPRO_VERSION_CHECK(8,0,0) || \ - (JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) && defined(__C99_PRAGMA_OPERATOR)) - #define JSON_HEDLEY_PRAGMA(value) _Pragma(#value) -#elif JSON_HEDLEY_MSVC_VERSION_CHECK(15,0,0) - #define JSON_HEDLEY_PRAGMA(value) __pragma(value) -#else - #define JSON_HEDLEY_PRAGMA(value) -#endif - -#if defined(JSON_HEDLEY_DIAGNOSTIC_PUSH) - #undef JSON_HEDLEY_DIAGNOSTIC_PUSH -#endif -#if defined(JSON_HEDLEY_DIAGNOSTIC_POP) - #undef JSON_HEDLEY_DIAGNOSTIC_POP -#endif -#if defined(__clang__) - #define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("clang diagnostic push") - #define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("clang diagnostic pop") -#elif JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) - #define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("warning(push)") - #define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("warning(pop)") -#elif JSON_HEDLEY_GCC_VERSION_CHECK(4,6,0) - #define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("GCC diagnostic push") - #define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("GCC diagnostic pop") -#elif JSON_HEDLEY_MSVC_VERSION_CHECK(15,0,0) - #define JSON_HEDLEY_DIAGNOSTIC_PUSH __pragma(warning(push)) - #define JSON_HEDLEY_DIAGNOSTIC_POP __pragma(warning(pop)) -#elif JSON_HEDLEY_ARM_VERSION_CHECK(5,6,0) - #define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("push") - #define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("pop") -#elif \ - JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ - JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ - JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,4,0) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,1,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ - JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) - #define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("diag_push") - #define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("diag_pop") -#elif JSON_HEDLEY_PELLES_VERSION_CHECK(2,90,0) - #define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("warning(push)") - #define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("warning(pop)") -#else - #define JSON_HEDLEY_DIAGNOSTIC_PUSH - #define JSON_HEDLEY_DIAGNOSTIC_POP -#endif - -#if defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED) - #undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED -#endif -#if JSON_HEDLEY_HAS_WARNING("-Wdeprecated-declarations") - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("clang diagnostic ignored \"-Wdeprecated-declarations\"") -#elif JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("warning(disable:1478 1786)") -#elif JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("diag_suppress 1215,1444") -#elif JSON_HEDLEY_GCC_VERSION_CHECK(4,3,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"") -#elif JSON_HEDLEY_MSVC_VERSION_CHECK(15,0,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED __pragma(warning(disable:4996)) -#elif \ - JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ - (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ - (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ - (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ - (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ - JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("diag_suppress 1291,1718") -#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,13,0) && !defined(__cplusplus) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("error_messages(off,E_DEPRECATED_ATT,E_DEPRECATED_ATT_MESS)") -#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,13,0) && defined(__cplusplus) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("error_messages(off,symdeprecated,symdeprecated2)") -#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("diag_suppress=Pe1444,Pe1215") -#elif JSON_HEDLEY_PELLES_VERSION_CHECK(2,90,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("warn(disable:2241)") -#else - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED -#endif - -#if defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS) - #undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS -#endif -#if JSON_HEDLEY_HAS_WARNING("-Wunknown-pragmas") - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("clang diagnostic ignored \"-Wunknown-pragmas\"") -#elif JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("warning(disable:161)") -#elif JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("diag_suppress 1675") -#elif JSON_HEDLEY_GCC_VERSION_CHECK(4,3,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("GCC diagnostic ignored \"-Wunknown-pragmas\"") -#elif JSON_HEDLEY_MSVC_VERSION_CHECK(15,0,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS __pragma(warning(disable:4068)) -#elif \ - JSON_HEDLEY_TI_VERSION_CHECK(16,9,0) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,0,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ - JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,3,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("diag_suppress 163") -#elif JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,0,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("diag_suppress 163") -#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("diag_suppress=Pe161") -#else - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS -#endif - -#if defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES) - #undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES -#endif -#if JSON_HEDLEY_HAS_WARNING("-Wunknown-attributes") - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("clang diagnostic ignored \"-Wunknown-attributes\"") -#elif JSON_HEDLEY_GCC_VERSION_CHECK(4,6,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"") -#elif JSON_HEDLEY_INTEL_VERSION_CHECK(17,0,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("warning(disable:1292)") -#elif JSON_HEDLEY_MSVC_VERSION_CHECK(19,0,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES __pragma(warning(disable:5030)) -#elif JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("diag_suppress 1097") -#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,14,0) && defined(__cplusplus) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("error_messages(off,attrskipunsup)") -#elif \ - JSON_HEDLEY_TI_VERSION_CHECK(18,1,0) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,3,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("diag_suppress 1173") -#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("diag_suppress=Pe1097") -#else - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES -#endif - -#if defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL) - #undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL -#endif -#if JSON_HEDLEY_HAS_WARNING("-Wcast-qual") - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL _Pragma("clang diagnostic ignored \"-Wcast-qual\"") -#elif JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL _Pragma("warning(disable:2203 2331)") -#elif JSON_HEDLEY_GCC_VERSION_CHECK(3,0,0) - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL _Pragma("GCC diagnostic ignored \"-Wcast-qual\"") -#else - #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL -#endif - -#if defined(JSON_HEDLEY_DEPRECATED) - #undef JSON_HEDLEY_DEPRECATED -#endif -#if defined(JSON_HEDLEY_DEPRECATED_FOR) - #undef JSON_HEDLEY_DEPRECATED_FOR -#endif -#if JSON_HEDLEY_MSVC_VERSION_CHECK(14,0,0) - #define JSON_HEDLEY_DEPRECATED(since) __declspec(deprecated("Since " # since)) - #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) __declspec(deprecated("Since " #since "; use " #replacement)) -#elif defined(__cplusplus) && (__cplusplus >= 201402L) - #define JSON_HEDLEY_DEPRECATED(since) JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[deprecated("Since " #since)]]) - #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[deprecated("Since " #since "; use " #replacement)]]) -#elif \ - JSON_HEDLEY_HAS_EXTENSION(attribute_deprecated_with_message) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(4,5,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(5,6,0) || \ - JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,13,0) || \ - JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) || \ - JSON_HEDLEY_TI_VERSION_CHECK(18,1,0) || \ - JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(18,1,0) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,3,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ - JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,3,0) - #define JSON_HEDLEY_DEPRECATED(since) __attribute__((__deprecated__("Since " #since))) - #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) __attribute__((__deprecated__("Since " #since "; use " #replacement))) -#elif \ - JSON_HEDLEY_HAS_ATTRIBUTE(deprecated) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(3,1,0) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ - JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ - (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ - (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ - (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ - (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ - JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) - #define JSON_HEDLEY_DEPRECATED(since) __attribute__((__deprecated__)) - #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) __attribute__((__deprecated__)) -#elif \ - JSON_HEDLEY_MSVC_VERSION_CHECK(13,10,0) || \ - JSON_HEDLEY_PELLES_VERSION_CHECK(6,50,0) - #define JSON_HEDLEY_DEPRECATED(since) __declspec(deprecated) - #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) __declspec(deprecated) -#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) - #define JSON_HEDLEY_DEPRECATED(since) _Pragma("deprecated") - #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) _Pragma("deprecated") -#else - #define JSON_HEDLEY_DEPRECATED(since) - #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) -#endif - -#if defined(JSON_HEDLEY_UNAVAILABLE) - #undef JSON_HEDLEY_UNAVAILABLE -#endif -#if \ - JSON_HEDLEY_HAS_ATTRIBUTE(warning) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(4,3,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) - #define JSON_HEDLEY_UNAVAILABLE(available_since) __attribute__((__warning__("Not available until " #available_since))) -#else - #define JSON_HEDLEY_UNAVAILABLE(available_since) -#endif - -#if defined(JSON_HEDLEY_WARN_UNUSED_RESULT) - #undef JSON_HEDLEY_WARN_UNUSED_RESULT -#endif -#if defined(JSON_HEDLEY_WARN_UNUSED_RESULT_MSG) - #undef JSON_HEDLEY_WARN_UNUSED_RESULT_MSG -#endif -#if (JSON_HEDLEY_HAS_CPP_ATTRIBUTE(nodiscard) >= 201907L) - #define JSON_HEDLEY_WARN_UNUSED_RESULT JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[nodiscard]]) - #define JSON_HEDLEY_WARN_UNUSED_RESULT_MSG(msg) JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[nodiscard(msg)]]) -#elif JSON_HEDLEY_HAS_CPP_ATTRIBUTE(nodiscard) - #define JSON_HEDLEY_WARN_UNUSED_RESULT JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[nodiscard]]) - #define JSON_HEDLEY_WARN_UNUSED_RESULT_MSG(msg) JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[nodiscard]]) -#elif \ - JSON_HEDLEY_HAS_ATTRIBUTE(warn_unused_result) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(3,4,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ - JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ - (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ - (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ - (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ - (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ - JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ - (JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,15,0) && defined(__cplusplus)) || \ - JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) - #define JSON_HEDLEY_WARN_UNUSED_RESULT __attribute__((__warn_unused_result__)) - #define JSON_HEDLEY_WARN_UNUSED_RESULT_MSG(msg) __attribute__((__warn_unused_result__)) -#elif defined(_Check_return_) /* SAL */ - #define JSON_HEDLEY_WARN_UNUSED_RESULT _Check_return_ - #define JSON_HEDLEY_WARN_UNUSED_RESULT_MSG(msg) _Check_return_ -#else - #define JSON_HEDLEY_WARN_UNUSED_RESULT - #define JSON_HEDLEY_WARN_UNUSED_RESULT_MSG(msg) -#endif - -#if defined(JSON_HEDLEY_SENTINEL) - #undef JSON_HEDLEY_SENTINEL -#endif -#if \ - JSON_HEDLEY_HAS_ATTRIBUTE(sentinel) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(4,0,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(5,4,0) - #define JSON_HEDLEY_SENTINEL(position) __attribute__((__sentinel__(position))) -#else - #define JSON_HEDLEY_SENTINEL(position) -#endif - -#if defined(JSON_HEDLEY_NO_RETURN) - #undef JSON_HEDLEY_NO_RETURN -#endif -#if JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) - #define JSON_HEDLEY_NO_RETURN __noreturn -#elif JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) - #define JSON_HEDLEY_NO_RETURN __attribute__((__noreturn__)) -#elif defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L - #define JSON_HEDLEY_NO_RETURN _Noreturn -#elif defined(__cplusplus) && (__cplusplus >= 201103L) - #define JSON_HEDLEY_NO_RETURN JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[noreturn]]) -#elif \ - JSON_HEDLEY_HAS_ATTRIBUTE(noreturn) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(3,2,0) || \ - JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ - JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ - JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ - (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ - (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ - (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ - (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ - JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) - #define JSON_HEDLEY_NO_RETURN __attribute__((__noreturn__)) -#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,10,0) - #define JSON_HEDLEY_NO_RETURN _Pragma("does_not_return") -#elif JSON_HEDLEY_MSVC_VERSION_CHECK(13,10,0) - #define JSON_HEDLEY_NO_RETURN __declspec(noreturn) -#elif JSON_HEDLEY_TI_CL6X_VERSION_CHECK(6,0,0) && defined(__cplusplus) - #define JSON_HEDLEY_NO_RETURN _Pragma("FUNC_NEVER_RETURNS;") -#elif JSON_HEDLEY_COMPCERT_VERSION_CHECK(3,2,0) - #define JSON_HEDLEY_NO_RETURN __attribute((noreturn)) -#elif JSON_HEDLEY_PELLES_VERSION_CHECK(9,0,0) - #define JSON_HEDLEY_NO_RETURN __declspec(noreturn) -#else - #define JSON_HEDLEY_NO_RETURN -#endif - -#if defined(JSON_HEDLEY_NO_ESCAPE) - #undef JSON_HEDLEY_NO_ESCAPE -#endif -#if JSON_HEDLEY_HAS_ATTRIBUTE(noescape) - #define JSON_HEDLEY_NO_ESCAPE __attribute__((__noescape__)) -#else - #define JSON_HEDLEY_NO_ESCAPE -#endif - -#if defined(JSON_HEDLEY_UNREACHABLE) - #undef JSON_HEDLEY_UNREACHABLE -#endif -#if defined(JSON_HEDLEY_UNREACHABLE_RETURN) - #undef JSON_HEDLEY_UNREACHABLE_RETURN -#endif -#if defined(JSON_HEDLEY_ASSUME) - #undef JSON_HEDLEY_ASSUME -#endif -#if \ - JSON_HEDLEY_MSVC_VERSION_CHECK(13,10,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) - #define JSON_HEDLEY_ASSUME(expr) __assume(expr) -#elif JSON_HEDLEY_HAS_BUILTIN(__builtin_assume) - #define JSON_HEDLEY_ASSUME(expr) __builtin_assume(expr) -#elif \ - JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,2,0) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(4,0,0) - #if defined(__cplusplus) - #define JSON_HEDLEY_ASSUME(expr) std::_nassert(expr) - #else - #define JSON_HEDLEY_ASSUME(expr) _nassert(expr) - #endif -#endif -#if \ - (JSON_HEDLEY_HAS_BUILTIN(__builtin_unreachable) && (!defined(JSON_HEDLEY_ARM_VERSION))) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(4,5,0) || \ - JSON_HEDLEY_PGI_VERSION_CHECK(18,10,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ - JSON_HEDLEY_IBM_VERSION_CHECK(13,1,5) - #define JSON_HEDLEY_UNREACHABLE() __builtin_unreachable() -#elif defined(JSON_HEDLEY_ASSUME) - #define JSON_HEDLEY_UNREACHABLE() JSON_HEDLEY_ASSUME(0) -#endif -#if !defined(JSON_HEDLEY_ASSUME) - #if defined(JSON_HEDLEY_UNREACHABLE) - #define JSON_HEDLEY_ASSUME(expr) JSON_HEDLEY_STATIC_CAST(void, ((expr) ? 1 : (JSON_HEDLEY_UNREACHABLE(), 1))) - #else - #define JSON_HEDLEY_ASSUME(expr) JSON_HEDLEY_STATIC_CAST(void, expr) - #endif -#endif -#if defined(JSON_HEDLEY_UNREACHABLE) - #if \ - JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,2,0) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(4,0,0) - #define JSON_HEDLEY_UNREACHABLE_RETURN(value) return (JSON_HEDLEY_STATIC_CAST(void, JSON_HEDLEY_ASSUME(0)), (value)) - #else - #define JSON_HEDLEY_UNREACHABLE_RETURN(value) JSON_HEDLEY_UNREACHABLE() - #endif -#else - #define JSON_HEDLEY_UNREACHABLE_RETURN(value) return (value) -#endif -#if !defined(JSON_HEDLEY_UNREACHABLE) - #define JSON_HEDLEY_UNREACHABLE() JSON_HEDLEY_ASSUME(0) -#endif - -JSON_HEDLEY_DIAGNOSTIC_PUSH -#if JSON_HEDLEY_HAS_WARNING("-Wpedantic") - #pragma clang diagnostic ignored "-Wpedantic" -#endif -#if JSON_HEDLEY_HAS_WARNING("-Wc++98-compat-pedantic") && defined(__cplusplus) - #pragma clang diagnostic ignored "-Wc++98-compat-pedantic" -#endif -#if JSON_HEDLEY_GCC_HAS_WARNING("-Wvariadic-macros",4,0,0) - #if defined(__clang__) - #pragma clang diagnostic ignored "-Wvariadic-macros" - #elif defined(JSON_HEDLEY_GCC_VERSION) - #pragma GCC diagnostic ignored "-Wvariadic-macros" - #endif -#endif -#if defined(JSON_HEDLEY_NON_NULL) - #undef JSON_HEDLEY_NON_NULL -#endif -#if \ - JSON_HEDLEY_HAS_ATTRIBUTE(nonnull) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(3,3,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) - #define JSON_HEDLEY_NON_NULL(...) __attribute__((__nonnull__(__VA_ARGS__))) -#else - #define JSON_HEDLEY_NON_NULL(...) -#endif -JSON_HEDLEY_DIAGNOSTIC_POP - -#if defined(JSON_HEDLEY_PRINTF_FORMAT) - #undef JSON_HEDLEY_PRINTF_FORMAT -#endif -#if defined(__MINGW32__) && JSON_HEDLEY_GCC_HAS_ATTRIBUTE(format,4,4,0) && !defined(__USE_MINGW_ANSI_STDIO) - #define JSON_HEDLEY_PRINTF_FORMAT(string_idx,first_to_check) __attribute__((__format__(ms_printf, string_idx, first_to_check))) -#elif defined(__MINGW32__) && JSON_HEDLEY_GCC_HAS_ATTRIBUTE(format,4,4,0) && defined(__USE_MINGW_ANSI_STDIO) - #define JSON_HEDLEY_PRINTF_FORMAT(string_idx,first_to_check) __attribute__((__format__(gnu_printf, string_idx, first_to_check))) -#elif \ - JSON_HEDLEY_HAS_ATTRIBUTE(format) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(3,1,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(5,6,0) || \ - JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ - JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ - (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ - (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ - (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ - (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ - JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) - #define JSON_HEDLEY_PRINTF_FORMAT(string_idx,first_to_check) __attribute__((__format__(__printf__, string_idx, first_to_check))) -#elif JSON_HEDLEY_PELLES_VERSION_CHECK(6,0,0) - #define JSON_HEDLEY_PRINTF_FORMAT(string_idx,first_to_check) __declspec(vaformat(printf,string_idx,first_to_check)) -#else - #define JSON_HEDLEY_PRINTF_FORMAT(string_idx,first_to_check) -#endif - -#if defined(JSON_HEDLEY_CONSTEXPR) - #undef JSON_HEDLEY_CONSTEXPR -#endif -#if defined(__cplusplus) - #if __cplusplus >= 201103L - #define JSON_HEDLEY_CONSTEXPR JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(constexpr) - #endif -#endif -#if !defined(JSON_HEDLEY_CONSTEXPR) - #define JSON_HEDLEY_CONSTEXPR -#endif - -#if defined(JSON_HEDLEY_PREDICT) - #undef JSON_HEDLEY_PREDICT -#endif -#if defined(JSON_HEDLEY_LIKELY) - #undef JSON_HEDLEY_LIKELY -#endif -#if defined(JSON_HEDLEY_UNLIKELY) - #undef JSON_HEDLEY_UNLIKELY -#endif -#if defined(JSON_HEDLEY_UNPREDICTABLE) - #undef JSON_HEDLEY_UNPREDICTABLE -#endif -#if JSON_HEDLEY_HAS_BUILTIN(__builtin_unpredictable) - #define JSON_HEDLEY_UNPREDICTABLE(expr) __builtin_unpredictable((expr)) -#endif -#if \ - JSON_HEDLEY_HAS_BUILTIN(__builtin_expect_with_probability) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(9,0,0) -# define JSON_HEDLEY_PREDICT(expr, value, probability) __builtin_expect_with_probability( (expr), (value), (probability)) -# define JSON_HEDLEY_PREDICT_TRUE(expr, probability) __builtin_expect_with_probability(!!(expr), 1 , (probability)) -# define JSON_HEDLEY_PREDICT_FALSE(expr, probability) __builtin_expect_with_probability(!!(expr), 0 , (probability)) -# define JSON_HEDLEY_LIKELY(expr) __builtin_expect (!!(expr), 1 ) -# define JSON_HEDLEY_UNLIKELY(expr) __builtin_expect (!!(expr), 0 ) -#elif \ - JSON_HEDLEY_HAS_BUILTIN(__builtin_expect) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(3,0,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ - (JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,15,0) && defined(__cplusplus)) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ - JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ - JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ - JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,7,0) || \ - JSON_HEDLEY_TI_CL430_VERSION_CHECK(3,1,0) || \ - JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,1,0) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(6,1,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ - JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ - JSON_HEDLEY_TINYC_VERSION_CHECK(0,9,27) || \ - JSON_HEDLEY_CRAY_VERSION_CHECK(8,1,0) -# define JSON_HEDLEY_PREDICT(expr, expected, probability) \ - (((probability) >= 0.9) ? __builtin_expect((expr), (expected)) : (JSON_HEDLEY_STATIC_CAST(void, expected), (expr))) -# define JSON_HEDLEY_PREDICT_TRUE(expr, probability) \ - (__extension__ ({ \ - double hedley_probability_ = (probability); \ - ((hedley_probability_ >= 0.9) ? __builtin_expect(!!(expr), 1) : ((hedley_probability_ <= 0.1) ? __builtin_expect(!!(expr), 0) : !!(expr))); \ - })) -# define JSON_HEDLEY_PREDICT_FALSE(expr, probability) \ - (__extension__ ({ \ - double hedley_probability_ = (probability); \ - ((hedley_probability_ >= 0.9) ? __builtin_expect(!!(expr), 0) : ((hedley_probability_ <= 0.1) ? __builtin_expect(!!(expr), 1) : !!(expr))); \ - })) -# define JSON_HEDLEY_LIKELY(expr) __builtin_expect(!!(expr), 1) -# define JSON_HEDLEY_UNLIKELY(expr) __builtin_expect(!!(expr), 0) -#else -# define JSON_HEDLEY_PREDICT(expr, expected, probability) (JSON_HEDLEY_STATIC_CAST(void, expected), (expr)) -# define JSON_HEDLEY_PREDICT_TRUE(expr, probability) (!!(expr)) -# define JSON_HEDLEY_PREDICT_FALSE(expr, probability) (!!(expr)) -# define JSON_HEDLEY_LIKELY(expr) (!!(expr)) -# define JSON_HEDLEY_UNLIKELY(expr) (!!(expr)) -#endif -#if !defined(JSON_HEDLEY_UNPREDICTABLE) - #define JSON_HEDLEY_UNPREDICTABLE(expr) JSON_HEDLEY_PREDICT(expr, 1, 0.5) -#endif - -#if defined(JSON_HEDLEY_MALLOC) - #undef JSON_HEDLEY_MALLOC -#endif -#if \ - JSON_HEDLEY_HAS_ATTRIBUTE(malloc) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(3,1,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ - JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ - JSON_HEDLEY_IBM_VERSION_CHECK(12,1,0) || \ - JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ - (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ - (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ - (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ - (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ - JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) - #define JSON_HEDLEY_MALLOC __attribute__((__malloc__)) -#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,10,0) - #define JSON_HEDLEY_MALLOC _Pragma("returns_new_memory") -#elif JSON_HEDLEY_MSVC_VERSION_CHECK(14, 0, 0) - #define JSON_HEDLEY_MALLOC __declspec(restrict) -#else - #define JSON_HEDLEY_MALLOC -#endif - -#if defined(JSON_HEDLEY_PURE) - #undef JSON_HEDLEY_PURE -#endif -#if \ - JSON_HEDLEY_HAS_ATTRIBUTE(pure) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(2,96,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ - JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ - JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ - JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ - (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ - (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ - (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ - (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ - JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ - JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) -# define JSON_HEDLEY_PURE __attribute__((__pure__)) -#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,10,0) -# define JSON_HEDLEY_PURE _Pragma("does_not_write_global_data") -#elif defined(__cplusplus) && \ - ( \ - JSON_HEDLEY_TI_CL430_VERSION_CHECK(2,0,1) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(4,0,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) \ - ) -# define JSON_HEDLEY_PURE _Pragma("FUNC_IS_PURE;") -#else -# define JSON_HEDLEY_PURE -#endif - -#if defined(JSON_HEDLEY_CONST) - #undef JSON_HEDLEY_CONST -#endif -#if \ - JSON_HEDLEY_HAS_ATTRIBUTE(const) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(2,5,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ - JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ - JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ - JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ - (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ - (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ - (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ - (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ - JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ - JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) - #define JSON_HEDLEY_CONST __attribute__((__const__)) -#elif \ - JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,10,0) - #define JSON_HEDLEY_CONST _Pragma("no_side_effect") -#else - #define JSON_HEDLEY_CONST JSON_HEDLEY_PURE -#endif - -#if defined(JSON_HEDLEY_RESTRICT) - #undef JSON_HEDLEY_RESTRICT -#endif -#if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) && !defined(__cplusplus) - #define JSON_HEDLEY_RESTRICT restrict -#elif \ - JSON_HEDLEY_GCC_VERSION_CHECK(3,1,0) || \ - JSON_HEDLEY_MSVC_VERSION_CHECK(14,0,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ - JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ - JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) || \ - JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ - JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,2,4) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,1,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ - (JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,14,0) && defined(__cplusplus)) || \ - JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) || \ - defined(__clang__) - #define JSON_HEDLEY_RESTRICT __restrict -#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,3,0) && !defined(__cplusplus) - #define JSON_HEDLEY_RESTRICT _Restrict -#else - #define JSON_HEDLEY_RESTRICT -#endif - -#if defined(JSON_HEDLEY_INLINE) - #undef JSON_HEDLEY_INLINE -#endif -#if \ - (defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)) || \ - (defined(__cplusplus) && (__cplusplus >= 199711L)) - #define JSON_HEDLEY_INLINE inline -#elif \ - defined(JSON_HEDLEY_GCC_VERSION) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(6,2,0) - #define JSON_HEDLEY_INLINE __inline__ -#elif \ - JSON_HEDLEY_MSVC_VERSION_CHECK(12,0,0) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ - JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,1,0) || \ - JSON_HEDLEY_TI_CL430_VERSION_CHECK(3,1,0) || \ - JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,2,0) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,0,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ - JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) - #define JSON_HEDLEY_INLINE __inline -#else - #define JSON_HEDLEY_INLINE -#endif - -#if defined(JSON_HEDLEY_ALWAYS_INLINE) - #undef JSON_HEDLEY_ALWAYS_INLINE -#endif -#if \ - JSON_HEDLEY_HAS_ATTRIBUTE(always_inline) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(4,0,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ - JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ - JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ - JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ - (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ - (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ - (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ - (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ - JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) -# define JSON_HEDLEY_ALWAYS_INLINE __attribute__((__always_inline__)) JSON_HEDLEY_INLINE -#elif JSON_HEDLEY_MSVC_VERSION_CHECK(12,0,0) -# define JSON_HEDLEY_ALWAYS_INLINE __forceinline -#elif defined(__cplusplus) && \ - ( \ - JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ - JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ - JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(6,1,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ - JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) \ - ) -# define JSON_HEDLEY_ALWAYS_INLINE _Pragma("FUNC_ALWAYS_INLINE;") -#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) -# define JSON_HEDLEY_ALWAYS_INLINE _Pragma("inline=forced") -#else -# define JSON_HEDLEY_ALWAYS_INLINE JSON_HEDLEY_INLINE -#endif - -#if defined(JSON_HEDLEY_NEVER_INLINE) - #undef JSON_HEDLEY_NEVER_INLINE -#endif -#if \ - JSON_HEDLEY_HAS_ATTRIBUTE(noinline) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(4,0,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ - JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ - JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ - JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ - (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ - (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ - (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ - (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ - JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ - JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) - #define JSON_HEDLEY_NEVER_INLINE __attribute__((__noinline__)) -#elif JSON_HEDLEY_MSVC_VERSION_CHECK(13,10,0) - #define JSON_HEDLEY_NEVER_INLINE __declspec(noinline) -#elif JSON_HEDLEY_PGI_VERSION_CHECK(10,2,0) - #define JSON_HEDLEY_NEVER_INLINE _Pragma("noinline") -#elif JSON_HEDLEY_TI_CL6X_VERSION_CHECK(6,0,0) && defined(__cplusplus) - #define JSON_HEDLEY_NEVER_INLINE _Pragma("FUNC_CANNOT_INLINE;") -#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) - #define JSON_HEDLEY_NEVER_INLINE _Pragma("inline=never") -#elif JSON_HEDLEY_COMPCERT_VERSION_CHECK(3,2,0) - #define JSON_HEDLEY_NEVER_INLINE __attribute((noinline)) -#elif JSON_HEDLEY_PELLES_VERSION_CHECK(9,0,0) - #define JSON_HEDLEY_NEVER_INLINE __declspec(noinline) -#else - #define JSON_HEDLEY_NEVER_INLINE -#endif - -#if defined(JSON_HEDLEY_PRIVATE) - #undef JSON_HEDLEY_PRIVATE -#endif -#if defined(JSON_HEDLEY_PUBLIC) - #undef JSON_HEDLEY_PUBLIC -#endif -#if defined(JSON_HEDLEY_IMPORT) - #undef JSON_HEDLEY_IMPORT -#endif -#if defined(_WIN32) || defined(__CYGWIN__) -# define JSON_HEDLEY_PRIVATE -# define JSON_HEDLEY_PUBLIC __declspec(dllexport) -# define JSON_HEDLEY_IMPORT __declspec(dllimport) -#else -# if \ - JSON_HEDLEY_HAS_ATTRIBUTE(visibility) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(3,3,0) || \ - JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ - JSON_HEDLEY_IBM_VERSION_CHECK(13,1,0) || \ - ( \ - defined(__TI_EABI__) && \ - ( \ - (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) \ - ) \ - ) -# define JSON_HEDLEY_PRIVATE __attribute__((__visibility__("hidden"))) -# define JSON_HEDLEY_PUBLIC __attribute__((__visibility__("default"))) -# else -# define JSON_HEDLEY_PRIVATE -# define JSON_HEDLEY_PUBLIC -# endif -# define JSON_HEDLEY_IMPORT extern -#endif - -#if defined(JSON_HEDLEY_NO_THROW) - #undef JSON_HEDLEY_NO_THROW -#endif -#if \ - JSON_HEDLEY_HAS_ATTRIBUTE(nothrow) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(3,3,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) - #define JSON_HEDLEY_NO_THROW __attribute__((__nothrow__)) -#elif \ - JSON_HEDLEY_MSVC_VERSION_CHECK(13,1,0) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) - #define JSON_HEDLEY_NO_THROW __declspec(nothrow) -#else - #define JSON_HEDLEY_NO_THROW -#endif - -#if defined(JSON_HEDLEY_FALL_THROUGH) - #undef JSON_HEDLEY_FALL_THROUGH -#endif -#if \ - JSON_HEDLEY_HAS_ATTRIBUTE(fallthrough) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(7,0,0) - #define JSON_HEDLEY_FALL_THROUGH __attribute__((__fallthrough__)) -#elif JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS(clang,fallthrough) - #define JSON_HEDLEY_FALL_THROUGH JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[clang::fallthrough]]) -#elif JSON_HEDLEY_HAS_CPP_ATTRIBUTE(fallthrough) - #define JSON_HEDLEY_FALL_THROUGH JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[fallthrough]]) -#elif defined(__fallthrough) /* SAL */ - #define JSON_HEDLEY_FALL_THROUGH __fallthrough -#else - #define JSON_HEDLEY_FALL_THROUGH -#endif - -#if defined(JSON_HEDLEY_RETURNS_NON_NULL) - #undef JSON_HEDLEY_RETURNS_NON_NULL -#endif -#if \ - JSON_HEDLEY_HAS_ATTRIBUTE(returns_nonnull) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(4,9,0) - #define JSON_HEDLEY_RETURNS_NON_NULL __attribute__((__returns_nonnull__)) -#elif defined(_Ret_notnull_) /* SAL */ - #define JSON_HEDLEY_RETURNS_NON_NULL _Ret_notnull_ -#else - #define JSON_HEDLEY_RETURNS_NON_NULL -#endif - -#if defined(JSON_HEDLEY_ARRAY_PARAM) - #undef JSON_HEDLEY_ARRAY_PARAM -#endif -#if \ - defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) && \ - !defined(__STDC_NO_VLA__) && \ - !defined(__cplusplus) && \ - !defined(JSON_HEDLEY_PGI_VERSION) && \ - !defined(JSON_HEDLEY_TINYC_VERSION) - #define JSON_HEDLEY_ARRAY_PARAM(name) (name) -#else - #define JSON_HEDLEY_ARRAY_PARAM(name) -#endif - -#if defined(JSON_HEDLEY_IS_CONSTANT) - #undef JSON_HEDLEY_IS_CONSTANT -#endif -#if defined(JSON_HEDLEY_REQUIRE_CONSTEXPR) - #undef JSON_HEDLEY_REQUIRE_CONSTEXPR -#endif -/* JSON_HEDLEY_IS_CONSTEXPR_ is for - HEDLEY INTERNAL USE ONLY. API subject to change without notice. */ -#if defined(JSON_HEDLEY_IS_CONSTEXPR_) - #undef JSON_HEDLEY_IS_CONSTEXPR_ -#endif -#if \ - JSON_HEDLEY_HAS_BUILTIN(__builtin_constant_p) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(3,4,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ - JSON_HEDLEY_TINYC_VERSION_CHECK(0,9,19) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ - JSON_HEDLEY_IBM_VERSION_CHECK(13,1,0) || \ - JSON_HEDLEY_TI_CL6X_VERSION_CHECK(6,1,0) || \ - (JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,10,0) && !defined(__cplusplus)) || \ - JSON_HEDLEY_CRAY_VERSION_CHECK(8,1,0) - #define JSON_HEDLEY_IS_CONSTANT(expr) __builtin_constant_p(expr) -#endif -#if !defined(__cplusplus) -# if \ - JSON_HEDLEY_HAS_BUILTIN(__builtin_types_compatible_p) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(3,4,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ - JSON_HEDLEY_IBM_VERSION_CHECK(13,1,0) || \ - JSON_HEDLEY_CRAY_VERSION_CHECK(8,1,0) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(5,4,0) || \ - JSON_HEDLEY_TINYC_VERSION_CHECK(0,9,24) -#if defined(__INTPTR_TYPE__) - #define JSON_HEDLEY_IS_CONSTEXPR_(expr) __builtin_types_compatible_p(__typeof__((1 ? (void*) ((__INTPTR_TYPE__) ((expr) * 0)) : (int*) 0)), int*) -#else - #include - #define JSON_HEDLEY_IS_CONSTEXPR_(expr) __builtin_types_compatible_p(__typeof__((1 ? (void*) ((intptr_t) ((expr) * 0)) : (int*) 0)), int*) -#endif -# elif \ - ( \ - defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 201112L) && \ - !defined(JSON_HEDLEY_SUNPRO_VERSION) && \ - !defined(JSON_HEDLEY_PGI_VERSION) && \ - !defined(JSON_HEDLEY_IAR_VERSION)) || \ - JSON_HEDLEY_HAS_EXTENSION(c_generic_selections) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(4,9,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(17,0,0) || \ - JSON_HEDLEY_IBM_VERSION_CHECK(12,1,0) || \ - JSON_HEDLEY_ARM_VERSION_CHECK(5,3,0) -#if defined(__INTPTR_TYPE__) - #define JSON_HEDLEY_IS_CONSTEXPR_(expr) _Generic((1 ? (void*) ((__INTPTR_TYPE__) ((expr) * 0)) : (int*) 0), int*: 1, void*: 0) -#else - #include - #define JSON_HEDLEY_IS_CONSTEXPR_(expr) _Generic((1 ? (void*) ((intptr_t) * 0) : (int*) 0), int*: 1, void*: 0) -#endif -# elif \ - defined(JSON_HEDLEY_GCC_VERSION) || \ - defined(JSON_HEDLEY_INTEL_VERSION) || \ - defined(JSON_HEDLEY_TINYC_VERSION) || \ - defined(JSON_HEDLEY_TI_ARMCL_VERSION) || \ - JSON_HEDLEY_TI_CL430_VERSION_CHECK(18,12,0) || \ - defined(JSON_HEDLEY_TI_CL2000_VERSION) || \ - defined(JSON_HEDLEY_TI_CL6X_VERSION) || \ - defined(JSON_HEDLEY_TI_CL7X_VERSION) || \ - defined(JSON_HEDLEY_TI_CLPRU_VERSION) || \ - defined(__clang__) -# define JSON_HEDLEY_IS_CONSTEXPR_(expr) ( \ - sizeof(void) != \ - sizeof(*( \ - 1 ? \ - ((void*) ((expr) * 0L) ) : \ -((struct { char v[sizeof(void) * 2]; } *) 1) \ - ) \ - ) \ - ) -# endif -#endif -#if defined(JSON_HEDLEY_IS_CONSTEXPR_) - #if !defined(JSON_HEDLEY_IS_CONSTANT) - #define JSON_HEDLEY_IS_CONSTANT(expr) JSON_HEDLEY_IS_CONSTEXPR_(expr) - #endif - #define JSON_HEDLEY_REQUIRE_CONSTEXPR(expr) (JSON_HEDLEY_IS_CONSTEXPR_(expr) ? (expr) : (-1)) -#else - #if !defined(JSON_HEDLEY_IS_CONSTANT) - #define JSON_HEDLEY_IS_CONSTANT(expr) (0) - #endif - #define JSON_HEDLEY_REQUIRE_CONSTEXPR(expr) (expr) -#endif - -#if defined(JSON_HEDLEY_BEGIN_C_DECLS) - #undef JSON_HEDLEY_BEGIN_C_DECLS -#endif -#if defined(JSON_HEDLEY_END_C_DECLS) - #undef JSON_HEDLEY_END_C_DECLS -#endif -#if defined(JSON_HEDLEY_C_DECL) - #undef JSON_HEDLEY_C_DECL -#endif -#if defined(__cplusplus) - #define JSON_HEDLEY_BEGIN_C_DECLS extern "C" { - #define JSON_HEDLEY_END_C_DECLS } - #define JSON_HEDLEY_C_DECL extern "C" -#else - #define JSON_HEDLEY_BEGIN_C_DECLS - #define JSON_HEDLEY_END_C_DECLS - #define JSON_HEDLEY_C_DECL -#endif - -#if defined(JSON_HEDLEY_STATIC_ASSERT) - #undef JSON_HEDLEY_STATIC_ASSERT -#endif -#if \ - !defined(__cplusplus) && ( \ - (defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 201112L)) || \ - JSON_HEDLEY_HAS_FEATURE(c_static_assert) || \ - JSON_HEDLEY_GCC_VERSION_CHECK(6,0,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ - defined(_Static_assert) \ - ) -# define JSON_HEDLEY_STATIC_ASSERT(expr, message) _Static_assert(expr, message) -#elif \ - (defined(__cplusplus) && (__cplusplus >= 201103L)) || \ - JSON_HEDLEY_MSVC_VERSION_CHECK(16,0,0) -# define JSON_HEDLEY_STATIC_ASSERT(expr, message) JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(static_assert(expr, message)) -#else -# define JSON_HEDLEY_STATIC_ASSERT(expr, message) -#endif - -#if defined(JSON_HEDLEY_NULL) - #undef JSON_HEDLEY_NULL -#endif -#if defined(__cplusplus) - #if __cplusplus >= 201103L - #define JSON_HEDLEY_NULL JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(nullptr) - #elif defined(NULL) - #define JSON_HEDLEY_NULL NULL - #else - #define JSON_HEDLEY_NULL JSON_HEDLEY_STATIC_CAST(void*, 0) - #endif -#elif defined(NULL) - #define JSON_HEDLEY_NULL NULL -#else - #define JSON_HEDLEY_NULL ((void*) 0) -#endif - -#if defined(JSON_HEDLEY_MESSAGE) - #undef JSON_HEDLEY_MESSAGE -#endif -#if JSON_HEDLEY_HAS_WARNING("-Wunknown-pragmas") -# define JSON_HEDLEY_MESSAGE(msg) \ - JSON_HEDLEY_DIAGNOSTIC_PUSH \ - JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS \ - JSON_HEDLEY_PRAGMA(message msg) \ - JSON_HEDLEY_DIAGNOSTIC_POP -#elif \ - JSON_HEDLEY_GCC_VERSION_CHECK(4,4,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) -# define JSON_HEDLEY_MESSAGE(msg) JSON_HEDLEY_PRAGMA(message msg) -#elif JSON_HEDLEY_CRAY_VERSION_CHECK(5,0,0) -# define JSON_HEDLEY_MESSAGE(msg) JSON_HEDLEY_PRAGMA(_CRI message msg) -#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) -# define JSON_HEDLEY_MESSAGE(msg) JSON_HEDLEY_PRAGMA(message(msg)) -#elif JSON_HEDLEY_PELLES_VERSION_CHECK(2,0,0) -# define JSON_HEDLEY_MESSAGE(msg) JSON_HEDLEY_PRAGMA(message(msg)) -#else -# define JSON_HEDLEY_MESSAGE(msg) -#endif - -#if defined(JSON_HEDLEY_WARNING) - #undef JSON_HEDLEY_WARNING -#endif -#if JSON_HEDLEY_HAS_WARNING("-Wunknown-pragmas") -# define JSON_HEDLEY_WARNING(msg) \ - JSON_HEDLEY_DIAGNOSTIC_PUSH \ - JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS \ - JSON_HEDLEY_PRAGMA(clang warning msg) \ - JSON_HEDLEY_DIAGNOSTIC_POP -#elif \ - JSON_HEDLEY_GCC_VERSION_CHECK(4,8,0) || \ - JSON_HEDLEY_PGI_VERSION_CHECK(18,4,0) || \ - JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) -# define JSON_HEDLEY_WARNING(msg) JSON_HEDLEY_PRAGMA(GCC warning msg) -#elif JSON_HEDLEY_MSVC_VERSION_CHECK(15,0,0) -# define JSON_HEDLEY_WARNING(msg) JSON_HEDLEY_PRAGMA(message(msg)) -#else -# define JSON_HEDLEY_WARNING(msg) JSON_HEDLEY_MESSAGE(msg) -#endif - -#if defined(JSON_HEDLEY_REQUIRE) - #undef JSON_HEDLEY_REQUIRE -#endif -#if defined(JSON_HEDLEY_REQUIRE_MSG) - #undef JSON_HEDLEY_REQUIRE_MSG -#endif -#if JSON_HEDLEY_HAS_ATTRIBUTE(diagnose_if) -# if JSON_HEDLEY_HAS_WARNING("-Wgcc-compat") -# define JSON_HEDLEY_REQUIRE(expr) \ - JSON_HEDLEY_DIAGNOSTIC_PUSH \ - _Pragma("clang diagnostic ignored \"-Wgcc-compat\"") \ - __attribute__((diagnose_if(!(expr), #expr, "error"))) \ - JSON_HEDLEY_DIAGNOSTIC_POP -# define JSON_HEDLEY_REQUIRE_MSG(expr,msg) \ - JSON_HEDLEY_DIAGNOSTIC_PUSH \ - _Pragma("clang diagnostic ignored \"-Wgcc-compat\"") \ - __attribute__((diagnose_if(!(expr), msg, "error"))) \ - JSON_HEDLEY_DIAGNOSTIC_POP -# else -# define JSON_HEDLEY_REQUIRE(expr) __attribute__((diagnose_if(!(expr), #expr, "error"))) -# define JSON_HEDLEY_REQUIRE_MSG(expr,msg) __attribute__((diagnose_if(!(expr), msg, "error"))) -# endif -#else -# define JSON_HEDLEY_REQUIRE(expr) -# define JSON_HEDLEY_REQUIRE_MSG(expr,msg) -#endif - -#if defined(JSON_HEDLEY_FLAGS) - #undef JSON_HEDLEY_FLAGS -#endif -#if JSON_HEDLEY_HAS_ATTRIBUTE(flag_enum) - #define JSON_HEDLEY_FLAGS __attribute__((__flag_enum__)) -#endif - -#if defined(JSON_HEDLEY_FLAGS_CAST) - #undef JSON_HEDLEY_FLAGS_CAST -#endif -#if JSON_HEDLEY_INTEL_VERSION_CHECK(19,0,0) -# define JSON_HEDLEY_FLAGS_CAST(T, expr) (__extension__ ({ \ - JSON_HEDLEY_DIAGNOSTIC_PUSH \ - _Pragma("warning(disable:188)") \ - ((T) (expr)); \ - JSON_HEDLEY_DIAGNOSTIC_POP \ - })) -#else -# define JSON_HEDLEY_FLAGS_CAST(T, expr) JSON_HEDLEY_STATIC_CAST(T, expr) -#endif - -#if defined(JSON_HEDLEY_EMPTY_BASES) - #undef JSON_HEDLEY_EMPTY_BASES -#endif -#if JSON_HEDLEY_MSVC_VERSION_CHECK(19,0,23918) && !JSON_HEDLEY_MSVC_VERSION_CHECK(20,0,0) - #define JSON_HEDLEY_EMPTY_BASES __declspec(empty_bases) -#else - #define JSON_HEDLEY_EMPTY_BASES -#endif - -/* Remaining macros are deprecated. */ - -#if defined(JSON_HEDLEY_GCC_NOT_CLANG_VERSION_CHECK) - #undef JSON_HEDLEY_GCC_NOT_CLANG_VERSION_CHECK -#endif -#if defined(__clang__) - #define JSON_HEDLEY_GCC_NOT_CLANG_VERSION_CHECK(major,minor,patch) (0) -#else - #define JSON_HEDLEY_GCC_NOT_CLANG_VERSION_CHECK(major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) -#endif - -#if defined(JSON_HEDLEY_CLANG_HAS_ATTRIBUTE) - #undef JSON_HEDLEY_CLANG_HAS_ATTRIBUTE -#endif -#define JSON_HEDLEY_CLANG_HAS_ATTRIBUTE(attribute) JSON_HEDLEY_HAS_ATTRIBUTE(attribute) - -#if defined(JSON_HEDLEY_CLANG_HAS_CPP_ATTRIBUTE) - #undef JSON_HEDLEY_CLANG_HAS_CPP_ATTRIBUTE -#endif -#define JSON_HEDLEY_CLANG_HAS_CPP_ATTRIBUTE(attribute) JSON_HEDLEY_HAS_CPP_ATTRIBUTE(attribute) - -#if defined(JSON_HEDLEY_CLANG_HAS_BUILTIN) - #undef JSON_HEDLEY_CLANG_HAS_BUILTIN -#endif -#define JSON_HEDLEY_CLANG_HAS_BUILTIN(builtin) JSON_HEDLEY_HAS_BUILTIN(builtin) - -#if defined(JSON_HEDLEY_CLANG_HAS_FEATURE) - #undef JSON_HEDLEY_CLANG_HAS_FEATURE -#endif -#define JSON_HEDLEY_CLANG_HAS_FEATURE(feature) JSON_HEDLEY_HAS_FEATURE(feature) - -#if defined(JSON_HEDLEY_CLANG_HAS_EXTENSION) - #undef JSON_HEDLEY_CLANG_HAS_EXTENSION -#endif -#define JSON_HEDLEY_CLANG_HAS_EXTENSION(extension) JSON_HEDLEY_HAS_EXTENSION(extension) - -#if defined(JSON_HEDLEY_CLANG_HAS_DECLSPEC_DECLSPEC_ATTRIBUTE) - #undef JSON_HEDLEY_CLANG_HAS_DECLSPEC_DECLSPEC_ATTRIBUTE -#endif -#define JSON_HEDLEY_CLANG_HAS_DECLSPEC_ATTRIBUTE(attribute) JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE(attribute) - -#if defined(JSON_HEDLEY_CLANG_HAS_WARNING) - #undef JSON_HEDLEY_CLANG_HAS_WARNING -#endif -#define JSON_HEDLEY_CLANG_HAS_WARNING(warning) JSON_HEDLEY_HAS_WARNING(warning) - -#endif /* !defined(JSON_HEDLEY_VERSION) || (JSON_HEDLEY_VERSION < X) */ diff --git a/nlohmann/thirdparty/hedley/hedley_undef.hpp b/nlohmann/thirdparty/hedley/hedley_undef.hpp deleted file mode 100644 index 5fc2e31..0000000 --- a/nlohmann/thirdparty/hedley/hedley_undef.hpp +++ /dev/null @@ -1,143 +0,0 @@ -#undef JSON_HEDLEY_ALWAYS_INLINE -#undef JSON_HEDLEY_ARM_VERSION -#undef JSON_HEDLEY_ARM_VERSION_CHECK -#undef JSON_HEDLEY_ARRAY_PARAM -#undef JSON_HEDLEY_ASSUME -#undef JSON_HEDLEY_BEGIN_C_DECLS -#undef JSON_HEDLEY_CLANG_HAS_ATTRIBUTE -#undef JSON_HEDLEY_CLANG_HAS_BUILTIN -#undef JSON_HEDLEY_CLANG_HAS_CPP_ATTRIBUTE -#undef JSON_HEDLEY_CLANG_HAS_DECLSPEC_DECLSPEC_ATTRIBUTE -#undef JSON_HEDLEY_CLANG_HAS_EXTENSION -#undef JSON_HEDLEY_CLANG_HAS_FEATURE -#undef JSON_HEDLEY_CLANG_HAS_WARNING -#undef JSON_HEDLEY_COMPCERT_VERSION -#undef JSON_HEDLEY_COMPCERT_VERSION_CHECK -#undef JSON_HEDLEY_CONCAT -#undef JSON_HEDLEY_CONCAT3 -#undef JSON_HEDLEY_CONCAT3_EX -#undef JSON_HEDLEY_CONCAT_EX -#undef JSON_HEDLEY_CONST -#undef JSON_HEDLEY_CONSTEXPR -#undef JSON_HEDLEY_CONST_CAST -#undef JSON_HEDLEY_CPP_CAST -#undef JSON_HEDLEY_CRAY_VERSION -#undef JSON_HEDLEY_CRAY_VERSION_CHECK -#undef JSON_HEDLEY_C_DECL -#undef JSON_HEDLEY_DEPRECATED -#undef JSON_HEDLEY_DEPRECATED_FOR -#undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL -#undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_ -#undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED -#undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES -#undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS -#undef JSON_HEDLEY_DIAGNOSTIC_POP -#undef JSON_HEDLEY_DIAGNOSTIC_PUSH -#undef JSON_HEDLEY_DMC_VERSION -#undef JSON_HEDLEY_DMC_VERSION_CHECK -#undef JSON_HEDLEY_EMPTY_BASES -#undef JSON_HEDLEY_EMSCRIPTEN_VERSION -#undef JSON_HEDLEY_EMSCRIPTEN_VERSION_CHECK -#undef JSON_HEDLEY_END_C_DECLS -#undef JSON_HEDLEY_FLAGS -#undef JSON_HEDLEY_FLAGS_CAST -#undef JSON_HEDLEY_GCC_HAS_ATTRIBUTE -#undef JSON_HEDLEY_GCC_HAS_BUILTIN -#undef JSON_HEDLEY_GCC_HAS_CPP_ATTRIBUTE -#undef JSON_HEDLEY_GCC_HAS_DECLSPEC_ATTRIBUTE -#undef JSON_HEDLEY_GCC_HAS_EXTENSION -#undef JSON_HEDLEY_GCC_HAS_FEATURE -#undef JSON_HEDLEY_GCC_HAS_WARNING -#undef JSON_HEDLEY_GCC_NOT_CLANG_VERSION_CHECK -#undef JSON_HEDLEY_GCC_VERSION -#undef JSON_HEDLEY_GCC_VERSION_CHECK -#undef JSON_HEDLEY_GNUC_HAS_ATTRIBUTE -#undef JSON_HEDLEY_GNUC_HAS_BUILTIN -#undef JSON_HEDLEY_GNUC_HAS_CPP_ATTRIBUTE -#undef JSON_HEDLEY_GNUC_HAS_DECLSPEC_ATTRIBUTE -#undef JSON_HEDLEY_GNUC_HAS_EXTENSION -#undef JSON_HEDLEY_GNUC_HAS_FEATURE -#undef JSON_HEDLEY_GNUC_HAS_WARNING -#undef JSON_HEDLEY_GNUC_VERSION -#undef JSON_HEDLEY_GNUC_VERSION_CHECK -#undef JSON_HEDLEY_HAS_ATTRIBUTE -#undef JSON_HEDLEY_HAS_BUILTIN -#undef JSON_HEDLEY_HAS_CPP_ATTRIBUTE -#undef JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS -#undef JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE -#undef JSON_HEDLEY_HAS_EXTENSION -#undef JSON_HEDLEY_HAS_FEATURE -#undef JSON_HEDLEY_HAS_WARNING -#undef JSON_HEDLEY_IAR_VERSION -#undef JSON_HEDLEY_IAR_VERSION_CHECK -#undef JSON_HEDLEY_IBM_VERSION -#undef JSON_HEDLEY_IBM_VERSION_CHECK -#undef JSON_HEDLEY_IMPORT -#undef JSON_HEDLEY_INLINE -#undef JSON_HEDLEY_INTEL_VERSION -#undef JSON_HEDLEY_INTEL_VERSION_CHECK -#undef JSON_HEDLEY_IS_CONSTANT -#undef JSON_HEDLEY_IS_CONSTEXPR_ -#undef JSON_HEDLEY_LIKELY -#undef JSON_HEDLEY_MALLOC -#undef JSON_HEDLEY_MESSAGE -#undef JSON_HEDLEY_MSVC_VERSION -#undef JSON_HEDLEY_MSVC_VERSION_CHECK -#undef JSON_HEDLEY_NEVER_INLINE -#undef JSON_HEDLEY_NON_NULL -#undef JSON_HEDLEY_NO_ESCAPE -#undef JSON_HEDLEY_NO_RETURN -#undef JSON_HEDLEY_NO_THROW -#undef JSON_HEDLEY_NULL -#undef JSON_HEDLEY_PELLES_VERSION -#undef JSON_HEDLEY_PELLES_VERSION_CHECK -#undef JSON_HEDLEY_PGI_VERSION -#undef JSON_HEDLEY_PGI_VERSION_CHECK -#undef JSON_HEDLEY_PREDICT -#undef JSON_HEDLEY_PRINTF_FORMAT -#undef JSON_HEDLEY_PRIVATE -#undef JSON_HEDLEY_PUBLIC -#undef JSON_HEDLEY_PURE -#undef JSON_HEDLEY_REINTERPRET_CAST -#undef JSON_HEDLEY_REQUIRE -#undef JSON_HEDLEY_REQUIRE_CONSTEXPR -#undef JSON_HEDLEY_REQUIRE_MSG -#undef JSON_HEDLEY_RESTRICT -#undef JSON_HEDLEY_RETURNS_NON_NULL -#undef JSON_HEDLEY_SENTINEL -#undef JSON_HEDLEY_STATIC_ASSERT -#undef JSON_HEDLEY_STATIC_CAST -#undef JSON_HEDLEY_STRINGIFY -#undef JSON_HEDLEY_STRINGIFY_EX -#undef JSON_HEDLEY_SUNPRO_VERSION -#undef JSON_HEDLEY_SUNPRO_VERSION_CHECK -#undef JSON_HEDLEY_TINYC_VERSION -#undef JSON_HEDLEY_TINYC_VERSION_CHECK -#undef JSON_HEDLEY_TI_ARMCL_VERSION -#undef JSON_HEDLEY_TI_ARMCL_VERSION_CHECK -#undef JSON_HEDLEY_TI_CL2000_VERSION -#undef JSON_HEDLEY_TI_CL2000_VERSION_CHECK -#undef JSON_HEDLEY_TI_CL430_VERSION -#undef JSON_HEDLEY_TI_CL430_VERSION_CHECK -#undef JSON_HEDLEY_TI_CL6X_VERSION -#undef JSON_HEDLEY_TI_CL6X_VERSION_CHECK -#undef JSON_HEDLEY_TI_CL7X_VERSION -#undef JSON_HEDLEY_TI_CL7X_VERSION_CHECK -#undef JSON_HEDLEY_TI_CLPRU_VERSION -#undef JSON_HEDLEY_TI_CLPRU_VERSION_CHECK -#undef JSON_HEDLEY_TI_VERSION -#undef JSON_HEDLEY_TI_VERSION_CHECK -#undef JSON_HEDLEY_UNAVAILABLE -#undef JSON_HEDLEY_UNLIKELY -#undef JSON_HEDLEY_UNPREDICTABLE -#undef JSON_HEDLEY_UNREACHABLE -#undef JSON_HEDLEY_UNREACHABLE_RETURN -#undef JSON_HEDLEY_VERSION -#undef JSON_HEDLEY_VERSION_DECODE_MAJOR -#undef JSON_HEDLEY_VERSION_DECODE_MINOR -#undef JSON_HEDLEY_VERSION_DECODE_REVISION -#undef JSON_HEDLEY_VERSION_ENCODE -#undef JSON_HEDLEY_WARNING -#undef JSON_HEDLEY_WARN_UNUSED_RESULT -#undef JSON_HEDLEY_WARN_UNUSED_RESULT_MSG -#undef JSON_HEDLEY_FALL_THROUGH From 3870e1f33c1dd342ccaf8a1ec50128cdcba21980 Mon Sep 17 00:00:00 2001 From: Shxde <112267394+Shxde1@users.noreply.github.com> Date: Sat, 21 Dec 2024 13:10:43 -0500 Subject: [PATCH 17/19] Delete curl directory --- curl/Makefile.am | 39 - curl/Makefile.in | 702 ---------- curl/curl.h | 2919 ------------------------------------------ curl/curlver.h | 77 -- curl/easy.h | 123 -- curl/libcurl.lib | Bin 1875826 -> 0 bytes curl/mprintf.h | 50 - curl/multi.h | 454 ------- curl/stdcheaders.h | 33 - curl/system.h | 504 -------- curl/typecheck-gcc.h | 700 ---------- curl/urlapi.h | 125 -- 12 files changed, 5726 deletions(-) delete mode 100644 curl/Makefile.am delete mode 100644 curl/Makefile.in delete mode 100644 curl/curl.h delete mode 100644 curl/curlver.h delete mode 100644 curl/easy.h delete mode 100644 curl/libcurl.lib delete mode 100644 curl/mprintf.h delete mode 100644 curl/multi.h delete mode 100644 curl/stdcheaders.h delete mode 100644 curl/system.h delete mode 100644 curl/typecheck-gcc.h delete mode 100644 curl/urlapi.h diff --git a/curl/Makefile.am b/curl/Makefile.am deleted file mode 100644 index a31f61b..0000000 --- a/curl/Makefile.am +++ /dev/null @@ -1,39 +0,0 @@ -#*************************************************************************** -# _ _ ____ _ -# Project ___| | | | _ \| | -# / __| | | | |_) | | -# | (__| |_| | _ <| |___ -# \___|\___/|_| \_\_____| -# -# Copyright (C) 1998 - 2019, Daniel Stenberg, , et al. -# -# This software is licensed as described in the file COPYING, which -# you should have received as part of this distribution. The terms -# are also available at https://curl.haxx.se/docs/copyright.html. -# -# You may opt to use, copy, modify, merge, publish, distribute and/or sell -# copies of the Software, and permit persons to whom the Software is -# furnished to do so, under the terms of the COPYING file. -# -# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY -# KIND, either express or implied. -# -########################################################################### -pkginclude_HEADERS = \ - curl.h curlver.h easy.h mprintf.h stdcheaders.h multi.h \ - typecheck-gcc.h system.h urlapi.h - -pkgincludedir= $(includedir)/curl - -CHECKSRC = $(CS_$(V)) -CS_0 = @echo " RUN " $@; -CS_1 = -CS_ = $(CS_0) - -checksrc: - $(CHECKSRC)@PERL@ $(top_srcdir)/lib/checksrc.pl -D$(top_srcdir)/include/curl $(pkginclude_HEADERS) - -if CURLDEBUG -# for debug builds, we scan the sources on all regular make invokes -all-local: checksrc -endif diff --git a/curl/Makefile.in b/curl/Makefile.in deleted file mode 100644 index 6c9a2fc..0000000 --- a/curl/Makefile.in +++ /dev/null @@ -1,702 +0,0 @@ -# Makefile.in generated by automake 1.16.2 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994-2020 Free Software Foundation, Inc. - -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} -am__make_running_with_option = \ - case $${target_option-} in \ - ?) ;; \ - *) echo "am__make_running_with_option: internal error: invalid" \ - "target option '$${target_option-}' specified" >&2; \ - exit 1;; \ - esac; \ - has_opt=no; \ - sane_makeflags=$$MAKEFLAGS; \ - if $(am__is_gnu_make); then \ - sane_makeflags=$$MFLAGS; \ - else \ - case $$MAKEFLAGS in \ - *\\[\ \ ]*) \ - bs=\\; \ - sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ - | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ - esac; \ - fi; \ - skip_next=no; \ - strip_trailopt () \ - { \ - flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ - }; \ - for flg in $$sane_makeflags; do \ - test $$skip_next = yes && { skip_next=no; continue; }; \ - case $$flg in \ - *=*|--*) continue;; \ - -*I) strip_trailopt 'I'; skip_next=yes;; \ - -*I?*) strip_trailopt 'I';; \ - -*O) strip_trailopt 'O'; skip_next=yes;; \ - -*O?*) strip_trailopt 'O';; \ - -*l) strip_trailopt 'l'; skip_next=yes;; \ - -*l?*) strip_trailopt 'l';; \ - -[dEDm]) skip_next=yes;; \ - -[JT]) skip_next=yes;; \ - esac; \ - case $$flg in \ - *$$target_option*) has_opt=yes; break;; \ - esac; \ - done; \ - test $$has_opt = yes -am__make_dryrun = (target_option=n; $(am__make_running_with_option)) -am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) -pkgdatadir = $(datadir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -subdir = include/curl -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/ax_compile_check_sizeof.m4 \ - $(top_srcdir)/m4/curl-compilers.m4 \ - $(top_srcdir)/m4/curl-confopts.m4 \ - $(top_srcdir)/m4/curl-functions.m4 \ - $(top_srcdir)/m4/curl-openssl.m4 \ - $(top_srcdir)/m4/curl-override.m4 \ - $(top_srcdir)/m4/curl-reentrant.m4 $(top_srcdir)/m4/libtool.m4 \ - $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ - $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ - $(top_srcdir)/m4/xc-am-iface.m4 \ - $(top_srcdir)/m4/xc-cc-check.m4 \ - $(top_srcdir)/m4/xc-lt-iface.m4 \ - $(top_srcdir)/m4/xc-translit.m4 \ - $(top_srcdir)/m4/xc-val-flgs.m4 \ - $(top_srcdir)/m4/zz40-xc-ovr.m4 \ - $(top_srcdir)/m4/zz50-xc-ovr.m4 \ - $(top_srcdir)/m4/zz60-xc-ovr.m4 $(top_srcdir)/acinclude.m4 \ - $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(pkginclude_HEADERS) \ - $(am__DIST_COMMON) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/lib/curl_config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -AM_V_P = $(am__v_P_@AM_V@) -am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) -am__v_P_0 = false -am__v_P_1 = : -AM_V_GEN = $(am__v_GEN_@AM_V@) -am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) -am__v_GEN_0 = @echo " GEN " $@; -am__v_GEN_1 = -AM_V_at = $(am__v_at_@AM_V@) -am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) -am__v_at_0 = @ -am__v_at_1 = -SOURCES = -DIST_SOURCES = -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } -am__installdirs = "$(DESTDIR)$(pkgincludedir)" -HEADERS = $(pkginclude_HEADERS) -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -pkgincludedir = $(includedir)/curl -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ -AR = @AR@ -AR_FLAGS = @AR_FLAGS@ -AS = @AS@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -BLANK_AT_MAKETIME = @BLANK_AT_MAKETIME@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CFLAG_CURL_SYMBOL_HIDING = @CFLAG_CURL_SYMBOL_HIDING@ -CONFIGURE_OPTIONS = @CONFIGURE_OPTIONS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CPPFLAG_CURL_STATICLIB = @CPPFLAG_CURL_STATICLIB@ -CURLVERSION = @CURLVERSION@ -CURL_CA_BUNDLE = @CURL_CA_BUNDLE@ -CURL_CFLAG_EXTRAS = @CURL_CFLAG_EXTRAS@ -CURL_DISABLE_DICT = @CURL_DISABLE_DICT@ -CURL_DISABLE_FILE = @CURL_DISABLE_FILE@ -CURL_DISABLE_FTP = @CURL_DISABLE_FTP@ -CURL_DISABLE_GOPHER = @CURL_DISABLE_GOPHER@ -CURL_DISABLE_HTTP = @CURL_DISABLE_HTTP@ -CURL_DISABLE_IMAP = @CURL_DISABLE_IMAP@ -CURL_DISABLE_LDAP = @CURL_DISABLE_LDAP@ -CURL_DISABLE_LDAPS = @CURL_DISABLE_LDAPS@ -CURL_DISABLE_POP3 = @CURL_DISABLE_POP3@ -CURL_DISABLE_PROXY = @CURL_DISABLE_PROXY@ -CURL_DISABLE_RTSP = @CURL_DISABLE_RTSP@ -CURL_DISABLE_SMB = @CURL_DISABLE_SMB@ -CURL_DISABLE_SMTP = @CURL_DISABLE_SMTP@ -CURL_DISABLE_TELNET = @CURL_DISABLE_TELNET@ -CURL_DISABLE_TFTP = @CURL_DISABLE_TFTP@ -CURL_ENABLE_MQTT = @CURL_ENABLE_MQTT@ -CURL_LT_SHLIB_VERSIONED_FLAVOUR = @CURL_LT_SHLIB_VERSIONED_FLAVOUR@ -CURL_NETWORK_AND_TIME_LIBS = @CURL_NETWORK_AND_TIME_LIBS@ -CURL_NETWORK_LIBS = @CURL_NETWORK_LIBS@ -CURL_WITH_MULTI_SSL = @CURL_WITH_MULTI_SSL@ -CYGPATH_W = @CYGPATH_W@ -DEFAULT_SSL_BACKEND = @DEFAULT_SSL_BACKEND@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DLLTOOL = @DLLTOOL@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -ENABLE_SHARED = @ENABLE_SHARED@ -ENABLE_STATIC = @ENABLE_STATIC@ -EXEEXT = @EXEEXT@ -FGREP = @FGREP@ -FISH_FUNCTIONS_DIR = @FISH_FUNCTIONS_DIR@ -GCOV = @GCOV@ -GREP = @GREP@ -HAVE_BROTLI = @HAVE_BROTLI@ -HAVE_GNUTLS_SRP = @HAVE_GNUTLS_SRP@ -HAVE_LDAP_SSL = @HAVE_LDAP_SSL@ -HAVE_LIBZ = @HAVE_LIBZ@ -HAVE_OPENSSL_SRP = @HAVE_OPENSSL_SRP@ -HAVE_PROTO_BSDSOCKET_H = @HAVE_PROTO_BSDSOCKET_H@ -IDN_ENABLED = @IDN_ENABLED@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -IPV6_ENABLED = @IPV6_ENABLED@ -LCOV = @LCOV@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBCURL_LIBS = @LIBCURL_LIBS@ -LIBCURL_NO_SHARED = @LIBCURL_NO_SHARED@ -LIBMETALINK_CPPFLAGS = @LIBMETALINK_CPPFLAGS@ -LIBMETALINK_LDFLAGS = @LIBMETALINK_LDFLAGS@ -LIBMETALINK_LIBS = @LIBMETALINK_LIBS@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ -MAINT = @MAINT@ -MAKEINFO = @MAKEINFO@ -MANIFEST_TOOL = @MANIFEST_TOOL@ -MANOPT = @MANOPT@ -MKDIR_P = @MKDIR_P@ -NM = @NM@ -NMEDIT = @NMEDIT@ -NROFF = @NROFF@ -NSS_LIBS = @NSS_LIBS@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -PERL = @PERL@ -PKGADD_NAME = @PKGADD_NAME@ -PKGADD_PKG = @PKGADD_PKG@ -PKGADD_VENDOR = @PKGADD_VENDOR@ -PKGCONFIG = @PKGCONFIG@ -RANDOM_FILE = @RANDOM_FILE@ -RANLIB = @RANLIB@ -REQUIRE_LIB_DEPS = @REQUIRE_LIB_DEPS@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -SSL_BACKENDS = @SSL_BACKENDS@ -SSL_ENABLED = @SSL_ENABLED@ -SSL_LIBS = @SSL_LIBS@ -STRIP = @STRIP@ -SUPPORT_FEATURES = @SUPPORT_FEATURES@ -SUPPORT_PROTOCOLS = @SUPPORT_PROTOCOLS@ -USE_ARES = @USE_ARES@ -USE_BEARSSL = @USE_BEARSSL@ -USE_GNUTLS = @USE_GNUTLS@ -USE_GNUTLS_NETTLE = @USE_GNUTLS_NETTLE@ -USE_LIBRTMP = @USE_LIBRTMP@ -USE_LIBSSH = @USE_LIBSSH@ -USE_LIBSSH2 = @USE_LIBSSH2@ -USE_MBEDTLS = @USE_MBEDTLS@ -USE_MESALINK = @USE_MESALINK@ -USE_NGHTTP2 = @USE_NGHTTP2@ -USE_NGHTTP3 = @USE_NGHTTP3@ -USE_NGTCP2 = @USE_NGTCP2@ -USE_NGTCP2_CRYPTO_GNUTLS = @USE_NGTCP2_CRYPTO_GNUTLS@ -USE_NGTCP2_CRYPTO_OPENSSL = @USE_NGTCP2_CRYPTO_OPENSSL@ -USE_NSS = @USE_NSS@ -USE_OPENLDAP = @USE_OPENLDAP@ -USE_QUICHE = @USE_QUICHE@ -USE_SCHANNEL = @USE_SCHANNEL@ -USE_SECTRANSP = @USE_SECTRANSP@ -USE_UNIX_SOCKETS = @USE_UNIX_SOCKETS@ -USE_WINDOWS_SSPI = @USE_WINDOWS_SSPI@ -USE_WOLFSSH = @USE_WOLFSSH@ -USE_WOLFSSL = @USE_WOLFSSL@ -VERSION = @VERSION@ -VERSIONNUM = @VERSIONNUM@ -ZLIB_LIBS = @ZLIB_LIBS@ -ZSH_FUNCTIONS_DIR = @ZSH_FUNCTIONS_DIR@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_AR = @ac_ct_AR@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -libext = @libext@ -localedir = @localedir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -runstatedir = @runstatedir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -subdirs = @subdirs@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ - -#*************************************************************************** -# _ _ ____ _ -# Project ___| | | | _ \| | -# / __| | | | |_) | | -# | (__| |_| | _ <| |___ -# \___|\___/|_| \_\_____| -# -# Copyright (C) 1998 - 2019, Daniel Stenberg, , et al. -# -# This software is licensed as described in the file COPYING, which -# you should have received as part of this distribution. The terms -# are also available at https://curl.haxx.se/docs/copyright.html. -# -# You may opt to use, copy, modify, merge, publish, distribute and/or sell -# copies of the Software, and permit persons to whom the Software is -# furnished to do so, under the terms of the COPYING file. -# -# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY -# KIND, either express or implied. -# -########################################################################### -pkginclude_HEADERS = \ - curl.h curlver.h easy.h mprintf.h stdcheaders.h multi.h \ - typecheck-gcc.h system.h urlapi.h - -CHECKSRC = $(CS_$(V)) -CS_0 = @echo " RUN " $@; -CS_1 = -CS_ = $(CS_0) -all: all-am - -.SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign include/curl/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign include/curl/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs -install-pkgincludeHEADERS: $(pkginclude_HEADERS) - @$(NORMAL_INSTALL) - @list='$(pkginclude_HEADERS)'; test -n "$(pkgincludedir)" || list=; \ - if test -n "$$list"; then \ - echo " $(MKDIR_P) '$(DESTDIR)$(pkgincludedir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" || exit 1; \ - fi; \ - for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - echo "$$d$$p"; \ - done | $(am__base_list) | \ - while read files; do \ - echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(pkgincludedir)'"; \ - $(INSTALL_HEADER) $$files "$(DESTDIR)$(pkgincludedir)" || exit $$?; \ - done - -uninstall-pkgincludeHEADERS: - @$(NORMAL_UNINSTALL) - @list='$(pkginclude_HEADERS)'; test -n "$(pkgincludedir)" || list=; \ - files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ - dir='$(DESTDIR)$(pkgincludedir)'; $(am__uninstall_files_from_dir) - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-am -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-am - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-am - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(BUILT_SOURCES) - $(MAKE) $(AM_MAKEFLAGS) distdir-am - -distdir-am: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -@CURLDEBUG_FALSE@all-local: -all-am: Makefile $(HEADERS) all-local -installdirs: - for dir in "$(DESTDIR)$(pkgincludedir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libtool mostlyclean-am - -distclean: distclean-am - -rm -f Makefile -distclean-am: clean-am distclean-generic distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: install-pkgincludeHEADERS - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-generic mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-pkgincludeHEADERS - -.MAKE: install-am install-strip - -.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-am clean \ - clean-generic clean-libtool cscopelist-am ctags ctags-am \ - distclean distclean-generic distclean-libtool distclean-tags \ - distdir dvi dvi-am html html-am info info-am install \ - install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am install-man \ - install-pdf install-pdf-am install-pkgincludeHEADERS \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-generic \ - mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ - uninstall-am uninstall-pkgincludeHEADERS - -.PRECIOUS: Makefile - - -checksrc: - $(CHECKSRC)@PERL@ $(top_srcdir)/lib/checksrc.pl -D$(top_srcdir)/include/curl $(pkginclude_HEADERS) - -# for debug builds, we scan the sources on all regular make invokes -@CURLDEBUG_TRUE@all-local: checksrc - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/curl/curl.h b/curl/curl.h deleted file mode 100644 index e3531f5..0000000 --- a/curl/curl.h +++ /dev/null @@ -1,2919 +0,0 @@ -#ifndef CURLINC_CURL_H -#define CURLINC_CURL_H -/*************************************************************************** - * _ _ ____ _ - * Project ___| | | | _ \| | - * / __| | | | |_) | | - * | (__| |_| | _ <| |___ - * \___|\___/|_| \_\_____| - * - * Copyright (C) 1998 - 2020, Daniel Stenberg, , et al. - * - * This software is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at https://curl.haxx.se/docs/copyright.html. - * - * You may opt to use, copy, modify, merge, publish, distribute and/or sell - * copies of the Software, and permit persons to whom the Software is - * furnished to do so, under the terms of the COPYING file. - * - * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY - * KIND, either express or implied. - * - ***************************************************************************/ - -/* - * If you have libcurl problems, all docs and details are found here: - * https://curl.haxx.se/libcurl/ - * - * curl-library mailing list subscription and unsubscription web interface: - * https://cool.haxx.se/mailman/listinfo/curl-library/ - */ - -#ifdef CURL_NO_OLDIES -#define CURL_STRICTER -#endif - -#include "curlver.h" /* libcurl version defines */ -#include "system.h" /* determine things run-time */ - -/* - * Define CURL_WIN32 when build target is Win32 API - */ - -#if (defined(_WIN32) || defined(__WIN32__) || defined(WIN32)) && \ - !defined(__SYMBIAN32__) -#define CURL_WIN32 -#endif - -#include -#include - -#if defined(__FreeBSD__) && (__FreeBSD__ >= 2) -/* Needed for __FreeBSD_version symbol definition */ -#include -#endif - -/* The include stuff here below is mainly for time_t! */ -#include -#include - -#if defined(CURL_WIN32) && !defined(_WIN32_WCE) && !defined(__CYGWIN__) -#if !(defined(_WINSOCKAPI_) || defined(_WINSOCK_H) || \ - defined(__LWIP_OPT_H__) || defined(LWIP_HDR_OPT_H)) -/* The check above prevents the winsock2 inclusion if winsock.h already was - included, since they can't co-exist without problems */ -#include -#include -#endif -#endif - -/* HP-UX systems version 9, 10 and 11 lack sys/select.h and so does oldish - libc5-based Linux systems. Only include it on systems that are known to - require it! */ -#if defined(_AIX) || defined(__NOVELL_LIBC__) || defined(__NetBSD__) || \ - defined(__minix) || defined(__SYMBIAN32__) || defined(__INTEGRITY) || \ - defined(ANDROID) || defined(__ANDROID__) || defined(__OpenBSD__) || \ - defined(__CYGWIN__) || \ - (defined(__FreeBSD_version) && (__FreeBSD_version < 800000)) -#include -#endif - -#if !defined(CURL_WIN32) && !defined(_WIN32_WCE) -#include -#endif - -#if !defined(CURL_WIN32) && !defined(__WATCOMC__) && !defined(__VXWORKS__) -#include -#endif - -#ifdef __BEOS__ -#include -#endif - -/* Compatibility for non-Clang compilers */ -#ifndef __has_declspec_attribute -# define __has_declspec_attribute(x) 0 -#endif - -#ifdef __cplusplus -extern "C" { -#endif - -#if defined(BUILDING_LIBCURL) || defined(CURL_STRICTER) -typedef struct Curl_easy CURL; -typedef struct Curl_share CURLSH; -#else -typedef void CURL; -typedef void CURLSH; -#endif - -/* - * libcurl external API function linkage decorations. - */ - -#ifdef CURL_STATICLIB -# define CURL_EXTERN -#elif defined(CURL_WIN32) || defined(__SYMBIAN32__) || \ - (__has_declspec_attribute(dllexport) && \ - __has_declspec_attribute(dllimport)) -# if defined(BUILDING_LIBCURL) -# define CURL_EXTERN __declspec(dllexport) -# else -# define CURL_EXTERN __declspec(dllimport) -# endif -#elif defined(BUILDING_LIBCURL) && defined(CURL_HIDDEN_SYMBOLS) -# define CURL_EXTERN CURL_EXTERN_SYMBOL -#else -# define CURL_EXTERN -#endif - -#ifndef curl_socket_typedef -/* socket typedef */ -#if defined(CURL_WIN32) && !defined(__LWIP_OPT_H__) && !defined(LWIP_HDR_OPT_H) -typedef SOCKET curl_socket_t; -#define CURL_SOCKET_BAD INVALID_SOCKET -#else -typedef int curl_socket_t; -#define CURL_SOCKET_BAD -1 -#endif -#define curl_socket_typedef -#endif /* curl_socket_typedef */ - -/* enum for the different supported SSL backends */ -typedef enum { - CURLSSLBACKEND_NONE = 0, - CURLSSLBACKEND_OPENSSL = 1, - CURLSSLBACKEND_GNUTLS = 2, - CURLSSLBACKEND_NSS = 3, - CURLSSLBACKEND_OBSOLETE4 = 4, /* Was QSOSSL. */ - CURLSSLBACKEND_GSKIT = 5, - CURLSSLBACKEND_POLARSSL = 6, - CURLSSLBACKEND_WOLFSSL = 7, - CURLSSLBACKEND_SCHANNEL = 8, - CURLSSLBACKEND_SECURETRANSPORT = 9, - CURLSSLBACKEND_AXTLS = 10, /* never used since 7.63.0 */ - CURLSSLBACKEND_MBEDTLS = 11, - CURLSSLBACKEND_MESALINK = 12, - CURLSSLBACKEND_BEARSSL = 13 -} curl_sslbackend; - -/* aliases for library clones and renames */ -#define CURLSSLBACKEND_LIBRESSL CURLSSLBACKEND_OPENSSL -#define CURLSSLBACKEND_BORINGSSL CURLSSLBACKEND_OPENSSL - -/* deprecated names: */ -#define CURLSSLBACKEND_CYASSL CURLSSLBACKEND_WOLFSSL -#define CURLSSLBACKEND_DARWINSSL CURLSSLBACKEND_SECURETRANSPORT - -struct curl_httppost { - struct curl_httppost *next; /* next entry in the list */ - char *name; /* pointer to allocated name */ - long namelength; /* length of name length */ - char *contents; /* pointer to allocated data contents */ - long contentslength; /* length of contents field, see also - CURL_HTTPPOST_LARGE */ - char *buffer; /* pointer to allocated buffer contents */ - long bufferlength; /* length of buffer field */ - char *contenttype; /* Content-Type */ - struct curl_slist *contentheader; /* list of extra headers for this form */ - struct curl_httppost *more; /* if one field name has more than one - file, this link should link to following - files */ - long flags; /* as defined below */ - -/* specified content is a file name */ -#define CURL_HTTPPOST_FILENAME (1<<0) -/* specified content is a file name */ -#define CURL_HTTPPOST_READFILE (1<<1) -/* name is only stored pointer do not free in formfree */ -#define CURL_HTTPPOST_PTRNAME (1<<2) -/* contents is only stored pointer do not free in formfree */ -#define CURL_HTTPPOST_PTRCONTENTS (1<<3) -/* upload file from buffer */ -#define CURL_HTTPPOST_BUFFER (1<<4) -/* upload file from pointer contents */ -#define CURL_HTTPPOST_PTRBUFFER (1<<5) -/* upload file contents by using the regular read callback to get the data and - pass the given pointer as custom pointer */ -#define CURL_HTTPPOST_CALLBACK (1<<6) -/* use size in 'contentlen', added in 7.46.0 */ -#define CURL_HTTPPOST_LARGE (1<<7) - - char *showfilename; /* The file name to show. If not set, the - actual file name will be used (if this - is a file part) */ - void *userp; /* custom pointer used for - HTTPPOST_CALLBACK posts */ - curl_off_t contentlen; /* alternative length of contents - field. Used if CURL_HTTPPOST_LARGE is - set. Added in 7.46.0 */ -}; - - -/* This is a return code for the progress callback that, when returned, will - signal libcurl to continue executing the default progress function */ -#define CURL_PROGRESSFUNC_CONTINUE 0x10000001 - -/* This is the CURLOPT_PROGRESSFUNCTION callback prototype. It is now - considered deprecated but was the only choice up until 7.31.0 */ -typedef int (*curl_progress_callback)(void *clientp, - double dltotal, - double dlnow, - double ultotal, - double ulnow); - -/* This is the CURLOPT_XFERINFOFUNCTION callback prototype. It was introduced - in 7.32.0, avoids the use of floating point numbers and provides more - detailed information. */ -typedef int (*curl_xferinfo_callback)(void *clientp, - curl_off_t dltotal, - curl_off_t dlnow, - curl_off_t ultotal, - curl_off_t ulnow); - -#ifndef CURL_MAX_READ_SIZE - /* The maximum receive buffer size configurable via CURLOPT_BUFFERSIZE. */ -#define CURL_MAX_READ_SIZE 524288 -#endif - -#ifndef CURL_MAX_WRITE_SIZE - /* Tests have proven that 20K is a very bad buffer size for uploads on - Windows, while 16K for some odd reason performed a lot better. - We do the ifndef check to allow this value to easier be changed at build - time for those who feel adventurous. The practical minimum is about - 400 bytes since libcurl uses a buffer of this size as a scratch area - (unrelated to network send operations). */ -#define CURL_MAX_WRITE_SIZE 16384 -#endif - -#ifndef CURL_MAX_HTTP_HEADER -/* The only reason to have a max limit for this is to avoid the risk of a bad - server feeding libcurl with a never-ending header that will cause reallocs - infinitely */ -#define CURL_MAX_HTTP_HEADER (100*1024) -#endif - -/* This is a magic return code for the write callback that, when returned, - will signal libcurl to pause receiving on the current transfer. */ -#define CURL_WRITEFUNC_PAUSE 0x10000001 - -typedef size_t (*curl_write_callback)(char *buffer, - size_t size, - size_t nitems, - void *outstream); - -/* This callback will be called when a new resolver request is made */ -typedef int (*curl_resolver_start_callback)(void *resolver_state, - void *reserved, void *userdata); - -/* enumeration of file types */ -typedef enum { - CURLFILETYPE_FILE = 0, - CURLFILETYPE_DIRECTORY, - CURLFILETYPE_SYMLINK, - CURLFILETYPE_DEVICE_BLOCK, - CURLFILETYPE_DEVICE_CHAR, - CURLFILETYPE_NAMEDPIPE, - CURLFILETYPE_SOCKET, - CURLFILETYPE_DOOR, /* is possible only on Sun Solaris now */ - - CURLFILETYPE_UNKNOWN /* should never occur */ -} curlfiletype; - -#define CURLFINFOFLAG_KNOWN_FILENAME (1<<0) -#define CURLFINFOFLAG_KNOWN_FILETYPE (1<<1) -#define CURLFINFOFLAG_KNOWN_TIME (1<<2) -#define CURLFINFOFLAG_KNOWN_PERM (1<<3) -#define CURLFINFOFLAG_KNOWN_UID (1<<4) -#define CURLFINFOFLAG_KNOWN_GID (1<<5) -#define CURLFINFOFLAG_KNOWN_SIZE (1<<6) -#define CURLFINFOFLAG_KNOWN_HLINKCOUNT (1<<7) - -/* Information about a single file, used when doing FTP wildcard matching */ -struct curl_fileinfo { - char *filename; - curlfiletype filetype; - time_t time; /* always zero! */ - unsigned int perm; - int uid; - int gid; - curl_off_t size; - long int hardlinks; - - struct { - /* If some of these fields is not NULL, it is a pointer to b_data. */ - char *time; - char *perm; - char *user; - char *group; - char *target; /* pointer to the target filename of a symlink */ - } strings; - - unsigned int flags; - - /* used internally */ - char *b_data; - size_t b_size; - size_t b_used; -}; - -/* return codes for CURLOPT_CHUNK_BGN_FUNCTION */ -#define CURL_CHUNK_BGN_FUNC_OK 0 -#define CURL_CHUNK_BGN_FUNC_FAIL 1 /* tell the lib to end the task */ -#define CURL_CHUNK_BGN_FUNC_SKIP 2 /* skip this chunk over */ - -/* if splitting of data transfer is enabled, this callback is called before - download of an individual chunk started. Note that parameter "remains" works - only for FTP wildcard downloading (for now), otherwise is not used */ -typedef long (*curl_chunk_bgn_callback)(const void *transfer_info, - void *ptr, - int remains); - -/* return codes for CURLOPT_CHUNK_END_FUNCTION */ -#define CURL_CHUNK_END_FUNC_OK 0 -#define CURL_CHUNK_END_FUNC_FAIL 1 /* tell the lib to end the task */ - -/* If splitting of data transfer is enabled this callback is called after - download of an individual chunk finished. - Note! After this callback was set then it have to be called FOR ALL chunks. - Even if downloading of this chunk was skipped in CHUNK_BGN_FUNC. - This is the reason why we don't need "transfer_info" parameter in this - callback and we are not interested in "remains" parameter too. */ -typedef long (*curl_chunk_end_callback)(void *ptr); - -/* return codes for FNMATCHFUNCTION */ -#define CURL_FNMATCHFUNC_MATCH 0 /* string corresponds to the pattern */ -#define CURL_FNMATCHFUNC_NOMATCH 1 /* pattern doesn't match the string */ -#define CURL_FNMATCHFUNC_FAIL 2 /* an error occurred */ - -/* callback type for wildcard downloading pattern matching. If the - string matches the pattern, return CURL_FNMATCHFUNC_MATCH value, etc. */ -typedef int (*curl_fnmatch_callback)(void *ptr, - const char *pattern, - const char *string); - -/* These are the return codes for the seek callbacks */ -#define CURL_SEEKFUNC_OK 0 -#define CURL_SEEKFUNC_FAIL 1 /* fail the entire transfer */ -#define CURL_SEEKFUNC_CANTSEEK 2 /* tell libcurl seeking can't be done, so - libcurl might try other means instead */ -typedef int (*curl_seek_callback)(void *instream, - curl_off_t offset, - int origin); /* 'whence' */ - -/* This is a return code for the read callback that, when returned, will - signal libcurl to immediately abort the current transfer. */ -#define CURL_READFUNC_ABORT 0x10000000 -/* This is a return code for the read callback that, when returned, will - signal libcurl to pause sending data on the current transfer. */ -#define CURL_READFUNC_PAUSE 0x10000001 - -/* Return code for when the trailing headers' callback has terminated - without any errors*/ -#define CURL_TRAILERFUNC_OK 0 -/* Return code for when was an error in the trailing header's list and we - want to abort the request */ -#define CURL_TRAILERFUNC_ABORT 1 - -typedef size_t (*curl_read_callback)(char *buffer, - size_t size, - size_t nitems, - void *instream); - -typedef int (*curl_trailer_callback)(struct curl_slist **list, - void *userdata); - -typedef enum { - CURLSOCKTYPE_IPCXN, /* socket created for a specific IP connection */ - CURLSOCKTYPE_ACCEPT, /* socket created by accept() call */ - CURLSOCKTYPE_LAST /* never use */ -} curlsocktype; - -/* The return code from the sockopt_callback can signal information back - to libcurl: */ -#define CURL_SOCKOPT_OK 0 -#define CURL_SOCKOPT_ERROR 1 /* causes libcurl to abort and return - CURLE_ABORTED_BY_CALLBACK */ -#define CURL_SOCKOPT_ALREADY_CONNECTED 2 - -typedef int (*curl_sockopt_callback)(void *clientp, - curl_socket_t curlfd, - curlsocktype purpose); - -struct curl_sockaddr { - int family; - int socktype; - int protocol; - unsigned int addrlen; /* addrlen was a socklen_t type before 7.18.0 but it - turned really ugly and painful on the systems that - lack this type */ - struct sockaddr addr; -}; - -typedef curl_socket_t -(*curl_opensocket_callback)(void *clientp, - curlsocktype purpose, - struct curl_sockaddr *address); - -typedef int -(*curl_closesocket_callback)(void *clientp, curl_socket_t item); - -typedef enum { - CURLIOE_OK, /* I/O operation successful */ - CURLIOE_UNKNOWNCMD, /* command was unknown to callback */ - CURLIOE_FAILRESTART, /* failed to restart the read */ - CURLIOE_LAST /* never use */ -} curlioerr; - -typedef enum { - CURLIOCMD_NOP, /* no operation */ - CURLIOCMD_RESTARTREAD, /* restart the read stream from start */ - CURLIOCMD_LAST /* never use */ -} curliocmd; - -typedef curlioerr (*curl_ioctl_callback)(CURL *handle, - int cmd, - void *clientp); - -#ifndef CURL_DID_MEMORY_FUNC_TYPEDEFS -/* - * The following typedef's are signatures of malloc, free, realloc, strdup and - * calloc respectively. Function pointers of these types can be passed to the - * curl_global_init_mem() function to set user defined memory management - * callback routines. - */ -typedef void *(*curl_malloc_callback)(size_t size); -typedef void (*curl_free_callback)(void *ptr); -typedef void *(*curl_realloc_callback)(void *ptr, size_t size); -typedef char *(*curl_strdup_callback)(const char *str); -typedef void *(*curl_calloc_callback)(size_t nmemb, size_t size); - -#define CURL_DID_MEMORY_FUNC_TYPEDEFS -#endif - -/* the kind of data that is passed to information_callback*/ -typedef enum { - CURLINFO_TEXT = 0, - CURLINFO_HEADER_IN, /* 1 */ - CURLINFO_HEADER_OUT, /* 2 */ - CURLINFO_DATA_IN, /* 3 */ - CURLINFO_DATA_OUT, /* 4 */ - CURLINFO_SSL_DATA_IN, /* 5 */ - CURLINFO_SSL_DATA_OUT, /* 6 */ - CURLINFO_END -} curl_infotype; - -typedef int (*curl_debug_callback) - (CURL *handle, /* the handle/transfer this concerns */ - curl_infotype type, /* what kind of data */ - char *data, /* points to the data */ - size_t size, /* size of the data pointed to */ - void *userptr); /* whatever the user please */ - -/* All possible error codes from all sorts of curl functions. Future versions - may return other values, stay prepared. - - Always add new return codes last. Never *EVER* remove any. The return - codes must remain the same! - */ - -typedef enum { - CURLE_OK = 0, - CURLE_UNSUPPORTED_PROTOCOL, /* 1 */ - CURLE_FAILED_INIT, /* 2 */ - CURLE_URL_MALFORMAT, /* 3 */ - CURLE_NOT_BUILT_IN, /* 4 - [was obsoleted in August 2007 for - 7.17.0, reused in April 2011 for 7.21.5] */ - CURLE_COULDNT_RESOLVE_PROXY, /* 5 */ - CURLE_COULDNT_RESOLVE_HOST, /* 6 */ - CURLE_COULDNT_CONNECT, /* 7 */ - CURLE_WEIRD_SERVER_REPLY, /* 8 */ - CURLE_REMOTE_ACCESS_DENIED, /* 9 a service was denied by the server - due to lack of access - when login fails - this is not returned. */ - CURLE_FTP_ACCEPT_FAILED, /* 10 - [was obsoleted in April 2006 for - 7.15.4, reused in Dec 2011 for 7.24.0]*/ - CURLE_FTP_WEIRD_PASS_REPLY, /* 11 */ - CURLE_FTP_ACCEPT_TIMEOUT, /* 12 - timeout occurred accepting server - [was obsoleted in August 2007 for 7.17.0, - reused in Dec 2011 for 7.24.0]*/ - CURLE_FTP_WEIRD_PASV_REPLY, /* 13 */ - CURLE_FTP_WEIRD_227_FORMAT, /* 14 */ - CURLE_FTP_CANT_GET_HOST, /* 15 */ - CURLE_HTTP2, /* 16 - A problem in the http2 framing layer. - [was obsoleted in August 2007 for 7.17.0, - reused in July 2014 for 7.38.0] */ - CURLE_FTP_COULDNT_SET_TYPE, /* 17 */ - CURLE_PARTIAL_FILE, /* 18 */ - CURLE_FTP_COULDNT_RETR_FILE, /* 19 */ - CURLE_OBSOLETE20, /* 20 - NOT USED */ - CURLE_QUOTE_ERROR, /* 21 - quote command failure */ - CURLE_HTTP_RETURNED_ERROR, /* 22 */ - CURLE_WRITE_ERROR, /* 23 */ - CURLE_OBSOLETE24, /* 24 - NOT USED */ - CURLE_UPLOAD_FAILED, /* 25 - failed upload "command" */ - CURLE_READ_ERROR, /* 26 - couldn't open/read from file */ - CURLE_OUT_OF_MEMORY, /* 27 */ - /* Note: CURLE_OUT_OF_MEMORY may sometimes indicate a conversion error - instead of a memory allocation error if CURL_DOES_CONVERSIONS - is defined - */ - CURLE_OPERATION_TIMEDOUT, /* 28 - the timeout time was reached */ - CURLE_OBSOLETE29, /* 29 - NOT USED */ - CURLE_FTP_PORT_FAILED, /* 30 - FTP PORT operation failed */ - CURLE_FTP_COULDNT_USE_REST, /* 31 - the REST command failed */ - CURLE_OBSOLETE32, /* 32 - NOT USED */ - CURLE_RANGE_ERROR, /* 33 - RANGE "command" didn't work */ - CURLE_HTTP_POST_ERROR, /* 34 */ - CURLE_SSL_CONNECT_ERROR, /* 35 - wrong when connecting with SSL */ - CURLE_BAD_DOWNLOAD_RESUME, /* 36 - couldn't resume download */ - CURLE_FILE_COULDNT_READ_FILE, /* 37 */ - CURLE_LDAP_CANNOT_BIND, /* 38 */ - CURLE_LDAP_SEARCH_FAILED, /* 39 */ - CURLE_OBSOLETE40, /* 40 - NOT USED */ - CURLE_FUNCTION_NOT_FOUND, /* 41 - NOT USED starting with 7.53.0 */ - CURLE_ABORTED_BY_CALLBACK, /* 42 */ - CURLE_BAD_FUNCTION_ARGUMENT, /* 43 */ - CURLE_OBSOLETE44, /* 44 - NOT USED */ - CURLE_INTERFACE_FAILED, /* 45 - CURLOPT_INTERFACE failed */ - CURLE_OBSOLETE46, /* 46 - NOT USED */ - CURLE_TOO_MANY_REDIRECTS, /* 47 - catch endless re-direct loops */ - CURLE_UNKNOWN_OPTION, /* 48 - User specified an unknown option */ - CURLE_TELNET_OPTION_SYNTAX, /* 49 - Malformed telnet option */ - CURLE_OBSOLETE50, /* 50 - NOT USED */ - CURLE_OBSOLETE51, /* 51 - NOT USED */ - CURLE_GOT_NOTHING, /* 52 - when this is a specific error */ - CURLE_SSL_ENGINE_NOTFOUND, /* 53 - SSL crypto engine not found */ - CURLE_SSL_ENGINE_SETFAILED, /* 54 - can not set SSL crypto engine as - default */ - CURLE_SEND_ERROR, /* 55 - failed sending network data */ - CURLE_RECV_ERROR, /* 56 - failure in receiving network data */ - CURLE_OBSOLETE57, /* 57 - NOT IN USE */ - CURLE_SSL_CERTPROBLEM, /* 58 - problem with the local certificate */ - CURLE_SSL_CIPHER, /* 59 - couldn't use specified cipher */ - CURLE_PEER_FAILED_VERIFICATION, /* 60 - peer's certificate or fingerprint - wasn't verified fine */ - CURLE_BAD_CONTENT_ENCODING, /* 61 - Unrecognized/bad encoding */ - CURLE_LDAP_INVALID_URL, /* 62 - Invalid LDAP URL */ - CURLE_FILESIZE_EXCEEDED, /* 63 - Maximum file size exceeded */ - CURLE_USE_SSL_FAILED, /* 64 - Requested FTP SSL level failed */ - CURLE_SEND_FAIL_REWIND, /* 65 - Sending the data requires a rewind - that failed */ - CURLE_SSL_ENGINE_INITFAILED, /* 66 - failed to initialise ENGINE */ - CURLE_LOGIN_DENIED, /* 67 - user, password or similar was not - accepted and we failed to login */ - CURLE_TFTP_NOTFOUND, /* 68 - file not found on server */ - CURLE_TFTP_PERM, /* 69 - permission problem on server */ - CURLE_REMOTE_DISK_FULL, /* 70 - out of disk space on server */ - CURLE_TFTP_ILLEGAL, /* 71 - Illegal TFTP operation */ - CURLE_TFTP_UNKNOWNID, /* 72 - Unknown transfer ID */ - CURLE_REMOTE_FILE_EXISTS, /* 73 - File already exists */ - CURLE_TFTP_NOSUCHUSER, /* 74 - No such user */ - CURLE_CONV_FAILED, /* 75 - conversion failed */ - CURLE_CONV_REQD, /* 76 - caller must register conversion - callbacks using curl_easy_setopt options - CURLOPT_CONV_FROM_NETWORK_FUNCTION, - CURLOPT_CONV_TO_NETWORK_FUNCTION, and - CURLOPT_CONV_FROM_UTF8_FUNCTION */ - CURLE_SSL_CACERT_BADFILE, /* 77 - could not load CACERT file, missing - or wrong format */ - CURLE_REMOTE_FILE_NOT_FOUND, /* 78 - remote file not found */ - CURLE_SSH, /* 79 - error from the SSH layer, somewhat - generic so the error message will be of - interest when this has happened */ - - CURLE_SSL_SHUTDOWN_FAILED, /* 80 - Failed to shut down the SSL - connection */ - CURLE_AGAIN, /* 81 - socket is not ready for send/recv, - wait till it's ready and try again (Added - in 7.18.2) */ - CURLE_SSL_CRL_BADFILE, /* 82 - could not load CRL file, missing or - wrong format (Added in 7.19.0) */ - CURLE_SSL_ISSUER_ERROR, /* 83 - Issuer check failed. (Added in - 7.19.0) */ - CURLE_FTP_PRET_FAILED, /* 84 - a PRET command failed */ - CURLE_RTSP_CSEQ_ERROR, /* 85 - mismatch of RTSP CSeq numbers */ - CURLE_RTSP_SESSION_ERROR, /* 86 - mismatch of RTSP Session Ids */ - CURLE_FTP_BAD_FILE_LIST, /* 87 - unable to parse FTP file list */ - CURLE_CHUNK_FAILED, /* 88 - chunk callback reported error */ - CURLE_NO_CONNECTION_AVAILABLE, /* 89 - No connection available, the - session will be queued */ - CURLE_SSL_PINNEDPUBKEYNOTMATCH, /* 90 - specified pinned public key did not - match */ - CURLE_SSL_INVALIDCERTSTATUS, /* 91 - invalid certificate status */ - CURLE_HTTP2_STREAM, /* 92 - stream error in HTTP/2 framing layer - */ - CURLE_RECURSIVE_API_CALL, /* 93 - an api function was called from - inside a callback */ - CURLE_AUTH_ERROR, /* 94 - an authentication function returned an - error */ - CURLE_HTTP3, /* 95 - An HTTP/3 layer problem */ - CURLE_QUIC_CONNECT_ERROR, /* 96 - QUIC connection error */ - CURL_LAST /* never use! */ -} CURLcode; - -#ifndef CURL_NO_OLDIES /* define this to test if your app builds with all - the obsolete stuff removed! */ - -/* Previously obsolete error code re-used in 7.38.0 */ -#define CURLE_OBSOLETE16 CURLE_HTTP2 - -/* Previously obsolete error codes re-used in 7.24.0 */ -#define CURLE_OBSOLETE10 CURLE_FTP_ACCEPT_FAILED -#define CURLE_OBSOLETE12 CURLE_FTP_ACCEPT_TIMEOUT - -/* compatibility with older names */ -#define CURLOPT_ENCODING CURLOPT_ACCEPT_ENCODING -#define CURLE_FTP_WEIRD_SERVER_REPLY CURLE_WEIRD_SERVER_REPLY - -/* The following were added in 7.62.0 */ -#define CURLE_SSL_CACERT CURLE_PEER_FAILED_VERIFICATION - -/* The following were added in 7.21.5, April 2011 */ -#define CURLE_UNKNOWN_TELNET_OPTION CURLE_UNKNOWN_OPTION - -/* The following were added in 7.17.1 */ -/* These are scheduled to disappear by 2009 */ -#define CURLE_SSL_PEER_CERTIFICATE CURLE_PEER_FAILED_VERIFICATION - -/* The following were added in 7.17.0 */ -/* These are scheduled to disappear by 2009 */ -#define CURLE_OBSOLETE CURLE_OBSOLETE50 /* no one should be using this! */ -#define CURLE_BAD_PASSWORD_ENTERED CURLE_OBSOLETE46 -#define CURLE_BAD_CALLING_ORDER CURLE_OBSOLETE44 -#define CURLE_FTP_USER_PASSWORD_INCORRECT CURLE_OBSOLETE10 -#define CURLE_FTP_CANT_RECONNECT CURLE_OBSOLETE16 -#define CURLE_FTP_COULDNT_GET_SIZE CURLE_OBSOLETE32 -#define CURLE_FTP_COULDNT_SET_ASCII CURLE_OBSOLETE29 -#define CURLE_FTP_WEIRD_USER_REPLY CURLE_OBSOLETE12 -#define CURLE_FTP_WRITE_ERROR CURLE_OBSOLETE20 -#define CURLE_LIBRARY_NOT_FOUND CURLE_OBSOLETE40 -#define CURLE_MALFORMAT_USER CURLE_OBSOLETE24 -#define CURLE_SHARE_IN_USE CURLE_OBSOLETE57 -#define CURLE_URL_MALFORMAT_USER CURLE_NOT_BUILT_IN - -#define CURLE_FTP_ACCESS_DENIED CURLE_REMOTE_ACCESS_DENIED -#define CURLE_FTP_COULDNT_SET_BINARY CURLE_FTP_COULDNT_SET_TYPE -#define CURLE_FTP_QUOTE_ERROR CURLE_QUOTE_ERROR -#define CURLE_TFTP_DISKFULL CURLE_REMOTE_DISK_FULL -#define CURLE_TFTP_EXISTS CURLE_REMOTE_FILE_EXISTS -#define CURLE_HTTP_RANGE_ERROR CURLE_RANGE_ERROR -#define CURLE_FTP_SSL_FAILED CURLE_USE_SSL_FAILED - -/* The following were added earlier */ - -#define CURLE_OPERATION_TIMEOUTED CURLE_OPERATION_TIMEDOUT - -#define CURLE_HTTP_NOT_FOUND CURLE_HTTP_RETURNED_ERROR -#define CURLE_HTTP_PORT_FAILED CURLE_INTERFACE_FAILED -#define CURLE_FTP_COULDNT_STOR_FILE CURLE_UPLOAD_FAILED - -#define CURLE_FTP_PARTIAL_FILE CURLE_PARTIAL_FILE -#define CURLE_FTP_BAD_DOWNLOAD_RESUME CURLE_BAD_DOWNLOAD_RESUME - -/* This was the error code 50 in 7.7.3 and a few earlier versions, this - is no longer used by libcurl but is instead #defined here only to not - make programs break */ -#define CURLE_ALREADY_COMPLETE 99999 - -/* Provide defines for really old option names */ -#define CURLOPT_FILE CURLOPT_WRITEDATA /* name changed in 7.9.7 */ -#define CURLOPT_INFILE CURLOPT_READDATA /* name changed in 7.9.7 */ -#define CURLOPT_WRITEHEADER CURLOPT_HEADERDATA - -/* Since long deprecated options with no code in the lib that does anything - with them. */ -#define CURLOPT_WRITEINFO CURLOPT_OBSOLETE40 -#define CURLOPT_CLOSEPOLICY CURLOPT_OBSOLETE72 - -#endif /*!CURL_NO_OLDIES*/ - -/* This prototype applies to all conversion callbacks */ -typedef CURLcode (*curl_conv_callback)(char *buffer, size_t length); - -typedef CURLcode (*curl_ssl_ctx_callback)(CURL *curl, /* easy handle */ - void *ssl_ctx, /* actually an OpenSSL - or WolfSSL SSL_CTX, - or an mbedTLS - mbedtls_ssl_config */ - void *userptr); - -typedef enum { - CURLPROXY_HTTP = 0, /* added in 7.10, new in 7.19.4 default is to use - CONNECT HTTP/1.1 */ - CURLPROXY_HTTP_1_0 = 1, /* added in 7.19.4, force to use CONNECT - HTTP/1.0 */ - CURLPROXY_HTTPS = 2, /* added in 7.52.0 */ - CURLPROXY_SOCKS4 = 4, /* support added in 7.15.2, enum existed already - in 7.10 */ - CURLPROXY_SOCKS5 = 5, /* added in 7.10 */ - CURLPROXY_SOCKS4A = 6, /* added in 7.18.0 */ - CURLPROXY_SOCKS5_HOSTNAME = 7 /* Use the SOCKS5 protocol but pass along the - host name rather than the IP address. added - in 7.18.0 */ -} curl_proxytype; /* this enum was added in 7.10 */ - -/* - * Bitmasks for CURLOPT_HTTPAUTH and CURLOPT_PROXYAUTH options: - * - * CURLAUTH_NONE - No HTTP authentication - * CURLAUTH_BASIC - HTTP Basic authentication (default) - * CURLAUTH_DIGEST - HTTP Digest authentication - * CURLAUTH_NEGOTIATE - HTTP Negotiate (SPNEGO) authentication - * CURLAUTH_GSSNEGOTIATE - Alias for CURLAUTH_NEGOTIATE (deprecated) - * CURLAUTH_NTLM - HTTP NTLM authentication - * CURLAUTH_DIGEST_IE - HTTP Digest authentication with IE flavour - * CURLAUTH_NTLM_WB - HTTP NTLM authentication delegated to winbind helper - * CURLAUTH_BEARER - HTTP Bearer token authentication - * CURLAUTH_ONLY - Use together with a single other type to force no - * authentication or just that single type - * CURLAUTH_ANY - All fine types set - * CURLAUTH_ANYSAFE - All fine types except Basic - */ - -#define CURLAUTH_NONE ((unsigned long)0) -#define CURLAUTH_BASIC (((unsigned long)1)<<0) -#define CURLAUTH_DIGEST (((unsigned long)1)<<1) -#define CURLAUTH_NEGOTIATE (((unsigned long)1)<<2) -/* Deprecated since the advent of CURLAUTH_NEGOTIATE */ -#define CURLAUTH_GSSNEGOTIATE CURLAUTH_NEGOTIATE -/* Used for CURLOPT_SOCKS5_AUTH to stay terminologically correct */ -#define CURLAUTH_GSSAPI CURLAUTH_NEGOTIATE -#define CURLAUTH_NTLM (((unsigned long)1)<<3) -#define CURLAUTH_DIGEST_IE (((unsigned long)1)<<4) -#define CURLAUTH_NTLM_WB (((unsigned long)1)<<5) -#define CURLAUTH_BEARER (((unsigned long)1)<<6) -#define CURLAUTH_ONLY (((unsigned long)1)<<31) -#define CURLAUTH_ANY (~CURLAUTH_DIGEST_IE) -#define CURLAUTH_ANYSAFE (~(CURLAUTH_BASIC|CURLAUTH_DIGEST_IE)) - -#define CURLSSH_AUTH_ANY ~0 /* all types supported by the server */ -#define CURLSSH_AUTH_NONE 0 /* none allowed, silly but complete */ -#define CURLSSH_AUTH_PUBLICKEY (1<<0) /* public/private key files */ -#define CURLSSH_AUTH_PASSWORD (1<<1) /* password */ -#define CURLSSH_AUTH_HOST (1<<2) /* host key files */ -#define CURLSSH_AUTH_KEYBOARD (1<<3) /* keyboard interactive */ -#define CURLSSH_AUTH_AGENT (1<<4) /* agent (ssh-agent, pageant...) */ -#define CURLSSH_AUTH_GSSAPI (1<<5) /* gssapi (kerberos, ...) */ -#define CURLSSH_AUTH_DEFAULT CURLSSH_AUTH_ANY - -#define CURLGSSAPI_DELEGATION_NONE 0 /* no delegation (default) */ -#define CURLGSSAPI_DELEGATION_POLICY_FLAG (1<<0) /* if permitted by policy */ -#define CURLGSSAPI_DELEGATION_FLAG (1<<1) /* delegate always */ - -#define CURL_ERROR_SIZE 256 - -enum curl_khtype { - CURLKHTYPE_UNKNOWN, - CURLKHTYPE_RSA1, - CURLKHTYPE_RSA, - CURLKHTYPE_DSS, - CURLKHTYPE_ECDSA, - CURLKHTYPE_ED25519 -}; - -struct curl_khkey { - const char *key; /* points to a null-terminated string encoded with base64 - if len is zero, otherwise to the "raw" data */ - size_t len; - enum curl_khtype keytype; -}; - -/* this is the set of return values expected from the curl_sshkeycallback - callback */ -enum curl_khstat { - CURLKHSTAT_FINE_ADD_TO_FILE, - CURLKHSTAT_FINE, - CURLKHSTAT_REJECT, /* reject the connection, return an error */ - CURLKHSTAT_DEFER, /* do not accept it, but we can't answer right now so - this causes a CURLE_DEFER error but otherwise the - connection will be left intact etc */ - CURLKHSTAT_LAST /* not for use, only a marker for last-in-list */ -}; - -/* this is the set of status codes pass in to the callback */ -enum curl_khmatch { - CURLKHMATCH_OK, /* match */ - CURLKHMATCH_MISMATCH, /* host found, key mismatch! */ - CURLKHMATCH_MISSING, /* no matching host/key found */ - CURLKHMATCH_LAST /* not for use, only a marker for last-in-list */ -}; - -typedef int - (*curl_sshkeycallback) (CURL *easy, /* easy handle */ - const struct curl_khkey *knownkey, /* known */ - const struct curl_khkey *foundkey, /* found */ - enum curl_khmatch, /* libcurl's view on the keys */ - void *clientp); /* custom pointer passed from app */ - -/* parameter for the CURLOPT_USE_SSL option */ -typedef enum { - CURLUSESSL_NONE, /* do not attempt to use SSL */ - CURLUSESSL_TRY, /* try using SSL, proceed anyway otherwise */ - CURLUSESSL_CONTROL, /* SSL for the control connection or fail */ - CURLUSESSL_ALL, /* SSL for all communication or fail */ - CURLUSESSL_LAST /* not an option, never use */ -} curl_usessl; - -/* Definition of bits for the CURLOPT_SSL_OPTIONS argument: */ - -/* - ALLOW_BEAST tells libcurl to allow the BEAST SSL vulnerability in the - name of improving interoperability with older servers. Some SSL libraries - have introduced work-arounds for this flaw but those work-arounds sometimes - make the SSL communication fail. To regain functionality with those broken - servers, a user can this way allow the vulnerability back. */ -#define CURLSSLOPT_ALLOW_BEAST (1<<0) - -/* - NO_REVOKE tells libcurl to disable certificate revocation checks for those - SSL backends where such behavior is present. */ -#define CURLSSLOPT_NO_REVOKE (1<<1) - -/* - NO_PARTIALCHAIN tells libcurl to *NOT* accept a partial certificate chain - if possible. The OpenSSL backend has this ability. */ -#define CURLSSLOPT_NO_PARTIALCHAIN (1<<2) - -/* - REVOKE_BEST_EFFORT tells libcurl to ignore certificate revocation offline - checks and ignore missing revocation list for those SSL backends where such - behavior is present. */ -#define CURLSSLOPT_REVOKE_BEST_EFFORT (1<<3) - -/* - CURLSSLOPT_NATIVE_CA tells libcurl to use standard certificate store of - operating system. Currently implemented under MS-Windows. */ -#define CURLSSLOPT_NATIVE_CA (1<<4) - -/* The default connection attempt delay in milliseconds for happy eyeballs. - CURLOPT_HAPPY_EYEBALLS_TIMEOUT_MS.3 and happy-eyeballs-timeout-ms.d document - this value, keep them in sync. */ -#define CURL_HET_DEFAULT 200L - -/* The default connection upkeep interval in milliseconds. */ -#define CURL_UPKEEP_INTERVAL_DEFAULT 60000L - -#ifndef CURL_NO_OLDIES /* define this to test if your app builds with all - the obsolete stuff removed! */ - -/* Backwards compatibility with older names */ -/* These are scheduled to disappear by 2009 */ - -#define CURLFTPSSL_NONE CURLUSESSL_NONE -#define CURLFTPSSL_TRY CURLUSESSL_TRY -#define CURLFTPSSL_CONTROL CURLUSESSL_CONTROL -#define CURLFTPSSL_ALL CURLUSESSL_ALL -#define CURLFTPSSL_LAST CURLUSESSL_LAST -#define curl_ftpssl curl_usessl -#endif /*!CURL_NO_OLDIES*/ - -/* parameter for the CURLOPT_FTP_SSL_CCC option */ -typedef enum { - CURLFTPSSL_CCC_NONE, /* do not send CCC */ - CURLFTPSSL_CCC_PASSIVE, /* Let the server initiate the shutdown */ - CURLFTPSSL_CCC_ACTIVE, /* Initiate the shutdown */ - CURLFTPSSL_CCC_LAST /* not an option, never use */ -} curl_ftpccc; - -/* parameter for the CURLOPT_FTPSSLAUTH option */ -typedef enum { - CURLFTPAUTH_DEFAULT, /* let libcurl decide */ - CURLFTPAUTH_SSL, /* use "AUTH SSL" */ - CURLFTPAUTH_TLS, /* use "AUTH TLS" */ - CURLFTPAUTH_LAST /* not an option, never use */ -} curl_ftpauth; - -/* parameter for the CURLOPT_FTP_CREATE_MISSING_DIRS option */ -typedef enum { - CURLFTP_CREATE_DIR_NONE, /* do NOT create missing dirs! */ - CURLFTP_CREATE_DIR, /* (FTP/SFTP) if CWD fails, try MKD and then CWD - again if MKD succeeded, for SFTP this does - similar magic */ - CURLFTP_CREATE_DIR_RETRY, /* (FTP only) if CWD fails, try MKD and then CWD - again even if MKD failed! */ - CURLFTP_CREATE_DIR_LAST /* not an option, never use */ -} curl_ftpcreatedir; - -/* parameter for the CURLOPT_FTP_FILEMETHOD option */ -typedef enum { - CURLFTPMETHOD_DEFAULT, /* let libcurl pick */ - CURLFTPMETHOD_MULTICWD, /* single CWD operation for each path part */ - CURLFTPMETHOD_NOCWD, /* no CWD at all */ - CURLFTPMETHOD_SINGLECWD, /* one CWD to full dir, then work on file */ - CURLFTPMETHOD_LAST /* not an option, never use */ -} curl_ftpmethod; - -/* bitmask defines for CURLOPT_HEADEROPT */ -#define CURLHEADER_UNIFIED 0 -#define CURLHEADER_SEPARATE (1<<0) - -/* CURLALTSVC_* are bits for the CURLOPT_ALTSVC_CTRL option */ -#define CURLALTSVC_IMMEDIATELY (1<<0) - -#define CURLALTSVC_READONLYFILE (1<<2) -#define CURLALTSVC_H1 (1<<3) -#define CURLALTSVC_H2 (1<<4) -#define CURLALTSVC_H3 (1<<5) - -/* CURLPROTO_ defines are for the CURLOPT_*PROTOCOLS options */ -#define CURLPROTO_HTTP (1<<0) -#define CURLPROTO_HTTPS (1<<1) -#define CURLPROTO_FTP (1<<2) -#define CURLPROTO_FTPS (1<<3) -#define CURLPROTO_SCP (1<<4) -#define CURLPROTO_SFTP (1<<5) -#define CURLPROTO_TELNET (1<<6) -#define CURLPROTO_LDAP (1<<7) -#define CURLPROTO_LDAPS (1<<8) -#define CURLPROTO_DICT (1<<9) -#define CURLPROTO_FILE (1<<10) -#define CURLPROTO_TFTP (1<<11) -#define CURLPROTO_IMAP (1<<12) -#define CURLPROTO_IMAPS (1<<13) -#define CURLPROTO_POP3 (1<<14) -#define CURLPROTO_POP3S (1<<15) -#define CURLPROTO_SMTP (1<<16) -#define CURLPROTO_SMTPS (1<<17) -#define CURLPROTO_RTSP (1<<18) -#define CURLPROTO_RTMP (1<<19) -#define CURLPROTO_RTMPT (1<<20) -#define CURLPROTO_RTMPE (1<<21) -#define CURLPROTO_RTMPTE (1<<22) -#define CURLPROTO_RTMPS (1<<23) -#define CURLPROTO_RTMPTS (1<<24) -#define CURLPROTO_GOPHER (1<<25) -#define CURLPROTO_SMB (1<<26) -#define CURLPROTO_SMBS (1<<27) -#define CURLPROTO_MQTT (1<<28) -#define CURLPROTO_ALL (~0) /* enable everything */ - -/* long may be 32 or 64 bits, but we should never depend on anything else - but 32 */ -#define CURLOPTTYPE_LONG 0 -#define CURLOPTTYPE_OBJECTPOINT 10000 -#define CURLOPTTYPE_FUNCTIONPOINT 20000 -#define CURLOPTTYPE_OFF_T 30000 -#define CURLOPTTYPE_BLOB 40000 - -/* *STRINGPOINT is an alias for OBJECTPOINT to allow tools to extract the - string options from the header file */ - - -#define CURLOPT(na,t,nu) na = t + nu - -/* handy aliases that make no run-time difference */ -#define CURLOPTTYPE_STRINGPOINT CURLOPTTYPE_OBJECTPOINT -#define CURLOPTTYPE_SLISTPOINT CURLOPTTYPE_OBJECTPOINT - -/* - * All CURLOPT_* values. - */ - -typedef enum { - /* This is the FILE * or void * the regular output should be written to. */ - CURLOPT(CURLOPT_WRITEDATA, CURLOPTTYPE_OBJECTPOINT, 1), - - /* The full URL to get/put */ - CURLOPT(CURLOPT_URL, CURLOPTTYPE_STRINGPOINT, 2), - - /* Port number to connect to, if other than default. */ - CURLOPT(CURLOPT_PORT, CURLOPTTYPE_LONG, 3), - - /* Name of proxy to use. */ - CURLOPT(CURLOPT_PROXY, CURLOPTTYPE_STRINGPOINT, 4), - - /* "user:password;options" to use when fetching. */ - CURLOPT(CURLOPT_USERPWD, CURLOPTTYPE_STRINGPOINT, 5), - - /* "user:password" to use with proxy. */ - CURLOPT(CURLOPT_PROXYUSERPWD, CURLOPTTYPE_STRINGPOINT, 6), - - /* Range to get, specified as an ASCII string. */ - CURLOPT(CURLOPT_RANGE, CURLOPTTYPE_STRINGPOINT, 7), - - /* not used */ - - /* Specified file stream to upload from (use as input): */ - CURLOPT(CURLOPT_READDATA, CURLOPTTYPE_OBJECTPOINT, 9), - - /* Buffer to receive error messages in, must be at least CURL_ERROR_SIZE - * bytes big. */ - CURLOPT(CURLOPT_ERRORBUFFER, CURLOPTTYPE_OBJECTPOINT, 10), - - /* Function that will be called to store the output (instead of fwrite). The - * parameters will use fwrite() syntax, make sure to follow them. */ - CURLOPT(CURLOPT_WRITEFUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 11), - - /* Function that will be called to read the input (instead of fread). The - * parameters will use fread() syntax, make sure to follow them. */ - CURLOPT(CURLOPT_READFUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 12), - - /* Time-out the read operation after this amount of seconds */ - CURLOPT(CURLOPT_TIMEOUT, CURLOPTTYPE_LONG, 13), - - /* If the CURLOPT_INFILE is used, this can be used to inform libcurl about - * how large the file being sent really is. That allows better error - * checking and better verifies that the upload was successful. -1 means - * unknown size. - * - * For large file support, there is also a _LARGE version of the key - * which takes an off_t type, allowing platforms with larger off_t - * sizes to handle larger files. See below for INFILESIZE_LARGE. - */ - CURLOPT(CURLOPT_INFILESIZE, CURLOPTTYPE_LONG, 14), - - /* POST static input fields. */ - CURLOPT(CURLOPT_POSTFIELDS, CURLOPTTYPE_OBJECTPOINT, 15), - - /* Set the referrer page (needed by some CGIs) */ - CURLOPT(CURLOPT_REFERER, CURLOPTTYPE_STRINGPOINT, 16), - - /* Set the FTP PORT string (interface name, named or numerical IP address) - Use i.e '-' to use default address. */ - CURLOPT(CURLOPT_FTPPORT, CURLOPTTYPE_STRINGPOINT, 17), - - /* Set the User-Agent string (examined by some CGIs) */ - CURLOPT(CURLOPT_USERAGENT, CURLOPTTYPE_STRINGPOINT, 18), - - /* If the download receives less than "low speed limit" bytes/second - * during "low speed time" seconds, the operations is aborted. - * You could i.e if you have a pretty high speed connection, abort if - * it is less than 2000 bytes/sec during 20 seconds. - */ - - /* Set the "low speed limit" */ - CURLOPT(CURLOPT_LOW_SPEED_LIMIT, CURLOPTTYPE_LONG, 19), - - /* Set the "low speed time" */ - CURLOPT(CURLOPT_LOW_SPEED_TIME, CURLOPTTYPE_LONG, 20), - - /* Set the continuation offset. - * - * Note there is also a _LARGE version of this key which uses - * off_t types, allowing for large file offsets on platforms which - * use larger-than-32-bit off_t's. Look below for RESUME_FROM_LARGE. - */ - CURLOPT(CURLOPT_RESUME_FROM, CURLOPTTYPE_LONG, 21), - - /* Set cookie in request: */ - CURLOPT(CURLOPT_COOKIE, CURLOPTTYPE_STRINGPOINT, 22), - - /* This points to a linked list of headers, struct curl_slist kind. This - list is also used for RTSP (in spite of its name) */ - CURLOPT(CURLOPT_HTTPHEADER, CURLOPTTYPE_SLISTPOINT, 23), - - /* This points to a linked list of post entries, struct curl_httppost */ - CURLOPT(CURLOPT_HTTPPOST, CURLOPTTYPE_OBJECTPOINT, 24), - - /* name of the file keeping your private SSL-certificate */ - CURLOPT(CURLOPT_SSLCERT, CURLOPTTYPE_STRINGPOINT, 25), - - /* password for the SSL or SSH private key */ - CURLOPT(CURLOPT_KEYPASSWD, CURLOPTTYPE_STRINGPOINT, 26), - - /* send TYPE parameter? */ - CURLOPT(CURLOPT_CRLF, CURLOPTTYPE_LONG, 27), - - /* send linked-list of QUOTE commands */ - CURLOPT(CURLOPT_QUOTE, CURLOPTTYPE_SLISTPOINT, 28), - - /* send FILE * or void * to store headers to, if you use a callback it - is simply passed to the callback unmodified */ - CURLOPT(CURLOPT_HEADERDATA, CURLOPTTYPE_OBJECTPOINT, 29), - - /* point to a file to read the initial cookies from, also enables - "cookie awareness" */ - CURLOPT(CURLOPT_COOKIEFILE, CURLOPTTYPE_STRINGPOINT, 31), - - /* What version to specifically try to use. - See CURL_SSLVERSION defines below. */ - CURLOPT(CURLOPT_SSLVERSION, CURLOPTTYPE_LONG, 32), - - /* What kind of HTTP time condition to use, see defines */ - CURLOPT(CURLOPT_TIMECONDITION, CURLOPTTYPE_LONG, 33), - - /* Time to use with the above condition. Specified in number of seconds - since 1 Jan 1970 */ - CURLOPT(CURLOPT_TIMEVALUE, CURLOPTTYPE_LONG, 34), - - /* 35 = OBSOLETE */ - - /* Custom request, for customizing the get command like - HTTP: DELETE, TRACE and others - FTP: to use a different list command - */ - CURLOPT(CURLOPT_CUSTOMREQUEST, CURLOPTTYPE_STRINGPOINT, 36), - - /* FILE handle to use instead of stderr */ - CURLOPT(CURLOPT_STDERR, CURLOPTTYPE_OBJECTPOINT, 37), - - /* 38 is not used */ - - /* send linked-list of post-transfer QUOTE commands */ - CURLOPT(CURLOPT_POSTQUOTE, CURLOPTTYPE_SLISTPOINT, 39), - - /* OBSOLETE, do not use! */ - CURLOPT(CURLOPT_OBSOLETE40, CURLOPTTYPE_OBJECTPOINT, 40), - - /* talk a lot */ - CURLOPT(CURLOPT_VERBOSE, CURLOPTTYPE_LONG, 41), - - /* throw the header out too */ - CURLOPT(CURLOPT_HEADER, CURLOPTTYPE_LONG, 42), - - /* shut off the progress meter */ - CURLOPT(CURLOPT_NOPROGRESS, CURLOPTTYPE_LONG, 43), - - /* use HEAD to get http document */ - CURLOPT(CURLOPT_NOBODY, CURLOPTTYPE_LONG, 44), - - /* no output on http error codes >= 400 */ - CURLOPT(CURLOPT_FAILONERROR, CURLOPTTYPE_LONG, 45), - - /* this is an upload */ - CURLOPT(CURLOPT_UPLOAD, CURLOPTTYPE_LONG, 46), - - /* HTTP POST method */ - CURLOPT(CURLOPT_POST, CURLOPTTYPE_LONG, 47), - - /* bare names when listing directories */ - CURLOPT(CURLOPT_DIRLISTONLY, CURLOPTTYPE_LONG, 48), - - /* Append instead of overwrite on upload! */ - CURLOPT(CURLOPT_APPEND, CURLOPTTYPE_LONG, 50), - - /* Specify whether to read the user+password from the .netrc or the URL. - * This must be one of the CURL_NETRC_* enums below. */ - CURLOPT(CURLOPT_NETRC, CURLOPTTYPE_LONG, 51), - - /* use Location: Luke! */ - CURLOPT(CURLOPT_FOLLOWLOCATION, CURLOPTTYPE_LONG, 52), - - /* transfer data in text/ASCII format */ - CURLOPT(CURLOPT_TRANSFERTEXT, CURLOPTTYPE_LONG, 53), - - /* HTTP PUT */ - CURLOPT(CURLOPT_PUT, CURLOPTTYPE_LONG, 54), - - /* 55 = OBSOLETE */ - - /* DEPRECATED - * Function that will be called instead of the internal progress display - * function. This function should be defined as the curl_progress_callback - * prototype defines. */ - CURLOPT(CURLOPT_PROGRESSFUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 56), - - /* Data passed to the CURLOPT_PROGRESSFUNCTION and CURLOPT_XFERINFOFUNCTION - callbacks */ - CURLOPT(CURLOPT_PROGRESSDATA, CURLOPTTYPE_OBJECTPOINT, 57), -#define CURLOPT_XFERINFODATA CURLOPT_PROGRESSDATA - - /* We want the referrer field set automatically when following locations */ - CURLOPT(CURLOPT_AUTOREFERER, CURLOPTTYPE_LONG, 58), - - /* Port of the proxy, can be set in the proxy string as well with: - "[host]:[port]" */ - CURLOPT(CURLOPT_PROXYPORT, CURLOPTTYPE_LONG, 59), - - /* size of the POST input data, if strlen() is not good to use */ - CURLOPT(CURLOPT_POSTFIELDSIZE, CURLOPTTYPE_LONG, 60), - - /* tunnel non-http operations through a HTTP proxy */ - CURLOPT(CURLOPT_HTTPPROXYTUNNEL, CURLOPTTYPE_LONG, 61), - - /* Set the interface string to use as outgoing network interface */ - CURLOPT(CURLOPT_INTERFACE, CURLOPTTYPE_STRINGPOINT, 62), - - /* Set the krb4/5 security level, this also enables krb4/5 awareness. This - * is a string, 'clear', 'safe', 'confidential' or 'private'. If the string - * is set but doesn't match one of these, 'private' will be used. */ - CURLOPT(CURLOPT_KRBLEVEL, CURLOPTTYPE_STRINGPOINT, 63), - - /* Set if we should verify the peer in ssl handshake, set 1 to verify. */ - CURLOPT(CURLOPT_SSL_VERIFYPEER, CURLOPTTYPE_LONG, 64), - - /* The CApath or CAfile used to validate the peer certificate - this option is used only if SSL_VERIFYPEER is true */ - CURLOPT(CURLOPT_CAINFO, CURLOPTTYPE_STRINGPOINT, 65), - - /* 66 = OBSOLETE */ - /* 67 = OBSOLETE */ - - /* Maximum number of http redirects to follow */ - CURLOPT(CURLOPT_MAXREDIRS, CURLOPTTYPE_LONG, 68), - - /* Pass a long set to 1 to get the date of the requested document (if - possible)! Pass a zero to shut it off. */ - CURLOPT(CURLOPT_FILETIME, CURLOPTTYPE_LONG, 69), - - /* This points to a linked list of telnet options */ - CURLOPT(CURLOPT_TELNETOPTIONS, CURLOPTTYPE_SLISTPOINT, 70), - - /* Max amount of cached alive connections */ - CURLOPT(CURLOPT_MAXCONNECTS, CURLOPTTYPE_LONG, 71), - - /* OBSOLETE, do not use! */ - CURLOPT(CURLOPT_OBSOLETE72, CURLOPTTYPE_LONG, 72), - - /* 73 = OBSOLETE */ - - /* Set to explicitly use a new connection for the upcoming transfer. - Do not use this unless you're absolutely sure of this, as it makes the - operation slower and is less friendly for the network. */ - CURLOPT(CURLOPT_FRESH_CONNECT, CURLOPTTYPE_LONG, 74), - - /* Set to explicitly forbid the upcoming transfer's connection to be re-used - when done. Do not use this unless you're absolutely sure of this, as it - makes the operation slower and is less friendly for the network. */ - CURLOPT(CURLOPT_FORBID_REUSE, CURLOPTTYPE_LONG, 75), - - /* Set to a file name that contains random data for libcurl to use to - seed the random engine when doing SSL connects. */ - CURLOPT(CURLOPT_RANDOM_FILE, CURLOPTTYPE_STRINGPOINT, 76), - - /* Set to the Entropy Gathering Daemon socket pathname */ - CURLOPT(CURLOPT_EGDSOCKET, CURLOPTTYPE_STRINGPOINT, 77), - - /* Time-out connect operations after this amount of seconds, if connects are - OK within this time, then fine... This only aborts the connect phase. */ - CURLOPT(CURLOPT_CONNECTTIMEOUT, CURLOPTTYPE_LONG, 78), - - /* Function that will be called to store headers (instead of fwrite). The - * parameters will use fwrite() syntax, make sure to follow them. */ - CURLOPT(CURLOPT_HEADERFUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 79), - - /* Set this to force the HTTP request to get back to GET. Only really usable - if POST, PUT or a custom request have been used first. - */ - CURLOPT(CURLOPT_HTTPGET, CURLOPTTYPE_LONG, 80), - - /* Set if we should verify the Common name from the peer certificate in ssl - * handshake, set 1 to check existence, 2 to ensure that it matches the - * provided hostname. */ - CURLOPT(CURLOPT_SSL_VERIFYHOST, CURLOPTTYPE_LONG, 81), - - /* Specify which file name to write all known cookies in after completed - operation. Set file name to "-" (dash) to make it go to stdout. */ - CURLOPT(CURLOPT_COOKIEJAR, CURLOPTTYPE_STRINGPOINT, 82), - - /* Specify which SSL ciphers to use */ - CURLOPT(CURLOPT_SSL_CIPHER_LIST, CURLOPTTYPE_STRINGPOINT, 83), - - /* Specify which HTTP version to use! This must be set to one of the - CURL_HTTP_VERSION* enums set below. */ - CURLOPT(CURLOPT_HTTP_VERSION, CURLOPTTYPE_LONG, 84), - - /* Specifically switch on or off the FTP engine's use of the EPSV command. By - default, that one will always be attempted before the more traditional - PASV command. */ - CURLOPT(CURLOPT_FTP_USE_EPSV, CURLOPTTYPE_LONG, 85), - - /* type of the file keeping your SSL-certificate ("DER", "PEM", "ENG") */ - CURLOPT(CURLOPT_SSLCERTTYPE, CURLOPTTYPE_STRINGPOINT, 86), - - /* name of the file keeping your private SSL-key */ - CURLOPT(CURLOPT_SSLKEY, CURLOPTTYPE_STRINGPOINT, 87), - - /* type of the file keeping your private SSL-key ("DER", "PEM", "ENG") */ - CURLOPT(CURLOPT_SSLKEYTYPE, CURLOPTTYPE_STRINGPOINT, 88), - - /* crypto engine for the SSL-sub system */ - CURLOPT(CURLOPT_SSLENGINE, CURLOPTTYPE_STRINGPOINT, 89), - - /* set the crypto engine for the SSL-sub system as default - the param has no meaning... - */ - CURLOPT(CURLOPT_SSLENGINE_DEFAULT, CURLOPTTYPE_LONG, 90), - - /* Non-zero value means to use the global dns cache */ - /* DEPRECATED, do not use! */ - CURLOPT(CURLOPT_DNS_USE_GLOBAL_CACHE, CURLOPTTYPE_LONG, 91), - - /* DNS cache timeout */ - CURLOPT(CURLOPT_DNS_CACHE_TIMEOUT, CURLOPTTYPE_LONG, 92), - - /* send linked-list of pre-transfer QUOTE commands */ - CURLOPT(CURLOPT_PREQUOTE, CURLOPTTYPE_SLISTPOINT, 93), - - /* set the debug function */ - CURLOPT(CURLOPT_DEBUGFUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 94), - - /* set the data for the debug function */ - CURLOPT(CURLOPT_DEBUGDATA, CURLOPTTYPE_OBJECTPOINT, 95), - - /* mark this as start of a cookie session */ - CURLOPT(CURLOPT_COOKIESESSION, CURLOPTTYPE_LONG, 96), - - /* The CApath directory used to validate the peer certificate - this option is used only if SSL_VERIFYPEER is true */ - CURLOPT(CURLOPT_CAPATH, CURLOPTTYPE_STRINGPOINT, 97), - - /* Instruct libcurl to use a smaller receive buffer */ - CURLOPT(CURLOPT_BUFFERSIZE, CURLOPTTYPE_LONG, 98), - - /* Instruct libcurl to not use any signal/alarm handlers, even when using - timeouts. This option is useful for multi-threaded applications. - See libcurl-the-guide for more background information. */ - CURLOPT(CURLOPT_NOSIGNAL, CURLOPTTYPE_LONG, 99), - - /* Provide a CURLShare for mutexing non-ts data */ - CURLOPT(CURLOPT_SHARE, CURLOPTTYPE_OBJECTPOINT, 100), - - /* indicates type of proxy. accepted values are CURLPROXY_HTTP (default), - CURLPROXY_HTTPS, CURLPROXY_SOCKS4, CURLPROXY_SOCKS4A and - CURLPROXY_SOCKS5. */ - CURLOPT(CURLOPT_PROXYTYPE, CURLOPTTYPE_LONG, 101), - - /* Set the Accept-Encoding string. Use this to tell a server you would like - the response to be compressed. Before 7.21.6, this was known as - CURLOPT_ENCODING */ - CURLOPT(CURLOPT_ACCEPT_ENCODING, CURLOPTTYPE_STRINGPOINT, 102), - - /* Set pointer to private data */ - CURLOPT(CURLOPT_PRIVATE, CURLOPTTYPE_OBJECTPOINT, 103), - - /* Set aliases for HTTP 200 in the HTTP Response header */ - CURLOPT(CURLOPT_HTTP200ALIASES, CURLOPTTYPE_SLISTPOINT, 104), - - /* Continue to send authentication (user+password) when following locations, - even when hostname changed. This can potentially send off the name - and password to whatever host the server decides. */ - CURLOPT(CURLOPT_UNRESTRICTED_AUTH, CURLOPTTYPE_LONG, 105), - - /* Specifically switch on or off the FTP engine's use of the EPRT command ( - it also disables the LPRT attempt). By default, those ones will always be - attempted before the good old traditional PORT command. */ - CURLOPT(CURLOPT_FTP_USE_EPRT, CURLOPTTYPE_LONG, 106), - - /* Set this to a bitmask value to enable the particular authentications - methods you like. Use this in combination with CURLOPT_USERPWD. - Note that setting multiple bits may cause extra network round-trips. */ - CURLOPT(CURLOPT_HTTPAUTH, CURLOPTTYPE_LONG, 107), - - /* Set the ssl context callback function, currently only for OpenSSL or - WolfSSL ssl_ctx, or mbedTLS mbedtls_ssl_config in the second argument. - The function must match the curl_ssl_ctx_callback prototype. */ - CURLOPT(CURLOPT_SSL_CTX_FUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 108), - - /* Set the userdata for the ssl context callback function's third - argument */ - CURLOPT(CURLOPT_SSL_CTX_DATA, CURLOPTTYPE_OBJECTPOINT, 109), - - /* FTP Option that causes missing dirs to be created on the remote server. - In 7.19.4 we introduced the convenience enums for this option using the - CURLFTP_CREATE_DIR prefix. - */ - CURLOPT(CURLOPT_FTP_CREATE_MISSING_DIRS, CURLOPTTYPE_LONG, 110), - - /* Set this to a bitmask value to enable the particular authentications - methods you like. Use this in combination with CURLOPT_PROXYUSERPWD. - Note that setting multiple bits may cause extra network round-trips. */ - CURLOPT(CURLOPT_PROXYAUTH, CURLOPTTYPE_LONG, 111), - - /* FTP option that changes the timeout, in seconds, associated with - getting a response. This is different from transfer timeout time and - essentially places a demand on the FTP server to acknowledge commands - in a timely manner. */ - CURLOPT(CURLOPT_FTP_RESPONSE_TIMEOUT, CURLOPTTYPE_LONG, 112), -#define CURLOPT_SERVER_RESPONSE_TIMEOUT CURLOPT_FTP_RESPONSE_TIMEOUT - - /* Set this option to one of the CURL_IPRESOLVE_* defines (see below) to - tell libcurl to resolve names to those IP versions only. This only has - affect on systems with support for more than one, i.e IPv4 _and_ IPv6. */ - CURLOPT(CURLOPT_IPRESOLVE, CURLOPTTYPE_LONG, 113), - - /* Set this option to limit the size of a file that will be downloaded from - an HTTP or FTP server. - - Note there is also _LARGE version which adds large file support for - platforms which have larger off_t sizes. See MAXFILESIZE_LARGE below. */ - CURLOPT(CURLOPT_MAXFILESIZE, CURLOPTTYPE_LONG, 114), - - /* See the comment for INFILESIZE above, but in short, specifies - * the size of the file being uploaded. -1 means unknown. - */ - CURLOPT(CURLOPT_INFILESIZE_LARGE, CURLOPTTYPE_OFF_T, 115), - - /* Sets the continuation offset. There is also a CURLOPTTYPE_LONG version - * of this; look above for RESUME_FROM. - */ - CURLOPT(CURLOPT_RESUME_FROM_LARGE, CURLOPTTYPE_OFF_T, 116), - - /* Sets the maximum size of data that will be downloaded from - * an HTTP or FTP server. See MAXFILESIZE above for the LONG version. - */ - CURLOPT(CURLOPT_MAXFILESIZE_LARGE, CURLOPTTYPE_OFF_T, 117), - - /* Set this option to the file name of your .netrc file you want libcurl - to parse (using the CURLOPT_NETRC option). If not set, libcurl will do - a poor attempt to find the user's home directory and check for a .netrc - file in there. */ - CURLOPT(CURLOPT_NETRC_FILE, CURLOPTTYPE_STRINGPOINT, 118), - - /* Enable SSL/TLS for FTP, pick one of: - CURLUSESSL_TRY - try using SSL, proceed anyway otherwise - CURLUSESSL_CONTROL - SSL for the control connection or fail - CURLUSESSL_ALL - SSL for all communication or fail - */ - CURLOPT(CURLOPT_USE_SSL, CURLOPTTYPE_LONG, 119), - - /* The _LARGE version of the standard POSTFIELDSIZE option */ - CURLOPT(CURLOPT_POSTFIELDSIZE_LARGE, CURLOPTTYPE_OFF_T, 120), - - /* Enable/disable the TCP Nagle algorithm */ - CURLOPT(CURLOPT_TCP_NODELAY, CURLOPTTYPE_LONG, 121), - - /* 122 OBSOLETE, used in 7.12.3. Gone in 7.13.0 */ - /* 123 OBSOLETE. Gone in 7.16.0 */ - /* 124 OBSOLETE, used in 7.12.3. Gone in 7.13.0 */ - /* 125 OBSOLETE, used in 7.12.3. Gone in 7.13.0 */ - /* 126 OBSOLETE, used in 7.12.3. Gone in 7.13.0 */ - /* 127 OBSOLETE. Gone in 7.16.0 */ - /* 128 OBSOLETE. Gone in 7.16.0 */ - - /* When FTP over SSL/TLS is selected (with CURLOPT_USE_SSL), this option - can be used to change libcurl's default action which is to first try - "AUTH SSL" and then "AUTH TLS" in this order, and proceed when a OK - response has been received. - - Available parameters are: - CURLFTPAUTH_DEFAULT - let libcurl decide - CURLFTPAUTH_SSL - try "AUTH SSL" first, then TLS - CURLFTPAUTH_TLS - try "AUTH TLS" first, then SSL - */ - CURLOPT(CURLOPT_FTPSSLAUTH, CURLOPTTYPE_LONG, 129), - - CURLOPT(CURLOPT_IOCTLFUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 130), - CURLOPT(CURLOPT_IOCTLDATA, CURLOPTTYPE_OBJECTPOINT, 131), - - /* 132 OBSOLETE. Gone in 7.16.0 */ - /* 133 OBSOLETE. Gone in 7.16.0 */ - - /* null-terminated string for pass on to the FTP server when asked for - "account" info */ - CURLOPT(CURLOPT_FTP_ACCOUNT, CURLOPTTYPE_STRINGPOINT, 134), - - /* feed cookie into cookie engine */ - CURLOPT(CURLOPT_COOKIELIST, CURLOPTTYPE_STRINGPOINT, 135), - - /* ignore Content-Length */ - CURLOPT(CURLOPT_IGNORE_CONTENT_LENGTH, CURLOPTTYPE_LONG, 136), - - /* Set to non-zero to skip the IP address received in a 227 PASV FTP server - response. Typically used for FTP-SSL purposes but is not restricted to - that. libcurl will then instead use the same IP address it used for the - control connection. */ - CURLOPT(CURLOPT_FTP_SKIP_PASV_IP, CURLOPTTYPE_LONG, 137), - - /* Select "file method" to use when doing FTP, see the curl_ftpmethod - above. */ - CURLOPT(CURLOPT_FTP_FILEMETHOD, CURLOPTTYPE_LONG, 138), - - /* Local port number to bind the socket to */ - CURLOPT(CURLOPT_LOCALPORT, CURLOPTTYPE_LONG, 139), - - /* Number of ports to try, including the first one set with LOCALPORT. - Thus, setting it to 1 will make no additional attempts but the first. - */ - CURLOPT(CURLOPT_LOCALPORTRANGE, CURLOPTTYPE_LONG, 140), - - /* no transfer, set up connection and let application use the socket by - extracting it with CURLINFO_LASTSOCKET */ - CURLOPT(CURLOPT_CONNECT_ONLY, CURLOPTTYPE_LONG, 141), - - /* Function that will be called to convert from the - network encoding (instead of using the iconv calls in libcurl) */ - CURLOPT(CURLOPT_CONV_FROM_NETWORK_FUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 142), - - /* Function that will be called to convert to the - network encoding (instead of using the iconv calls in libcurl) */ - CURLOPT(CURLOPT_CONV_TO_NETWORK_FUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 143), - - /* Function that will be called to convert from UTF8 - (instead of using the iconv calls in libcurl) - Note that this is used only for SSL certificate processing */ - CURLOPT(CURLOPT_CONV_FROM_UTF8_FUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 144), - - /* if the connection proceeds too quickly then need to slow it down */ - /* limit-rate: maximum number of bytes per second to send or receive */ - CURLOPT(CURLOPT_MAX_SEND_SPEED_LARGE, CURLOPTTYPE_OFF_T, 145), - CURLOPT(CURLOPT_MAX_RECV_SPEED_LARGE, CURLOPTTYPE_OFF_T, 146), - - /* Pointer to command string to send if USER/PASS fails. */ - CURLOPT(CURLOPT_FTP_ALTERNATIVE_TO_USER, CURLOPTTYPE_STRINGPOINT, 147), - - /* callback function for setting socket options */ - CURLOPT(CURLOPT_SOCKOPTFUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 148), - CURLOPT(CURLOPT_SOCKOPTDATA, CURLOPTTYPE_OBJECTPOINT, 149), - - /* set to 0 to disable session ID re-use for this transfer, default is - enabled (== 1) */ - CURLOPT(CURLOPT_SSL_SESSIONID_CACHE, CURLOPTTYPE_LONG, 150), - - /* allowed SSH authentication methods */ - CURLOPT(CURLOPT_SSH_AUTH_TYPES, CURLOPTTYPE_LONG, 151), - - /* Used by scp/sftp to do public/private key authentication */ - CURLOPT(CURLOPT_SSH_PUBLIC_KEYFILE, CURLOPTTYPE_STRINGPOINT, 152), - CURLOPT(CURLOPT_SSH_PRIVATE_KEYFILE, CURLOPTTYPE_STRINGPOINT, 153), - - /* Send CCC (Clear Command Channel) after authentication */ - CURLOPT(CURLOPT_FTP_SSL_CCC, CURLOPTTYPE_LONG, 154), - - /* Same as TIMEOUT and CONNECTTIMEOUT, but with ms resolution */ - CURLOPT(CURLOPT_TIMEOUT_MS, CURLOPTTYPE_LONG, 155), - CURLOPT(CURLOPT_CONNECTTIMEOUT_MS, CURLOPTTYPE_LONG, 156), - - /* set to zero to disable the libcurl's decoding and thus pass the raw body - data to the application even when it is encoded/compressed */ - CURLOPT(CURLOPT_HTTP_TRANSFER_DECODING, CURLOPTTYPE_LONG, 157), - CURLOPT(CURLOPT_HTTP_CONTENT_DECODING, CURLOPTTYPE_LONG, 158), - - /* Permission used when creating new files and directories on the remote - server for protocols that support it, SFTP/SCP/FILE */ - CURLOPT(CURLOPT_NEW_FILE_PERMS, CURLOPTTYPE_LONG, 159), - CURLOPT(CURLOPT_NEW_DIRECTORY_PERMS, CURLOPTTYPE_LONG, 160), - - /* Set the behaviour of POST when redirecting. Values must be set to one - of CURL_REDIR* defines below. This used to be called CURLOPT_POST301 */ - CURLOPT(CURLOPT_POSTREDIR, CURLOPTTYPE_LONG, 161), - - /* used by scp/sftp to verify the host's public key */ - CURLOPT(CURLOPT_SSH_HOST_PUBLIC_KEY_MD5, CURLOPTTYPE_STRINGPOINT, 162), - - /* Callback function for opening socket (instead of socket(2)). Optionally, - callback is able change the address or refuse to connect returning - CURL_SOCKET_BAD. The callback should have type - curl_opensocket_callback */ - CURLOPT(CURLOPT_OPENSOCKETFUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 163), - CURLOPT(CURLOPT_OPENSOCKETDATA, CURLOPTTYPE_OBJECTPOINT, 164), - - /* POST volatile input fields. */ - CURLOPT(CURLOPT_COPYPOSTFIELDS, CURLOPTTYPE_OBJECTPOINT, 165), - - /* set transfer mode (;type=) when doing FTP via an HTTP proxy */ - CURLOPT(CURLOPT_PROXY_TRANSFER_MODE, CURLOPTTYPE_LONG, 166), - - /* Callback function for seeking in the input stream */ - CURLOPT(CURLOPT_SEEKFUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 167), - CURLOPT(CURLOPT_SEEKDATA, CURLOPTTYPE_OBJECTPOINT, 168), - - /* CRL file */ - CURLOPT(CURLOPT_CRLFILE, CURLOPTTYPE_STRINGPOINT, 169), - - /* Issuer certificate */ - CURLOPT(CURLOPT_ISSUERCERT, CURLOPTTYPE_STRINGPOINT, 170), - - /* (IPv6) Address scope */ - CURLOPT(CURLOPT_ADDRESS_SCOPE, CURLOPTTYPE_LONG, 171), - - /* Collect certificate chain info and allow it to get retrievable with - CURLINFO_CERTINFO after the transfer is complete. */ - CURLOPT(CURLOPT_CERTINFO, CURLOPTTYPE_LONG, 172), - - /* "name" and "pwd" to use when fetching. */ - CURLOPT(CURLOPT_USERNAME, CURLOPTTYPE_STRINGPOINT, 173), - CURLOPT(CURLOPT_PASSWORD, CURLOPTTYPE_STRINGPOINT, 174), - - /* "name" and "pwd" to use with Proxy when fetching. */ - CURLOPT(CURLOPT_PROXYUSERNAME, CURLOPTTYPE_STRINGPOINT, 175), - CURLOPT(CURLOPT_PROXYPASSWORD, CURLOPTTYPE_STRINGPOINT, 176), - - /* Comma separated list of hostnames defining no-proxy zones. These should - match both hostnames directly, and hostnames within a domain. For - example, local.com will match local.com and www.local.com, but NOT - notlocal.com or www.notlocal.com. For compatibility with other - implementations of this, .local.com will be considered to be the same as - local.com. A single * is the only valid wildcard, and effectively - disables the use of proxy. */ - CURLOPT(CURLOPT_NOPROXY, CURLOPTTYPE_STRINGPOINT, 177), - - /* block size for TFTP transfers */ - CURLOPT(CURLOPT_TFTP_BLKSIZE, CURLOPTTYPE_LONG, 178), - - /* Socks Service */ - /* DEPRECATED, do not use! */ - CURLOPT(CURLOPT_SOCKS5_GSSAPI_SERVICE, CURLOPTTYPE_STRINGPOINT, 179), - - /* Socks Service */ - CURLOPT(CURLOPT_SOCKS5_GSSAPI_NEC, CURLOPTTYPE_LONG, 180), - - /* set the bitmask for the protocols that are allowed to be used for the - transfer, which thus helps the app which takes URLs from users or other - external inputs and want to restrict what protocol(s) to deal - with. Defaults to CURLPROTO_ALL. */ - CURLOPT(CURLOPT_PROTOCOLS, CURLOPTTYPE_LONG, 181), - - /* set the bitmask for the protocols that libcurl is allowed to follow to, - as a subset of the CURLOPT_PROTOCOLS ones. That means the protocol needs - to be set in both bitmasks to be allowed to get redirected to. */ - CURLOPT(CURLOPT_REDIR_PROTOCOLS, CURLOPTTYPE_LONG, 182), - - /* set the SSH knownhost file name to use */ - CURLOPT(CURLOPT_SSH_KNOWNHOSTS, CURLOPTTYPE_STRINGPOINT, 183), - - /* set the SSH host key callback, must point to a curl_sshkeycallback - function */ - CURLOPT(CURLOPT_SSH_KEYFUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 184), - - /* set the SSH host key callback custom pointer */ - CURLOPT(CURLOPT_SSH_KEYDATA, CURLOPTTYPE_OBJECTPOINT, 185), - - /* set the SMTP mail originator */ - CURLOPT(CURLOPT_MAIL_FROM, CURLOPTTYPE_STRINGPOINT, 186), - - /* set the list of SMTP mail receiver(s) */ - CURLOPT(CURLOPT_MAIL_RCPT, CURLOPTTYPE_SLISTPOINT, 187), - - /* FTP: send PRET before PASV */ - CURLOPT(CURLOPT_FTP_USE_PRET, CURLOPTTYPE_LONG, 188), - - /* RTSP request method (OPTIONS, SETUP, PLAY, etc...) */ - CURLOPT(CURLOPT_RTSP_REQUEST, CURLOPTTYPE_LONG, 189), - - /* The RTSP session identifier */ - CURLOPT(CURLOPT_RTSP_SESSION_ID, CURLOPTTYPE_STRINGPOINT, 190), - - /* The RTSP stream URI */ - CURLOPT(CURLOPT_RTSP_STREAM_URI, CURLOPTTYPE_STRINGPOINT, 191), - - /* The Transport: header to use in RTSP requests */ - CURLOPT(CURLOPT_RTSP_TRANSPORT, CURLOPTTYPE_STRINGPOINT, 192), - - /* Manually initialize the client RTSP CSeq for this handle */ - CURLOPT(CURLOPT_RTSP_CLIENT_CSEQ, CURLOPTTYPE_LONG, 193), - - /* Manually initialize the server RTSP CSeq for this handle */ - CURLOPT(CURLOPT_RTSP_SERVER_CSEQ, CURLOPTTYPE_LONG, 194), - - /* The stream to pass to INTERLEAVEFUNCTION. */ - CURLOPT(CURLOPT_INTERLEAVEDATA, CURLOPTTYPE_OBJECTPOINT, 195), - - /* Let the application define a custom write method for RTP data */ - CURLOPT(CURLOPT_INTERLEAVEFUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 196), - - /* Turn on wildcard matching */ - CURLOPT(CURLOPT_WILDCARDMATCH, CURLOPTTYPE_LONG, 197), - - /* Directory matching callback called before downloading of an - individual file (chunk) started */ - CURLOPT(CURLOPT_CHUNK_BGN_FUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 198), - - /* Directory matching callback called after the file (chunk) - was downloaded, or skipped */ - CURLOPT(CURLOPT_CHUNK_END_FUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 199), - - /* Change match (fnmatch-like) callback for wildcard matching */ - CURLOPT(CURLOPT_FNMATCH_FUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 200), - - /* Let the application define custom chunk data pointer */ - CURLOPT(CURLOPT_CHUNK_DATA, CURLOPTTYPE_OBJECTPOINT, 201), - - /* FNMATCH_FUNCTION user pointer */ - CURLOPT(CURLOPT_FNMATCH_DATA, CURLOPTTYPE_OBJECTPOINT, 202), - - /* send linked-list of name:port:address sets */ - CURLOPT(CURLOPT_RESOLVE, CURLOPTTYPE_SLISTPOINT, 203), - - /* Set a username for authenticated TLS */ - CURLOPT(CURLOPT_TLSAUTH_USERNAME, CURLOPTTYPE_STRINGPOINT, 204), - - /* Set a password for authenticated TLS */ - CURLOPT(CURLOPT_TLSAUTH_PASSWORD, CURLOPTTYPE_STRINGPOINT, 205), - - /* Set authentication type for authenticated TLS */ - CURLOPT(CURLOPT_TLSAUTH_TYPE, CURLOPTTYPE_STRINGPOINT, 206), - - /* Set to 1 to enable the "TE:" header in HTTP requests to ask for - compressed transfer-encoded responses. Set to 0 to disable the use of TE: - in outgoing requests. The current default is 0, but it might change in a - future libcurl release. - - libcurl will ask for the compressed methods it knows of, and if that - isn't any, it will not ask for transfer-encoding at all even if this - option is set to 1. - - */ - CURLOPT(CURLOPT_TRANSFER_ENCODING, CURLOPTTYPE_LONG, 207), - - /* Callback function for closing socket (instead of close(2)). The callback - should have type curl_closesocket_callback */ - CURLOPT(CURLOPT_CLOSESOCKETFUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 208), - CURLOPT(CURLOPT_CLOSESOCKETDATA, CURLOPTTYPE_OBJECTPOINT, 209), - - /* allow GSSAPI credential delegation */ - CURLOPT(CURLOPT_GSSAPI_DELEGATION, CURLOPTTYPE_LONG, 210), - - /* Set the name servers to use for DNS resolution */ - CURLOPT(CURLOPT_DNS_SERVERS, CURLOPTTYPE_STRINGPOINT, 211), - - /* Time-out accept operations (currently for FTP only) after this amount - of milliseconds. */ - CURLOPT(CURLOPT_ACCEPTTIMEOUT_MS, CURLOPTTYPE_LONG, 212), - - /* Set TCP keepalive */ - CURLOPT(CURLOPT_TCP_KEEPALIVE, CURLOPTTYPE_LONG, 213), - - /* non-universal keepalive knobs (Linux, AIX, HP-UX, more) */ - CURLOPT(CURLOPT_TCP_KEEPIDLE, CURLOPTTYPE_LONG, 214), - CURLOPT(CURLOPT_TCP_KEEPINTVL, CURLOPTTYPE_LONG, 215), - - /* Enable/disable specific SSL features with a bitmask, see CURLSSLOPT_* */ - CURLOPT(CURLOPT_SSL_OPTIONS, CURLOPTTYPE_LONG, 216), - - /* Set the SMTP auth originator */ - CURLOPT(CURLOPT_MAIL_AUTH, CURLOPTTYPE_STRINGPOINT, 217), - - /* Enable/disable SASL initial response */ - CURLOPT(CURLOPT_SASL_IR, CURLOPTTYPE_LONG, 218), - - /* Function that will be called instead of the internal progress display - * function. This function should be defined as the curl_xferinfo_callback - * prototype defines. (Deprecates CURLOPT_PROGRESSFUNCTION) */ - CURLOPT(CURLOPT_XFERINFOFUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 219), - - /* The XOAUTH2 bearer token */ - CURLOPT(CURLOPT_XOAUTH2_BEARER, CURLOPTTYPE_STRINGPOINT, 220), - - /* Set the interface string to use as outgoing network - * interface for DNS requests. - * Only supported by the c-ares DNS backend */ - CURLOPT(CURLOPT_DNS_INTERFACE, CURLOPTTYPE_STRINGPOINT, 221), - - /* Set the local IPv4 address to use for outgoing DNS requests. - * Only supported by the c-ares DNS backend */ - CURLOPT(CURLOPT_DNS_LOCAL_IP4, CURLOPTTYPE_STRINGPOINT, 222), - - /* Set the local IPv6 address to use for outgoing DNS requests. - * Only supported by the c-ares DNS backend */ - CURLOPT(CURLOPT_DNS_LOCAL_IP6, CURLOPTTYPE_STRINGPOINT, 223), - - /* Set authentication options directly */ - CURLOPT(CURLOPT_LOGIN_OPTIONS, CURLOPTTYPE_STRINGPOINT, 224), - - /* Enable/disable TLS NPN extension (http2 over ssl might fail without) */ - CURLOPT(CURLOPT_SSL_ENABLE_NPN, CURLOPTTYPE_LONG, 225), - - /* Enable/disable TLS ALPN extension (http2 over ssl might fail without) */ - CURLOPT(CURLOPT_SSL_ENABLE_ALPN, CURLOPTTYPE_LONG, 226), - - /* Time to wait for a response to a HTTP request containing an - * Expect: 100-continue header before sending the data anyway. */ - CURLOPT(CURLOPT_EXPECT_100_TIMEOUT_MS, CURLOPTTYPE_LONG, 227), - - /* This points to a linked list of headers used for proxy requests only, - struct curl_slist kind */ - CURLOPT(CURLOPT_PROXYHEADER, CURLOPTTYPE_SLISTPOINT, 228), - - /* Pass in a bitmask of "header options" */ - CURLOPT(CURLOPT_HEADEROPT, CURLOPTTYPE_LONG, 229), - - /* The public key in DER form used to validate the peer public key - this option is used only if SSL_VERIFYPEER is true */ - CURLOPT(CURLOPT_PINNEDPUBLICKEY, CURLOPTTYPE_STRINGPOINT, 230), - - /* Path to Unix domain socket */ - CURLOPT(CURLOPT_UNIX_SOCKET_PATH, CURLOPTTYPE_STRINGPOINT, 231), - - /* Set if we should verify the certificate status. */ - CURLOPT(CURLOPT_SSL_VERIFYSTATUS, CURLOPTTYPE_LONG, 232), - - /* Set if we should enable TLS false start. */ - CURLOPT(CURLOPT_SSL_FALSESTART, CURLOPTTYPE_LONG, 233), - - /* Do not squash dot-dot sequences */ - CURLOPT(CURLOPT_PATH_AS_IS, CURLOPTTYPE_LONG, 234), - - /* Proxy Service Name */ - CURLOPT(CURLOPT_PROXY_SERVICE_NAME, CURLOPTTYPE_STRINGPOINT, 235), - - /* Service Name */ - CURLOPT(CURLOPT_SERVICE_NAME, CURLOPTTYPE_STRINGPOINT, 236), - - /* Wait/don't wait for pipe/mutex to clarify */ - CURLOPT(CURLOPT_PIPEWAIT, CURLOPTTYPE_LONG, 237), - - /* Set the protocol used when curl is given a URL without a protocol */ - CURLOPT(CURLOPT_DEFAULT_PROTOCOL, CURLOPTTYPE_STRINGPOINT, 238), - - /* Set stream weight, 1 - 256 (default is 16) */ - CURLOPT(CURLOPT_STREAM_WEIGHT, CURLOPTTYPE_LONG, 239), - - /* Set stream dependency on another CURL handle */ - CURLOPT(CURLOPT_STREAM_DEPENDS, CURLOPTTYPE_OBJECTPOINT, 240), - - /* Set E-xclusive stream dependency on another CURL handle */ - CURLOPT(CURLOPT_STREAM_DEPENDS_E, CURLOPTTYPE_OBJECTPOINT, 241), - - /* Do not send any tftp option requests to the server */ - CURLOPT(CURLOPT_TFTP_NO_OPTIONS, CURLOPTTYPE_LONG, 242), - - /* Linked-list of host:port:connect-to-host:connect-to-port, - overrides the URL's host:port (only for the network layer) */ - CURLOPT(CURLOPT_CONNECT_TO, CURLOPTTYPE_SLISTPOINT, 243), - - /* Set TCP Fast Open */ - CURLOPT(CURLOPT_TCP_FASTOPEN, CURLOPTTYPE_LONG, 244), - - /* Continue to send data if the server responds early with an - * HTTP status code >= 300 */ - CURLOPT(CURLOPT_KEEP_SENDING_ON_ERROR, CURLOPTTYPE_LONG, 245), - - /* The CApath or CAfile used to validate the proxy certificate - this option is used only if PROXY_SSL_VERIFYPEER is true */ - CURLOPT(CURLOPT_PROXY_CAINFO, CURLOPTTYPE_STRINGPOINT, 246), - - /* The CApath directory used to validate the proxy certificate - this option is used only if PROXY_SSL_VERIFYPEER is true */ - CURLOPT(CURLOPT_PROXY_CAPATH, CURLOPTTYPE_STRINGPOINT, 247), - - /* Set if we should verify the proxy in ssl handshake, - set 1 to verify. */ - CURLOPT(CURLOPT_PROXY_SSL_VERIFYPEER, CURLOPTTYPE_LONG, 248), - - /* Set if we should verify the Common name from the proxy certificate in ssl - * handshake, set 1 to check existence, 2 to ensure that it matches - * the provided hostname. */ - CURLOPT(CURLOPT_PROXY_SSL_VERIFYHOST, CURLOPTTYPE_LONG, 249), - - /* What version to specifically try to use for proxy. - See CURL_SSLVERSION defines below. */ - CURLOPT(CURLOPT_PROXY_SSLVERSION, CURLOPTTYPE_LONG, 250), - - /* Set a username for authenticated TLS for proxy */ - CURLOPT(CURLOPT_PROXY_TLSAUTH_USERNAME, CURLOPTTYPE_STRINGPOINT, 251), - - /* Set a password for authenticated TLS for proxy */ - CURLOPT(CURLOPT_PROXY_TLSAUTH_PASSWORD, CURLOPTTYPE_STRINGPOINT, 252), - - /* Set authentication type for authenticated TLS for proxy */ - CURLOPT(CURLOPT_PROXY_TLSAUTH_TYPE, CURLOPTTYPE_STRINGPOINT, 253), - - /* name of the file keeping your private SSL-certificate for proxy */ - CURLOPT(CURLOPT_PROXY_SSLCERT, CURLOPTTYPE_STRINGPOINT, 254), - - /* type of the file keeping your SSL-certificate ("DER", "PEM", "ENG") for - proxy */ - CURLOPT(CURLOPT_PROXY_SSLCERTTYPE, CURLOPTTYPE_STRINGPOINT, 255), - - /* name of the file keeping your private SSL-key for proxy */ - CURLOPT(CURLOPT_PROXY_SSLKEY, CURLOPTTYPE_STRINGPOINT, 256), - - /* type of the file keeping your private SSL-key ("DER", "PEM", "ENG") for - proxy */ - CURLOPT(CURLOPT_PROXY_SSLKEYTYPE, CURLOPTTYPE_STRINGPOINT, 257), - - /* password for the SSL private key for proxy */ - CURLOPT(CURLOPT_PROXY_KEYPASSWD, CURLOPTTYPE_STRINGPOINT, 258), - - /* Specify which SSL ciphers to use for proxy */ - CURLOPT(CURLOPT_PROXY_SSL_CIPHER_LIST, CURLOPTTYPE_STRINGPOINT, 259), - - /* CRL file for proxy */ - CURLOPT(CURLOPT_PROXY_CRLFILE, CURLOPTTYPE_STRINGPOINT, 260), - - /* Enable/disable specific SSL features with a bitmask for proxy, see - CURLSSLOPT_* */ - CURLOPT(CURLOPT_PROXY_SSL_OPTIONS, CURLOPTTYPE_LONG, 261), - - /* Name of pre proxy to use. */ - CURLOPT(CURLOPT_PRE_PROXY, CURLOPTTYPE_STRINGPOINT, 262), - - /* The public key in DER form used to validate the proxy public key - this option is used only if PROXY_SSL_VERIFYPEER is true */ - CURLOPT(CURLOPT_PROXY_PINNEDPUBLICKEY, CURLOPTTYPE_STRINGPOINT, 263), - - /* Path to an abstract Unix domain socket */ - CURLOPT(CURLOPT_ABSTRACT_UNIX_SOCKET, CURLOPTTYPE_STRINGPOINT, 264), - - /* Suppress proxy CONNECT response headers from user callbacks */ - CURLOPT(CURLOPT_SUPPRESS_CONNECT_HEADERS, CURLOPTTYPE_LONG, 265), - - /* The request target, instead of extracted from the URL */ - CURLOPT(CURLOPT_REQUEST_TARGET, CURLOPTTYPE_STRINGPOINT, 266), - - /* bitmask of allowed auth methods for connections to SOCKS5 proxies */ - CURLOPT(CURLOPT_SOCKS5_AUTH, CURLOPTTYPE_LONG, 267), - - /* Enable/disable SSH compression */ - CURLOPT(CURLOPT_SSH_COMPRESSION, CURLOPTTYPE_LONG, 268), - - /* Post MIME data. */ - CURLOPT(CURLOPT_MIMEPOST, CURLOPTTYPE_OBJECTPOINT, 269), - - /* Time to use with the CURLOPT_TIMECONDITION. Specified in number of - seconds since 1 Jan 1970. */ - CURLOPT(CURLOPT_TIMEVALUE_LARGE, CURLOPTTYPE_OFF_T, 270), - - /* Head start in milliseconds to give happy eyeballs. */ - CURLOPT(CURLOPT_HAPPY_EYEBALLS_TIMEOUT_MS, CURLOPTTYPE_LONG, 271), - - /* Function that will be called before a resolver request is made */ - CURLOPT(CURLOPT_RESOLVER_START_FUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 272), - - /* User data to pass to the resolver start callback. */ - CURLOPT(CURLOPT_RESOLVER_START_DATA, CURLOPTTYPE_OBJECTPOINT, 273), - - /* send HAProxy PROXY protocol header? */ - CURLOPT(CURLOPT_HAPROXYPROTOCOL, CURLOPTTYPE_LONG, 274), - - /* shuffle addresses before use when DNS returns multiple */ - CURLOPT(CURLOPT_DNS_SHUFFLE_ADDRESSES, CURLOPTTYPE_LONG, 275), - - /* Specify which TLS 1.3 ciphers suites to use */ - CURLOPT(CURLOPT_TLS13_CIPHERS, CURLOPTTYPE_STRINGPOINT, 276), - CURLOPT(CURLOPT_PROXY_TLS13_CIPHERS, CURLOPTTYPE_STRINGPOINT, 277), - - /* Disallow specifying username/login in URL. */ - CURLOPT(CURLOPT_DISALLOW_USERNAME_IN_URL, CURLOPTTYPE_LONG, 278), - - /* DNS-over-HTTPS URL */ - CURLOPT(CURLOPT_DOH_URL, CURLOPTTYPE_STRINGPOINT, 279), - - /* Preferred buffer size to use for uploads */ - CURLOPT(CURLOPT_UPLOAD_BUFFERSIZE, CURLOPTTYPE_LONG, 280), - - /* Time in ms between connection upkeep calls for long-lived connections. */ - CURLOPT(CURLOPT_UPKEEP_INTERVAL_MS, CURLOPTTYPE_LONG, 281), - - /* Specify URL using CURL URL API. */ - CURLOPT(CURLOPT_CURLU, CURLOPTTYPE_OBJECTPOINT, 282), - - /* add trailing data just after no more data is available */ - CURLOPT(CURLOPT_TRAILERFUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 283), - - /* pointer to be passed to HTTP_TRAILER_FUNCTION */ - CURLOPT(CURLOPT_TRAILERDATA, CURLOPTTYPE_OBJECTPOINT, 284), - - /* set this to 1L to allow HTTP/0.9 responses or 0L to disallow */ - CURLOPT(CURLOPT_HTTP09_ALLOWED, CURLOPTTYPE_LONG, 285), - - /* alt-svc control bitmask */ - CURLOPT(CURLOPT_ALTSVC_CTRL, CURLOPTTYPE_LONG, 286), - - /* alt-svc cache file name to possibly read from/write to */ - CURLOPT(CURLOPT_ALTSVC, CURLOPTTYPE_STRINGPOINT, 287), - - /* maximum age of a connection to consider it for reuse (in seconds) */ - CURLOPT(CURLOPT_MAXAGE_CONN, CURLOPTTYPE_LONG, 288), - - /* SASL authorisation identity */ - CURLOPT(CURLOPT_SASL_AUTHZID, CURLOPTTYPE_STRINGPOINT, 289), - - /* allow RCPT TO command to fail for some recipients */ - CURLOPT(CURLOPT_MAIL_RCPT_ALLLOWFAILS, CURLOPTTYPE_LONG, 290), - - /* the private SSL-certificate as a "blob" */ - CURLOPT(CURLOPT_SSLCERT_BLOB, CURLOPTTYPE_BLOB, 291), - CURLOPT(CURLOPT_SSLKEY_BLOB, CURLOPTTYPE_BLOB, 292), - CURLOPT(CURLOPT_PROXY_SSLCERT_BLOB, CURLOPTTYPE_BLOB, 293), - CURLOPT(CURLOPT_PROXY_SSLKEY_BLOB, CURLOPTTYPE_BLOB, 294), - CURLOPT(CURLOPT_ISSUERCERT_BLOB, CURLOPTTYPE_BLOB, 295), - - /* Issuer certificate for proxy */ - CURLOPT(CURLOPT_PROXY_ISSUERCERT, CURLOPTTYPE_STRINGPOINT, 296), - CURLOPT(CURLOPT_PROXY_ISSUERCERT_BLOB, CURLOPTTYPE_BLOB, 297), - - CURLOPT_LASTENTRY /* the last unused */ -} CURLoption; - -#ifndef CURL_NO_OLDIES /* define this to test if your app builds with all - the obsolete stuff removed! */ - -/* Backwards compatibility with older names */ -/* These are scheduled to disappear by 2011 */ - -/* This was added in version 7.19.1 */ -#define CURLOPT_POST301 CURLOPT_POSTREDIR - -/* These are scheduled to disappear by 2009 */ - -/* The following were added in 7.17.0 */ -#define CURLOPT_SSLKEYPASSWD CURLOPT_KEYPASSWD -#define CURLOPT_FTPAPPEND CURLOPT_APPEND -#define CURLOPT_FTPLISTONLY CURLOPT_DIRLISTONLY -#define CURLOPT_FTP_SSL CURLOPT_USE_SSL - -/* The following were added earlier */ - -#define CURLOPT_SSLCERTPASSWD CURLOPT_KEYPASSWD -#define CURLOPT_KRB4LEVEL CURLOPT_KRBLEVEL - -#else -/* This is set if CURL_NO_OLDIES is defined at compile-time */ -#undef CURLOPT_DNS_USE_GLOBAL_CACHE /* soon obsolete */ -#endif - - - /* Below here follows defines for the CURLOPT_IPRESOLVE option. If a host - name resolves addresses using more than one IP protocol version, this - option might be handy to force libcurl to use a specific IP version. */ -#define CURL_IPRESOLVE_WHATEVER 0 /* default, resolves addresses to all IP - versions that your system allows */ -#define CURL_IPRESOLVE_V4 1 /* resolve to IPv4 addresses */ -#define CURL_IPRESOLVE_V6 2 /* resolve to IPv6 addresses */ - - /* three convenient "aliases" that follow the name scheme better */ -#define CURLOPT_RTSPHEADER CURLOPT_HTTPHEADER - - /* These enums are for use with the CURLOPT_HTTP_VERSION option. */ -enum { - CURL_HTTP_VERSION_NONE, /* setting this means we don't care, and that we'd - like the library to choose the best possible - for us! */ - CURL_HTTP_VERSION_1_0, /* please use HTTP 1.0 in the request */ - CURL_HTTP_VERSION_1_1, /* please use HTTP 1.1 in the request */ - CURL_HTTP_VERSION_2_0, /* please use HTTP 2 in the request */ - CURL_HTTP_VERSION_2TLS, /* use version 2 for HTTPS, version 1.1 for HTTP */ - CURL_HTTP_VERSION_2_PRIOR_KNOWLEDGE, /* please use HTTP 2 without HTTP/1.1 - Upgrade */ - CURL_HTTP_VERSION_3 = 30, /* Makes use of explicit HTTP/3 without fallback. - Use CURLOPT_ALTSVC to enable HTTP/3 upgrade */ - CURL_HTTP_VERSION_LAST /* *ILLEGAL* http version */ -}; - -/* Convenience definition simple because the name of the version is HTTP/2 and - not 2.0. The 2_0 version of the enum name was set while the version was - still planned to be 2.0 and we stick to it for compatibility. */ -#define CURL_HTTP_VERSION_2 CURL_HTTP_VERSION_2_0 - -/* - * Public API enums for RTSP requests - */ -enum { - CURL_RTSPREQ_NONE, /* first in list */ - CURL_RTSPREQ_OPTIONS, - CURL_RTSPREQ_DESCRIBE, - CURL_RTSPREQ_ANNOUNCE, - CURL_RTSPREQ_SETUP, - CURL_RTSPREQ_PLAY, - CURL_RTSPREQ_PAUSE, - CURL_RTSPREQ_TEARDOWN, - CURL_RTSPREQ_GET_PARAMETER, - CURL_RTSPREQ_SET_PARAMETER, - CURL_RTSPREQ_RECORD, - CURL_RTSPREQ_RECEIVE, - CURL_RTSPREQ_LAST /* last in list */ -}; - - /* These enums are for use with the CURLOPT_NETRC option. */ -enum CURL_NETRC_OPTION { - CURL_NETRC_IGNORED, /* The .netrc will never be read. - * This is the default. */ - CURL_NETRC_OPTIONAL, /* A user:password in the URL will be preferred - * to one in the .netrc. */ - CURL_NETRC_REQUIRED, /* A user:password in the URL will be ignored. - * Unless one is set programmatically, the .netrc - * will be queried. */ - CURL_NETRC_LAST -}; - -enum { - CURL_SSLVERSION_DEFAULT, - CURL_SSLVERSION_TLSv1, /* TLS 1.x */ - CURL_SSLVERSION_SSLv2, - CURL_SSLVERSION_SSLv3, - CURL_SSLVERSION_TLSv1_0, - CURL_SSLVERSION_TLSv1_1, - CURL_SSLVERSION_TLSv1_2, - CURL_SSLVERSION_TLSv1_3, - - CURL_SSLVERSION_LAST /* never use, keep last */ -}; - -enum { - CURL_SSLVERSION_MAX_NONE = 0, - CURL_SSLVERSION_MAX_DEFAULT = (CURL_SSLVERSION_TLSv1 << 16), - CURL_SSLVERSION_MAX_TLSv1_0 = (CURL_SSLVERSION_TLSv1_0 << 16), - CURL_SSLVERSION_MAX_TLSv1_1 = (CURL_SSLVERSION_TLSv1_1 << 16), - CURL_SSLVERSION_MAX_TLSv1_2 = (CURL_SSLVERSION_TLSv1_2 << 16), - CURL_SSLVERSION_MAX_TLSv1_3 = (CURL_SSLVERSION_TLSv1_3 << 16), - - /* never use, keep last */ - CURL_SSLVERSION_MAX_LAST = (CURL_SSLVERSION_LAST << 16) -}; - -enum CURL_TLSAUTH { - CURL_TLSAUTH_NONE, - CURL_TLSAUTH_SRP, - CURL_TLSAUTH_LAST /* never use, keep last */ -}; - -/* symbols to use with CURLOPT_POSTREDIR. - CURL_REDIR_POST_301, CURL_REDIR_POST_302 and CURL_REDIR_POST_303 - can be bitwise ORed so that CURL_REDIR_POST_301 | CURL_REDIR_POST_302 - | CURL_REDIR_POST_303 == CURL_REDIR_POST_ALL */ - -#define CURL_REDIR_GET_ALL 0 -#define CURL_REDIR_POST_301 1 -#define CURL_REDIR_POST_302 2 -#define CURL_REDIR_POST_303 4 -#define CURL_REDIR_POST_ALL \ - (CURL_REDIR_POST_301|CURL_REDIR_POST_302|CURL_REDIR_POST_303) - -typedef enum { - CURL_TIMECOND_NONE, - - CURL_TIMECOND_IFMODSINCE, - CURL_TIMECOND_IFUNMODSINCE, - CURL_TIMECOND_LASTMOD, - - CURL_TIMECOND_LAST -} curl_TimeCond; - -/* Special size_t value signaling a null-terminated string. */ -#define CURL_ZERO_TERMINATED ((size_t) -1) - -/* curl_strequal() and curl_strnequal() are subject for removal in a future - release */ -CURL_EXTERN int curl_strequal(const char *s1, const char *s2); -CURL_EXTERN int curl_strnequal(const char *s1, const char *s2, size_t n); - -/* Mime/form handling support. */ -typedef struct curl_mime curl_mime; /* Mime context. */ -typedef struct curl_mimepart curl_mimepart; /* Mime part context. */ - -/* - * NAME curl_mime_init() - * - * DESCRIPTION - * - * Create a mime context and return its handle. The easy parameter is the - * target handle. - */ -CURL_EXTERN curl_mime *curl_mime_init(CURL *easy); - -/* - * NAME curl_mime_free() - * - * DESCRIPTION - * - * release a mime handle and its substructures. - */ -CURL_EXTERN void curl_mime_free(curl_mime *mime); - -/* - * NAME curl_mime_addpart() - * - * DESCRIPTION - * - * Append a new empty part to the given mime context and return a handle to - * the created part. - */ -CURL_EXTERN curl_mimepart *curl_mime_addpart(curl_mime *mime); - -/* - * NAME curl_mime_name() - * - * DESCRIPTION - * - * Set mime/form part name. - */ -CURL_EXTERN CURLcode curl_mime_name(curl_mimepart *part, const char *name); - -/* - * NAME curl_mime_filename() - * - * DESCRIPTION - * - * Set mime part remote file name. - */ -CURL_EXTERN CURLcode curl_mime_filename(curl_mimepart *part, - const char *filename); - -/* - * NAME curl_mime_type() - * - * DESCRIPTION - * - * Set mime part type. - */ -CURL_EXTERN CURLcode curl_mime_type(curl_mimepart *part, const char *mimetype); - -/* - * NAME curl_mime_encoder() - * - * DESCRIPTION - * - * Set mime data transfer encoder. - */ -CURL_EXTERN CURLcode curl_mime_encoder(curl_mimepart *part, - const char *encoding); - -/* - * NAME curl_mime_data() - * - * DESCRIPTION - * - * Set mime part data source from memory data, - */ -CURL_EXTERN CURLcode curl_mime_data(curl_mimepart *part, - const char *data, size_t datasize); - -/* - * NAME curl_mime_filedata() - * - * DESCRIPTION - * - * Set mime part data source from named file. - */ -CURL_EXTERN CURLcode curl_mime_filedata(curl_mimepart *part, - const char *filename); - -/* - * NAME curl_mime_data_cb() - * - * DESCRIPTION - * - * Set mime part data source from callback function. - */ -CURL_EXTERN CURLcode curl_mime_data_cb(curl_mimepart *part, - curl_off_t datasize, - curl_read_callback readfunc, - curl_seek_callback seekfunc, - curl_free_callback freefunc, - void *arg); - -/* - * NAME curl_mime_subparts() - * - * DESCRIPTION - * - * Set mime part data source from subparts. - */ -CURL_EXTERN CURLcode curl_mime_subparts(curl_mimepart *part, - curl_mime *subparts); -/* - * NAME curl_mime_headers() - * - * DESCRIPTION - * - * Set mime part headers. - */ -CURL_EXTERN CURLcode curl_mime_headers(curl_mimepart *part, - struct curl_slist *headers, - int take_ownership); - -typedef enum { - CURLFORM_NOTHING, /********* the first one is unused ************/ - CURLFORM_COPYNAME, - CURLFORM_PTRNAME, - CURLFORM_NAMELENGTH, - CURLFORM_COPYCONTENTS, - CURLFORM_PTRCONTENTS, - CURLFORM_CONTENTSLENGTH, - CURLFORM_FILECONTENT, - CURLFORM_ARRAY, - CURLFORM_OBSOLETE, - CURLFORM_FILE, - - CURLFORM_BUFFER, - CURLFORM_BUFFERPTR, - CURLFORM_BUFFERLENGTH, - - CURLFORM_CONTENTTYPE, - CURLFORM_CONTENTHEADER, - CURLFORM_FILENAME, - CURLFORM_END, - CURLFORM_OBSOLETE2, - - CURLFORM_STREAM, - CURLFORM_CONTENTLEN, /* added in 7.46.0, provide a curl_off_t length */ - - CURLFORM_LASTENTRY /* the last unused */ -} CURLformoption; - -/* structure to be used as parameter for CURLFORM_ARRAY */ -struct curl_forms { - CURLformoption option; - const char *value; -}; - -/* use this for multipart formpost building */ -/* Returns code for curl_formadd() - * - * Returns: - * CURL_FORMADD_OK on success - * CURL_FORMADD_MEMORY if the FormInfo allocation fails - * CURL_FORMADD_OPTION_TWICE if one option is given twice for one Form - * CURL_FORMADD_NULL if a null pointer was given for a char - * CURL_FORMADD_MEMORY if the allocation of a FormInfo struct failed - * CURL_FORMADD_UNKNOWN_OPTION if an unknown option was used - * CURL_FORMADD_INCOMPLETE if the some FormInfo is not complete (or error) - * CURL_FORMADD_MEMORY if a curl_httppost struct cannot be allocated - * CURL_FORMADD_MEMORY if some allocation for string copying failed. - * CURL_FORMADD_ILLEGAL_ARRAY if an illegal option is used in an array - * - ***************************************************************************/ -typedef enum { - CURL_FORMADD_OK, /* first, no error */ - - CURL_FORMADD_MEMORY, - CURL_FORMADD_OPTION_TWICE, - CURL_FORMADD_NULL, - CURL_FORMADD_UNKNOWN_OPTION, - CURL_FORMADD_INCOMPLETE, - CURL_FORMADD_ILLEGAL_ARRAY, - CURL_FORMADD_DISABLED, /* libcurl was built with this disabled */ - - CURL_FORMADD_LAST /* last */ -} CURLFORMcode; - -/* - * NAME curl_formadd() - * - * DESCRIPTION - * - * Pretty advanced function for building multi-part formposts. Each invoke - * adds one part that together construct a full post. Then use - * CURLOPT_HTTPPOST to send it off to libcurl. - */ -CURL_EXTERN CURLFORMcode curl_formadd(struct curl_httppost **httppost, - struct curl_httppost **last_post, - ...); - -/* - * callback function for curl_formget() - * The void *arg pointer will be the one passed as second argument to - * curl_formget(). - * The character buffer passed to it must not be freed. - * Should return the buffer length passed to it as the argument "len" on - * success. - */ -typedef size_t (*curl_formget_callback)(void *arg, const char *buf, - size_t len); - -/* - * NAME curl_formget() - * - * DESCRIPTION - * - * Serialize a curl_httppost struct built with curl_formadd(). - * Accepts a void pointer as second argument which will be passed to - * the curl_formget_callback function. - * Returns 0 on success. - */ -CURL_EXTERN int curl_formget(struct curl_httppost *form, void *arg, - curl_formget_callback append); -/* - * NAME curl_formfree() - * - * DESCRIPTION - * - * Free a multipart formpost previously built with curl_formadd(). - */ -CURL_EXTERN void curl_formfree(struct curl_httppost *form); - -/* - * NAME curl_getenv() - * - * DESCRIPTION - * - * Returns a malloc()'ed string that MUST be curl_free()ed after usage is - * complete. DEPRECATED - see lib/README.curlx - */ -CURL_EXTERN char *curl_getenv(const char *variable); - -/* - * NAME curl_version() - * - * DESCRIPTION - * - * Returns a static ascii string of the libcurl version. - */ -CURL_EXTERN char *curl_version(void); - -/* - * NAME curl_easy_escape() - * - * DESCRIPTION - * - * Escapes URL strings (converts all letters consider illegal in URLs to their - * %XX versions). This function returns a new allocated string or NULL if an - * error occurred. - */ -CURL_EXTERN char *curl_easy_escape(CURL *handle, - const char *string, - int length); - -/* the previous version: */ -CURL_EXTERN char *curl_escape(const char *string, - int length); - - -/* - * NAME curl_easy_unescape() - * - * DESCRIPTION - * - * Unescapes URL encoding in strings (converts all %XX codes to their 8bit - * versions). This function returns a new allocated string or NULL if an error - * occurred. - * Conversion Note: On non-ASCII platforms the ASCII %XX codes are - * converted into the host encoding. - */ -CURL_EXTERN char *curl_easy_unescape(CURL *handle, - const char *string, - int length, - int *outlength); - -/* the previous version */ -CURL_EXTERN char *curl_unescape(const char *string, - int length); - -/* - * NAME curl_free() - * - * DESCRIPTION - * - * Provided for de-allocation in the same translation unit that did the - * allocation. Added in libcurl 7.10 - */ -CURL_EXTERN void curl_free(void *p); - -/* - * NAME curl_global_init() - * - * DESCRIPTION - * - * curl_global_init() should be invoked exactly once for each application that - * uses libcurl and before any call of other libcurl functions. - * - * This function is not thread-safe! - */ -CURL_EXTERN CURLcode curl_global_init(long flags); - -/* - * NAME curl_global_init_mem() - * - * DESCRIPTION - * - * curl_global_init() or curl_global_init_mem() should be invoked exactly once - * for each application that uses libcurl. This function can be used to - * initialize libcurl and set user defined memory management callback - * functions. Users can implement memory management routines to check for - * memory leaks, check for mis-use of the curl library etc. User registered - * callback routines will be invoked by this library instead of the system - * memory management routines like malloc, free etc. - */ -CURL_EXTERN CURLcode curl_global_init_mem(long flags, - curl_malloc_callback m, - curl_free_callback f, - curl_realloc_callback r, - curl_strdup_callback s, - curl_calloc_callback c); - -/* - * NAME curl_global_cleanup() - * - * DESCRIPTION - * - * curl_global_cleanup() should be invoked exactly once for each application - * that uses libcurl - */ -CURL_EXTERN void curl_global_cleanup(void); - -/* linked-list structure for the CURLOPT_QUOTE option (and other) */ -struct curl_slist { - char *data; - struct curl_slist *next; -}; - -/* - * NAME curl_global_sslset() - * - * DESCRIPTION - * - * When built with multiple SSL backends, curl_global_sslset() allows to - * choose one. This function can only be called once, and it must be called - * *before* curl_global_init(). - * - * The backend can be identified by the id (e.g. CURLSSLBACKEND_OPENSSL). The - * backend can also be specified via the name parameter (passing -1 as id). - * If both id and name are specified, the name will be ignored. If neither id - * nor name are specified, the function will fail with - * CURLSSLSET_UNKNOWN_BACKEND and set the "avail" pointer to the - * NULL-terminated list of available backends. - * - * Upon success, the function returns CURLSSLSET_OK. - * - * If the specified SSL backend is not available, the function returns - * CURLSSLSET_UNKNOWN_BACKEND and sets the "avail" pointer to a NULL-terminated - * list of available SSL backends. - * - * The SSL backend can be set only once. If it has already been set, a - * subsequent attempt to change it will result in a CURLSSLSET_TOO_LATE. - */ - -struct curl_ssl_backend { - curl_sslbackend id; - const char *name; -}; -typedef struct curl_ssl_backend curl_ssl_backend; - -typedef enum { - CURLSSLSET_OK = 0, - CURLSSLSET_UNKNOWN_BACKEND, - CURLSSLSET_TOO_LATE, - CURLSSLSET_NO_BACKENDS /* libcurl was built without any SSL support */ -} CURLsslset; - -CURL_EXTERN CURLsslset curl_global_sslset(curl_sslbackend id, const char *name, - const curl_ssl_backend ***avail); - -/* - * NAME curl_slist_append() - * - * DESCRIPTION - * - * Appends a string to a linked list. If no list exists, it will be created - * first. Returns the new list, after appending. - */ -CURL_EXTERN struct curl_slist *curl_slist_append(struct curl_slist *, - const char *); - -/* - * NAME curl_slist_free_all() - * - * DESCRIPTION - * - * free a previously built curl_slist. - */ -CURL_EXTERN void curl_slist_free_all(struct curl_slist *); - -/* - * NAME curl_getdate() - * - * DESCRIPTION - * - * Returns the time, in seconds since 1 Jan 1970 of the time string given in - * the first argument. The time argument in the second parameter is unused - * and should be set to NULL. - */ -CURL_EXTERN time_t curl_getdate(const char *p, const time_t *unused); - -/* info about the certificate chain, only for OpenSSL, GnuTLS, Schannel, NSS - and GSKit builds. Asked for with CURLOPT_CERTINFO / CURLINFO_CERTINFO */ -struct curl_certinfo { - int num_of_certs; /* number of certificates with information */ - struct curl_slist **certinfo; /* for each index in this array, there's a - linked list with textual information in the - format "name: value" */ -}; - -/* Information about the SSL library used and the respective internal SSL - handle, which can be used to obtain further information regarding the - connection. Asked for with CURLINFO_TLS_SSL_PTR or CURLINFO_TLS_SESSION. */ -struct curl_tlssessioninfo { - curl_sslbackend backend; - void *internals; -}; - -#define CURLINFO_STRING 0x100000 -#define CURLINFO_LONG 0x200000 -#define CURLINFO_DOUBLE 0x300000 -#define CURLINFO_SLIST 0x400000 -#define CURLINFO_PTR 0x400000 /* same as SLIST */ -#define CURLINFO_SOCKET 0x500000 -#define CURLINFO_OFF_T 0x600000 -#define CURLINFO_MASK 0x0fffff -#define CURLINFO_TYPEMASK 0xf00000 - -typedef enum { - CURLINFO_NONE, /* first, never use this */ - CURLINFO_EFFECTIVE_URL = CURLINFO_STRING + 1, - CURLINFO_RESPONSE_CODE = CURLINFO_LONG + 2, - CURLINFO_TOTAL_TIME = CURLINFO_DOUBLE + 3, - CURLINFO_NAMELOOKUP_TIME = CURLINFO_DOUBLE + 4, - CURLINFO_CONNECT_TIME = CURLINFO_DOUBLE + 5, - CURLINFO_PRETRANSFER_TIME = CURLINFO_DOUBLE + 6, - CURLINFO_SIZE_UPLOAD = CURLINFO_DOUBLE + 7, - CURLINFO_SIZE_UPLOAD_T = CURLINFO_OFF_T + 7, - CURLINFO_SIZE_DOWNLOAD = CURLINFO_DOUBLE + 8, - CURLINFO_SIZE_DOWNLOAD_T = CURLINFO_OFF_T + 8, - CURLINFO_SPEED_DOWNLOAD = CURLINFO_DOUBLE + 9, - CURLINFO_SPEED_DOWNLOAD_T = CURLINFO_OFF_T + 9, - CURLINFO_SPEED_UPLOAD = CURLINFO_DOUBLE + 10, - CURLINFO_SPEED_UPLOAD_T = CURLINFO_OFF_T + 10, - CURLINFO_HEADER_SIZE = CURLINFO_LONG + 11, - CURLINFO_REQUEST_SIZE = CURLINFO_LONG + 12, - CURLINFO_SSL_VERIFYRESULT = CURLINFO_LONG + 13, - CURLINFO_FILETIME = CURLINFO_LONG + 14, - CURLINFO_FILETIME_T = CURLINFO_OFF_T + 14, - CURLINFO_CONTENT_LENGTH_DOWNLOAD = CURLINFO_DOUBLE + 15, - CURLINFO_CONTENT_LENGTH_DOWNLOAD_T = CURLINFO_OFF_T + 15, - CURLINFO_CONTENT_LENGTH_UPLOAD = CURLINFO_DOUBLE + 16, - CURLINFO_CONTENT_LENGTH_UPLOAD_T = CURLINFO_OFF_T + 16, - CURLINFO_STARTTRANSFER_TIME = CURLINFO_DOUBLE + 17, - CURLINFO_CONTENT_TYPE = CURLINFO_STRING + 18, - CURLINFO_REDIRECT_TIME = CURLINFO_DOUBLE + 19, - CURLINFO_REDIRECT_COUNT = CURLINFO_LONG + 20, - CURLINFO_PRIVATE = CURLINFO_STRING + 21, - CURLINFO_HTTP_CONNECTCODE = CURLINFO_LONG + 22, - CURLINFO_HTTPAUTH_AVAIL = CURLINFO_LONG + 23, - CURLINFO_PROXYAUTH_AVAIL = CURLINFO_LONG + 24, - CURLINFO_OS_ERRNO = CURLINFO_LONG + 25, - CURLINFO_NUM_CONNECTS = CURLINFO_LONG + 26, - CURLINFO_SSL_ENGINES = CURLINFO_SLIST + 27, - CURLINFO_COOKIELIST = CURLINFO_SLIST + 28, - CURLINFO_LASTSOCKET = CURLINFO_LONG + 29, - CURLINFO_FTP_ENTRY_PATH = CURLINFO_STRING + 30, - CURLINFO_REDIRECT_URL = CURLINFO_STRING + 31, - CURLINFO_PRIMARY_IP = CURLINFO_STRING + 32, - CURLINFO_APPCONNECT_TIME = CURLINFO_DOUBLE + 33, - CURLINFO_CERTINFO = CURLINFO_PTR + 34, - CURLINFO_CONDITION_UNMET = CURLINFO_LONG + 35, - CURLINFO_RTSP_SESSION_ID = CURLINFO_STRING + 36, - CURLINFO_RTSP_CLIENT_CSEQ = CURLINFO_LONG + 37, - CURLINFO_RTSP_SERVER_CSEQ = CURLINFO_LONG + 38, - CURLINFO_RTSP_CSEQ_RECV = CURLINFO_LONG + 39, - CURLINFO_PRIMARY_PORT = CURLINFO_LONG + 40, - CURLINFO_LOCAL_IP = CURLINFO_STRING + 41, - CURLINFO_LOCAL_PORT = CURLINFO_LONG + 42, - CURLINFO_TLS_SESSION = CURLINFO_PTR + 43, - CURLINFO_ACTIVESOCKET = CURLINFO_SOCKET + 44, - CURLINFO_TLS_SSL_PTR = CURLINFO_PTR + 45, - CURLINFO_HTTP_VERSION = CURLINFO_LONG + 46, - CURLINFO_PROXY_SSL_VERIFYRESULT = CURLINFO_LONG + 47, - CURLINFO_PROTOCOL = CURLINFO_LONG + 48, - CURLINFO_SCHEME = CURLINFO_STRING + 49, - /* Fill in new entries below here! */ - - /* Preferably these would be defined conditionally based on the - sizeof curl_off_t being 64-bits */ - CURLINFO_TOTAL_TIME_T = CURLINFO_OFF_T + 50, - CURLINFO_NAMELOOKUP_TIME_T = CURLINFO_OFF_T + 51, - CURLINFO_CONNECT_TIME_T = CURLINFO_OFF_T + 52, - CURLINFO_PRETRANSFER_TIME_T = CURLINFO_OFF_T + 53, - CURLINFO_STARTTRANSFER_TIME_T = CURLINFO_OFF_T + 54, - CURLINFO_REDIRECT_TIME_T = CURLINFO_OFF_T + 55, - CURLINFO_APPCONNECT_TIME_T = CURLINFO_OFF_T + 56, - CURLINFO_RETRY_AFTER = CURLINFO_OFF_T + 57, - - CURLINFO_LASTONE = 57 -} CURLINFO; - -/* CURLINFO_RESPONSE_CODE is the new name for the option previously known as - CURLINFO_HTTP_CODE */ -#define CURLINFO_HTTP_CODE CURLINFO_RESPONSE_CODE - -typedef enum { - CURLCLOSEPOLICY_NONE, /* first, never use this */ - - CURLCLOSEPOLICY_OLDEST, - CURLCLOSEPOLICY_LEAST_RECENTLY_USED, - CURLCLOSEPOLICY_LEAST_TRAFFIC, - CURLCLOSEPOLICY_SLOWEST, - CURLCLOSEPOLICY_CALLBACK, - - CURLCLOSEPOLICY_LAST /* last, never use this */ -} curl_closepolicy; - -#define CURL_GLOBAL_SSL (1<<0) /* no purpose since since 7.57.0 */ -#define CURL_GLOBAL_WIN32 (1<<1) -#define CURL_GLOBAL_ALL (CURL_GLOBAL_SSL|CURL_GLOBAL_WIN32) -#define CURL_GLOBAL_NOTHING 0 -#define CURL_GLOBAL_DEFAULT CURL_GLOBAL_ALL -#define CURL_GLOBAL_ACK_EINTR (1<<2) - - -/***************************************************************************** - * Setup defines, protos etc for the sharing stuff. - */ - -/* Different data locks for a single share */ -typedef enum { - CURL_LOCK_DATA_NONE = 0, - /* CURL_LOCK_DATA_SHARE is used internally to say that - * the locking is just made to change the internal state of the share - * itself. - */ - CURL_LOCK_DATA_SHARE, - CURL_LOCK_DATA_COOKIE, - CURL_LOCK_DATA_DNS, - CURL_LOCK_DATA_SSL_SESSION, - CURL_LOCK_DATA_CONNECT, - CURL_LOCK_DATA_PSL, - CURL_LOCK_DATA_LAST -} curl_lock_data; - -/* Different lock access types */ -typedef enum { - CURL_LOCK_ACCESS_NONE = 0, /* unspecified action */ - CURL_LOCK_ACCESS_SHARED = 1, /* for read perhaps */ - CURL_LOCK_ACCESS_SINGLE = 2, /* for write perhaps */ - CURL_LOCK_ACCESS_LAST /* never use */ -} curl_lock_access; - -typedef void (*curl_lock_function)(CURL *handle, - curl_lock_data data, - curl_lock_access locktype, - void *userptr); -typedef void (*curl_unlock_function)(CURL *handle, - curl_lock_data data, - void *userptr); - - -typedef enum { - CURLSHE_OK, /* all is fine */ - CURLSHE_BAD_OPTION, /* 1 */ - CURLSHE_IN_USE, /* 2 */ - CURLSHE_INVALID, /* 3 */ - CURLSHE_NOMEM, /* 4 out of memory */ - CURLSHE_NOT_BUILT_IN, /* 5 feature not present in lib */ - CURLSHE_LAST /* never use */ -} CURLSHcode; - -typedef enum { - CURLSHOPT_NONE, /* don't use */ - CURLSHOPT_SHARE, /* specify a data type to share */ - CURLSHOPT_UNSHARE, /* specify which data type to stop sharing */ - CURLSHOPT_LOCKFUNC, /* pass in a 'curl_lock_function' pointer */ - CURLSHOPT_UNLOCKFUNC, /* pass in a 'curl_unlock_function' pointer */ - CURLSHOPT_USERDATA, /* pass in a user data pointer used in the lock/unlock - callback functions */ - CURLSHOPT_LAST /* never use */ -} CURLSHoption; - -CURL_EXTERN CURLSH *curl_share_init(void); -CURL_EXTERN CURLSHcode curl_share_setopt(CURLSH *, CURLSHoption option, ...); -CURL_EXTERN CURLSHcode curl_share_cleanup(CURLSH *); - -/**************************************************************************** - * Structures for querying information about the curl library at runtime. - */ - -typedef enum { - CURLVERSION_FIRST, - CURLVERSION_SECOND, - CURLVERSION_THIRD, - CURLVERSION_FOURTH, - CURLVERSION_FIFTH, - CURLVERSION_SIXTH, - CURLVERSION_SEVENTH, - CURLVERSION_LAST /* never actually use this */ -} CURLversion; - -/* The 'CURLVERSION_NOW' is the symbolic name meant to be used by - basically all programs ever that want to get version information. It is - meant to be a built-in version number for what kind of struct the caller - expects. If the struct ever changes, we redefine the NOW to another enum - from above. */ -#define CURLVERSION_NOW CURLVERSION_SEVENTH - -struct curl_version_info_data { - CURLversion age; /* age of the returned struct */ - const char *version; /* LIBCURL_VERSION */ - unsigned int version_num; /* LIBCURL_VERSION_NUM */ - const char *host; /* OS/host/cpu/machine when configured */ - int features; /* bitmask, see defines below */ - const char *ssl_version; /* human readable string */ - long ssl_version_num; /* not used anymore, always 0 */ - const char *libz_version; /* human readable string */ - /* protocols is terminated by an entry with a NULL protoname */ - const char * const *protocols; - - /* The fields below this were added in CURLVERSION_SECOND */ - const char *ares; - int ares_num; - - /* This field was added in CURLVERSION_THIRD */ - const char *libidn; - - /* These field were added in CURLVERSION_FOURTH */ - - /* Same as '_libiconv_version' if built with HAVE_ICONV */ - int iconv_ver_num; - - const char *libssh_version; /* human readable string */ - - /* These fields were added in CURLVERSION_FIFTH */ - unsigned int brotli_ver_num; /* Numeric Brotli version - (MAJOR << 24) | (MINOR << 12) | PATCH */ - const char *brotli_version; /* human readable string. */ - - /* These fields were added in CURLVERSION_SIXTH */ - unsigned int nghttp2_ver_num; /* Numeric nghttp2 version - (MAJOR << 16) | (MINOR << 8) | PATCH */ - const char *nghttp2_version; /* human readable string. */ - const char *quic_version; /* human readable quic (+ HTTP/3) library + - version or NULL */ - - /* These fields were added in CURLVERSION_SEVENTH */ - const char *cainfo; /* the built-in default CURLOPT_CAINFO, might - be NULL */ - const char *capath; /* the built-in default CURLOPT_CAPATH, might - be NULL */ - -}; -typedef struct curl_version_info_data curl_version_info_data; - -#define CURL_VERSION_IPV6 (1<<0) /* IPv6-enabled */ -#define CURL_VERSION_KERBEROS4 (1<<1) /* Kerberos V4 auth is supported - (deprecated) */ -#define CURL_VERSION_SSL (1<<2) /* SSL options are present */ -#define CURL_VERSION_LIBZ (1<<3) /* libz features are present */ -#define CURL_VERSION_NTLM (1<<4) /* NTLM auth is supported */ -#define CURL_VERSION_GSSNEGOTIATE (1<<5) /* Negotiate auth is supported - (deprecated) */ -#define CURL_VERSION_DEBUG (1<<6) /* Built with debug capabilities */ -#define CURL_VERSION_ASYNCHDNS (1<<7) /* Asynchronous DNS resolves */ -#define CURL_VERSION_SPNEGO (1<<8) /* SPNEGO auth is supported */ -#define CURL_VERSION_LARGEFILE (1<<9) /* Supports files larger than 2GB */ -#define CURL_VERSION_IDN (1<<10) /* Internationized Domain Names are - supported */ -#define CURL_VERSION_SSPI (1<<11) /* Built against Windows SSPI */ -#define CURL_VERSION_CONV (1<<12) /* Character conversions supported */ -#define CURL_VERSION_CURLDEBUG (1<<13) /* Debug memory tracking supported */ -#define CURL_VERSION_TLSAUTH_SRP (1<<14) /* TLS-SRP auth is supported */ -#define CURL_VERSION_NTLM_WB (1<<15) /* NTLM delegation to winbind helper - is supported */ -#define CURL_VERSION_HTTP2 (1<<16) /* HTTP2 support built-in */ -#define CURL_VERSION_GSSAPI (1<<17) /* Built against a GSS-API library */ -#define CURL_VERSION_KERBEROS5 (1<<18) /* Kerberos V5 auth is supported */ -#define CURL_VERSION_UNIX_SOCKETS (1<<19) /* Unix domain sockets support */ -#define CURL_VERSION_PSL (1<<20) /* Mozilla's Public Suffix List, used - for cookie domain verification */ -#define CURL_VERSION_HTTPS_PROXY (1<<21) /* HTTPS-proxy support built-in */ -#define CURL_VERSION_MULTI_SSL (1<<22) /* Multiple SSL backends available */ -#define CURL_VERSION_BROTLI (1<<23) /* Brotli features are present. */ -#define CURL_VERSION_ALTSVC (1<<24) /* Alt-Svc handling built-in */ -#define CURL_VERSION_HTTP3 (1<<25) /* HTTP3 support built-in */ - - /* - * NAME curl_version_info() - * - * DESCRIPTION - * - * This function returns a pointer to a static copy of the version info - * struct. See above. - */ -CURL_EXTERN curl_version_info_data *curl_version_info(CURLversion); - -/* - * NAME curl_easy_strerror() - * - * DESCRIPTION - * - * The curl_easy_strerror function may be used to turn a CURLcode value - * into the equivalent human readable error string. This is useful - * for printing meaningful error messages. - */ -CURL_EXTERN const char *curl_easy_strerror(CURLcode); - -/* - * NAME curl_share_strerror() - * - * DESCRIPTION - * - * The curl_share_strerror function may be used to turn a CURLSHcode value - * into the equivalent human readable error string. This is useful - * for printing meaningful error messages. - */ -CURL_EXTERN const char *curl_share_strerror(CURLSHcode); - -/* - * NAME curl_easy_pause() - * - * DESCRIPTION - * - * The curl_easy_pause function pauses or unpauses transfers. Select the new - * state by setting the bitmask, use the convenience defines below. - * - */ -CURL_EXTERN CURLcode curl_easy_pause(CURL *handle, int bitmask); - -#define CURLPAUSE_RECV (1<<0) -#define CURLPAUSE_RECV_CONT (0) - -#define CURLPAUSE_SEND (1<<2) -#define CURLPAUSE_SEND_CONT (0) - -#define CURLPAUSE_ALL (CURLPAUSE_RECV|CURLPAUSE_SEND) -#define CURLPAUSE_CONT (CURLPAUSE_RECV_CONT|CURLPAUSE_SEND_CONT) - -#ifdef __cplusplus -} -#endif - -/* unfortunately, the easy.h and multi.h include files need options and info - stuff before they can be included! */ -#include "easy.h" /* nothing in curl is fun without the easy stuff */ -#include "multi.h" -#include "urlapi.h" - -/* the typechecker doesn't work in C++ (yet) */ -#if defined(__GNUC__) && defined(__GNUC_MINOR__) && \ - ((__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)) && \ - !defined(__cplusplus) && !defined(CURL_DISABLE_TYPECHECK) -#include "typecheck-gcc.h" -#else -#if defined(__STDC__) && (__STDC__ >= 1) -/* This preprocessor magic that replaces a call with the exact same call is - only done to make sure application authors pass exactly three arguments - to these functions. */ -#define curl_easy_setopt(handle,opt,param) curl_easy_setopt(handle,opt,param) -#define curl_easy_getinfo(handle,info,arg) curl_easy_getinfo(handle,info,arg) -#define curl_share_setopt(share,opt,param) curl_share_setopt(share,opt,param) -#define curl_multi_setopt(handle,opt,param) curl_multi_setopt(handle,opt,param) -#endif /* __STDC__ >= 1 */ -#endif /* gcc >= 4.3 && !__cplusplus */ - -#endif /* CURLINC_CURL_H */ diff --git a/curl/curlver.h b/curl/curlver.h deleted file mode 100644 index 48d1e46..0000000 --- a/curl/curlver.h +++ /dev/null @@ -1,77 +0,0 @@ -#ifndef CURLINC_CURLVER_H -#define CURLINC_CURLVER_H -/*************************************************************************** - * _ _ ____ _ - * Project ___| | | | _ \| | - * / __| | | | |_) | | - * | (__| |_| | _ <| |___ - * \___|\___/|_| \_\_____| - * - * Copyright (C) 1998 - 2020, Daniel Stenberg, , et al. - * - * This software is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at https://curl.haxx.se/docs/copyright.html. - * - * You may opt to use, copy, modify, merge, publish, distribute and/or sell - * copies of the Software, and permit persons to whom the Software is - * furnished to do so, under the terms of the COPYING file. - * - * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY - * KIND, either express or implied. - * - ***************************************************************************/ - -/* This header file contains nothing but libcurl version info, generated by - a script at release-time. This was made its own header file in 7.11.2 */ - -/* This is the global package copyright */ -#define LIBCURL_COPYRIGHT "1996 - 2020 Daniel Stenberg, ." - -/* This is the version number of the libcurl package from which this header - file origins: */ -#define LIBCURL_VERSION "7.71.1" - -/* The numeric version number is also available "in parts" by using these - defines: */ -#define LIBCURL_VERSION_MAJOR 7 -#define LIBCURL_VERSION_MINOR 71 -#define LIBCURL_VERSION_PATCH 1 - -/* This is the numeric version of the libcurl version number, meant for easier - parsing and comparisons by programs. The LIBCURL_VERSION_NUM define will - always follow this syntax: - - 0xXXYYZZ - - Where XX, YY and ZZ are the main version, release and patch numbers in - hexadecimal (using 8 bits each). All three numbers are always represented - using two digits. 1.2 would appear as "0x010200" while version 9.11.7 - appears as "0x090b07". - - This 6-digit (24 bits) hexadecimal number does not show pre-release number, - and it is always a greater number in a more recent release. It makes - comparisons with greater than and less than work. - - Note: This define is the full hex number and _does not_ use the - CURL_VERSION_BITS() macro since curl's own configure script greps for it - and needs it to contain the full number. -*/ -#define LIBCURL_VERSION_NUM 0x074701 - -/* - * This is the date and time when the full source package was created. The - * timestamp is not stored in git, as the timestamp is properly set in the - * tarballs by the maketgz script. - * - * The format of the date follows this template: - * - * "2007-11-23" - */ -#define LIBCURL_TIMESTAMP "2020-07-01" - -#define CURL_VERSION_BITS(x,y,z) ((x)<<16|(y)<<8|(z)) -#define CURL_AT_LEAST_VERSION(x,y,z) \ - (LIBCURL_VERSION_NUM >= CURL_VERSION_BITS(x, y, z)) - -#endif /* CURLINC_CURLVER_H */ diff --git a/curl/easy.h b/curl/easy.h deleted file mode 100644 index 9aef133..0000000 --- a/curl/easy.h +++ /dev/null @@ -1,123 +0,0 @@ -#ifndef CURLINC_EASY_H -#define CURLINC_EASY_H -/*************************************************************************** - * _ _ ____ _ - * Project ___| | | | _ \| | - * / __| | | | |_) | | - * | (__| |_| | _ <| |___ - * \___|\___/|_| \_\_____| - * - * Copyright (C) 1998 - 2020, Daniel Stenberg, , et al. - * - * This software is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms - * are also available at https://curl.haxx.se/docs/copyright.html. - * - * You may opt to use, copy, modify, merge, publish, distribute and/or sell - * copies of the Software, and permit persons to whom the Software is - * furnished to do so, under the terms of the COPYING file. - * - * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY - * KIND, either express or implied. - * - ***************************************************************************/ -#ifdef __cplusplus -extern "C" { -#endif - -/* Flag bits in the curl_blob struct: */ -#define CURL_BLOB_COPY 1 /* tell libcurl to copy the data */ -#define CURL_BLOB_NOCOPY 0 /* tell libcurl to NOT copy the data */ - -struct curl_blob { - void *data; - size_t len; - unsigned int flags; /* bit 0 is defined, the rest are reserved and should be - left zeroes */ -}; - -CURL_EXTERN CURL *curl_easy_init(void); -CURL_EXTERN CURLcode curl_easy_setopt(CURL *curl, CURLoption option, ...); -CURL_EXTERN CURLcode curl_easy_perform(CURL *curl); -CURL_EXTERN void curl_easy_cleanup(CURL *curl); - -/* - * NAME curl_easy_getinfo() - * - * DESCRIPTION - * - * Request internal information from the curl session with this function. The - * third argument MUST be a pointer to a long, a pointer to a char * or a - * pointer to a double (as the documentation describes elsewhere). The data - * pointed to will be filled in accordingly and can be relied upon only if the - * function returns CURLE_OK. This function is intended to get used *AFTER* a - * performed transfer, all results from this function are undefined until the - * transfer is completed. - */ -CURL_EXTERN CURLcode curl_easy_getinfo(CURL *curl, CURLINFO info, ...); - - -/* - * NAME curl_easy_duphandle() - * - * DESCRIPTION - * - * Creates a new curl session handle with the same options set for the handle - * passed in. Duplicating a handle could only be a matter of cloning data and - * options, internal state info and things like persistent connections cannot - * be transferred. It is useful in multithreaded applications when you can run - * curl_easy_duphandle() for each new thread to avoid a series of identical - * curl_easy_setopt() invokes in every thread. - */ -CURL_EXTERN CURL *curl_easy_duphandle(CURL *curl); - -/* - * NAME curl_easy_reset() - * - * DESCRIPTION - * - * Re-initializes a CURL handle to the default values. This puts back the - * handle to the same state as it was in when it was just created. - * - * It does keep: live connections, the Session ID cache, the DNS cache and the - * cookies. - */ -CURL_EXTERN void curl_easy_reset(CURL *curl); - -/* - * NAME curl_easy_recv() - * - * DESCRIPTION - * - * Receives data from the connected socket. Use after successful - * curl_easy_perform() with CURLOPT_CONNECT_ONLY option. - */ -CURL_EXTERN CURLcode curl_easy_recv(CURL *curl, void *buffer, size_t buflen, - size_t *n); - -/* - * NAME curl_easy_send() - * - * DESCRIPTION - * - * Sends data over the connected socket. Use after successful - * curl_easy_perform() with CURLOPT_CONNECT_ONLY option. - */ -CURL_EXTERN CURLcode curl_easy_send(CURL *curl, const void *buffer, - size_t buflen, size_t *n); - - -/* - * NAME curl_easy_upkeep() - * - * DESCRIPTION - * - * Performs connection upkeep for the given session handle. - */ -CURL_EXTERN CURLcode curl_easy_upkeep(CURL *curl); - -#ifdef __cplusplus -} -#endif - -#endif diff --git a/curl/libcurl.lib b/curl/libcurl.lib deleted file mode 100644 index 40bfa2c0249cdde8b4b982ca9cd3aa643b59b163..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1875826 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

h?=3*LV8RsnYUHIVuz_5sv=Cof+>-gxw0TImk zL&;)_7OzgkUB&b=HpKZ|Jhq$YN|49_;A3^=`!p&+hAm?K4dk>jkRFvL+-w_PZw&T> z>myFKQ-V4~)g2FQnqL2>J7e9KSqwf)p+k^|KU_#pk{!XG7gvfMZv%|Md{mG9B}`N7C2o5aC*ra#G~pCSdp&YJ07Q8#zIaqYA1rM+*Z5T*Db<)WPwsQh#UuCg~qX0662Thr^6q z*4?lCiEG^<4$q2%9PMl^gUS=`U>s_IS&l5_0;lpj>mZI3^~tLa8oPKrtKra}bz%_O zwJxl?PZOnL35=hk2OG^p~BPRoHbw$wg^OpHg{yKzC3 zZ;%myKO)k}Uc@PkSqKH;!z4Z6uxiqy_}xQxoh(3}?+W9MzcuKUKvmAczxtwaq_PUP zafBpX-VYPhc4qHQ74lmiAO6bLHatuj6*k7XvUbw z5&^a#q+{Zf;5C)#Bk#x@L@L(Ckqqfd7&+K~o(HM2q>XK4*_*r`$x<+ZZ3Tn_cLb?b z48BC0biB>fUn{eH+!I1X$ZZF}I#x~Q%$fB~XHD9uDYh_^O2VrWHBfD_byJ0_WUW-UA( zKfmr^ScrOuNH}M(C5-IMgiP$W{0gH8tR^lsUD8U$o54HM^lS1U2Ft8CCS&5Wt;eRAWiX>kc(U|3j{r>|m#wHUx>+mh z9GEQG)50m2tUyB5F2}|@)1wQ^QwghvtZ%mXbi8v<8~Hp^N}(05;2V zBRpZg3*s{8Ihfx_>2aG#FIc5mccPP86p0I4(ZE4+?f!W`3)`Q6$oh@VGh z0B8}pfSQ%o^vVfSZp%6MNApDRuQyA+2@oU=b&cdwxrmafrqn$qkY9_1_`*V`ok6YM zR!DN)vEQ>JCE(fFp+e~deqO(hg8?!js!f7mZ1G7{$8_Q3Dp6r|V~kWN!FZQoL*MEZFy23KZyqETQhbopZA5kJzi<3&&Zw( zr9h9arEO$LCVm?YcbaCc`I*egCw0lK+3Dl{n2o({!2OK6_`pfG&f{u0{x^w3hAo(T zqW zc5$!KeGpEL@+VbrmPp6J6q@Caf1Bv6T}MYlWgM%KtE?x(>9c#-rI(`V24UyZWURDVVPF%0uVV8B` zcgK(c5AJR3liT8jtsUyYTr^X%G$EFC@K3zBKDgq&vZ>dzVU5gPUZFO5J(Rd;kH9yA z-^(`HBIZ{-n7QW*{(;qj$tZ54Ng5bVeH6i07oKzTBkiTKIGiD_*za^fq{U!bU{QE& zCddM9)N|+4Q>X@p3_MB;0D8Y%gLKJKz)U5^76O4HFRn)%VZB}FaSesG`?a&P)8ASq z$&7lO$CK-YLrtW)w1EIll=Y0zJCA?>l4+=jMQ4x#p@uQ)&HVUxxd3B(M*$l12-j1xCO7xTo%;8=sa2EZXMcz znvoj`NGF^;y+~@6R<+vkOe`dYaY<6*%BYG*gaBo^g6Sn9n309E12l~$CuZa-u15@N zyGgw7+%tos!QnVKH{4K_DCai7vdtc#Ee?%PIt)B+L6HJ}L+jsZOq~5Jt_a{2krM!3 zIf^D0;~G58qetjjv#o7>Z_dAl+K5MZ(UPbGm@SUjl@7pdzcJhYHjaH!wu$aPxT@0tTjhhSyObjG|X&|B&>a|HC7 zfxdCXyFc&&aDPblCN$S+q!CBheA|8+-8B|s@LkRPh`8wPMi;#18&!z}Urm8?4$?RF zU-)9aGE#+4bc^!-K`;>JB_?y+!OS)D-3rk0rSV`)NEcZ=V59@D$zDitEhn)XJhp-> z9b@WjV@|}f0m>PI6k;H%>a8fuHsA>|eb~fL_b=a{ zOmTC}K)&n(ev$E|=V~iiV5Wg~jq6rcC_Yp-|_hO$-VTNWe9~O|)nxjsi z?2#c&wurq=h7_BMUU1$Nc^z1*X0;6_7pQIOt2@c0Cd)Z(#3e|X944@n`GGi)$78mb z59}>$fDTUL>!>E8Qm__;Bt_$tt^F`^+;_7Qm7@3Nz!yrHw_^C}0G^}o1SYcoq9%Cv zr-iRFpoI!X2Ey0ta|K1X`;U w_++{NicWcYiJPBDyd^caW{66;R*7MgyJ(ub)7~ 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

    #ZYeOCKR7#ILZRC|QTugB`_HF~8Z$8{JUm$hwkV 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%0DjN;;q0{ksNa5RwZL898!IDyL|_-D~U%ar54>=1y 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

    (Cdcv|#PVX+XJ}k^ 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

    9wkz$@|^Nf^zzlVEb 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

    L5+4dG9|890c=Q7%DG(RJ-eh2A2I4~4 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 `e>h4I-KkxU>b$!=YS5keS=iKKxYn`pmIpy+; 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

    a+X2P=u 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