Module: RailsWorkflow::Processes::DependencyResolver

Extended by:
ActiveSupport::Concern
Included in:
RailsWorkflow::Process
Defined in:
app/concerns/rails_workflow/processes/dependency_resolver.rb

Overview

When some operation is

Instance Method Summary (collapse)

Instance Method Details

- (Array<RailsWorkflow::Operation>) build_dependencies(operation)

This methods get's operations that depends on given one. Operation::DependencyResolver resolves operation template dependencies but we can define dependencies not only by template but by some other business logic on process level. That is why I splitted operation dependencies on process and operation level

Parameters:

  • operation (RailsWorkflow::Operation)

    which changed status; process template operations that depends on given operation's template (and it's status) will be build.

Returns:



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
# File 'app/concerns/rails_workflow/processes/dependency_resolver.rb', line 17

def build_dependencies operation

  new_operations = []

  matched_templates(operation).each do |operation_template|
    completed_dependencies = [operation]

    if operation_template.resolve_dependency operation
      new_operations << operation_template.build_operation!(self, completed_dependencies)
    end

  end

  new_operations.each do |new_operation|
    if incomplete_statuses.include?(status)
      self.operations << new_operation
      new_operation.start
    end
  end

rescue => exception
  RailsWorkflow::Error.create_from(
      exception, {
                   parent: self,
                   target: self,
                   method: :build_dependencies,
                   args: [operation]
               }
  )

end