Class: Dynflow::ExecutionPlan::Steps::Abstract

Inherits:
Serializable
  • Object
show all
Includes:
Algebrick::TypeCheck, Stateful
Defined in:
lib/dynflow/execution_plan/steps/abstract.rb

Direct Known Subclasses

AbstractFlowStep, PlanStep

Constant Summary

Constants inherited from Serializable

Serializable::LEGACY_TIME_FORMAT, Serializable::TIME_FORMAT

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Stateful

included, #set_state, #state_transitions, #states

Methods inherited from Serializable

constantize, from_hash

Constructor Details

#initialize(execution_plan_id, id, state, action_class, action_id, error, world, started_at = nil, ended_at = nil, execution_time = 0.0, real_time = 0.0, progress_done = nil, progress_weight = nil, queue = nil) ⇒ Abstract

rubocop:disable Metrics/ParameterLists



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
# File 'lib/dynflow/execution_plan/steps/abstract.rb', line 13

def initialize(execution_plan_id,
               id,
               state,
               action_class,
               action_id,
               error,
               world,
               started_at      = nil,
               ended_at        = nil,
               execution_time  = 0.0,
               real_time       = 0.0,
               progress_done   = nil,
               progress_weight = nil,
               queue           = nil)

  @id                = id || raise(ArgumentError, 'missing id')
  @execution_plan_id = Type! execution_plan_id, String
  @world             = Type! world, World
  @error             = Type! error, ExecutionPlan::Steps::Error, NilClass
  @started_at        = Type! started_at, Time, NilClass
  @ended_at          = Type! ended_at, Time, NilClass
  @execution_time    = Type! execution_time, Numeric
  @real_time         = Type! real_time, Numeric

  @progress_done     = Type! progress_done, Numeric, NilClass
  @progress_weight   = Type! progress_weight, Numeric, NilClass

  @queue             = Type! queue, Symbol, NilClass

  self.state = state.to_sym

  Child! action_class, Action
  @action_class = action_class

  @action_id = action_id || raise(ArgumentError, 'missing action_id')
end

Instance Attribute Details

#action_classObject (readonly)

Returns the value of attribute action_class.



8
9
10
# File 'lib/dynflow/execution_plan/steps/abstract.rb', line 8

def action_class
  @action_class
end

#action_idObject (readonly)

Returns the value of attribute action_id.



8
9
10
# File 'lib/dynflow/execution_plan/steps/abstract.rb', line 8

def action_id
  @action_id
end

#delayed_eventsObject (readonly)

Returns the value of attribute delayed_events.



8
9
10
# File 'lib/dynflow/execution_plan/steps/abstract.rb', line 8

def delayed_events
  @delayed_events
end

#ended_atObject (readonly)

Returns the value of attribute ended_at.



8
9
10
# File 'lib/dynflow/execution_plan/steps/abstract.rb', line 8

def ended_at
  @ended_at
end

#errorObject

Returns the value of attribute error.



10
11
12
# File 'lib/dynflow/execution_plan/steps/abstract.rb', line 10

def error
  @error
end

#execution_plan_idObject (readonly)

Returns the value of attribute execution_plan_id.



8
9
10
# File 'lib/dynflow/execution_plan/steps/abstract.rb', line 8

def execution_plan_id
  @execution_plan_id
end

#execution_timeObject (readonly)

Returns the value of attribute execution_time.



8
9
10
# File 'lib/dynflow/execution_plan/steps/abstract.rb', line 8

def execution_time
  @execution_time
end

#idObject (readonly)

Returns the value of attribute id.



8
9
10
# File 'lib/dynflow/execution_plan/steps/abstract.rb', line 8

def id
  @id
end

#progress_weightObject



118
119
120
# File 'lib/dynflow/execution_plan/steps/abstract.rb', line 118

def progress_weight
  @progress_weight || 0 # 0 means not calculated yet
end

#queueObject (readonly)

Returns the value of attribute queue.



8
9
10
# File 'lib/dynflow/execution_plan/steps/abstract.rb', line 8

def queue
  @queue
end

#real_timeObject (readonly)

Returns the value of attribute real_time.



8
9
10
# File 'lib/dynflow/execution_plan/steps/abstract.rb', line 8

def real_time
  @real_time
end

#started_atObject (readonly)

Returns the value of attribute started_at.



8
9
10
# File 'lib/dynflow/execution_plan/steps/abstract.rb', line 8

