8.2 KiB
Migration Guide
This page collects some guidelines on how to future-proof your code for future versions of this library.
Replace deprecated functions
The following functions have been deprecated and will be removed in the next major version (i.e., 4.0.0). All
deprecations are annotated with
HEDLEY_DEPRECATED_FOR to report which
function to use instead.
Parsing
-
Function
friend std::istream& operator<<(basic_json&, std::istream&)is deprecated since 3.0.0. Please usefriend std::istream& operator>>(std::istream&, basic_json&)instead.=== "Deprecated"
```cpp nlohmann::json j; std::stringstream ss("[1,2,3]"); j << ss; ```=== "Future-proof"
```cpp nlohmann::json j; std::stringstream ss("[1,2,3]"); ss >> j; ``` -
Passing iterator pairs or pointer/length pairs to parsing functions (
parse,accept,sax_parse,from_cbor,from_msgpack,from_ubjson, andfrom_bsonvia initializer lists is deprecated since 3.8.0. Instead, pass two iterators; for instance, callfrom_cbor(ptr, ptr+len)instead offrom_cbor({ptr, len}).=== "Deprecated"
```cpp const char* s = "[1,2,3]"; bool ok = nlohmann::json::accept({s, s + std::strlen(s)}); ```=== "Future-proof"
```cpp const char* s = "[1,2,3]"; bool ok = nlohmann::json::accept(s, s + std::strlen(s)); ```
JSON Pointers
-
Comparing JSON Pointers with strings via
operator==andoperator!=is deprecated since 3.11.2. To compare ajson_pointerpwith a strings, convertsto ajson_pointerfirst and usejson_pointer::operator==orjson_pointer::operator!=.=== "Deprecated"
```cpp nlohmann::json::json_pointer lhs("/foo/bar/1"); assert(lhs == "/foo/bar/1"); ```=== "Future-proof"
```cpp nlohmann::json::json_pointer lhs("/foo/bar/1"); assert(lhs == nlohmann::json::json_pointer("/foo/bar/1")); ``` -
The implicit conversion from JSON Pointers to string (
json_pointer::operator string_t) is deprecated since 3.11.0. Usejson_pointer::to_stringinstead.=== "Deprecated"
```cpp nlohmann::json::json_pointer ptr("/foo/bar/1"); std::string s = ptr; ```=== "Future-proof"
```cpp nlohmann::json::json_pointer ptr("/foo/bar/1"); std::string s = ptr.to_string(); ``` -
Passing a
basic_jsonspecialization as template parameterRefStringTypetojson_pointeris deprecated since 3.11.0. The string type can now be directly provided.=== "Deprecated"
```cpp using my_json = nlohmann::basic_json<std::map, std::vector, my_string_type>; nlohmann::json_pointer<my_json> ptr("/foo/bar/1"); ```=== "Future-proof"
```cpp nlohmann::json_pointer<my_string_type> ptr("/foo/bar/1"); ```Thereby,
nlohmann::my_json::json_pointeris an alias fornlohmann::json_pointer<my_string_type>and is always an alias to thejson_pointerwith the appropriate string type for all specializations ofbasic_json.
Miscellaneous functions
-
The function
iterator_wrapperis deprecated since 3.1.0. Please use the member functionitemsinstead.=== "Deprecated"
```cpp for (auto &x : nlohmann::json::iterator_wrapper(j)) { std::cout << x.key() << ":" << x.value() << std::endl; } ```=== "Future-proof"
```cpp for (auto &x : j.items()) { std::cout << x.key() << ":" << x.value() << std::endl; } ``` -
Function
friend std::ostream& operator>>(const basic_json&, std::ostream&)is deprecated since 3.0.0. Please usefriend operator<<(std::ostream&, const basic_json&)instead.=== "Deprecated"
```cpp j >> std::cout; ```=== "Future-proof"
```cpp std::cout << j; ``` -
The legacy comparison behavior for discarded values is deprecated since 3.11.0. It is already disabled by default and can still be enabled by defining
JSON_USE_LEGACY_DISCARDED_VALUE_COMPARISONto1.=== "Deprecated"
```cpp #define JSON_USE_LEGACY_DISCARDED_VALUE_COMPARISON 1 #include <nlohmann/json.hpp> ```=== "Future-proof"
```cpp #include <nlohmann/json.hpp> ```
Replace implicit conversions
Implicit conversions via operator ValueType will be switched off by default
in the next major release of the library.
You can prepare existing code by already defining
JSON_USE_IMPLICIT_CONVERSIONS to 0 and replace any implicit
conversions with calls to get, get_to,
get_ref, or get_ptr.
=== "Deprecated"
```cpp
nlohmann::json j = "Hello, world!";
std::string s = j;
```
=== "Future-proof"
```cpp
nlohmann::json j = "Hello, world!";
auto s = j.get<std::string>();
```
=== "Future-proof (alternative)"
```cpp
nlohmann::json j = "Hello, world!";
std::string s;
j.get_to(s);
```
You can prepare existing code by already defining
JSON_USE_IMPLICIT_CONVERSIONS to 0 and replace any implicit
conversions with calls to get.
Import namespace literals for UDLs
The user-defined string literals operator""_json and
operator""_json_pointer will be removed from the global namespace in the
next major release of the library.
=== "Deprecated"
```cpp
nlohmann::json j = "[1,2,3]"_json;
```
=== "Future-proof"
```cpp
using namespace nlohmann::literals;
nlohmann::json j = "[1,2,3]"_json;
```
To prepare existing code, define JSON_USE_GLOBAL_UDLS to 0 and bring the
string literals into scope where needed.
Do not hard-code the complete library namespace
The nlohmann namespace contains a sub-namespace to avoid problems when different
versions or configurations of the library are used in the same project. Always use nlohmann as namespace or, when the
exact version and configuration is relevant, use macro
NLOHMANN_JSON_NAMESPACE to denote the namespace.
=== "Dangerous"
```cpp
void to_json(nlohmann::json_abi_v3_11_2::json& j, const person& p)
{
j["age"] = p.age;
}
```
=== "Future-proof"
```cpp
void to_json(nlohmann::json& j, const person& p)
{
j["age"] = p.age;
}
```
=== "Future-proof (alternative)"
```cpp
void to_json(NLOHMANN_JSON_NAMESPACE::json& j, const person& p)
{
j["age"] = p.age;
}
```
Do not use the details namespace
The details namespace is not part of the public API of the library and can change in any version without announcement.
Do not rely on any function or type in the details namespace.