-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypeinfo.hpp
469 lines (375 loc) · 10.6 KB
/
typeinfo.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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
//@ {"targets":[{"name":"typeinfo.hpp","type":"include"}]}
#ifndef ALICE_TYPEINFO_HPP
#define ALICE_TYPEINFO_HPP
#include "stringkey.hpp"
#include "narrow_cast.hpp"
#include "stringformat.hpp"
#include <string>
#include <vector>
#include <climits>
#define STR(x) #x
#define STRING(x) STR(x)
namespace Alice
{
struct MakeTypeBase
{
typedef void Type;
static constexpr const char* descriptionLongGet()
{return nullptr;}
static constexpr const char* descriptionShortGet()
{return nullptr;}
};
template<Stringkey::HashValue key>
struct MakeType
{};
template<class Type,class ErrorHandler>
struct MakeValue
{static Type make_value(const std::string&);};
template<class Type,class ErrorHandler>
Type make_value(const std::string& x)
{return MakeValue<Type,ErrorHandler>::make_value(x);}
template<class Type>
void print(const Type&,FILE* dest);
//# Predefined types
//# ================
//# These types are predefined by Alice. It is likely that the caller wants
//# to create type aliases for more descriptive and less technical names.
//# For example, it may be better to use the type `distance` instead of
//# `double`. See [Creating a type alias] for details.
//# The bool type
//# -------------
//# The bool type can be converted from true/false, yes/no, or a numerical
//# value
template<>
struct MakeType<Stringkey("bool")>:public MakeTypeBase
{
typedef bool Type;
static constexpr const char* descriptionLongGet()
{
return "can be `true`, `false`, `yes`, or `no`. "
"`true` is equivalent to `yes` and `false` is equivalent to no. "
"It is also possible to use a number. In this case, any non-zero value is "
"`true` and zero is `false`.";
}
static constexpr const char* descriptionShortGet()
{
return "`true` | `false` | `yes` | `no`";
}
};
inline void print(bool x,FILE* dest)
{fprintf(dest,"%s",x?"true":"false");}
template<class ErrorHandler>
unsigned long long int toUint(const std::string& str)
{
char* ptr_end;
auto ret=strtoull(str.c_str(), &ptr_end, 10);
if(errno==ERANGE)
{
ErrorHandler::rangeError(std::numeric_limits<unsigned long long>::min()
,std::numeric_limits<unsigned long long>::max());
}
return ret;
}
template<class ErrorHandler>
long long int toInt(const std::string& str)
{
char* ptr_end;
auto ret=strtoll(str.c_str(), &ptr_end, 10);
if(errno==ERANGE)
{
ErrorHandler::rangeError(std::numeric_limits<long long>::min()
,std::numeric_limits<long long>::max());
}
return ret;
}
template<class ErrorHandler>
struct MakeValue<bool,ErrorHandler>
{
static bool make_value(const std::string& x)
{
if(x=="true" || x=="yes")
{return 1;}
if(x=="false" || x=="no")
{return 0;}
return toUint<ErrorHandler>(x);
}
};
//# Base class for integer types
//# ----------------------------
namespace
{
struct Begin
{
static constexpr const char* get() noexcept
{return "An integer in the range [";}
};
struct Comma
{
static constexpr const char* get() noexcept
{return ", ";}
};
template<class T>
constexpr auto min_string=toString<T,std::numeric_limits<T>::min()>();
template<class T>
constexpr auto max_string=toString<T,std::numeric_limits<T>::max()>();
template<class T>
static constexpr auto integer_description=make_array<Begin>()
.append(min_string<T>).append(make_array<Comma>()).append(max_string<T>)
.append(']').append('\0');
}
template<class T>
struct IntegerType:public MakeTypeBase
{
static constexpr const char* descriptionLongGet() noexcept
{return integer_description<T>.data;}
typedef T Type;
};
//# Signed integers
//# ---------------
//# Signed integers uses the raw C++ types except for `char`, which is replaced
//# by `byte`. This is because it is unlikely that a one byte string is ever used.
template<>
struct MakeType<Stringkey("byte")>:public IntegerType<char>
{};
inline void print(char x,FILE* dest)
{fprintf(dest,"%d",x);}
template<class ErrorHandler>
struct MakeValue<char,ErrorHandler>
{
static char make_value(const std::string& x)
{return narrow_cast<char,ErrorHandler>( toInt<ErrorHandler>(x) );}
};
template<>
struct MakeType<Stringkey("short")>:public IntegerType<short>
{
};
inline void print(short x,FILE* dest)
{fprintf(dest,"%d",x);}
template<class ErrorHandler>
struct MakeValue<short,ErrorHandler>
{
static short make_value(const std::string& x)
{return narrow_cast<short,ErrorHandler>( toInt<ErrorHandler>(x) );}
};
template<>
struct MakeType<Stringkey("int")>:public IntegerType<int>
{};
inline void print(int x,FILE* dest)
{fprintf(dest,"%d",x);}
template<class ErrorHandler>
struct MakeValue<int,ErrorHandler>
{
static int make_value(const std::string& x)
{return narrow_cast<int,ErrorHandler>(toInt<ErrorHandler>(x));}
};
template<>
struct MakeType<Stringkey("long")>:public IntegerType<long>
{};
inline void print(long int x,FILE* dest)
{fprintf(dest,"%ld",x);}
template<class ErrorHandler>
struct MakeValue<long,ErrorHandler>
{
static long make_value(const std::string& x)
{return narrow_cast<long,ErrorHandler>(toInt<ErrorHandler>(x));}
};
template<>
struct MakeType<Stringkey("long long")>:public IntegerType<long long>
{};
inline void print(long long int x,FILE* dest)
{fprintf(dest,"%lld",x);}
template<class ErrorHandler>
struct MakeValue<long long,ErrorHandler>
{
static long long make_value(const std::string& x)
{return toInt<ErrorHandler>(x);}
};
//# Unsigned integers
//# -----------------
//# Unsigned integers uses the raw C++ types. `unsigend char` is assumed to be
//# an one byte integer, because it is unlikely that a one byte string is ever
//# used.
template<>
struct MakeType<Stringkey("unsigned byte")>:public IntegerType<unsigned char>
{};
inline void print(unsigned char x,FILE* dest)
{fprintf(dest,"%u",x);}
template<class ErrorHandler>
struct MakeValue<unsigned char,ErrorHandler>
{
static unsigned char make_value(const std::string& x)
{return narrow_cast<unsigned char,ErrorHandler>( toUint<ErrorHandler>(x) );}
};
template<>
struct MakeType<Stringkey("unsigned short")>:public IntegerType<unsigned short>
{};
inline void print(unsigned short x,FILE* dest)
{fprintf(dest,"%u",x);}
template<class ErrorHandler>
struct MakeValue<unsigned short,ErrorHandler>
{
static unsigned short make_value(const std::string& x)
{return narrow_cast<unsigned short,ErrorHandler>( toUint<ErrorHandler>(x) );}
};
template<>
struct MakeType<Stringkey("unsigned int")>:public IntegerType<unsigned int>
{};
inline void print(unsigned int x,FILE* dest)
{fprintf(dest,"%u",x);}
template<class ErrorHandler>
struct MakeValue<unsigned int,ErrorHandler>
{
static unsigned int make_value(const std::string& x)
{return narrow_cast<unsigned int,ErrorHandler>( toUint<ErrorHandler>(x) );}
};
template<>
struct MakeType<Stringkey("unsigned long")>:public IntegerType<unsigned long>
{};
inline void print(unsigned long x,FILE* dest)
{fprintf(dest,"%lu",x);}
template<class ErrorHandler>
struct MakeValue<unsigned long,ErrorHandler>
{
static unsigned long make_value(const std::string& x)
{
return narrow_cast<unsigned long,ErrorHandler>( toUint<ErrorHandler>(x) );
}
};
template<>
struct MakeType<Stringkey("unsigned long long")>:public IntegerType<unsigned long long>
{};
inline void print(unsigned long long x,FILE* dest)
{fprintf(dest,"%llu",x);}
template<class ErrorHandler>
struct MakeValue<unsigned long long,ErrorHandler>
{
static unsigned long long make_value(const std::string& x)
{
return toUint<ErrorHandler>(x);
}
};
//# Floating point types
//# --------------------
template<>
struct MakeType<Stringkey("float")>:public MakeTypeBase
{
typedef float Type;
static constexpr const char* descriptionLongGet()
{return "A floating point value, single precision";}
};
inline void print(float x,FILE* dest)
{fprintf(dest,"%.8e",x);}
template<class ErrorHandler>
struct MakeValue<float,ErrorHandler>
{
static float make_value(const std::string& x)
{return std::stof(x);}
};
template<>
struct MakeType<Stringkey("double")>:public MakeTypeBase
{
typedef double Type;
static constexpr const char* descriptionLongGet()
{return "A floating point value, double precision";}
};
inline void print(double x,FILE* dest)
{fprintf(dest,"%.16e",x);}
template<class ErrorHandler>
struct MakeValue<double,ErrorHandler>
{
static float make_value(const std::string& x)
{return std::stod(x);}
};
//# std::string
//# --------------------
template<>
struct MakeType<Stringkey("string")>:public MakeTypeBase
{
typedef std::string Type;
static constexpr const char* descriptionLongGet()
{return "An UTF-8 encoded string";}
};
inline void print(const std::string& x,FILE* dest)
{
//TODO: Escape JSON string!
fprintf(dest,"\"%s\"",x.c_str());
}
template<class ErrorHandler>
struct MakeValue<std::string,ErrorHandler>
{
static std::string make_value(const std::string& x)
{return x;}
};
//# Array stuff
//# -----------
template<class T>
inline void print(const std::vector<T>& values,FILE* dest)
{
auto ptr=values.data();
auto ptr_end=ptr+values.size();
fprintf(dest,"[");
if(ptr!=ptr_end)
{
print(*ptr,dest);
++ptr;
}
while(ptr!=ptr_end)
{
fprintf(dest,",");
print(*ptr,dest);
++ptr;
}
fprintf(dest,"]");
}
template<>
inline void print<bool>(const std::vector<bool>& values,FILE* dest)
{
auto ptr=values.begin();
auto ptr_end=values.end();
fprintf(dest,"[");
if(ptr!=ptr_end)
{
print(*ptr,dest);
++ptr;
}
while(ptr!=ptr_end)
{
fprintf(dest,",");
print(*ptr,dest);
++ptr;
}
fprintf(dest,"]");
}
namespace
{
template<class Type,class ErrorHandler,bool multi>
struct MakeValueHelper
{};
template<class Type,class ErrorHandler>
struct MakeValueHelper<Type,ErrorHandler,0>
{
static Type make_value(const std::vector<std::string>& x)
{return Alice::make_value<Type,ErrorHandler>(x[0]);}
};
template<class Type,class ErrorHandler>
struct MakeValueHelper<Type,ErrorHandler,1>
{
static Type make_value(const std::vector<std::string>& x)
{
Type ret;
auto ptr=x.data();
auto ptr_end=ptr+x.size();
while(ptr!=ptr_end)
{
ret.push_back(Alice::make_value<typename Type::value_type,ErrorHandler>(*ptr));
++ptr;
}
return ret;
}
};
}
template<class Type,class ErrorHandler,bool multi>
inline auto make_value(const std::vector<std::string>& x)
{return MakeValueHelper<Type,ErrorHandler,multi>::make_value(x);}
}
#endif