-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathparam_converter.rb
More file actions
250 lines (214 loc) · 6.68 KB
/
param_converter.rb
File metadata and controls
250 lines (214 loc) · 6.68 KB
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
# frozen_string_literal: true
require 'bigdecimal'
require 'stringio'
require 'date'
require 'time'
require 'tempfile'
module Smithy
module Client
# @api private
class ParamConverter
include Schema::Shapes
@mutex = Mutex.new
@converters = Hash.new { |h, k| h[k] = {} }
def initialize(schema)
@schema = schema
@opened_files = []
end
attr_reader :opened_files
# @param [Hash] params
# @return [Hash]
def convert(params)
structure(@schema, params)
end
def close_opened_files
@opened_files.each(&:close)
@opened_files = []
end
private
def c(ref, value)
self.class.c(ref.shape.class, value, self)
end
def list(ref, values)
values = c(ref, values)
if values.is_a?(Array)
values.map { |v| member(ref.shape.member, v) }
else
values
end
end
def map(ref, values)
values = c(ref, values)
if values.is_a?(Hash)
values.each.with_object({}) do |(key, value), hash|
hash[member(ref.shape.key, key)] = member(ref.shape.value, value)
end
else
values
end
end
def member(ref, value)
case ref.shape
when StructureShape then structure(ref, value)
when UnionShape then union(ref, value)
when ListShape then list(ref, value)
when MapShape then map(ref, value)
else c(ref, value)
end
end
def structure(ref, values)
values = c(ref, values)
if values.respond_to?(:each_pair)
values.each_pair do |k, v|
next if v.nil?
next unless ref.shape.member?(k)
values[k] = member(ref.shape.member(k), v)
end
end
values
end
def union(ref, values)
values = c(ref, values)
if values.is_a?(Schema::Union)
member_ref = ref.shape.member_by_type(values.class)
member(member_ref, values)
else
key, value = values.first
values[key] = member(ref.shape.member(key), value)
end
values
end
class << self
def convert(shape, params)
new(shape).convert(params)
end
# Registers a new value converter. Converters run in the context
# of a shape and value class.
#
# # add a converter that stringifies integers
# shape_class = Shapes::StringShape
# ParamConverter.add(shape_class, Integer) { |i| i.to_s }
#
# @param [Class<Shapes::Shape>] shape_class
# @param [Class] value_class
# @param [#call] block An object that responds to `#call`
# accepting a single argument. This function should perform
# the value conversion if possible, returning the result.
# If the conversion is not possible, the original value should
# be returned.
# @return [void]
def add(shape_class, value_class, &block)
@converters[shape_class][value_class] = block
end
def ensure_open(file, converter)
if file.closed?
new_file = File.open(file.path, 'rb')
converter.opened_files << new_file
new_file
else
file
end
end
def c(shape, value, instance = nil)
if (converter = converter_for(shape, value))
converter.call(value, instance)
else
value
end
end
private
def converter_for(shape_class, value)
unless @converters[shape_class].key?(value.class)
@mutex.synchronize do
unless @converters[shape_class].key?(value.class)
@converters[shape_class][value.class] = find(shape_class, value)
end
end
end
@converters[shape_class][value.class]
end
def find(shape_class, value)
converter = nil
each_base_class(shape_class) do |klass|
@converters[klass].each do |value_class, block|
if value.is_a?(value_class)
converter = block
break
end
end
break if converter
end
converter
end
def each_base_class(shape_class, &)
shape_class.ancestors.each do |ancestor|
yield(ancestor) if @converters.key?(ancestor)
end
end
end
add(BigDecimalShape, BigDecimal)
add(BigDecimalShape, Integer) { |i| BigDecimal(i) }
add(BigDecimalShape, Float) { |f| BigDecimal(f.to_s) }
add(BigDecimalShape, String) do |str|
BigDecimal(str)
rescue ArgumentError
str
end
add(BlobShape, IO)
add(BlobShape, File) { |file, converter| ensure_open(file, converter) }
add(BlobShape, Tempfile) { |tmpfile, converter| ensure_open(tmpfile, converter) }
add(BlobShape, StringIO)
add(BlobShape, String)
add(BooleanShape, TrueClass)
add(BooleanShape, FalseClass)
add(BooleanShape, String) do |str|
{ 'true' => true, 'false' => false }[str]
end
add(EnumShape, String)
add(EnumShape, Symbol) { |sym, _| sym.to_s }
add(IntegerShape, Integer)
add(IntegerShape, Float) { |f, _| f.to_i }
add(IntegerShape, String) do |str|
Integer(str)
rescue ArgumentError
str
end
add(IntEnumShape, Integer)
add(IntEnumShape, Float) { |f, _| f.to_i }
add(IntEnumShape, String) do |str|
Integer(str)
rescue ArgumentError
str
end
add(FloatShape, Float)
add(FloatShape, Integer) { |i, _| i.to_f }
add(FloatShape, String) do |str|
Float(str)
rescue ArgumentError
str
end
add(ListShape, Array) { |a, _| a.dup }
add(ListShape, Enumerable) { |v, _| v.to_a }
add(MapShape, Hash) { |h, _| h.dup }
add(MapShape, ::Struct) do |s|
s.members.each.with_object({}) { |k, h| h[k] = s[k] }
end
add(StringShape, String)
add(StringShape, Symbol) { |sym, _| sym.to_s }
add(StructureShape, Hash) { |h, _| h.dup }
add(StructureShape, ::Struct)
add(TimestampShape, Time)
add(TimestampShape, Date) { |d, _| d.to_time }
add(TimestampShape, DateTime) { |dt, _| dt.to_time }
add(TimestampShape, Integer) { |i| Time.at(i) }
add(TimestampShape, Float) { |f| Time.at(f) }
add(TimestampShape, String) do |str|
Time.parse(str)
rescue ArgumentError
str
end
add(UnionShape, Hash) { |h, _| h.dup }
add(UnionShape, Schema::Union)
end
end
end