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
|
# File 'lib/arrow/array-builder.rb', line 160
def append(*values)
value_convertable = respond_to?(:convert_to_arrow_value, true)
start_index = 0
current_index = 0
status = :value
values.each do |value|
if value.nil?
if status == :value
if start_index != current_index
target_values = values[start_index...current_index]
if value_convertable
target_values = target_values.collect do |v|
convert_to_arrow_value(v)
end
end
append_values(target_values, nil)
start_index = current_index
end
status = :null
end
else
if status == :null
append_nulls(current_index - start_index)
start_index = current_index
status = :value
end
end
current_index += 1
end
if start_index != current_index
if status == :value
if start_index == 0 and current_index == values.size
target_values = values
else
target_values = values[start_index...current_index]
end
if value_convertable
target_values = target_values.collect do |v|
convert_to_arrow_value(v)
end
end
append_values(target_values, nil)
else
append_nulls(current_index - start_index)
end
end
end
|