forked from Empact/roxml
-
Notifications
You must be signed in to change notification settings - Fork 108
/
Copy pathpipeline.rb
54 lines (47 loc) · 1.47 KB
/
pipeline.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
module Representable
# Allows to implement a pipeline of filters where a value gets passed in and the result gets
# passed to the next callable object.
class Pipeline < Array
Stop = Class.new
# options is mutuable.
def call(input, options)
inject(input) do |memo, block|
res = evaluate(block, memo, options)
return(Stop)if Stop == res
res
end
end
private
def evaluate(block, input, options)
block.call(input, options)
end
module Macros # TODO: explicit test.
# Macro to quickly modify an array of functions via Pipeline::Insert and return a
# Pipeline instance.
def insert(functions, new_function, options)
Pipeline.new(Pipeline::Insert.(functions, new_function, options))
end
end
extend Macros
end # Pipeline
# Collect applies a pipeline to each element of input.
class Collect < Pipeline
# when stop, the element is skipped. (should that be Skip then?)
def call(input, options)
arr = []
input.each_with_index do |item_fragment, i|
result = super(item_fragment, options.merge(index: i)) # DISCUSS: NO :fragment set.
Pipeline::Stop == result ? next : arr << result
end
arr
end
class Hash < Pipeline
def call(input, options)
{}.tap do |hsh|
input.each { |key, item_fragment|
hsh[key] = super(item_fragment, options) }# DISCUSS: NO :fragment set.
end
end
end
end
end