-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtraits.hpp
272 lines (195 loc) · 5.83 KB
/
traits.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
#ifndef JAKILID_TRAITS_HPP
#define JAKILID_TRAITS_HPP
#include <boost/mpl/bool.hpp>
#include <boost/mpl/or.hpp>
#include <boost/mpl/and.hpp>
#include <type_traits>
#include <string>
namespace jakilid {
namespace traits {
// char
template<class T>
struct __is_char : boost::mpl::false_ {};
template<>
struct __is_char<char> : boost::mpl::true_ {};
template<class T>
struct is_char : __is_char<std::remove_cv_t<T>> {};
// wchar
template<class T>
struct __is_wchar : boost::mpl::false_ {};
template<>
struct __is_wchar<wchar_t> : boost::mpl::true_ {};
template<class T>
struct is_wchar : __is_wchar<std::remove_cv_t<T>> {};
// c string
template <class T>
struct __is_c_string : boost::mpl::false_ {};
template <>
struct __is_c_string<char const*> : boost::mpl::true_ {};
template <>
struct __is_c_string<char*> : boost::mpl::true_ {};
template <std::size_t N>
struct __is_c_string<char[N]> : boost::mpl::true_ {};
template <std::size_t N>
struct __is_c_string<char const[N]> : boost::mpl::true_ {};
template <std::size_t N>
struct __is_c_string<char(&)[N]> : boost::mpl::true_ {};
template <std::size_t N>
struct __is_c_string<char const(&)[N]> : boost::mpl::true_ {};
template<class T>
struct is_c_string : __is_c_string<std::remove_cv_t<T>> {};
// c wstring
template <class T>
struct __is_c_wstring : boost::mpl::false_ {};
template <>
struct __is_c_wstring<wchar_t const*> : boost::mpl::true_ {};
template <>
struct __is_c_wstring<wchar_t*> : boost::mpl::true_ {};
template <std::size_t N>
struct __is_c_wstring<wchar_t[N]> : boost::mpl::true_ {};
template <std::size_t N>
struct __is_c_wstring<wchar_t const[N]> : boost::mpl::true_ {};
template <std::size_t N>
struct __is_c_wstring<wchar_t(&)[N]> : boost::mpl::true_ {};
template <std::size_t N>
struct __is_c_wstring<wchar_t const(&)[N]> : boost::mpl::true_ {};
template<class T>
struct is_c_wstring : __is_c_wstring<std::remove_cv_t<T>> {};
// std string
template<class T>
struct __is_std_string : boost::mpl::false_ {};
template<>
struct __is_std_string<std::string> : boost::mpl::true_ {};
template<class T>
struct is_std_string : __is_std_string<std::remove_cv_t<T>> {};
// std w string
template<class T>
struct __is_std_wstring : boost::mpl::false_ {};
template<>
struct __is_std_wstring<std::wstring> : boost::mpl::true_ {};
template<class T>
struct is_std_wstring : __is_std_wstring<std::remove_cv_t<T>> {};
// bool
template<class T>
struct __is_bool : boost::mpl::false_ {};
template<>
struct __is_bool<bool> : boost::mpl::true_ {};
template<class T>
struct is_bool : __is_bool<std::remove_cv_t<T>> {};
// signed integer number
template<class T>
struct __is_signed_integer : boost::mpl::false_ {};
template<>
struct __is_signed_integer<signed char> : boost::mpl::true_ {
static constexpr char id[] = "i0";
};
template<>
struct __is_signed_integer<short> : boost::mpl::true_ {
static constexpr char id[] = "i1";
};
template<>
struct __is_signed_integer<int> : boost::mpl::true_ {
static constexpr char id[] = "i2";
};
template<>
struct __is_signed_integer<long> : boost::mpl::true_ {
static constexpr char id[] = "i3";
};
template<>
struct __is_signed_integer<long long> : boost::mpl::true_ {
static constexpr char id[] = "i4";
};
template<class T>
struct is_signed_integer : __is_signed_integer<std::remove_cv_t<T>> {};
// unsigned integer number
template<class T>
struct __is_unsigned_integer : boost::mpl::false_ {};
template<>
struct __is_unsigned_integer<unsigned char> : boost::mpl::true_ {
static constexpr char id[] = "u0";
};
template<>
struct __is_unsigned_integer<unsigned short> : boost::mpl::true_ {
static constexpr char id[] = "u1";
};
template<>
struct __is_unsigned_integer<unsigned int> : boost::mpl::true_ {
static constexpr char id[] = "u2";
};
template<>
struct __is_unsigned_integer<unsigned long> : boost::mpl::true_ {
static constexpr char id[] = "u3";
};
template<>
struct __is_unsigned_integer<unsigned long long> : boost::mpl::true_ {
static constexpr char id[] = "u4";
};
template<class T>
struct is_unsigned_integer : __is_unsigned_integer<std::remove_cv_t<T>> {};
// real number
template<class T>
struct __is_real : boost::mpl::false_ {};
template<>
struct __is_real<float> : boost::mpl::true_ {
static constexpr char id[] = "f0";
};
template<>
struct __is_real<double> : boost::mpl::true_ {
static constexpr char id[] = "f1";
};
template<>
struct __is_real<long double> : boost::mpl::true_ {
static constexpr char id[] = "f2";
};
template<class T>
struct is_real : __is_real<std::remove_cv_t<T>> {};
/* ################################################## */
template <class T, class = void> struct type_char {
static constexpr char value[] = "__";
};
template <class T>
struct type_char<T, std::enable_if_t<is_signed_integer<T>::value>> {
static constexpr char value[2] = {
is_signed_integer<T>::id[0],
is_signed_integer<T>::id[1]
};
};
template <class T>
struct type_char<T, std::enable_if_t<is_unsigned_integer<T>::value>> {
static constexpr char value[2] = {
is_unsigned_integer<T>::id[0],
is_unsigned_integer<T>::id[1]
};
};
template <class T>
struct type_char<T, std::enable_if_t<is_real<T>::value>> {
static constexpr char value[2] = {
is_real<T>::id[0],
is_real<T>::id[1]
};
};
template <class T>
struct type_char<T, std::enable_if_t<
boost::mpl::or_<
is_c_string<T>,
is_std_string<T>,
is_char<T>
>::value>> {
static constexpr char value[] = "s0";
};
template <class T>
struct type_char<T, std::enable_if_t<
boost::mpl::or_<
is_c_wstring<T>,
is_std_wstring<T>,
is_wchar<T>
>::value>> {
static constexpr char value[] = "w0";
};
template <class T>
struct type_char<T, std::enable_if_t<is_bool<T>::value>> {
static constexpr char value[] = "b0";
};
}
}
#endif