Class: Dor::Workflow::Process

Inherits:
Object
  • Object
show all
Defined in:
lib/dor/workflow/process.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(repo, workflow, attrs) ⇒ Process

Returns a new instance of Process.



6
7
8
9
10
11
12
13
14
# File 'lib/dor/workflow/process.rb', line 6

def initialize(repo, workflow, attrs)
  @workflow = workflow
  @repo = repo
  if attrs.is_a? Nokogiri::XML::Node
    init_from_node(attrs)
  else
    @attrs = attrs
  end
end

Instance Attribute Details

#ownerObject (readonly)

Returns the value of attribute owner.



4
5
6
# File 'lib/dor/workflow/process.rb', line 4

def owner
  @owner
end

#repoObject (readonly)

Returns the value of attribute repo.



4
5
6
# File 'lib/dor/workflow/process.rb', line 4

def repo
  @repo
end

#workflowObject (readonly)

Returns the value of attribute workflow.



4
5
6
# File 'lib/dor/workflow/process.rb', line 4

def workflow
  @workflow
end

Instance Method Details

#archived?Boolean

Returns:

  • (Boolean)


51
52
53
# File 'lib/dor/workflow/process.rb', line 51

def archived?
  @attrs['archived'] =~ /true$/i
end

#attemptsObject



73
74
75
# File 'lib/dor/workflow/process.rb', line 73

def attempts
  @attrs['attempts'].to_i
end

#batch_limitObject



38
# File 'lib/dor/workflow/process.rb', line 38

def batch_limit   ; @attrs['batch_limit']  ; end

#blocked?Boolean

Returns:

  • (Boolean)


59
60
61
# File 'lib/dor/workflow/process.rb', line 59

def blocked?
  self.waiting? && !prerequisite.nil? && prerequisite.any? { |pr| (prq = owner[pr]) && (prq.error? || prq.blocked?) }
end

#completed?Boolean

Returns:

  • (Boolean)


46
# File 'lib/dor/workflow/process.rb', line 46

def completed?    ; status == 'completed'  ; end

#date_timeObject



49
# File 'lib/dor/workflow/process.rb', line 49

def date_time     ; @attrs['datetime']     ; end

#datetimeObject



77
78
79
# File 'lib/dor/workflow/process.rb', line 77

def datetime
  @attrs['datetime'] ? Time.parse(@attrs['datetime']) : nil
end

#elapsedObject



81
82
83
# File 'lib/dor/workflow/process.rb', line 81

def elapsed
  @attrs['elapsed'].nil? ? nil : @attrs['elapsed'].to_f
end

#error?Boolean

Returns:

  • (Boolean)


47
# File 'lib/dor/workflow/process.rb', line 47

def error?        ; status == 'error'      ; end

#error_limitObject



39
# File 'lib/dor/workflow/process.rb', line 39

def error_limit   ; @attrs['error_limit']  ; end

#error_messageObject



40
# File 'lib/dor/workflow/process.rb', line 40

def error_message ; @attrs['errorMessage'] ; end

#init_from_node(node) ⇒ Object



16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# File 'lib/dor/workflow/process.rb', line 16

def init_from_node(node)
  @attrs = {
    'name'         => node['name'],
    'sequence'     => node['sequence'] ? node['sequence'].to_i : nil,
    'status'       => node['status'],    # TODO: see how this affects argo
    'lifecycle'    => node['lifecycle'],
    'label'        => node.at_xpath('label/text()').to_s,
    'batch_limit'  => node['batch-limit'] ? node['batch-limit'].to_i : nil,
    'error_limit'  => node['error-limit'] ? node['error-limit'].to_i : nil,
    'priority'     => node['priority'] ? node['priority'].to_i : 0,
    'prerequisite' => node.xpath('prereq').collect { |p|
      repo = (p['repository'].nil? || p['repository'] == @repo    ) ? nil : p['repository']
      wf   = (p['workflow'].nil? || p['workflow'] == @workflow) ? nil : p['workflow']
      [repo, wf, p.text.to_s].compact.join(':')
    }
  }
end

#labelObject



37
# File 'lib/dor/workflow/process.rb', line 37

def label         ; @attrs['label']        ; end

#lifecycleObject



36
# File 'lib/dor/workflow/process.rb', line 36

def lifecycle     ; @attrs['lifecycle']    ; end

#nameObject



34
# File 'lib/dor/workflow/process.rb', line 34

def name          ; @attrs['name']         ; end

#noteObject



43
# File 'lib/dor/workflow/process.rb', line 43

def note          ; @attrs['note']         ; end

#prerequisiteObject



41
# File 'lib/dor/workflow/process.rb', line 41

def prerequisite  ; @attrs['prerequisite'] ; end

#priorityObject



45
# File 'lib/dor/workflow/process.rb', line 45

def priority      ; @attrs['priority']     ; end

#ready?Boolean

Returns:

  • (Boolean)


55
56
57
# File 'lib/dor/workflow/process.rb', line 55

def ready?
  self.waiting? && !prerequisite.nil? && prerequisite.all? { |pr| (prq = owner[pr]) && prq.completed? }
end

#sequenceObject



35
# File 'lib/dor/workflow/process.rb', line 35

def sequence      ; @attrs['sequence']     ; end

#stateObject



63
64
65
66
67
68
69
70
71
# File 'lib/dor/workflow/process.rb', line 63

def state
  if blocked?
    'blocked'
  elsif ready?
    'ready'
  else
    status
  end
end

#statusObject



42
# File 'lib/dor/workflow/process.rb', line 42

def status        ; @attrs['status']       ; end

#to_hashObject



93
94
95
# File 'lib/dor/workflow/process.rb', line 93

def to_hash
  @attrs.reject { |k, v| v.nil? || v == 0 || (v.respond_to?(:empty?) && v.empty?) }
end

#update!(info, new_owner = nil) ⇒ Object



85
86
87
88
89
90
91
# File 'lib/dor/workflow/process.rb', line 85

def update!(info, new_owner = nil)
  @owner = new_owner unless new_owner.nil?
  if info.is_a? Nokogiri::XML::Node
    info = Hash[info.attributes.collect { |k, v| [k, v.value] }]
  end
  @attrs.merge! info
end

#versionObject



44
# File 'lib/dor/workflow/process.rb', line 44

def version       ; @attrs['version']      ; end

#waiting?Boolean

Returns:

  • (Boolean)


48
# File 'lib/dor/workflow/process.rb', line 48

def waiting?      ; status == 'waiting'    ; end