* Add key_compare member to ordered_map
* Replace == with key_compare in ordered_map
* Expose the actual comparison function used by object_t
nlohmann::ordered_map uses a different comparison function than the one
provided via template parameter.
* Introduce a type trait to detect if object_t has a key_compare member.
* Rename object_comparator_t to default_object_comparator_t.
* Add object_comparator_t to be conditionally defined as
object_t::key_compare, if available, or default_object_comparator_t
otherwise.
* Update the documentation accordingly.
Co-authored-by: Niels Lohmann <niels.lohmann@gmail.com>
* Add type traits to check if a type is usable as object key
Add type trait to check:
* if a type is a specialization of a template.
* if a type is a json_pointer.
* if a type is a basic_json::{const_,}iterator.
* if two types are comparable using a given comparison functor.
* if a type is comparable to basic_json::object_t::key_type.
* if a type has a member type is_transparent.
* if a type is usable as object key.
* if a type has an erase() function accepting a given KeyType.
Co-authored-by: Niels Lohmann <niels.lohmann@gmail.com>
* Rework basic_json element access to accept more key types
Rework basic_json element access member functions and operators to
accept any type that meets the requirements defined by type trait
detail::is_usable_as_key_type.
Member functions and operators:
* at()
* operator[]
* value()
* erase()
* find()
* count()
* contains()
Update documentation to reflect these changes.
Add unit tests to excercise the new functions using std::string_view.
Co-authored-by: Niels Lohmann <niels.lohmann@gmail.com>
Co-authored-by: Niels Lohmann <niels.lohmann@gmail.com>
15 KiB
nlohmann::basic_json::basic_json
// (1)
basic_json(const value_t v);
// (2)
basic_json(std::nullptr_t = nullptr) noexcept;
// (3)
template<typename CompatibleType>
basic_json(CompatibleType&& val) noexcept(noexcept(
JSONSerializer<U>::to_json(std::declval<basic_json_t&>(),
std::forward<CompatibleType>(val))));
// (4)
template<typename BasicJsonType>
basic_json(const BasicJsonType& val);
// (5)
basic_json(initializer_list_t init,
bool type_deduction = true,
value_t manual_type = value_t::array);
// (6)
basic_json(size_type cnt, const basic_json& val);
// (7)
basic_json(iterator first, iterator last);
basic_json(const_iterator first, const_iterator last);
// (8)
basic_json(const basic_json& other);
// (9)
basic_json(basic_json&& other) noexcept;
-
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 #!json nullboolean #!json falsestring #!json ""number #!json 0object #!json {}array #!json []binary empty array The postcondition of this constructor can be restored by calling
clear(). -
Create a
#!json nullJSON value. It either takes a null pointer as parameter (explicitly creating#!json null) or no parameter (implicitly creating#!json null). The passed null pointer itself is not read -- it is only used to choose the right constructor. -
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 parametervalto that method (tojson_serializer<U>::to_jsonmethod withU = uncvref_t<CompatibleType>, to be exact).Template type
CompatibleTypeincludes, but is not limited to, the following types:- arrays:
array_tand all kinds of compatible containers such asstd::vector,std::deque,std::list,std::forward_list,std::array,std::valarray,std::set,std::unordered_set,std::multiset, andstd::unordered_multisetwith avalue_typefrom which abasic_jsonvalue can be constructed. - objects:
object_tand all kinds of compatible associative containers such asstd::map,std::unordered_map,std::multimap, andstd::unordered_multimapwith akey_typecompatible tostring_tand avalue_typefrom which abasic_jsonvalue can be constructed. - strings:
string_t, string literals, and all compatible string containers can be used. - numbers:
number_integer_t,number_unsigned_t,number_float_t, and all convertible number types such asint,size_t,int64_t,floatordoublecan be used. - boolean:
boolean_t/boolcan be used. - binary:
binary_t/std::vector<uint8_t>may be used; unfortunately because string literals cannot be distinguished from binary character arrays by the C++ type system, all types compatible withconst 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.
- arrays:
-
This is a constructor for existing
basic_jsontypes. 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
m_valueof the parameter. -
Creates a JSON value of type array or object from the passed initializer list
init. In casetype_deductionis#!cpp true(default), the type of the JSON value to be created is deducted from the initializer listinitaccording to the following rules:- If the list is empty, an empty JSON object value
{}is created. - 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.
- 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:
- The empty initializer list is written as
#!cpp {}which is exactly an empty JSON object. - 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.
- 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 (
#!json []): usearray(initializer_list_t)with an empty initializer list in this case - arrays whose elements satisfy rule 2: use
array(initializer_list_t)with the same initializer list in this case
Function
array()andobject()force array and object creation from initializer lists, respectively. - If the list is empty, an empty JSON object value
-
Constructs a JSON array value by creating
cntcopies of a passed value. In casecntis0, an empty array is created. -
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
#!json nulltype, invalid_iterator.206 is thrown. - In case of other primitive types (number, boolean, or string),
firstmust bebegin()andlastmust beend(). In this case, the value is copied. Otherwise,invalid_iterator.204is thrown. - In case of structured types (array, object), the constructor behaves as similar versions for
std::vectororstd::map; that is, a JSON array or object is constructed from the values in the range.
- In case of a
-
Creates a copy of a given JSON value.
-
Move constructor. Constructs a JSON value with the contents of the given value
otherusing move semantics. It "steals" the resources fromotherand leaves it as JSON#!json nullvalue.
Template parameters
CompatibleType- a type such that:
CompatibleTypeis not derived fromstd::istream,CompatibleTypeis notbasic_json(to avoid hijacking copy/move constructors),CompatibleTypeis not a differentbasic_jsontype (i.e. with different template arguments)CompatibleTypeis not abasic_jsonnested type (e.g.,json_pointer,iterator, etc.)json_serializer<U>(withU = uncvref_t<CompatibleType>) has ato_json(basic_json_t&, CompatibleType&&)method
BasicJsonType:- a type such that:
BasicJsonTypeis abasic_jsontype.BasicJsonTypehas different template arguments thanbasic_json_t.
U:uncvref_t<CompatibleType>
Parameters
v(in)- the type of the value to create
val(in)- the value to be forwarded to the respective constructor
init(in)- initializer list with JSON values
type_deduction(in)- internal parameter; when set to
#!cpp true, the type of the JSON value is deducted from the initializer listinit; when set to#!cpp false, the type provided viamanual_typeis forced. This mode is used by the functionsarray(initializer_list_t)andobject(initializer_list_t). manual_type(in)- internal parameter; when
type_deductionis set to#!cpp false, the created JSON value will use the provided type (onlyvalue_t::arrayandvalue_t::objectare valid); whentype_deductionis set to#!cpp true, this parameter has no effect cnt(in)- the number of JSON copies of
valto create first(in)- begin of the range to copy from (included)
last(in)- end of the range to copy from (excluded)
other(in)- the JSON value to copy/move
Exception safety
- Strong guarantee: if an exception is thrown, there are no changes to any JSON value.
- No-throw guarantee: this constructor never throws exceptions.
- 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. - 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. - Strong guarantee: if an exception is thrown, there are no changes to any JSON value.
- Strong guarantee: if an exception is thrown, there are no changes to any JSON value.
- Strong guarantee: if an exception is thrown, there are no changes to any JSON value.
- Strong guarantee: if an exception is thrown, there are no changes to any JSON value.
- No-throw guarantee: this constructor never throws exceptions.
Exceptions
- (none)
- The function does not throw exceptions.
- (none)
- (none)
- The function can throw the following exceptions:
- Throws
type_error.301iftype_deductionis#!cpp false,manual_typeisvalue_t::object, butinitcontains an element which is not a pair whose first element is a string. In this case, the constructor could not create an object. Iftype_deductionwould have been#!cpp true, an array would have been created. Seeobject(initializer_list_t)for an example.
- Throws
- (none)
- The function can throw the following exceptions:
- Throws
invalid_iterator.201if iteratorsfirstandlastare not compatible (i.e., do not belong to the same JSON value). In this case, the range[first, last)is undefined. - Throws
invalid_iterator.204if iteratorsfirstandlastbelong to a primitive type (number, boolean, or string), butfirstdoes not point to the first element anymore. In this case, the range[first, last)is undefined. See example code below. - Throws
invalid_iterator.206if iteratorsfirstandlastbelong to a#!json nullvalue. In this case, the range[first, last)is undefined.
- Throws
- (none)
- The function does not throw exceptions.
Complexity
- Constant.
- Constant.
- Usually linear in the size of the passed
val, also depending on the implementation of the calledto_json()method. - Usually linear in the size of the passed
val, also depending on the implementation of the calledto_json()method. - Linear in the size of the initializer list
init. - Linear in
cnt. - Linear in distance between
firstandlast. - Linear in the size of
other. - Constant.
Notes
-
Overload 5:
!!! note
When used without parentheses around an empty initializer list, `basic_json()` is called instead of this function, yielding the JSON `#!json null` value. -
Overload 7:
!!! info "Preconditions"
- Iterators `first` and `last` must be initialized. **This precondition is enforced with a [runtime assertion](../../features/assertions.md). - Range `[first, last)` is valid. Usually, this precondition cannot be checked efficiently. Only certain edge cases are detected; see the description of the exceptions above. A violation of this precondition yields undefined behavior.!!! danger "Runtime assertion"
A precondition is enforced with a [runtime assertion](../../features/assertions.md). -
Overload 8:
!!! info "Postcondition"
`#!cpp *this == other` -
Overload 9:
!!! info "Postconditions"
- `#!cpp `*this` has the same value as `other` before the call. - `other` is a JSON `#!json null` value
Examples
??? example "Example: (1) create an empty value with a given type"
The following code shows the constructor for different `value_t` values.
```cpp
--8<-- "examples/basic_json__value_t.cpp"
```
Output:
```json
--8<-- "examples/basic_json__value_t.output"
```
??? example "Example: (2) create a #!json null object"
The following code shows the constructor with and without a null pointer parameter.
```cpp
--8<-- "examples/basic_json__nullptr_t.cpp"
```
Output:
```json
--8<-- "examples/basic_json__nullptr_t.output"
```
??? example "Example: (3) create a JSON value from compatible types"
The following code shows the constructor with several compatible types.
```cpp
--8<-- "examples/basic_json__CompatibleType.cpp"
```
Output:
```json
--8<-- "examples/basic_json__CompatibleType.output"
```
??? example "Example: (5) create a container (array or object) from an initializer list"
The example below shows how JSON values are created from initializer lists.
```cpp
--8<-- "examples/basic_json__list_init_t.cpp"
```
Output:
```json
--8<-- "examples/basic_json__list_init_t.output"
```
??? example "Example: (6) construct an array with count copies of given value"
The following code shows examples for creating arrays with several copies of a given value.
```cpp
--8<-- "examples/basic_json__size_type_basic_json.cpp"
```
Output:
```json
--8<-- "examples/basic_json__size_type_basic_json.output"
```
??? example "Example: (7) construct a JSON container given an iterator range"
The example below shows several ways to create JSON values by specifying a subrange with iterators.
```cpp
--8<-- "examples/basic_json__InputIt_InputIt.cpp"
```
Output:
```json
--8<-- "examples/basic_json__InputIt_InputIt.output"
```
??? example "Example: (8) copy constructor"
The following code shows an example for the copy constructor.
```cpp
--8<-- "examples/basic_json__basic_json.cpp"
```
Output:
```json
--8<-- "examples/basic_json__basic_json.output"
```
??? example "Example: (9) move constructor"
The code below shows the move constructor explicitly called via `std::move`.
```cpp
--8<-- "examples/basic_json__moveconstructor.cpp"
```
Output:
```json
--8<-- "examples/basic_json__moveconstructor.output"
```
Version history
- Since version 1.0.0.
- Since version 1.0.0.
- Since version 2.1.0.
- Since version 3.2.0.
- Since version 1.0.0.
- Since version 1.0.0.
- Since version 1.0.0.
- Since version 1.0.0.
- Since version 1.0.0.