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
60e6f822
Commit
60e6f822
authored
Nov 29, 2016
by
Théo DELRIEU
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add support for non-default-constructible udt
parent
e5999c6c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
140 additions
and
441 deletions
+140
-441
src/json.hpp
src/json.hpp
+87
-50
test/src/unit-udt.cpp
test/src/unit-udt.cpp
+53
-391
No files found.
src/json.hpp
View file @
60e6f822
...
...
@@ -290,14 +290,32 @@ struct is_compatible_basic_json_type
};
// This trait checks if JSONSerializer<T>::from_json exists
// This trait checks if JSONSerializer<T>::from_json
(json const&, udt&)
exists
template
<
template
<
typename
,
typename
>
class
JSONSerializer
,
typename
Json
,
typename
T
>
struct
has_from_json
{
private:
template
<
typename
U
,
typename
=
decltype
(
uncvref_t
<
U
>
::
from_json
(
std
::
declval
<
Json
>
(),
std
::
declval
<
T
&>
()))
>
// also check the return type of from_json
template
<
typename
U
,
typename
=
enable_if_t
<
std
::
is_same
<
void
,
decltype
(
uncvref_t
<
U
>
::
from_json
(
std
::
declval
<
Json
>
(),
std
::
declval
<
T
&>
()))
>::
value
>>
static
int
detect
(
U
&&
);
static
void
detect
(...);
public:
static
constexpr
bool
value
=
std
::
is_integral
<
decltype
(
detect
(
std
::
declval
<
JSONSerializer
<
T
,
void
>>
()))
>::
value
;
};
// This trait checks if JSONSerializer<T>::from_json(json const&) exists
// this overload is used for non-default-constructible user-defined-types
template
<
template
<
typename
,
typename
>
class
JSONSerializer
,
typename
Json
,
typename
T
>
struct
has_non_default_from_json
{
private:
template
<
typename
U
,
typename
=
enable_if_t
<
std
::
is_same
<
T
,
decltype
(
uncvref_t
<
U
>
::
from_json
(
std
::
declval
<
Json
>
()))
>::
value
>>
static
int
detect
(
U
&&
);
static
void
detect
(...);
...
...
@@ -326,8 +344,8 @@ public:
// those declarations are needed to workaround a MSVC bug related to ADL
// (taken from MSVC-Ranges implementation)
void
to_json
();
void
from_json
();
//
void to_json();
//
void from_json();
struct
to_json_fn
{
...
...
@@ -2467,57 +2485,63 @@ class basic_json
return
*
this
;
}
/*!
@brief destructor
// this overload is needed, since constructor for udt is explicit
template
<
typename
T
,
enable_if_t
<
not
detail
::
is_compatible_basic_json_type
<
uncvref_t
<
T
>,
basic_json_t
>::
value
and
detail
::
has_to_json
<
JSONSerializer
,
basic_json_t
,
uncvref_t
<
T
>>::
value
>>
reference
&
operator
=
(
T
&&
val
)
noexcept
(
std
::
is_nothrow_constructible
<
basic_json_t
,
uncvref_t
<
T
>>::
value
and
std
::
is_nothrow_move_assignable
<
uncvref_t
<
T
>>::
value
)
{
static_assert
(
sizeof
(
T
)
==
0
,
""
);
// I'm not sure this a is good practice...
return
*
this
=
basic_json_t
{
std
::
forward
<
T
>
(
val
)};
}
Destroys the JSON value and frees all allocated memory.
/*!
@brief destructor
@complexity Linear
.
Destroys the JSON value and frees all allocated memory
.
@requirement This function helps `basic_json` satisfying the
[Container](http://en.cppreference.com/w/cpp/concept/Container)
requirements:
- The complexity is linear.
- All stored elements are destroyed and all memory is freed.
@complexity Linear.
@since version 1.0.0
*/
~
basic_json
()
{
assert_invariant
();
@requirement This function helps `basic_json` satisfying the
[Container](http://en.cppreference.com/w/cpp/concept/Container)
requirements:
- The complexity is linear.
- All stored elements are destroyed and all memory is freed.
switch
(
m_type
)
{
case
value_t
:
:
object
:
{
AllocatorType
<
object_t
>
alloc
;
alloc
.
destroy
(
m_value
.
object
);
alloc
.
deallocate
(
m_value
.
object
,
1
);
break
;
}
case
value_t
:
:
array
:
{
AllocatorType
<
array_t
>
alloc
;
alloc
.
destroy
(
m_value
.
array
);
alloc
.
deallocate
(
m_value
.
array
,
1
);
break
;
}
case
value_t
:
:
string
:
{
AllocatorType
<
string_t
>
alloc
;
alloc
.
destroy
(
m_value
.
string
);
alloc
.
deallocate
(
m_value
.
string
,
1
);
break
;
}
@since version 1.0.0
*/
~
basic_json
()
{
assert_invariant
();
default:
{
// all other types need no specific destructor
break
;
}
}
switch
(
m_type
)
{
case
value_t
:
:
object
:
{
AllocatorType
<
object_t
>
alloc
;
alloc
.
destroy
(
m_value
.
object
);
alloc
.
deallocate
(
m_value
.
object
,
1
);
break
;
}
case
value_t
:
:
array
:
{
AllocatorType
<
array_t
>
alloc
;
alloc
.
destroy
(
m_value
.
array
);
alloc
.
deallocate
(
m_value
.
array
,
1
);
break
;
}
case
value_t
:
:
string
:
{
AllocatorType
<
string_t
>
alloc
;
alloc
.
destroy
(
m_value
.
string
);
alloc
.
deallocate
(
m_value
.
string
,
1
);
break
;
}
default:
{
// all other types need no specific destructor
break
;
}
}
}
/// @}
...
...
@@ -3273,6 +3297,19 @@ class basic_json
return
ret
;
}
// This overload is chosen for non-default constructible user-defined-types
template
<
typename
T
,
enable_if_t
<
not
detail
::
is_compatible_basic_json_type
<
T
,
basic_json_t
>
::
value
and
detail
::
has_non_default_from_json
<
JSONSerializer
,
basic_json_t
,
T
>::
value
,
short
>
=
0
>
T
get
()
const
{
return
JSONSerializer
<
T
>::
from_json
(
*
this
);
}
/*!
@brief get a pointer value (explicit)
...
...
test/src/unit-udt.cpp
View file @
60e6f822
...
...
@@ -26,443 +26,105 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#include <array>
#include <string>
#include <memory>
#include "catch.hpp"
#include "json.hpp"
using
nlohmann
::
json
;
namespace
udt
{
struct
empty_type
{};
struct
pod_type
{
int
a
;
char
b
;
short
c
;
};
struct
bit_more_complex_type
{
pod_type
a
;
pod_type
b
;
std
::
string
c
;
};
// best optional implementation ever
template
<
typename
T
>
class
optional_type
{
public:
optional_type
()
=
default
;
explicit
optional_type
(
T
val
)
:
_val
(
std
::
make_shared
<
T
>
(
std
::
move
(
val
)))
{}
explicit
operator
bool
()
const
noexcept
{
return
_val
!=
nullptr
;
}
T
const
&
operator
*
()
const
{
return
*
_val
;
}
optional_type
&
operator
=
(
T
const
&
t
)
struct
age
{
_val
=
std
::
make_shared
<
T
>
(
t
);
return
*
this
;
}
private:
std
::
shared_ptr
<
T
>
_val
;
};
// free to/from_json functions
void
to_json
(
json
&
j
,
empty_type
)
{
j
=
json
::
object
();
}
void
to_json
(
json
&
j
,
pod_type
const
&
p
)
{
j
=
json
{{
"a"
,
p
.
a
},
{
"b"
,
p
.
b
},
{
"c"
,
p
.
c
}};
}
void
to_json
(
json
&
j
,
bit_more_complex_type
const
&
p
)
{
j
=
json
{{
"a"
,
json
(
p
.
a
)},
{
"b"
,
json
(
p
.
b
)},
{
"c"
,
p
.
c
}};
}
template
<
typename
T
>
void
to_json
(
json
&
j
,
optional_type
<
T
>
const
&
opt
)
{
if
(
!
opt
)
j
=
nullptr
;
else
j
=
json
(
*
opt
);
}
void
from_json
(
json
const
&
j
,
empty_type
&
t
)
{
assert
(
j
.
empty
());
t
=
empty_type
{};
}
void
from_json
(
json
const
&
j
,
pod_type
&
t
)
{
t
=
{
j
[
"a"
].
get
<
int
>
(),
j
[
"b"
].
get
<
char
>
(),
j
[
"c"
].
get
<
short
>
()};
}
void
from_json
(
json
const
&
j
,
bit_more_complex_type
&
t
)
{
// relying on json_traits struct here..
t
=
{
j
[
"a"
].
get
<
udt
::
pod_type
>
(),
j
[
"b"
].
get
<
udt
::
pod_type
>
(),
j
[
"c"
].
get
<
std
::
string
>
()};
}
template
<
typename
T
>
void
from_json
(
json
const
&
j
,
optional_type
<
T
>&
t
)
{
if
(
j
.
is_null
())
t
=
optional_type
<
T
>
{};
else
t
=
j
.
get
<
T
>
();
}
inline
bool
operator
==
(
pod_type
const
&
lhs
,
pod_type
const
&
rhs
)
noexcept
{
return
std
::
tie
(
lhs
.
a
,
lhs
.
b
,
lhs
.
c
)
==
std
::
tie
(
rhs
.
a
,
rhs
.
b
,
rhs
.
c
);
}
int
val
;
};
inline
bool
operator
==
(
bit_more_complex_type
const
&
lhs
,
bit_more_complex_type
const
&
rhs
)
noexcept
{
return
std
::
tie
(
lhs
.
a
,
lhs
.
b
,
lhs
.
c
)
==
std
::
tie
(
rhs
.
a
,
rhs
.
b
,
rhs
.
c
);
}
template
<
typename
T
>
inline
bool
operator
==
(
optional_type
<
T
>
const
&
lhs
,
optional_type
<
T
>
const
&
rhs
)
{
if
(
!
lhs
&&
!
rhs
)
return
true
;
if
(
!
lhs
||
!
rhs
)
return
false
;
return
*
lhs
==
*
rhs
;
}
}
TEST_CASE
(
"constructors for user-defined types"
,
"[udt]"
)
{
SECTION
(
"empty type"
)
struct
name
{
udt
::
empty_type
const
e
{};
auto
const
j
=
json
{
e
};
auto
k
=
json
::
object
();
CHECK
(
j
==
k
);
}
std
::
string
val
;
};
SECTION
(
"pod type"
)
struct
address
{
auto
const
e
=
udt
::
pod_type
{
42
,
42
,
42
};
auto
j
=
json
{
e
};
auto
k
=
json
{{
"a"
,
42
},
{
"b"
,
42
},
{
"c"
,
42
}};
CHECK
(
j
==
k
);
}
std
::
string
val
;
};
SECTION
(
"bit more complex type"
)
struct
person
{
auto
const
e
=
udt
::
bit_more_complex_type
{{
42
,
42
,
42
},
{
41
,
41
,
41
},
"forty"
};
auto
j
=
json
{
e
};
auto
k
=
json
{{
"a"
,
{{
"a"
,
42
},
{
"b"
,
42
},
{
"c"
,
42
}}},
{
"b"
,
{{
"a"
,
41
},
{
"b"
,
41
},
{
"c"
,
41
}}},
{
"c"
,
"forty"
}};
CHECK
(
j
==
k
);
}
age
age
;
name
name
;
};
SECTION
(
"vector of udt"
)
struct
contact
{
std
::
vector
<
udt
::
bit_more_complex_type
>
v
;
auto
const
e
=
udt
::
bit_more_complex_type
{{
42
,
42
,
42
},
{
41
,
41
,
41
},
"forty"
};
v
.
emplace_back
(
e
);
v
.
emplace_back
(
e
);
v
.
emplace_back
(
e
);
json
j
=
v
;
auto
k
=
json
{{
"a"
,
{{
"a"
,
42
},
{
"b"
,
42
},
{
"c"
,
42
}}},
{
"b"
,
{{
"a"
,
41
},
{
"b"
,
41
},
{
"c"
,
41
}}},
{
"c"
,
"forty"
}};
auto
l
=
json
{
k
,
k
,
k
};
CHECK
(
j
==
l
);
}
SECTION
(
"optional type"
)
{
SECTION
(
"regular case"
)
{
udt
::
optional_type
<
int
>
u
{
3
};
CHECK
(
json
{
u
}
==
json
(
3
));
}
SECTION
(
"nullopt case"
)
{
udt
::
optional_type
<
float
>
v
;
CHECK
(
json
{
v
}
==
json
{});
}
SECTION
(
"optional of json convertible type"
)
{
auto
const
e
=
udt
::
bit_more_complex_type
{{
42
,
42
,
42
},
{
41
,
41
,
41
},
"forty"
};
udt
::
optional_type
<
udt
::
bit_more_complex_type
>
o
{
e
};
auto
k
=
json
{{
"a"
,
{{
"a"
,
42
},
{
"b"
,
42
},
{
"c"
,
42
}}},
{
"b"
,
{{
"a"
,
41
},
{
"b"
,
41
},
{
"c"
,
41
}}},
{
"c"
,
"forty"
}};
CHECK
(
json
{
o
}
==
k
);
}
SECTION
(
"optional of vector of json convertible type"
)
{
std
::
vector
<
udt
::
bit_more_complex_type
>
v
;
auto
const
e
=
udt
::
bit_more_complex_type
{{
42
,
42
,
42
},
{
41
,
41
,
41
},
"forty"
};
v
.
emplace_back
(
e
);
v
.
emplace_back
(
e
);
v
.
emplace_back
(
e
);
udt
::
optional_type
<
std
::
vector
<
udt
::
bit_more_complex_type
>>
o
{
v
};
auto
k
=
json
{{
"a"
,
{{
"a"
,
42
},
{
"b"
,
42
},
{
"c"
,
42
}}},
{
"b"
,
{{
"a"
,
41
},
{
"b"
,
41
},
{
"c"
,
41
}}},
{
"c"
,
"forty"
}};
auto
l
=
json
{
k
,
k
,
k
};
CHECK
(
json
{
o
}
==
l
);
}
}
}
person
person
;
address
address
;
};
TEST_CASE
(
"get<> for user-defined types"
,
"[udt]"
)
{
SECTION
(
"pod type"
)
{
auto
const
e
=
udt
::
pod_type
{
42
,
42
,
42
};
auto
const
j
=
json
{{
"a"
,
42
},
{
"b"
,
42
},
{
"c"
,
42
}};
auto
const
obj
=
j
.
get
<
udt
::
pod_type
>
();
CHECK
(
e
==
obj
);
}
SECTION
(
"bit more complex type"
)
{
auto
const
e
=
udt
::
bit_more_complex_type
{{
42
,
42
,
42
},
{
41
,
41
,
41
},
"forty"
};
auto
const
j
=
json
{{
"a"
,
{{
"a"
,
42
},
{
"b"
,
42
},
{
"c"
,
42
}}},
{
"b"
,
{{
"a"
,
41
},
{
"b"
,
41
},
{
"c"
,
41
}}},
{
"c"
,
"forty"
}};
auto
const
obj
=
j
.
get
<
udt
::
bit_more_complex_type
>
();
CHECK
(
e
==
obj
);
}
SECTION
(
"vector of udt"
)
struct
contact_book
{
auto
const
e
=
udt
::
bit_more_complex_type
{{
42
,
42
,
42
},
{
41
,
41
,
41
},
"forty"
};
std
::
vector
<
udt
::
bit_more_complex_type
>
v
{
e
,
e
,
e
};
auto
const
j
=
json
(
v
);
auto
const
obj
=
j
.
get
<
decltype
(
v
)
>
();
CHECK
(
v
==
obj
);
}
SECTION
(
"optional"
)
{
SECTION
(
"from null"
)
{
udt
::
optional_type
<
int
>
o
;
json
j
;
CHECK
(
j
.
get
<
decltype
(
o
)
>
()
==
o
);
}
SECTION
(
"from value"
)
{
json
j
{{
"a"
,
42
},
{
"b"
,
42
},
{
"c"
,
42
}};
auto
v
=
j
.
get
<
udt
::
optional_type
<
udt
::
pod_type
>>
();
auto
expected
=
udt
::
pod_type
{
42
,
42
,
42
};
REQUIRE
(
v
);
CHECK
(
*
v
==
expected
);
}
}
name
book_name
;
std
::
vector
<
contact
>
contacts
;
};
}
TEST_CASE
(
"to_json free function"
,
"[udt]"
)
// to_json methods for default basic_json
namespace
udt
{
SECTION
(
"pod_type"
)
void
to_json
(
nlohmann
::
json
&
j
,
age
a
)
{
auto
const
e
=
udt
::
pod_type
{
42
,
42
,
42
};
auto
const
expected
=
json
{{
"a"
,
42
},
{
"b"
,
42
},
{
"c"
,
42
}};
json
j
;
nlohmann
::
to_json
(
j
,
e
);
CHECK
(
j
==
expected
);
j
=
a
.
val
;
}
SECTION
(
"bit_more_complex_type"
)
void
to_json
(
nlohmann
::
json
&
j
,
name
const
&
n
)
{
auto
const
e
=
udt
::
bit_more_complex_type
{{
42
,
42
,
42
},
{
41
,
41
,
41
},
"forty"
};
auto
const
expected
=
json
{{
"a"
,
{{
"a"
,
42
},
{
"b"
,
42
},
{
"c"
,
42
}}},
{
"b"
,
{{
"a"
,
41
},
{
"b"
,
41
},
{
"c"
,
41
}}},
{
"c"
,
"forty"
}};
json
j
;
nlohmann
::
to_json
(
j
,
e
);
CHECK
(
j
==
expected
);
j
=
n
.
val
;
}
SECTION
(
"optional_type"
)
void
to_json
(
nlohmann
::
json
&
j
,
person
const
&
p
)
{
SECTION
(
"from null"
)
{
udt
::
optional_type
<
udt
::
pod_type
>
o
;
json
expected
;
json
j
;
nlohmann
::
to_json
(
j
,
o
);
CHECK
(
expected
==
j
);
}
using
nlohmann
::
json
;
j
=
json
{{
"age"
,
json
{
p
.
age
}},
{
"name"
,
json
{
p
.
name
}}};
SECTION
(
"from value"
)
{
udt
::
optional_type
<
udt
::
pod_type
>
o
{{
42
,
42
,
42
}};
auto
const
expected
=
json
{{
"a"
,
42
},
{
"b"
,
42
},
{
"c"
,
42
}};
json
j
;
nlohmann
::
to_json
(
j
,
o
);
CHECK
(
expected
==
j
);
}
// this unfortunately does not compile ...
// j["age"] = p.age;
// j["name"] = p.name;
}
}
TEST_CASE
(
"from_json free function"
,
"[udt]"
)
{
SECTION
(
"pod_type"
)
void
to_json
(
nlohmann
::
json
&
j
,
address
const
&
a
)
{
auto
const
expected
=
udt
::
pod_type
{
42
,
42
,
42
};
auto
const
j
=
json
{{
"a"
,
42
},
{
"b"
,
42
},
{
"c"
,
42
}};
udt
::
pod_type
p
;
nlohmann
::
from_json
(
j
,
p
);
CHECK
(
p
==
expected
);
j
=
a
.
val
;
}
SECTION
(
"bit_more_complex_type"
)
void
to_json
(
nlohmann
::
json
&
j
,
contact
const
&
c
)
{
auto
const
expected
=
udt
::
bit_more_complex_type
{{
42
,
42
,
42
},
{
41
,
41
,
41
},
"forty"
};
auto
const
j
=
json
{{
"a"
,
{{
"a"
,
42
},
{
"b"
,
42
},
{
"c"
,
42
}}},
{
"b"
,
{{
"a"
,
41
},
{
"b"
,
41
},
{
"c"
,
41
}}},
{
"c"
,
"forty"
}};
udt
::
bit_more_complex_type
p
;
nlohmann
::
from_json
(
j
,
p
);
CHECK
(
p
==
expected
);
using
nlohmann
::
json
;
j
=
json
{{
"person"
,
json
{
c
.
person
}},
{
"address"
,
json
{
c
.
address
}}};
}
SECTION
(
"optional_type"
)
void
to_json
(
nlohmann
::
json
&
j
,
contact_book
const
&
cb
)
{
SECTION
(
"from null"
)
{
udt
::
optional_type
<
udt
::
pod_type
>
expected
;
json
j
;
udt
::
optional_type
<
udt
::
pod_type
>
o
;
nlohmann
::
from_json
(
j
,
o
);
CHECK
(
expected
==
o
);
}
SECTION
(
"from value"
)
{
udt
::
optional_type
<
udt
::
pod_type
>
expected
{{
42
,
42
,
42
}};
auto
const
j
=
json
{{
"a"
,
42
},
{
"b"
,
42
},
{
"c"
,
42
}};
udt
::
optional_type
<
udt
::
pod_type
>
o
;
nlohmann
::
from_json
(
j
,
o
);
CHECK
(
expected
==
o
);
}
using
nlohmann
::
json
;
j
=
json
{{
"name"
,
json
{
cb
.
book_name
}},
{
"contacts"
,
cb
.
contacts
}};
}
}
// custom serializer, uses adl by default
template
<
typename
T
,
typename
=
void
>
struct
my_serializer
TEST_CASE
(
"basic usage"
,
"[udt]"
)
{
template
<
typename
Json
>
static
void
from_json
(
Json
const
&
j
,
T
&
val
)
{
nlohmann
::
from_json
(
j
,
val
);
}
using
nlohmann
::
json
;
template
<
typename
Json
>
static
void
to_json
(
Json
&
j
,
T
const
&
val
)
SECTION
(
"conversion to json via free-functions"
)
{
nlohmann
::
to_json
(
j
,
val
);
}
};
// partial specialization on optional_type
template
<
typename
T
>
struct
my_serializer
<
udt
::
optional_type
<
T
>>
{
template
<
typename
Json
>
static
void
from_json
(
Json
const
&
j
,
udt
::
optional_type
<
T
>&
opt
)
{
if
(
j
.
is_null
())
opt
=
nullptr
;
else
opt
=
j
.
get
<
T
>
();
}
template
<
typename
Json
>
static
void
to_json
(
Json
&
j
,
udt
::
optional_type
<
T
>
const
&
opt
)
{
if
(
opt
)
j
=
*
opt
;
else
j
=
nullptr
;
}
};
using
my_json
=
nlohmann
::
basic_json
<
std
::
map
,
std
::
vector
,
std
::
string
,
bool
,
std
::
int64_t
,
std
::
uint64_t
,
double
,
std
::
allocator
,
my_serializer
>
;
namespace
udt
{
void
to_json
(
my_json
&
j
,
pod_type
const
&
val
)
{
j
=
my_json
{{
"a"
,
val
.
a
},
{
"b"
,
val
.
b
},
{
"c"
,
val
.
c
}};
}
udt
::
age
a
{
23
};
void
from_json
(
my_json
const
&
j
,
pod_type
&
val
)
{
val
=
{
j
[
"a"
].
get
<
int
>
(),
j
[
"b"
].
get
<
char
>
(),
j
[
"c"
].
get
<
short
>
()};
}
}
TEST_CASE
(
"custom serializer"
,
"[udt]"
)
{
SECTION
(
"default use works like default serializer"
)
{
udt
::
pod_type
pod
{
1
,
2
,
3
};
auto
const
j
=
my_json
{
pod
};
CHECK
(
json
{
a
}
==
json
{
23
});
auto
const
j2
=
json
{
pod
};
CHECK
(
j
.
dump
()
==
j2
.
dump
());
// a bit narcissic maybe :) ?
udt
::
name
n
{
"theo"
};
CHECK
(
json
{
n
}
==
json
{
"theo"
});
auto
const
pod2
=
j
.
get
<
udt
::
pod_type
>
();
auto
const
pod3
=
j2
.
get
<
udt
::
pod_type
>
();
CHECK
(
pod2
==
pod3
);
CHECK
(
pod2
==
pod
);
udt
::
person
sfinae_addict
{
a
,
n
};
CHECK
(
json
{
sfinae_addict
}
==
R"({"name":"theo", "age":23})"
_json
);
}
SECTION
(
"serializer specialization"
)
{
udt
::
optional_type
<
int
>
opt
;
json
j
{
opt
};
CHECK
(
j
.
is_null
());
opt
=
42
;
j
=
json
{
opt
};
CHECK
(
j
.
get
<
udt
::
optional_type
<
int
>>
()
==
opt
);
CHECK
(
42
==
j
.
get
<
int
>
());
}
}
}
\ No newline at end of file
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