Class: Toaster::Convergence
- Inherits:
-
Object
- Object
- Toaster::Convergence
- Defined in:
- lib/toaster/state/convergence.rb
Class Method Summary collapse
- .convergence_for_automation(automation, prop_value_percentage_threshold = 0.7) ⇒ Object
-
.convergence_for_prop_changes(prop_changes, post_states, min_percentage = 0.5) ⇒ Object
Args: - prop_changes: Should contain an array of Toaster::StateChange objects.
- .convergence_for_task(task, prop_value_percentage_threshold = 0.7) ⇒ Object
-
.execution_traces(automation, property_patterns) ⇒ Object
automation_run –> prop_key –> list of (task_execution,prop_value).
- .get_convergence_candidates(prop_changes) ⇒ Object
-
.get_prop_conflicts(prop_values) ⇒ Object
Args: - prop_values: list of Toaster::StateProperty objects.
- .get_states_equal(post_states, property_name, value) ⇒ Object
Class Method Details
.convergence_for_automation(automation, prop_value_percentage_threshold = 0.7) ⇒ Object
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 |
# File 'lib/toaster/state/convergence.rb', line 15 def self.convergence_for_automation(automation, prop_value_percentage_threshold=0.7) conv_props = {} conv_props_list = [] TimeStamp.add(nil, "conv_for_auto") # NOTE: our assumption here is that the tasks # are returned in sequential order..! tasks = automation.get_globally_executed_tasks() tasks.each_with_index do |task,task_index| convergence_for_task(task, prop_value_percentage_threshold).each do |conv_prop| prop_name = conv_prop[0] if conv_props[prop_name] && conv_props[prop_name] != conv_prop #puts "INFO: Overwriting convergent property '#{prop_name}' with new value: #{conv_props[prop_name]} => #{conv_prop}" end conv_props[prop_name] = conv_prop end #conv_props.concat(convergence_for_task(task)) conv_props_list = conv_props.values #conflicts = get_prop_conflicts(conv_props_list) #if !conflicts.empty? # puts "WARN: found conflicting properties in convergence: #{conflicts.inspect}" #end end TimeStamp.add_and_print("compute convergence of automation", nil, "conv_for_auto") { |duration| duration > 15 } return conv_props_list end |
.convergence_for_prop_changes(prop_changes, post_states, min_percentage = 0.5) ⇒ Object
Args:
- prop_changes: Should contain an array of
Toaster::StateChange objects.
- post_states: Total collection of post-states
- min_percentage: minimum occurrence percentage (over
all post-states) required for a property to be
considered as convergent.
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
# File 'lib/toaster/state/convergence.rb', line 68 def self.convergence_for_prop_changes(prop_changes, post_states, min_percentage=0.5) candidates = get_convergence_candidates(prop_changes) result = [] candidates.each do |prop| property_name = prop[0] value = prop[1] values_equal = get_states_equal(post_states, property_name, value) percentage = values_equal.size.to_f / post_states.size.to_f if percentage >= min_percentage new_val = [property_name, value, percentage, values_equal.size, post_states.size] if !result.include?(new_val) result << new_val end end end return result end |
.convergence_for_task(task, prop_value_percentage_threshold = 0.7) ⇒ Object
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
# File 'lib/toaster/state/convergence.rb', line 41 def self.convergence_for_task(task, prop_value_percentage_threshold=0.7) ch = task.global_state_prop_changes.to_a.dup ps = task.global_post_states.to_a.dup # eliminate inserted map entries in post states ps.each do |p| MarkupUtil.eliminate_inserted_map_entries!(p) end # remove ignored properties from post states ignore_props = SystemState.read_ignore_properties() ps.each do |p| SystemState.remove_ignore_props!(p, ignore_props) end # remove ignored properties from state changes SystemState.remove_ignore_props!(ch, ignore_props.collect { |ip| ip.key } ) return convergence_for_prop_changes(ch, ps, prop_value_percentage_threshold) end |
.execution_traces(automation, property_patterns) ⇒ Object
automation_run –> prop_key –> list of (task_execution,prop_value)
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 |
# File 'lib/toaster/state/convergence.rb', line 145 def self.execution_traces(automation, property_patterns) tmp = {} task_execs = automation.get_task_execs_by_run # list of property keys prop_keys = Set.new # build tmp result hash task_execs.each do |run,exes| tmp[run] = {} exes.unshift(TaskExecution.new(:uuid => "start")) exes.each_with_index do |exe,idx| if exe.kind_of?(TaskExecution) pre_state = MarkupUtil.clone(exe.state_before) || {} post_state = MarkupUtil.clone(exe.state_after) || {} MarkupUtil.eliminate_inserted_map_entries!(pre_state) MarkupUtil.eliminate_inserted_map_entries!(post_state) pres = SystemState.get_flat_attributes(pre_state) posts = SystemState.get_flat_attributes(post_state) pres.each do |pre,pre_val| if Util.match_any(pre, property_patterns) prop_keys << pre tmp[run][pre] = {} if !tmp[run][pre] prev_exe = exes[idx - 1] tmp[run][pre][prev_exe.uuid] = MarkupUtil.get_value_by_path(pre_state, pre) end end posts.each do |post,post_val| if Util.match_any(post, property_patterns) prop_keys << post tmp[run][post] = {} if !tmp[run][post] tmp[run][post][exe.uuid] = MarkupUtil.get_value_by_path(post_state, post) end end end end end # build result hash result = {} task_execs.each do |run,exes| result[run] = {} prop_keys.each do |prop| result[run][prop] = [] exes.each do |exe| uuid = exe.uuid exe = nil if exe.uuid == "start" result[run][prop] << [exe, tmp[run][prop][uuid]] end end end return result end |
.get_convergence_candidates(prop_changes) ⇒ Object
87 88 89 90 91 92 93 94 95 96 |
# File 'lib/toaster/state/convergence.rb', line 87 def self.get_convergence_candidates(prop_changes) cands = Set.new prop_changes.each do |pc| value = pc.action == StateChange::ACTION_DELETE ? nil : pc.action == StateChange::ACTION_INSERT ? pc.value : pc.action == StateChange::ACTION_MODIFY ? pc.value : nil; cands << [pc.property, value, pc.task_execution.start_time] end return cands end |
.get_prop_conflicts(prop_values) ⇒ Object
Args:
- prop_values: list of Toaster::StateProperty objects
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
# File 'lib/toaster/state/convergence.rb', line 126 def self.get_prop_conflicts(prop_values) confl = [] for i in (0..(prop_values.size - 1)) for j in ((i+1)..(prop_values.size - 1)) p1_key = prop_values[i][0] p2_key = prop_values[j][0] p1_value = prop_values[i][1] p2_value = prop_values[j][1] if p1_key == p2_key if p1_value != p2_value confl << [p1_key,p1_value,p2_value] end end end end return confl end |
.get_states_equal(post_states, property_name, value) ⇒ Object
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 |
# File 'lib/toaster/state/convergence.rb', line 98 def self.get_states_equal(post_states, property_name, value) result = [] post_states.each do |ps| value1 = nil error = nil begin value1 = MarkupUtil.get_value_by_path(ps, property_name) rescue => ex error = ex end if !value.nil? && value1.nil? error_text = "#{error}" #puts "Expected value on property evaluation, but got exception: #{error_text[0..200]}..." #puts "Property change: #{property_name}" elsif value.nil? && !value1.nil? # raise "Expected exception on property evaluation, but got value: #{value1}" end if value == value1 || value.eql?(value1) result << ps end end return result end |