Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
json
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
json
Commits
23bd2bce
Commit
23bd2bce
authored
Nov 16, 2016
by
Théo DELRIEU
Committed by
Théo DELRIEU
Jan 21, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add is_compatible_* traits
parent
178441cd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
106 additions
and
34 deletions
+106
-34
json.hpp
src/json.hpp
+100
-24
unit-udt.cpp
test/src/unit-udt.cpp
+6
-10
No files found.
src/json.hpp
View file @
23bd2bce
...
@@ -150,6 +150,96 @@ struct has_mapped_type
...
@@ -150,6 +150,96 @@ struct has_mapped_type
std
::
is_integral
<
decltype
(
detect
(
std
::
declval
<
T
>
()))
>::
value
;
std
::
is_integral
<
decltype
(
detect
(
std
::
declval
<
T
>
()))
>::
value
;
};
};
template
<
typename
T
>
struct
has_key_type
{
private
:
template
<
typename
U
,
typename
=
typename
U
::
key_type
>
static
int
detect
(
U
&&
);
static
void
detect
(...);
public
:
static
constexpr
bool
value
=
std
::
is_integral
<
decltype
(
detect
(
std
::
declval
<
T
>
()))
>::
value
;
};
template
<
typename
T
>
struct
has_value_type
{
private
:
template
<
typename
U
,
typename
=
typename
U
::
value_type
>
static
int
detect
(
U
&&
);
static
void
detect
(...);
public
:
static
constexpr
bool
value
=
std
::
is_integral
<
decltype
(
detect
(
std
::
declval
<
T
>
()))
>::
value
;
};
template
<
bool
B
,
class
RealType
,
class
CompatibleObjectType
>
struct
is_compatible_object_type_impl
:
std
::
false_type
{};
template
<
class
RealType
,
class
CompatibleObjectType
>
struct
is_compatible_object_type_impl
<
true
,
RealType
,
CompatibleObjectType
>
{
static
constexpr
auto
value
=
std
::
is_constructible
<
typename
RealType
::
key_type
,
typename
CompatibleObjectType
::
key_type
>::
value
and
std
::
is_constructible
<
typename
RealType
::
mapped_type
,
typename
CompatibleObjectType
::
mapped_type
>::
value
;
};
template
<
class
RealType
,
class
CompatibleObjectType
,
typename
=
enable_if_t
<
has_mapped_type
<
CompatibleObjectType
>::
value
and
has_key_type
<
CompatibleObjectType
>::
value
>>
struct
is_compatible_object_type
{
static
auto
constexpr
value
=
is_compatible_object_type_impl
<
has_mapped_type
<
CompatibleObjectType
>::
value
and
has_key_type
<
CompatibleObjectType
>::
value
,
RealType
,
CompatibleObjectType
>::
value
;
};
template
<
bool
B
,
class
BasicJson
,
class
CompatibleArrayType
>
struct
is_compatible_array_type_impl
:
std
::
false_type
{};
template
<
class
BasicJson
,
class
CompatibleArrayType
>
struct
is_compatible_array_type_impl
<
true
,
BasicJson
,
CompatibleArrayType
>
{
static
constexpr
auto
value
=
not
std
::
is_same
<
CompatibleArrayType
,
typename
BasicJson
::
iterator
>::
value
and
not
std
::
is_same
<
CompatibleArrayType
,
typename
BasicJson
::
const_iterator
>::
value
and
not
std
::
is_same
<
CompatibleArrayType
,
typename
BasicJson
::
reverse_iterator
>::
value
and
not
std
::
is_same
<
CompatibleArrayType
,
typename
BasicJson
::
const_reverse_iterator
>::
value
and
not
std
::
is_same
<
CompatibleArrayType
,
typename
BasicJson
::
array_t
::
iterator
>::
value
and
not
std
::
is_same
<
CompatibleArrayType
,
typename
BasicJson
::
array_t
::
const_iterator
>::
value
and
std
::
is_constructible
<
BasicJson
,
typename
CompatibleArrayType
::
value_type
>::
value
;
};
template
<
class
BasicJson
,
class
CompatibleArrayType
>
struct
is_compatible_array_type
{
static
auto
constexpr
value
=
is_compatible_array_type_impl
<
has_value_type
<
CompatibleArrayType
>::
value
,
BasicJson
,
CompatibleArrayType
>::
value
;
};
template
<
typename
RealIntegerType
,
typename
CompatibleNumberIntegerType
>
struct
is_compatible_integer_type
{
static
constexpr
auto
value
=
std
::
is_constructible
<
RealIntegerType
,
CompatibleNumberIntegerType
>::
value
and
std
::
numeric_limits
<
CompatibleNumberIntegerType
>::
is_integer
and
std
::
numeric_limits
<
CompatibleNumberIntegerType
>::
is_signed
;
};
template
<
typename
RealInteger
,
typename
CompatibleNumberUnsignedType
>
struct
is_compatible_unsigned_integer_type
{
static
constexpr
auto
value
=
std
::
is_constructible
<
RealInteger
,
CompatibleNumberUnsignedType
>::
value
and
std
::
numeric_limits
<
CompatibleNumberUnsignedType
>::
is_integer
and
not
std
::
numeric_limits
<
CompatibleNumberUnsignedType
>::
is_signed
;
};
template
<
typename
RealFloat
,
typename
CompatibleFloat
>
struct
is_compatible_float_type
{
static
constexpr
auto
value
=
std
::
is_constructible
<
RealFloat
,
CompatibleFloat
>::
value
and
std
::
is_floating_point
<
CompatibleFloat
>::
value
;
};
template
<
template
<
typename
,
typename
>
class
JSONSerializer
,
typename
Json
,
template
<
template
<
typename
,
typename
>
class
JSONSerializer
,
typename
Json
,
typename
T
>
typename
T
>
struct
has_from_json
struct
has_from_json
...
@@ -361,6 +451,11 @@ class basic_json
...
@@ -361,6 +451,11 @@ class basic_json
BooleanType
,
NumberIntegerType
,
NumberUnsignedType
,
NumberFloatType
,
BooleanType
,
NumberIntegerType
,
NumberUnsignedType
,
NumberFloatType
,
AllocatorType
>
;
AllocatorType
>
;
template
<
template
<
typename
...
>
class
T
>
struct
wrapper
{};
using
supported_tpl_types
=
std
::
tuple
<
wrapper
<
ObjectType
>
,
wrapper
<
ArrayType
>
,
wrapper
<
AllocatorType
>
,
wrapper
<
JSONSerializer
>>
;
public
:
public
:
// forward declarations
// forward declarations
template
<
typename
U
>
class
iter_impl
;
template
<
typename
U
>
class
iter_impl
;
...
@@ -1340,9 +1435,7 @@ class basic_json
...
@@ -1340,9 +1435,7 @@ class basic_json
@since version 1.0.0
@since version 1.0.0
*/
*/
template
<
class
CompatibleObjectType
,
typename
std
::
enable_if
<
template
<
class
CompatibleObjectType
,
enable_if_t
<
detail
::
is_compatible_object_type
<
object_t
,
CompatibleObjectType
>::
value
,
int
>
=
0
>
std
::
is_constructible
<
typename
object_t
::
key_type
,
typename
CompatibleObjectType
::
key_type
>::
value
and
std
::
is_constructible
<
basic_json
,
typename
CompatibleObjectType
::
mapped_type
>::
value
,
int
>::
type
=
0
>
basic_json
(
const
CompatibleObjectType
&
val
)
basic_json
(
const
CompatibleObjectType
&
val
)
:
m_type
(
value_t
::
object
)
:
m_type
(
value_t
::
object
)
{
{
...
@@ -1403,14 +1496,7 @@ class basic_json
...
@@ -1403,14 +1496,7 @@ class basic_json
@since version 1.0.0
@since version 1.0.0
*/
*/
template
<
class
CompatibleArrayType
,
typename
std
::
enable_if
<
template
<
class
CompatibleArrayType
,
enable_if_t
<
detail
::
is_compatible_array_type
<
basic_json_t
,
CompatibleArrayType
>::
value
,
int
>
=
0
>
not
std
::
is_same
<
CompatibleArrayType
,
typename
basic_json_t
::
iterator
>::
value
and
not
std
::
is_same
<
CompatibleArrayType
,
typename
basic_json_t
::
const_iterator
>::
value
and
not
std
::
is_same
<
CompatibleArrayType
,
typename
basic_json_t
::
reverse_iterator
>::
value
and
not
std
::
is_same
<
CompatibleArrayType
,
typename
basic_json_t
::
const_reverse_iterator
>::
value
and
not
std
::
is_same
<
CompatibleArrayType
,
typename
array_t
::
iterator
>::
value
and
not
std
::
is_same
<
CompatibleArrayType
,
typename
array_t
::
const_iterator
>::
value
and
std
::
is_constructible
<
basic_json
,
typename
CompatibleArrayType
::
value_type
>::
value
,
int
>::
type
=
0
>
basic_json
(
const
CompatibleArrayType
&
val
)
basic_json
(
const
CompatibleArrayType
&
val
)
:
m_type
(
value_t
::
array
)
:
m_type
(
value_t
::
array
)
{
{
...
@@ -1621,11 +1707,7 @@ class basic_json
...
@@ -1621,11 +1707,7 @@ class basic_json
@since version 1.0.0
@since version 1.0.0
*/
*/
template
<
typename
CompatibleNumberIntegerType
,
typename
std
::
enable_if
<
template
<
typename
CompatibleNumberIntegerType
,
enable_if_t
<
detail
::
is_compatible_integer_type
<
number_integer_t
,
CompatibleNumberIntegerType
>::
value
,
int
>
=
0
>
std
::
is_constructible
<
number_integer_t
,
CompatibleNumberIntegerType
>::
value
and
std
::
numeric_limits
<
CompatibleNumberIntegerType
>::
is_integer
and
std
::
numeric_limits
<
CompatibleNumberIntegerType
>::
is_signed
,
CompatibleNumberIntegerType
>::
type
=
0
>
basic_json
(
const
CompatibleNumberIntegerType
val
)
noexcept
basic_json
(
const
CompatibleNumberIntegerType
val
)
noexcept
:
m_type
(
value_t
::
number_integer
),
:
m_type
(
value_t
::
number_integer
),
m_value
(
static_cast
<
number_integer_t
>
(
val
))
m_value
(
static_cast
<
number_integer_t
>
(
val
))
...
@@ -1679,11 +1761,7 @@ class basic_json
...
@@ -1679,11 +1761,7 @@ class basic_json
@since version 2.0.0
@since version 2.0.0
*/
*/
template
<
typename
CompatibleNumberUnsignedType
,
typename
std
::
enable_if
<
template
<
typename
CompatibleNumberUnsignedType
,
enable_if_t
<
detail
::
is_compatible_unsigned_integer_type
<
number_unsigned_t
,
CompatibleNumberUnsignedType
>::
value
,
int
>
=
0
>
std
::
is_constructible
<
number_unsigned_t
,
CompatibleNumberUnsignedType
>::
value
and
std
::
numeric_limits
<
CompatibleNumberUnsignedType
>::
is_integer
and
not
std
::
numeric_limits
<
CompatibleNumberUnsignedType
>::
is_signed
,
CompatibleNumberUnsignedType
>::
type
=
0
>
basic_json
(
const
CompatibleNumberUnsignedType
val
)
noexcept
basic_json
(
const
CompatibleNumberUnsignedType
val
)
noexcept
:
m_type
(
value_t
::
number_unsigned
),
:
m_type
(
value_t
::
number_unsigned
),
m_value
(
static_cast
<
number_unsigned_t
>
(
val
))
m_value
(
static_cast
<
number_unsigned_t
>
(
val
))
...
@@ -1759,9 +1837,7 @@ class basic_json
...
@@ -1759,9 +1837,7 @@ class basic_json
@since version 1.0.0
@since version 1.0.0
*/
*/
template
<
typename
CompatibleNumberFloatType
,
typename
=
typename
std
::
enable_if
<
template
<
typename
CompatibleNumberFloatType
,
enable_if_t
<
detail
::
is_compatible_float_type
<
number_float_t
,
CompatibleNumberFloatType
>::
value
,
int
>
=
0
>
std
::
is_constructible
<
number_float_t
,
CompatibleNumberFloatType
>::
value
and
std
::
is_floating_point
<
CompatibleNumberFloatType
>::
value
>::
type
>
basic_json
(
const
CompatibleNumberFloatType
val
)
noexcept
basic_json
(
const
CompatibleNumberFloatType
val
)
noexcept
:
basic_json
(
number_float_t
(
val
))
:
basic_json
(
number_float_t
(
val
))
{
{
...
...
test/src/unit-udt.cpp
View file @
23bd2bce
/*
/*
__ _____ _____ _____
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 2.0.
5
| | |__ | | | | | | version 2.0.
7
|_____|_____|_____|_|___| https://github.com/nlohmann/json
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
@@ -382,25 +382,22 @@ TEST_CASE("from_json free function", "[udt]")
...
@@ -382,25 +382,22 @@ TEST_CASE("from_json free function", "[udt]")
// custom serializer, uses adl by default
// custom serializer, uses adl by default
template
<
typename
T
,
typename
=
void
>
template
<
typename
T
,
typename
=
void
>
struct
my_serializer
;
struct
my_serializer
template
<>
struct
my_serializer
<
udt
::
pod_type
>
{
{
template
<
typename
Json
>
template
<
typename
Json
>
static
void
from_json
(
Json
const
&
j
,
udt
::
pod_type
&
val
)
static
void
from_json
(
Json
const
&
j
,
T
&
val
)
{
{
nlohmann
::
from_json
(
j
,
val
);
nlohmann
::
from_json
(
j
,
val
);
}
}
template
<
typename
Json
>
template
<
typename
Json
>
static
void
to_json
(
Json
&
j
,
udt
::
pod_type
const
&
val
)
static
void
to_json
(
Json
&
j
,
T
const
&
val
)
{
{
nlohmann
::
to_json
(
j
,
val
);
nlohmann
::
to_json
(
j
,
val
);
}
}
};
};
using
my_json
=
nlohmann
::
basic_json
<
std
::
map
,
std
::
vector
,
std
::
string
,
bool
,
/*
using my_json = nlohmann::basic_json<std::map, std::vector, std::string, bool,
std::int64_t, std::uint64_t, double,
std::int64_t, std::uint64_t, double,
std::allocator, my_serializer>;
std::allocator, my_serializer>;
...
@@ -419,8 +416,6 @@ namespace udt
...
@@ -419,8 +416,6 @@ namespace udt
TEST_CASE("custom serializer")
TEST_CASE("custom serializer")
{
{
SECTION("default use works like default serializer")
SECTION("default use works like default serializer")
{
{
udt::pod_type pod{1, 2, 3};
udt::pod_type pod{1, 2, 3};
...
@@ -435,3 +430,4 @@ TEST_CASE("custom serializer")
...
@@ -435,3 +430,4 @@ TEST_CASE("custom serializer")
CHECK(pod2 == pod);
CHECK(pod2 == pod);
}
}
}
}
*/
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