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
3a34f2d8
Unverified
Commit
3a34f2d8
authored
Apr 04, 2017
by
Niels Lohmann
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' into feature/manual_lexer
parents
782570d4
4f6b63e4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
15 deletions
+19
-15
src/json.hpp
src/json.hpp
+10
-15
test/src/unit-conversions.cpp
test/src/unit-conversions.cpp
+9
-0
No files found.
src/json.hpp
View file @
3a34f2d8
...
@@ -464,12 +464,6 @@ using enable_if_t = typename std::enable_if<B, T>::type;
...
@@ -464,12 +464,6 @@ using enable_if_t = typename std::enable_if<B, T>::type;
template
<
typename
T
>
template
<
typename
T
>
using
uncvref_t
=
typename
std
::
remove_cv
<
typename
std
::
remove_reference
<
T
>::
type
>::
type
;
using
uncvref_t
=
typename
std
::
remove_cv
<
typename
std
::
remove_reference
<
T
>::
type
>::
type
;
// taken from http://stackoverflow.com/a/26936864/266378
template
<
typename
T
>
using
is_unscoped_enum
=
std
::
integral_constant
<
bool
,
std
::
is_convertible
<
T
,
int
>::
value
and
std
::
is_enum
<
T
>::
value
>
;
/*
/*
Implementation of two C++17 constructs: conjunction, negation. This is needed
Implementation of two C++17 constructs: conjunction, negation. This is needed
to avoid evaluating all the traits in a condition
to avoid evaluating all the traits in a condition
...
@@ -828,11 +822,12 @@ void to_json(BasicJsonType& j, CompatibleNumberIntegerType val) noexcept
...
@@ -828,11 +822,12 @@ void to_json(BasicJsonType& j, CompatibleNumberIntegerType val) noexcept
external_constructor
<
value_t
::
number_integer
>::
construct
(
j
,
static_cast
<
typename
BasicJsonType
::
number_integer_t
>
(
val
));
external_constructor
<
value_t
::
number_integer
>::
construct
(
j
,
static_cast
<
typename
BasicJsonType
::
number_integer_t
>
(
val
));
}
}
template
<
typename
BasicJsonType
,
typename
Unscoped
EnumType
,
template
<
typename
BasicJsonType
,
typename
EnumType
,
enable_if_t
<
is_unscoped_enum
<
Unscoped
EnumType
>
::
value
,
int
>
=
0
>
enable_if_t
<
std
::
is_enum
<
EnumType
>
::
value
,
int
>
=
0
>
void
to_json
(
BasicJsonType
&
j
,
Unscoped
EnumType
e
)
noexcept
void
to_json
(
BasicJsonType
&
j
,
EnumType
e
)
noexcept
{
{
external_constructor
<
value_t
::
number_integer
>::
construct
(
j
,
e
);
using
underlying_type
=
typename
std
::
underlying_type
<
EnumType
>::
type
;
external_constructor
<
value_t
::
number_integer
>::
construct
(
j
,
static_cast
<
underlying_type
>
(
e
));
}
}
template
<
typename
BasicJsonType
>
template
<
typename
BasicJsonType
>
...
@@ -947,13 +942,13 @@ void from_json(const BasicJsonType& j, typename BasicJsonType::number_integer_t&
...
@@ -947,13 +942,13 @@ void from_json(const BasicJsonType& j, typename BasicJsonType::number_integer_t&
get_arithmetic_value
(
j
,
val
);
get_arithmetic_value
(
j
,
val
);
}
}
template
<
typename
BasicJsonType
,
typename
Unscoped
EnumType
,
template
<
typename
BasicJsonType
,
typename
EnumType
,
enable_if_t
<
is_unscoped_enum
<
Unscoped
EnumType
>
::
value
,
int
>
=
0
>
enable_if_t
<
std
::
is_enum
<
EnumType
>
::
value
,
int
>
=
0
>
void
from_json
(
const
BasicJsonType
&
j
,
Unscoped
EnumType
&
e
)
void
from_json
(
const
BasicJsonType
&
j
,
EnumType
&
e
)
{
{
typename
std
::
underlying_type
<
Unscoped
EnumType
>::
type
val
;
typename
std
::
underlying_type
<
EnumType
>::
type
val
;
get_arithmetic_value
(
j
,
val
);
get_arithmetic_value
(
j
,
val
);
e
=
static_cast
<
Unscoped
EnumType
>
(
val
);
e
=
static_cast
<
EnumType
>
(
val
);
}
}
template
<
typename
BasicJsonType
>
template
<
typename
BasicJsonType
>
...
...
test/src/unit-conversions.cpp
View file @
3a34f2d8
...
@@ -917,6 +917,15 @@ TEST_CASE("value conversion")
...
@@ -917,6 +917,15 @@ TEST_CASE("value conversion")
}
}
}
}
SECTION
(
"get an enum"
)
{
enum
c_enum
{
value_1
,
value_2
};
enum
class
cpp_enum
{
value_1
,
value_2
};
CHECK
(
json
(
value_1
).
get
<
c_enum
>
()
==
value_1
);
CHECK
(
json
(
cpp_enum
::
value_1
).
get
<
cpp_enum
>
()
==
cpp_enum
::
value_1
);
}
SECTION
(
"more involved conversions"
)
SECTION
(
"more involved conversions"
)
{
{
SECTION
(
"object-like STL containers"
)
SECTION
(
"object-like STL containers"
)
...
...
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