def started_at
  @started_at
end

#stateObject (readonly)

Returns the value of attribute state.



8
9
10
# File 'lib/dynflow/execution_plan/steps/abstract.rb', line 8

def state
  @state
end

#worldObject (readonly)

Returns the value of attribute world.



8
9
10
# File 'lib/dynflow/execution_plan/steps/abstract.rb', line 8

def world
  @world
end

Class Method Details

.statesObject



75
76
77
# File 'lib/dynflow/execution_plan/steps/abstract.rb', line 75

def self.states
  @states ||= [:scheduling, :pending, :running, :success, :suspended, :skipping, :skipped, :error, :cancelled]
end

Instance Method Details

#==(other) ⇒ Object

rubocop:enable Metrics/ParameterLists



51
52
53
# File 'lib/dynflow/execution_plan/steps/abstract.rb', line 51

def ==(other)
  other.class == self.class && other.execution_plan_id == self.execution_plan_id && other.id == self.id
end

#action(execution_plan) ⇒ Action

details, human outputs, etc.

Returns:

  • (Action)

    in presentation mode, intended for retrieving: progress information,



126
127
128
# File 'lib/dynflow/execution_plan/steps/abstract.rb', line 126

def action(execution_plan)
  world.persistence.load_action_for_presentation(execution_plan, action_id, self)
end

#action_loggerObject



55
56
57
# File 'lib/dynflow/execution_plan/steps/abstract.rb', line 55

def action_logger
  @world.action_logger
end

#cancellable?Boolean

Returns:

  • (Boolean)


134
135
136
# File 'lib/dynflow/execution_plan/steps/abstract.rb', line 134

def cancellable?
  false
end

#default_progress_doneObject

in specific states it’s clear what progress the step is in



109
110
111
112
113
114
115
116
# File 'lib/dynflow/execution_plan/steps/abstract.rb', line 109

def default_progress_done
  case self.state
  when :success, :skipped
    1
  when :pending
    0
  end
end

#execute(*args) ⇒ Object

Raises:

  • (NotImplementedError)


79
80
81
# File 'lib/dynflow/execution_plan/steps/abstract.rb', line 79

def execute(*args)
  raise NotImplementedError
end

#mark_to_skipObject

Raises:

  • (NotImplementedError)


63
64
65
# File 'lib/dynflow/execution_plan/steps/abstract.rb', line 63

def mark_to_skip
  raise NotImplementedError
end

#persistenceObject



67
68
69
# File 'lib/dynflow/execution_plan/steps/abstract.rb', line 67

def persistence
  world.persistence
end

#phaseObject

Raises:

  • (NotImplementedError)


59
60
61
# File 'lib/dynflow/execution_plan/steps/abstract.rb', line 59

def phase
  raise NotImplementedError
end

#progress_doneObject



104
105
106
# File 'lib/dynflow/execution_plan/steps/abstract.rb', line 104

def progress_done
  default_progress_done || @progress_done || 0
end

#save(conditions = {}) ⇒ Object



71
72
73
# File 'lib/dynflow/execution_plan/steps/abstract.rb', line 71

def save(conditions = {})
  persistence.save_step(self, conditions)
end

#skippable?Boolean

Returns:

  • (Boolean)


130
131
132
# File 'lib/dynflow/execution_plan/steps/abstract.rb', line 130

def skippable?
  self.state == :error
end

#to_hashObject



87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# File 'lib/dynflow/execution_plan/steps/abstract.rb', line 87

def to_hash
  recursive_to_hash execution_plan_uuid: execution_plan_id,
                    id:                  id,
                    state:               state,
                    class:               self.class.to_s,
                    action_class:        action_class.to_s,
                    action_id:           action_id,
                    error:               error,
                    started_at:          started_at,
                    ended_at:            ended_at,
                    execution_time:      execution_time,
                    real_time:           real_time,
                    progress_done:       progress_done,
                    progress_weight:     progress_weight,
                    queue:               queue
end

#to_sObject



83
84
85
# File 'lib/dynflow/execution_plan/steps/abstract.rb', line 83

def to_s
  "#<#{self.class.name}:#{execution_plan_id}:#{id}>"
end

#with_sub_plans?Boolean

Returns:

  • (Boolean)


138
139
140
# File 'lib/dynflow/execution_plan/steps/abstract.rb', line 138

def with_sub_plans?
  false
end