Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
json
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
json
Commits
098bbab0
Unverified
Commit
098bbab0
authored
Jul 06, 2021
by
Niels Lohmann
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/develop' into develop
parents
71fd9bd9
6471a631
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
52 additions
and
18 deletions
+52
-18
include/nlohmann/detail/input/input_adapters.hpp
include/nlohmann/detail/input/input_adapters.hpp
+9
-2
include/nlohmann/detail/output/output_adapters.hpp
include/nlohmann/detail/output/output_adapters.hpp
+10
-2
include/nlohmann/json.hpp
include/nlohmann/json.hpp
+7
-5
single_include/nlohmann/json.hpp
single_include/nlohmann/json.hpp
+26
-9
No files found.
include/nlohmann/detail/input/input_adapters.hpp
View file @
098bbab0
...
@@ -2,9 +2,7 @@
...
@@ -2,9 +2,7 @@
#include <array> // array
#include <array> // array
#include <cstddef> // size_t
#include <cstddef> // size_t
#include <cstdio> //FILE *
#include <cstring> // strlen
#include <cstring> // strlen
#include <istream> // istream
#include <iterator> // begin, end, iterator_traits, random_access_iterator_tag, distance, next
#include <iterator> // begin, end, iterator_traits, random_access_iterator_tag, distance, next
#include <memory> // shared_ptr, make_shared, addressof
#include <memory> // shared_ptr, make_shared, addressof
#include <numeric> // accumulate
#include <numeric> // accumulate
...
@@ -12,6 +10,11 @@
...
@@ -12,6 +10,11 @@
#include <type_traits> // enable_if, is_base_of, is_pointer, is_integral, remove_pointer
#include <type_traits> // enable_if, is_base_of, is_pointer, is_integral, remove_pointer
#include <utility> // pair, declval
#include <utility> // pair, declval
#ifndef JSON_NO_IO
#include <cstdio> //FILE *
#include <istream> // istream
#endif // JSON_NO_IO
#include <nlohmann/detail/iterators/iterator_traits.hpp>
#include <nlohmann/detail/iterators/iterator_traits.hpp>
#include <nlohmann/detail/macro_scope.hpp>
#include <nlohmann/detail/macro_scope.hpp>
...
@@ -26,6 +29,7 @@ enum class input_format_t { json, cbor, msgpack, ubjson, bson };
...
@@ -26,6 +29,7 @@ enum class input_format_t { json, cbor, msgpack, ubjson, bson };
// input adapters //
// input adapters //
////////////////////
////////////////////
#ifndef JSON_NO_IO
/*!
/*!
Input adapter for stdio file access. This adapter read only 1 byte and do not use any
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.
buffer. This adapter is a very low level adapter.
...
@@ -117,6 +121,7 @@ class input_stream_adapter
...
@@ -117,6 +121,7 @@ class input_stream_adapter
std
::
istream
*
is
=
nullptr
;
std
::
istream
*
is
=
nullptr
;
std
::
streambuf
*
sb
=
nullptr
;
std
::
streambuf
*
sb
=
nullptr
;
};
};
#endif // JSON_NO_IO
// General-purpose iterator-based adapter. It might not be as fast as
// General-purpose iterator-based adapter. It might not be as fast as
// theoretically possible for some containers, but it is extremely versatile.
// theoretically possible for some containers, but it is extremely versatile.
...
@@ -403,6 +408,7 @@ typename container_input_adapter_factory_impl::container_input_adapter_factory<C
...
@@ -403,6 +408,7 @@ typename container_input_adapter_factory_impl::container_input_adapter_factory<C
return
container_input_adapter_factory_impl
::
container_input_adapter_factory
<
ContainerType
>::
create
(
container
);
return
container_input_adapter_factory_impl
::
container_input_adapter_factory
<
ContainerType
>::
create
(
container
);
}
}
#ifndef JSON_NO_IO
// Special cases with fast paths
// Special cases with fast paths
inline
file_input_adapter
input_adapter
(
std
::
FILE
*
file
)
inline
file_input_adapter
input_adapter
(
std
::
FILE
*
file
)
{
{
...
@@ -418,6 +424,7 @@ inline input_stream_adapter input_adapter(std::istream&& stream)
...
@@ -418,6 +424,7 @@ inline input_stream_adapter input_adapter(std::istream&& stream)
{
{
return
input_stream_adapter
(
stream
);
return
input_stream_adapter
(
stream
);
}
}
#endif // JSON_NO_IO
using
contiguous_bytes_input_adapter
=
decltype
(
input_adapter
(
std
::
declval
<
const
char
*>
(),
std
::
declval
<
const
char
*>
()));
using
contiguous_bytes_input_adapter
=
decltype
(
input_adapter
(
std
::
declval
<
const
char
*>
(),
std
::
declval
<
const
char
*>
()));
...
...
include/nlohmann/detail/output/output_adapters.hpp
View file @
098bbab0
...
@@ -2,12 +2,16 @@
...
@@ -2,12 +2,16 @@
#include <algorithm> // copy
#include <algorithm> // copy
#include <cstddef> // size_t
#include <cstddef> // size_t
#include <ios> // streamsize
#include <iterator> // back_inserter
#include <iterator> // back_inserter
#include <memory> // shared_ptr, make_shared
#include <memory> // shared_ptr, make_shared
#include <ostream> // basic_ostream
#include <string> // basic_string
#include <string> // basic_string
#include <vector> // vector
#include <vector> // vector
#ifndef JSON_NO_IO
#include <ios> // streamsize
#include <ostream> // basic_ostream
#endif // JSON_NO_IO
#include <nlohmann/detail/macro_scope.hpp>
#include <nlohmann/detail/macro_scope.hpp>
namespace
nlohmann
namespace
nlohmann
...
@@ -56,6 +60,7 @@ class output_vector_adapter : public output_adapter_protocol<CharType>
...
@@ -56,6 +60,7 @@ class output_vector_adapter : public output_adapter_protocol<CharType>
std
::
vector
<
CharType
>&
v
;
std
::
vector
<
CharType
>&
v
;
};
};
#ifndef JSON_NO_IO
/// output adapter for output streams
/// output adapter for output streams
template
<
typename
CharType
>
template
<
typename
CharType
>
class
output_stream_adapter
:
public
output_adapter_protocol
<
CharType
>
class
output_stream_adapter
:
public
output_adapter_protocol
<
CharType
>
...
@@ -79,6 +84,7 @@ class output_stream_adapter : public output_adapter_protocol<CharType>
...
@@ -79,6 +84,7 @@ class output_stream_adapter : public output_adapter_protocol<CharType>
private:
private:
std
::
basic_ostream
<
CharType
>&
stream
;
std
::
basic_ostream
<
CharType
>&
stream
;
};
};
#endif // JSON_NO_IO
/// output adapter for basic_string
/// output adapter for basic_string
template
<
typename
CharType
,
typename
StringType
=
std
::
basic_string
<
CharType
>
>
template
<
typename
CharType
,
typename
StringType
=
std
::
basic_string
<
CharType
>
>
...
@@ -111,8 +117,10 @@ class output_adapter
...
@@ -111,8 +117,10 @@ class output_adapter
output_adapter
(
std
::
vector
<
CharType
>&
vec
)
output_adapter
(
std
::
vector
<
CharType
>&
vec
)
:
oa
(
std
::
make_shared
<
output_vector_adapter
<
CharType
>>
(
vec
))
{}
:
oa
(
std
::
make_shared
<
output_vector_adapter
<
CharType
>>
(
vec
))
{}
#ifndef JSON_NO_IO
output_adapter
(
std
::
basic_ostream
<
CharType
>&
s
)
output_adapter
(
std
::
basic_ostream
<
CharType
>&
s
)
:
oa
(
std
::
make_shared
<
output_stream_adapter
<
CharType
>>
(
s
))
{}
:
oa
(
std
::
make_shared
<
output_stream_adapter
<
CharType
>>
(
s
))
{}
#endif // JSON_NO_IO
output_adapter
(
StringType
&
s
)
output_adapter
(
StringType
&
s
)
:
oa
(
std
::
make_shared
<
output_string_adapter
<
CharType
,
StringType
>>
(
s
))
{}
:
oa
(
std
::
make_shared
<
output_string_adapter
<
CharType
,
StringType
>>
(
s
))
{}
...
...
include/nlohmann/json.hpp
View file @
098bbab0
...
@@ -38,7 +38,9 @@ SOFTWARE.
...
@@ -38,7 +38,9 @@ SOFTWARE.
#include <cstddef> // nullptr_t, ptrdiff_t, size_t
#include <cstddef> // nullptr_t, ptrdiff_t, size_t
#include <functional> // hash, less
#include <functional> // hash, less
#include <initializer_list> // initializer_list
#include <initializer_list> // initializer_list
#include <iosfwd> // istream, ostream
#ifndef JSON_NO_IO
#include <iosfwd> // istream, ostream
#endif // JSON_NO_IO
#include <iterator> // random_access_iterator_tag
#include <iterator> // random_access_iterator_tag
#include <memory> // unique_ptr
#include <memory> // unique_ptr
#include <numeric> // accumulate
#include <numeric> // accumulate
...
@@ -6659,7 +6661,7 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec
...
@@ -6659,7 +6661,7 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec
/// @name serialization
/// @name serialization
/// @{
/// @{
#ifndef JSON_NO_IO
/*!
/*!
@brief serialize to stream
@brief serialize to stream
...
@@ -6719,7 +6721,7 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec
...
@@ -6719,7 +6721,7 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec
{
{
return
o
<<
j
;
return
o
<<
j
;
}
}
#endif // JSON_NO_IO
/// @}
/// @}
...
@@ -6977,7 +6979,7 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec
...
@@ -6977,7 +6979,7 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec
// NOLINTNEXTLINE(hicpp-move-const-arg,performance-move-const-arg)
// NOLINTNEXTLINE(hicpp-move-const-arg,performance-move-const-arg)
:
detail
::
binary_reader
<
basic_json
,
decltype
(
ia
),
SAX
>
(
std
::
move
(
ia
)).
sax_parse
(
format
,
sax
,
strict
);
:
detail
::
binary_reader
<
basic_json
,
decltype
(
ia
),
SAX
>
(
std
::
move
(
ia
)).
sax_parse
(
format
,
sax
,
strict
);
}
}
#ifndef JSON_NO_IO
/*!
/*!
@brief deserialize from stream
@brief deserialize from stream
@deprecated This stream operator is deprecated and will be removed in
@deprecated This stream operator is deprecated and will be removed in
...
@@ -7022,7 +7024,7 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec
...
@@ -7022,7 +7024,7 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec
parser
(
detail
::
input_adapter
(
i
)).
parse
(
false
,
j
);
parser
(
detail
::
input_adapter
(
i
)).
parse
(
false
,
j
);
return
i
;
return
i
;
}
}
#endif // JSON_NO_IO
/// @}
/// @}
///////////////////////////
///////////////////////////
...
...
single_include/nlohmann/json.hpp
View file @
098bbab0
...
@@ -38,7 +38,9 @@ SOFTWARE.
...
@@ -38,7 +38,9 @@ SOFTWARE.
#include <cstddef> // nullptr_t, ptrdiff_t, size_t
#include <cstddef> // nullptr_t, ptrdiff_t, size_t
#include <functional> // hash, less
#include <functional> // hash, less
#include <initializer_list> // initializer_list
#include <initializer_list> // initializer_list
#include <iosfwd> // istream, ostream
#ifndef JSON_NO_IO
#include <iosfwd> // istream, ostream
#endif // JSON_NO_IO
#include <iterator> // random_access_iterator_tag
#include <iterator> // random_access_iterator_tag
#include <memory> // unique_ptr
#include <memory> // unique_ptr
#include <numeric> // accumulate
#include <numeric> // accumulate
...
@@ -5227,9 +5229,7 @@ std::size_t hash(const BasicJsonType& j)
...
@@ -5227,9 +5229,7 @@ std::size_t hash(const BasicJsonType& j)
#include <array> // array
#include <array> // array
#include <cstddef> // size_t
#include <cstddef> // size_t
#include <cstdio> //FILE *
#include <cstring> // strlen
#include <cstring> // strlen
#include <istream> // istream
#include <iterator> // begin, end, iterator_traits, random_access_iterator_tag, distance, next
#include <iterator> // begin, end, iterator_traits, random_access_iterator_tag, distance, next
#include <memory> // shared_ptr, make_shared, addressof
#include <memory> // shared_ptr, make_shared, addressof
#include <numeric> // accumulate
#include <numeric> // accumulate
...
@@ -5237,6 +5237,11 @@ std::size_t hash(const BasicJsonType& j)
...
@@ -5237,6 +5237,11 @@ std::size_t hash(const BasicJsonType& j)
#include <type_traits> // enable_if, is_base_of, is_pointer, is_integral, remove_pointer
#include <type_traits> // enable_if, is_base_of, is_pointer, is_integral, remove_pointer
#include <utility> // pair, declval
#include <utility> // pair, declval
#ifndef JSON_NO_IO
#include <cstdio> //FILE *
#include <istream> // istream
#endif // JSON_NO_IO
// #include <nlohmann/detail/iterators/iterator_traits.hpp>
// #include <nlohmann/detail/iterators/iterator_traits.hpp>
// #include <nlohmann/detail/macro_scope.hpp>
// #include <nlohmann/detail/macro_scope.hpp>
...
@@ -5253,6 +5258,7 @@ enum class input_format_t { json, cbor, msgpack, ubjson, bson };
...
@@ -5253,6 +5258,7 @@ enum class input_format_t { json, cbor, msgpack, ubjson, bson };
// input adapters //
// input adapters //
////////////////////
////////////////////
#ifndef JSON_NO_IO
/*!
/*!
Input adapter for stdio file access. This adapter read only 1 byte and do not use any
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.
buffer. This adapter is a very low level adapter.
...
@@ -5344,6 +5350,7 @@ class input_stream_adapter
...
@@ -5344,6 +5350,7 @@ class input_stream_adapter
std
::
istream
*
is
=
nullptr
;
std
::
istream
*
is
=
nullptr
;
std
::
streambuf
*
sb
=
nullptr
;
std
::
streambuf
*
sb
=
nullptr
;
};
};
#endif // JSON_NO_IO
// General-purpose iterator-based adapter. It might not be as fast as
// General-purpose iterator-based adapter. It might not be as fast as
// theoretically possible for some containers, but it is extremely versatile.
// theoretically possible for some containers, but it is extremely versatile.
...
@@ -5630,6 +5637,7 @@ typename container_input_adapter_factory_impl::container_input_adapter_factory<C
...
@@ -5630,6 +5637,7 @@ typename container_input_adapter_factory_impl::container_input_adapter_factory<C
return
container_input_adapter_factory_impl
::
container_input_adapter_factory
<
ContainerType
>::
create
(
container
);
return
container_input_adapter_factory_impl
::
container_input_adapter_factory
<
ContainerType
>::
create
(
container
);
}
}
#ifndef JSON_NO_IO
// Special cases with fast paths
// Special cases with fast paths
inline
file_input_adapter
input_adapter
(
std
::
FILE
*
file
)
inline
file_input_adapter
input_adapter
(
std
::
FILE
*
file
)
{
{
...
@@ -5645,6 +5653,7 @@ inline input_stream_adapter input_adapter(std::istream&& stream)
...
@@ -5645,6 +5653,7 @@ inline input_stream_adapter input_adapter(std::istream&& stream)
{
{
return
input_stream_adapter
(
stream
);
return
input_stream_adapter
(
stream
);
}
}
#endif // JSON_NO_IO
using
contiguous_bytes_input_adapter
=
decltype
(
input_adapter
(
std
::
declval
<
const
char
*>
(),
std
::
declval
<
const
char
*>
()));
using
contiguous_bytes_input_adapter
=
decltype
(
input_adapter
(
std
::
declval
<
const
char
*>
(),
std
::
declval
<
const
char
*>
()));
...
@@ -13119,12 +13128,16 @@ class json_ref
...
@@ -13119,12 +13128,16 @@ class json_ref
#include <algorithm> // copy
#include <algorithm> // copy
#include <cstddef> // size_t
#include <cstddef> // size_t
#include <ios> // streamsize
#include <iterator> // back_inserter
#include <iterator> // back_inserter
#include <memory> // shared_ptr, make_shared
#include <memory> // shared_ptr, make_shared
#include <ostream> // basic_ostream
#include <string> // basic_string
#include <string> // basic_string
#include <vector> // vector
#include <vector> // vector
#ifndef JSON_NO_IO
#include <ios> // streamsize
#include <ostream> // basic_ostream
#endif // JSON_NO_IO
// #include <nlohmann/detail/macro_scope.hpp>
// #include <nlohmann/detail/macro_scope.hpp>
...
@@ -13174,6 +13187,7 @@ class output_vector_adapter : public output_adapter_protocol<CharType>
...
@@ -13174,6 +13187,7 @@ class output_vector_adapter : public output_adapter_protocol<CharType>
std
::
vector
<
CharType
>&
v
;
std
::
vector
<
CharType
>&
v
;
};
};
#ifndef JSON_NO_IO
/// output adapter for output streams
/// output adapter for output streams
template
<
typename
CharType
>
template
<
typename
CharType
>
class
output_stream_adapter
:
public
output_adapter_protocol
<
CharType
>
class
output_stream_adapter
:
public
output_adapter_protocol
<
CharType
>
...
@@ -13197,6 +13211,7 @@ class output_stream_adapter : public output_adapter_protocol<CharType>
...
@@ -13197,6 +13211,7 @@ class output_stream_adapter : public output_adapter_protocol<CharType>
private:
private:
std
::
basic_ostream
<
CharType
>&
stream
;
std
::
basic_ostream
<
CharType
>&
stream
;
};
};
#endif // JSON_NO_IO
/// output adapter for basic_string
/// output adapter for basic_string
template
<
typename
CharType
,
typename
StringType
=
std
::
basic_string
<
CharType
>
>
template
<
typename
CharType
,
typename
StringType
=
std
::
basic_string
<
CharType
>
>
...
@@ -13229,8 +13244,10 @@ class output_adapter
...
@@ -13229,8 +13244,10 @@ class output_adapter
output_adapter
(
std
::
vector
<
CharType
>&
vec
)
output_adapter
(
std
::
vector
<
CharType
>&
vec
)
:
oa
(
std
::
make_shared
<
output_vector_adapter
<
CharType
>>
(
vec
))
{}
:
oa
(
std
::
make_shared
<
output_vector_adapter
<
CharType
>>
(
vec
))
{}
#ifndef JSON_NO_IO
output_adapter
(
std
::
basic_ostream
<
CharType
>&
s
)
output_adapter
(
std
::
basic_ostream
<
CharType
>&
s
)
:
oa
(
std
::
make_shared
<
output_stream_adapter
<
CharType
>>
(
s
))
{}
:
oa
(
std
::
make_shared
<
output_stream_adapter
<
CharType
>>
(
s
))
{}
#endif // JSON_NO_IO
output_adapter
(
StringType
&
s
)
output_adapter
(
StringType
&
s
)
:
oa
(
std
::
make_shared
<
output_string_adapter
<
CharType
,
StringType
>>
(
s
))
{}
:
oa
(
std
::
make_shared
<
output_string_adapter
<
CharType
,
StringType
>>
(
s
))
{}
...
@@ -23679,7 +23696,7 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec
...
@@ -23679,7 +23696,7 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec
/// @name serialization
/// @name serialization
/// @{
/// @{
#ifndef JSON_NO_IO
/*!
/*!
@brief serialize to stream
@brief serialize to stream
...
@@ -23739,7 +23756,7 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec
...
@@ -23739,7 +23756,7 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec
{
{
return
o
<<
j
;
return
o
<<
j
;
}
}
#endif // JSON_NO_IO
/// @}
/// @}
...
@@ -23997,7 +24014,7 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec
...
@@ -23997,7 +24014,7 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec
// NOLINTNEXTLINE(hicpp-move-const-arg,performance-move-const-arg)
// NOLINTNEXTLINE(hicpp-move-const-arg,performance-move-const-arg)
:
detail
::
binary_reader
<
basic_json
,
decltype
(
ia
),
SAX
>
(
std
::
move
(
ia
)).
sax_parse
(
format
,
sax
,
strict
);
:
detail
::
binary_reader
<
basic_json
,
decltype
(
ia
),
SAX
>
(
std
::
move
(
ia
)).
sax_parse
(
format
,
sax
,
strict
);
}
}
#ifndef JSON_NO_IO
/*!
/*!
@brief deserialize from stream
@brief deserialize from stream
@deprecated This stream operator is deprecated and will be removed in
@deprecated This stream operator is deprecated and will be removed in
...
@@ -24042,7 +24059,7 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec
...
@@ -24042,7 +24059,7 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec
parser
(
detail
::
input_adapter
(
i
)).
parse
(
false
,
j
);
parser
(
detail
::
input_adapter
(
i
)).
parse
(
false
,
j
);
return
i
;
return
i
;
}
}
#endif // JSON_NO_IO
/// @}
/// @}
///////////////////////////
///////////////////////////
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment