Skip to content

Commit 8dc3691

Browse files
Handle iterator types in typeName, RESTProcess and json_pack/unpack. Requires C++11 or later.
1 parent 84cf4be commit 8dc3691

8 files changed

+41
-12
lines changed

RESTProcess_base.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1291,7 +1291,7 @@ namespace classdesc
12911291

12921292
namespace classdesc_access
12931293
{
1294-
template <class T> struct access_RESTProcess;
1294+
template <class T, class Enable=void> struct access_RESTProcess;
12951295
}
12961296

12971297
namespace std

RESTProcess_epilogue.h

+4
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,10 @@ namespace classdesc_access
4747
struct access_RESTProcess<cd::PolyPack<T>>:
4848
public cd::NullDescriptor<cd::RESTProcess_t> {};
4949

50+
template <class T>
51+
struct access_RESTProcess<T, cd::void_t<typename std::iterator_traits<T>::value_type>>:
52+
public cd::NullDescriptor<cd::RESTProcess_t> {};
53+
5054
}
5155

5256
namespace classdesc

classdesc.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ struct MemberSig
194194
declName(d), returnType(r), argList(a), prefix(p), name(n), type(t) {}
195195
string declare() {
196196
// If qualified type, the typename qualifier required
197-
auto rType=returnType.find("::")!=string::npos && returnType.find("typename ")==string::npos? "typename "+returnType: returnType;
197+
string rType=returnType.find("::")!=string::npos && returnType.find("typename ")==string::npos? "typename "+returnType: returnType;
198198
switch (type)
199199
{
200200
case none:

classdesc.h

+8
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,10 @@ namespace classdesc
146146
using std::is_copy_constructible;
147147
using std::is_assignable;
148148

149+
// useful utility for SFINAE calculations
150+
// See https://isocpp.org/files/papers/N3911.pdf
151+
template <typename... > using void_t = void;
152+
149153
// missing from std, so supply here in classdesc
150154
template <class T, class... Args>
151155
std::unique_ptr<T> make_unique(Args... args)
@@ -320,6 +324,10 @@ namespace classdesc
320324
static const bool value=true;};
321325

322326
#if defined(__cplusplus) && __cplusplus>=201103L
327+
template <class T, class=void> struct is_iterator: public false_type {};
328+
template <class T> struct is_iterator<T, void_t<typename std::iterator_traits<T>::iterator_category>>:
329+
public true_type {};
330+
323331
template <class K, class V, class H, class P, class A>
324332
struct is_associative_container<std::unordered_map<K,V,H,P,A> > {
325333
static const bool value=true;};

classdesc_access.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ namespace classdesc_access
2222
template <class T> struct access_unpack;
2323
template <class T> struct access_xml_pack;
2424
template <class T> struct access_xml_unpack;
25-
template <class T> struct access_json_pack;
26-
template <class T> struct access_json_unpack;
25+
template <class T, class Enable> struct access_json_pack;
26+
template <class T, class Enable> struct access_json_unpack;
2727
template <class T> struct access_random_init;
2828
}
2929

@@ -39,8 +39,8 @@ namespace classdesc_access
3939
friend struct classdesc_access::access_unpack<type>; \
4040
friend struct classdesc_access::access_xml_pack<type>; \
4141
friend struct classdesc_access::access_xml_unpack<type>; \
42-
friend struct classdesc_access::access_json_pack<type>; \
43-
friend struct classdesc_access::access_json_unpack<type>; \
42+
friend struct classdesc_access::access_json_pack<type,void>; \
43+
friend struct classdesc_access::access_json_unpack<type,void>; \
4444
friend struct classdesc_access::access_random_init<type>
4545

4646
// for backward compatibility. Deprecated.

json_pack_base.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -636,8 +636,8 @@ inline std::ostream& operator<<(std::ostream& o, const json5_parser::mValue& x)
636636

637637
namespace classdesc_access
638638
{
639-
template <class T> struct access_json_pack;
640-
template <class T> struct access_json_unpack;
639+
template <class T, class Enable=void> struct access_json_pack;
640+
template <class T, class Enable=void> struct access_json_unpack;
641641
}
642642

643643
#include "use_mbr_pointers.h"

json_pack_epilogue.h

+12-2
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,19 @@ namespace classdesc_access
7474
{
7575
namespace cd=classdesc;
7676

77+
#if defined(__cplusplus) && __cplusplus>=201103L
78+
// nobble iterators
79+
template <class T>
80+
struct access_json_pack<T, cd::void_t<typename std::iterator_traits<T>::value_type>>:
81+
public cd::NullDescriptor<cd::json_pack_t> {};
82+
template <class T>
83+
struct access_json_unpack<T, cd::void_t<typename std::iterator_traits<T>::value_type>>:
84+
public cd::NullDescriptor<cd::json_unpack_t> {};
85+
#endif
86+
7787
#ifndef JSON_PACK_NO_FALL_THROUGH_TO_STREAMING
7888
// fall through to streaming operators
79-
template <class T>
89+
template <class T,class Enable>
8090
struct access_json_pack
8191
{
8292
public:
@@ -88,7 +98,7 @@ namespace classdesc_access
8898
}
8999
};
90100

91-
template <class T>
101+
template <class T,class Enable>
92102
struct access_json_unpack
93103
{
94104
public:

typeName_epilogue.h

+9-2
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,14 @@ namespace classdesc
2626
enable_if<And<Not<is_const<T> >,is_integral<T> >,std::string>::T
2727
typeNamep() {return integralTypeName<T>();}
2828

29+
#if defined(__cplusplus) && __cplusplus>=201103L
30+
template <class T>
31+
struct tn<T, void_t<typename std::iterator_traits<T>::value_type>>
32+
{
33+
static std::string name() {return "iterator";}
34+
};
35+
#endif
36+
2937
template <class T> typename
3038
enable_if<
3139
And<
@@ -39,9 +47,8 @@ namespace classdesc
3947
typeNamep() {return "const "+typeName<typename remove_const<T>::type>();}
4048

4149
template <class T>
42-
typename enable_if<And<Not<is_function<T> >, Not<is_member_function_pointer<T> > >, std::string>::T
50+
typename enable_if<And<Not<is_function<T> >,Not<is_member_function_pointer<T> > >, std::string>::T
4351
typeName() {return typeNamep<T>();}
44-
4552

4653
#if defined(__cplusplus) && __cplusplus>=201103L
4754
template <class T>

0 commit comments

Comments
 (0)