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
|
# File 'lib/jsonpath/enumerable.rb', line 14
def each(context = @object, key = nil, pos = 0, &blk)
node =
if key
context.is_a?(Hash) || context.is_a?(Array) ? context[key] : context.__send__(key)
else
context
end
@_current_node = node
return yield_value(blk, context, key) if pos == @path.size
case expr = @path[pos]
when '*', '..', '@'
each(context, key, pos + 1, &blk)
when '$'
each(context, key, pos + 1, &blk) if node == @object
when /^\[(.*)\]$/
handle_wildecard(node, expr, context, key, pos, &blk)
end
if pos > 0 && @path[pos - 1] == '..' || (@path[pos - 1] == '*' && @path[pos] != '..')
case node
when Hash then node.each { |k, _| each(node, k, pos, &blk) }
when Array then node.each_with_index { |_, i| each(node, i, pos, &blk) }
end
end
end
|