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
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
| require "./serializable"
def Object.fromRsconf(toplevel : ::RemiLib::RSConf::RSValue)
new(toplevel)
end
def Object.fromRsconf(data : String|IO|Path)
parsed = ::RemiLib::RSConf::Parser.parse(data)
new(parsed)
end
def Array.fromRsconf(toplevel : ::RemiLib::RSConf::RSValue, &) : Nil
unless toplevel.is_a?(::RemiLib::RSConf::RSArray)
raise ::RemiLib::RSConf::RSConfError.new("Toplevel is not an array.")
end
new(toplevel) do |element|
yield element
end
nil
end
def Array.fromRsconf(toplevel : String|IO|Path, &) : Nil
toplevel = ::RemiLib::RSConf::Parser.parse(toplevel)
unless toplevel.is_a?(::RemiLib::RSConf::RSArray)
raise ::RemiLib::RSConf::RSConfError.new("Toplevel is not an array.")
end
new(toplevel) do |element|
yield element
end
nil
end
def Deque.fromRsconf(toplevel : ::RemiLib::RSConf::RSValue, &) : Nil
unless toplevel.is_a?(::RemiLib::RSConf::RSArray)
raise ::RemiLib::RSConf::RSConfError.new("Toplevel is not an array.")
end
new(toplevel) do |element|
yield element
end
nil
end
def Deque.fromRsconf(toplevel : String|IO|Path, &) : Nil
toplevel = ::RemiLib::RSConf::Parser.parse(toplevel)
unless toplevel.is_a?(::RemiLib::RSConf::RSArray)
raise ::RemiLib::RSConf::RSConfError.new("Toplevel is not an array.")
end
new(toplevel) do |element|
yield element
end
nil
end
def Nil.new(val : ::RemiLib::RSConf::RSValue)
unless val.is_a?(::RemiLib::RSConf::RSValue)
raise ::RemiLib::RSConf::RSConfError.new("Not a scalar")
end
unless val.isNil?
raise ::RemiLib::RSConf::RSConfError.new("Not a null value")
end
Nil.new
end
def Bool.new(val : ::RemiLib::RSConf::RSValue)
unless val.is_a?(::RemiLib::RSConf::RSValue)
raise ::RemiLib::RSConf::RSConfError.new("Not a scalar")
end
unless val.is_a?(::RemiLib::RSConf::RSScalar) && val.isBool?
raise ::RemiLib::RSConf::RSConfError.new("Not a null value")
end
val.bool
end
{% for type, method in {
"Int8" => "i8",
"Int16" => "i16",
"Int32" => "i32",
"Int64" => "i64",
"Int128" => "i128",
"UInt8" => "u8",
"UInt16" => "u16",
"UInt32" => "u32",
"UInt64" => "u64",
"UInt128" => "u128",
} %}
def {{type.id}}.new(val : ::RemiLib::RSConf::RSValue)
unless val.is_a?(::RemiLib::RSConf::RSScalar)
raise ::RemiLib::RSConf::RSConfError.new("Not a scalar")
end
value = if val.isInt?
val.int
elsif val.isFloat?
val.float
else
raise ::RemiLib::RSConf::RSConfError.new("Not an integer value or a value convertable to integer")
end
begin
value.to_{{method.id}}
rescue ex : OverflowError | ArgumentError
raise ::RemiLib::RSConf::RSConfError.new("Can't read {{type.id}}")
end
end
{% end %}
def Float32.new(val : ::RemiLib::RSConf::RSValue)
unless val.is_a?(::RemiLib::RSConf::RSScalar)
raise ::RemiLib::RSConf::RSConfError.new("Not a scalar")
end
value = if val.isInt?
val.int
elsif val.isFloat?
val.float
else
raise ::RemiLib::RSConf::RSConfError.new("Not an integer value or a value convertable to integer")
end
begin
value.to_f32
rescue ex : OverflowError | ArgumentError
raise ::RemiLib::RSConf::RSConfError.new("Can't read Float32")
end
end
def Float64.new(val : ::RemiLib::RSConf::RSValue)
unless val.is_a?(::RemiLib::RSConf::RSScalar)
raise ::RemiLib::RSConf::RSConfError.new("Not a scalar")
end
value = if val.isInt?
val.int
elsif val.isFloat?
val.float
else
raise ::RemiLib::RSConf::RSConfError.new("Not an integer value or a value convertable to integer")
end
begin
value.to_f64
rescue ex : OverflowError | ArgumentError
raise ::RemiLib::RSConf::RSConfError.new("Can't read Float64")
end
end
def String.new(val : ::RemiLib::RSConf::RSValue)
unless val.is_a?(::RemiLib::RSConf::RSScalar)
raise ::RemiLib::RSConf::RSConfError.new("Not a scalar")
end
if val.isString?
val.string
else
raise ::RemiLib::RSConf::RSConfError.new("Not a string")
end
end
def Path.new(val : ::RemiLib::RSConf::RSValue)
unless val.is_a?(::RemiLib::RSConf::RSScalar)
raise ::RemiLib::RSConf::RSConfError.new("Not a scalar")
end
if val.isString?
new(val.string)
else
raise ::RemiLib::RSConf::RSConfError.new("Not a string")
end
end
def Array.new(val : ::RemiLib::RSConf::RSValue)
unless val.is_a?(::RemiLib::RSConf::RSArray)
raise ::RemiLib::RSConf::RSConfError.new("Not an array")
end
ret = new
new(val) do |element|
ret << element
end
ret
end
def Array.new(val : ::RemiLib::RSConf::RSValue, &)
unless val.is_a?(::RemiLib::RSConf::RSArray)
raise ::RemiLib::RSConf::RSConfError.new("Not an array")
end
val.each do |elt|
yield T.new(elt)
end
end
def Deque.new(val : ::RemiLib::RSConf::RSValue)
unless val.is_a?(::RemiLib::RSConf::RSArray)
raise ::RemiLib::RSConf::RSConfError.new("Not an array")
end
ret = new
new(val) do |element|
ret << element
end
ret
end
def Deque.new(val : ::RemiLib::RSConf::RSValue, &)
unless val.is_a?(::RemiLib::RSConf::RSArray)
raise ::RemiLib::RSConf::RSConfError.new("Not an array")
end
val.each do |elt|
yield T.new(elt)
end
end
def Set.new(val : ::RemiLib::RSConf::RSValue)
unless val.is_a?(::RemiLib::RSConf::RSArray)
raise ::RemiLib::RSConf::RSConfError.new("Not an array")
end
ret = new
val.each do |elt|
ret << T.new(elt)
end
ret
end
def Hash.new(value : ::RemiLib::RSConf::RSValue)
unless value.is_a?(::RemiLib::RSConf::RSObject)
raise ::RemiLib::RSConf::RSConfError.new("Not an object")
end
ret = new
value.each do |key, val|
ret[key] = V.new(val)
end
ret
end
def Tuple.new(val : ::RemiLib::RSConf::RSValue)
{% begin %}
unless val.is_a?(::RemiLib::RSConf::RSArray)
raise ::RemiLib::RSConf::RSConfError.new("Not an array")
end
value = Tuple.new(
{% for i in 0...T.size %}
(self[{{i}}].new(val[i])),
{% end %}
)
value
{% end %}
end
def NamedTuple.new(val : ::RemiLib::RSConf::RSValue)
{% begin %}
{% for key, type in T %}
{% if type.nilable? %}
%var{key.id} = nil
{% else %}
%var{key.id} = uninitialized typeof(element_type({{ key.symbolize }}))
%found{key.id} = false
{% end %}
{% end %}
unless val.is_a?(::RemiLib::RSConf::RSObject)
raise ::RemiLib::RSConf::RSConfError.new("Not an object")
end
val.each do |key, val|
case key
{% for key, type in T %}
when {{key.stringify}}
%var{key.id} = self[{{ key.symbolize }}].new(val)
{% unless type.nilable? %}
%found{key.id} = true
{% end %}
{% end %}
end
end
{% for key, type in T %}
{% unless type.nilable? %}
unless %found{key.id}
raise ::RemiLib::RSConf::RSConfError.new("Missing RSConf attribute: #{ {{ key.id.stringify }} }")
end
{% end %}
{% end %}
NamedTuple.new(
{% for key in T.keys %}
{{ key.id.stringify }}: %var{key.id},
{% end %}
)
{% end %}
end
def Enum.new(val : ::RemiLib::RSConf::RSValue)
{% if @type.annotation(Flags) %}
unless val.is_a?(::RemiLib::RSConf::RSArray)
raise ::RemiLib::RSConf::RSConfError.new("Not an array")
end
value = {{ @type }}::None
val.each do |elt|
if elt.isString?
string = elt.string
value |= parse?(string) || raise ::RemiLib::RSConf::RSConfError.new("Unknown enum #{self} value: #{string.inspect}")
else
raise ::RemiLib::RSConf::RSConfError.new("Not a string, cannot convert to enum #{self} value")
end
end
value
{% else %}
unless val.is_a?(::RemiLib::RSConf::RSScalar)
raise ::RemiLib::RSConf::RSConfError.new("Not a scalar")
end
if val.isString?
string = val.string
parse?(string) || raise ::RemiLib::RSConf::RSConfError.new("Unknown enum #{self} value: #{string.inspect}")
else
raise ::RemiLib::RSConf::RSConfError.new("Not a string, cannot convert to enum #{self} value")
end
{% end %}
end
module Enum::ValueConverter(T)
def self.new(val : ::RemiLib::RSConf::RSValue) : T
from_json(val)
end
def self.from_json(val : ::RemiLib::RSConf::RSValue) : T
unless val.is_a?(::RemiLib::RSConf::RSScalar)
raise ::RemiLib::RSConf::RSConfError.new("Not a scalar")
end
if val.isInt?
T.from_value?(val.int) || raise RSConfError.new("Unknown enum #{T} value: #{val.int}")
else
raise RSConfError.new("Cannot convert to enum #{T}, not an integer")
end
end
end
def Union.new(val : ::RemiLib::RSConf::RSValue)
{% begin %}
case
{% if T.includes? Nil %}
when val.is_a?(::RemiLib::RSConf::RSScalar) && val.isNil?
return nil
{% end %}
{% if T.includes? Bool %}
when val.is_a?(::RemiLib::RSConf::RSScalar) && val.isBool?
return val.bool
{% end %}
{% if T.includes? String %}
when val.is_a?(::RemiLib::RSConf::RSScalar) && val.isString?
return val.string
{% end %}
when val.is_a?(::RemiLib::RSConf::RSScalar) && val.isInt?
{% for type, method in {
Int128 => "i128",
UInt128 => "u128",
Int64 => "i64",
UInt64 => "u64",
Int32 => "i32",
UInt32 => "u32",
Int16 => "i16",
UInt16 => "u16",
Int8 => "i8",
UInt8 => "u8"
} %}
{% if T.includes?(type) %}
value = val.tryInt
return value.to_{{method.id}} unless value.nil?
{% end %}
{% end %}
when val.is_a?(::RemiLib::RSConf::RSScalar) && val.isFloat?
{% if T.includes?(Float64) %}
value = val.tryFloat
return value.to_f64 unless value.nil?
{% elsif T.includes?(Float32) %}
value = val.tryFloat
return value.to_f64 unless value.nil?
{% end %}
else
# no priority type
end
{% end %}
{% begin %}
{% primitive_types = [Nil, Bool, String] + Number::Primitive.union_types %}
{% non_primitives = T.reject { |t| primitive_types.includes? t } %}
# If after traversing all the types we are left with just one
# non-primitive type, we can parse it directly
{% if non_primitives.size == 1 %}
return {{non_primitives[0]}}.new(val)
{% else %}
{% for type in non_primitives %}
begin
return {{type}}.fromRsconf(val)
rescue ::RemiLib::RSConf::RSConfError
# Ignore
end
{% end %}
raise ::RemiLib::RSConf::RSConfError.new("Couldn't parse #{self} from RSConf value")
{% end %}
{% end %}
end
def Time.new(val : ::RemiLib::RSConf::RSValue)
unless val.is_a?(::RemiLib::RSConf::RSScalar)
raise ::RemiLib::RSConf::RSConfParseError.new("Not a scalar")
end
unless val.string?
raise ::RemiLib::RSConf::RSConfParseError.new("Not a string")
end
Time::Format::ISO_8601_DATE_TIME.parse(val.string)
end
def Time::Location.new(val : ::RemiLib::RSConf::RSValue)
unless val.is_a?(::RemiLib::RSConf::RSScalar)
raise ::RemiLib::RSConf::RSConfParseError.new("Not a scalar")
end
unless val.string?
raise ::RemiLib::RSConf::RSConfParseError.new("Not a string")
end
load(val.string)
end
struct Time::Format
def fromRsconf(val : ::RemiLib::RSConf::RSValue) : Time
unless val.is_a?(::RemiLib::RSConf::RSScalar)
raise ::RemiLib::RSConf::RSConfParseError.new("Not a scalar")
end
unless val.string?
raise ::RemiLib::RSConf::RSConfParseError.new("Not a string")
end
parse(val.string, Time::Location::UTC)
end
end
module Time::EpochConverter
def self.fromRsconf(val : ::RemiLib::RSConf::RSValue) : Time
unless val.is_a?(::RemiLib::RSConf::RSScalar)
raise ::RemiLib::RSConf::RSConfParseError.new("Not a scalar")
end
unless val.isInt?
raise ::RemiLib::RSConf::RSConfParseError.new("Not an integer")
end
Time.unix(val.int)
end
end
module Time::EpochMillisConverter
def self.fromRsconf(val : ::RemiLib::RSConf::RSValue) : Time
unless val.is_a?(::RemiLib::RSConf::RSScalar)
raise ::RemiLib::RSConf::RSConfParseError.new("Not a scalar")
end
unless val.isInt?
raise ::RemiLib::RSConf::RSConfParseError.new("Not an integer")
end
Time.unix_ms(val.int)
end
end
|