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
2b37d7ed
Unverified
Commit
2b37d7ed
authored
Jun 18, 2018
by
Théo DELRIEU
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
from_json: add overload for std::unordered_map
Fixes #1133
parent
299469cf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
66 additions
and
4 deletions
+66
-4
include/nlohmann/detail/conversions/from_json.hpp
include/nlohmann/detail/conversions/from_json.hpp
+20
-0
test/src/unit-conversions.cpp
test/src/unit-conversions.cpp
+46
-4
No files found.
include/nlohmann/detail/conversions/from_json.hpp
View file @
2b37d7ed
...
...
@@ -9,6 +9,7 @@
#include <string> // string
#include <tuple> // tuple, make_tuple
#include <type_traits> // is_arithmetic, is_same, is_enum, underlying_type, is_convertible
#include <unordered_map> // unordered_map
#include <utility> // pair, declval
#include <valarray> // valarray
...
...
@@ -297,6 +298,25 @@ void from_json(const BasicJsonType& j, std::map<Key, Value, Compare, Allocator>&
}
}
template
<
typename
BasicJsonType
,
typename
Key
,
typename
Value
,
typename
Hash
,
typename
KeyEqual
,
typename
Allocator
,
typename
=
enable_if_t
<
not
std
::
is_constructible
<
typename
BasicJsonType
::
string_t
,
Key
>
::
value
>>
void
from_json
(
const
BasicJsonType
&
j
,
std
::
unordered_map
<
Key
,
Value
,
Hash
,
KeyEqual
,
Allocator
>&
m
)
{
if
(
JSON_UNLIKELY
(
not
j
.
is_array
()))
{
JSON_THROW
(
type_error
::
create
(
302
,
"type must be array, but is "
+
std
::
string
(
j
.
type_name
())));
}
for
(
const
auto
&
p
:
j
)
{
if
(
JSON_UNLIKELY
(
not
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
<
Key
>(),
p
.
at
(
1
).
template
get
<
Value
>());
}
}
struct
from_json_fn
{
private:
...
...
test/src/unit-conversions.cpp
View file @
2b37d7ed
...
...
@@ -40,6 +40,14 @@ using nlohmann::json;
#include <unordered_set>
#include <valarray>
namespace
{
template
<
typename
MapType
>
void
map_type_conversion_checks
()
{
}
}
TEST_CASE
(
"value conversion"
)
{
SECTION
(
"get an object (explicit)"
)
...
...
@@ -1088,14 +1096,48 @@ TEST_CASE("value conversion")
CHECK
(
m
==
m2
);
json
j7
=
{
0
,
1
,
2
,
3
};
json
j8
=
2
;
CHECK_THROWS_AS
((
j7
.
get
<
std
::
map
<
int
,
int
>>
()),
json
::
type_error
&
);
CHECK_THROWS_WITH
((
j7
.
get
<
std
::
map
<
int
,
int
>>
()),
"[json.exception.type_error.302] type must be array, but is number"
);
CHECK_THROWS_AS
((
j8
.
get
<
std
::
map
<
int
,
int
>>
()),
json
::
type_error
&
);
CHECK_THROWS_WITH
((
j7
.
get
<
std
::
map
<
int
,
int
>>
()),
"[json.exception.type_error.302] type must be array, "
"but is number"
);
CHECK_THROWS_WITH
((
j8
.
get
<
std
::
map
<
int
,
int
>>
()),
"[json.exception.type_error.302] type must be array, "
"but is number"
);
SECTION
(
"superfluous entries"
)
{
json
j9
=
{{
0
,
1
,
2
},
{
1
,
2
,
3
},
{
2
,
3
,
4
}};
m2
=
j9
.
get
<
std
::
map
<
int
,
int
>>
();
CHECK
(
m
==
m2
);
}
}
SECTION
(
"std::unordered_map (array of pairs)"
)
{
std
::
unordered_map
<
int
,
int
>
m
{{
0
,
1
},
{
1
,
2
},
{
2
,
3
}};
json
j6
=
m
;
auto
m2
=
j6
.
get
<
std
::
unordered_map
<
int
,
int
>>
();
CHECK
(
m
==
m2
);
json
j7
=
{
0
,
1
,
2
,
3
};
json
j8
=
2
;
CHECK_THROWS_AS
((
j7
.
get
<
std
::
unordered_map
<
int
,
int
>>
()),
json
::
type_error
&
);
CHECK_THROWS_AS
((
j8
.
get
<
std
::
unordered_map
<
int
,
int
>>
()),
json
::
type_error
&
);
CHECK_THROWS_WITH
((
j7
.
get
<
std
::
unordered_map
<
int
,
int
>>
()),
"[json.exception.type_error.302] type must be array, "
"but is number"
);
CHECK_THROWS_WITH
((
j8
.
get
<
std
::
unordered_map
<
int
,
int
>>
()),
"[json.exception.type_error.302] type must be array, "
"but is number"
);
SECTION
(
"superfluous entries"
)
{
json
j8
=
{{
0
,
1
,
2
},
{
1
,
2
,
3
},
{
2
,
3
,
4
}};
m2
=
j8
.
get
<
std
::
map
<
int
,
int
>>
();
CHECK
(
m
==
m2
);
json
j9
{{
0
,
1
,
2
},
{
1
,
2
,
3
},
{
2
,
3
,
4
}};
m2
=
j9
.
get
<
std
::
unordered_
map
<
int
,
int
>>
();
CHECK
(
m
==
m2
);
}
}
...
...
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