-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathframe.rb
246 lines (200 loc) · 6.93 KB
/
frame.rb
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
# Copyright 2011-2013 Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"). You
# may not use this file except in compliance with the License. A copy of
# the License is located at
#
# http://aws.amazon.com/apache2.0/
#
# or in the "license" file accompanying this file. This file is
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
# ANY KIND, either express or implied. See the License for the specific
# language governing permissions and limitations under the License.
require 'base64'
require 'date'
require 'time'
module AWS
module Core
module XML
class Frame
TRANSLATE_DIGITS = ['0123456789'.freeze, ('X'*10).freeze]
EASY_FORMAT = "XXXX-XX-XXTXX:XX:XX.XXXZ".freeze
DATE_PUNCTUATION = ['-:.TZ'.freeze, (' '*5).freeze]
def initialize root_frame, parent_frame, element_name, rules
@root_frame = root_frame
@parent_frame = parent_frame
@element_name = element_name
@rules = rules
@rules[:children] ||= {}
@data = {}.merge(rules[:defaults] || {})
@text = nil
# initialize values for child frames of special types (e.g.
# lists, maps, and forced elements)
known_child_frames.each do |child_frame|
context = data_context_for(child_frame)
if child_frame.list?
context[child_frame.ruby_name] = []
elsif child_frame.map?
context[child_frame.ruby_name] = {}
elsif child_frame.forced?
context[child_frame.ruby_name] = child_frame.value
end
end
end
attr_reader :root_frame
attr_reader :parent_frame
attr_reader :element_name
attr_reader :rules
def data
ignored? ? parent_frame.data : @data
end
def ruby_name
rules[:rename] || root_frame.inflect(element_name)
end
def rules_for child_element_name
rules[:children][child_element_name] || {}
end
# The list of child frames that have customizations (rules), all
# other children will be parsed using standard rules
def known_child_frames
rules[:children].keys.map {|name| build_child_frame(name) }
end
def build_child_frame element_name
# if element_name should be wrapped
# build a frame for the wrapper
# build a child frame from the wrapper
# else
Frame.new(root_frame, self, element_name, rules_for(element_name))
end
def consume_child_frame child_frame
child_frame.close
return if child_frame.ignored?
ruby_name = child_frame.ruby_name
value = child_frame.value
context = data_context_for(child_frame)
if child_frame.list?
context[ruby_name] << value
elsif map = child_frame.map?
context[ruby_name][child_frame.map_key] = child_frame.map_value
else
context[ruby_name] = value
end
end
def close
# some xml elements should be indexed at the root level
# The :index rule determines the name of this index
# and what keys the data should be indexed as (one element
# can be indexed under multiple keys). The index value
# is always the element itself.
if index = @rules[:index]
index_keys_for(index) do |key|
root_frame.add_to_index(index[:name], key, data)
end
end
end
def index_keys_for index_opts, &block
# simple (single) key
if key = index_opts[:key]
yield(data[key])
return
end
# composite key, joined by ":"
if parts = index_opts[:keys]
composite_key = parts.map{|part| data[part] }.join(":")
yield(composite_key)
return
end
# multiple keys, collected from the given path
if path = index_opts[:key_path]
keys_from_path(data, path.dup, &block)
return
end
raise "missing require index rule option, :key, :keys or :key_path"
end
def keys_from_path data, path, &block
step = path.shift
value = data[step]
if path.empty?
yield(value)
return
end
if value.is_a?(Array)
value.each do |v|
keys_from_path(v, path.dup, &block)
end
else
keys_from_path(value, path.dup, &block)
end
end
def add_text chars
@text ||= ''
@text << chars
end
def value
if !data.empty?
data[:encoding] == 'base64' ? Base64.decode64(@text.strip) : data
elsif @text.nil?
rules[:type] == :boolean ? false : nil
else
case rules[:type]
when nil, :string then @text
when :datetime then datetime_like_value(DateTime, :civil)
when :time then datetime_like_value(Time, :utc)
when :integer then @text.to_i
when :float then @text.to_f
when :boolean then @text == 'true'
when :blob then Base64.decode64(@text)
when :symbol then Core::Inflection.ruby_name(@text).to_sym
else raise "unhandled type"
end
end
end
def ignored?
@rules[:ignore]
end
def forced?
@rules[:force]
end
def list?
@rules[:list]
end
def map?
@rules[:map]
end
def wrapped?
@rules[:wrap]
end
alias_method :wrapper, :wrapped?
protected
def map_key
data[root_frame.inflect(@rules[:map].first)]
end
def map_value
data[root_frame.inflect(@rules[:map].last)]
end
def data_context_for child_frame
if child_frame.wrapped?
data[child_frame.wrapper] ||= {}
data[child_frame.wrapper]
else
data
end
end
def datetime_like_value klass, parts_constructor
# it's way faster to parse this specific format manually
# vs. DateTime#parse, and this happens to be the format
# that AWS uses almost (??) everywhere.
if @text.tr(*TRANSLATE_DIGITS) == EASY_FORMAT
parts = @text.tr(*DATE_PUNCTUATION).chop.split.map {|p| p.to_i }
milliseconds = parts.pop
parts[-1] = parts[-1] + Rational(milliseconds, 1000) #Ruby 1.8.7 compatibility
klass.send(parts_constructor, *parts)
else
# fallback in case we have to handle another date format
klass.parse(@text)
end
end
end
end
end
end