public
Description: a ruby workflow engine
Homepage: http://ruote.rubyforge.org
Clone URL: git://github.com/jmettraux/ruote.git
ruote / lib / openwfe / expressions / fe_sequence.rb
100644 103 lines (78 sloc) 2.698 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
#--
# Copyright (c) 2006-2009, John Mettraux, jmettraux@gmail.com
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#
# Made in Japan.
#++
 
 
require 'openwfe/expressions/flowexpression'
 
 
module OpenWFE
 
  #
  # This expression sequentially executes each of its children expression.
  # For a more sophisticated version of it, see the 'cursor' expression
  # (fe_cursor.rb).
  #
  # <sequence>
  # <participant ref="alice" />
  # <participant ref="service_b" />
  # </sequence>
  #
  # In a Ruby process definition, it looks like :
  #
  # sequence do
  # participant "alice"
  # participant "service_b"
  # end
  #
  class SequenceExpression < FlowExpression
 
    names :sequence
 
    def apply (workitem)
 
      reply(workitem)
    end
 
    def reply (workitem)
 
      child_index = next_child_index(workitem.fei)
 
      return reply_to_parent(workitem) unless child_index
 
      @children.clear if @children
        # keeping track of only 1 child, it's a sequence ...
 
      apply_child(child_index, workitem)
    end
 
    protected
 
    #
    # Returns the child_index (in the raw_children array) of the next child
    # to apply, or nil if the sequence is over.
    #
    def next_child_index (returning_fei)
 
      next_id = if returning_fei.is_a?(Integer)
        returning_fei + 1
      elsif returning_fei == self.fei
        0
      else
        returning_fei.child_id.to_i + 1
      end
 
      loop do
 
        break if next_id > raw_children.length
 
        raw_child = raw_children[next_id]
 
        return next_id \
          if raw_child.is_a?(Array) or raw_child.is_a?(FlowExpressionId)
 
        next_id += 1
      end
 
      nil
    end
  end
 
end