Module: Pwrake::TaskAlgorithm
- Included in:
- Rake::Task
- Defined in:
- lib/pwrake/task_algorithm.rb,
lib/pwrake/locality_aware_queue.rb
Instance Method Summary collapse
- #assigned ⇒ Object
- #check_prereq_finished(preq_name = nil) ⇒ Object
- #file_size ⇒ Object
- #invoke_modify(*args) ⇒ Object
- #location ⇒ Object
- #location=(a) ⇒ Object
- #log_host(exec_host) ⇒ Object
- #log_task(time_start) ⇒ Object
- #prior? ⇒ Boolean
- #pw_enq_subsequents ⇒ Object
-
#pw_execute(args = nil) ⇒ Object
Execute the actions associated with this task.
- #pw_invoke ⇒ Object
- #pw_search_tasks(args) ⇒ Object
-
#search_prerequisites(task_args, invocation_chain) ⇒ Object
Search all the prerequisites of a task.
-
#search_with_call_chain(subseq, task_args, invocation_chain) ⇒ Object
Same as search, but explicitly pass a call chain to detect circular dependencies.
- #suggest_location ⇒ Object
- #suggest_location2 ⇒ Object
- #task_id ⇒ Object
Instance Method Details
#assigned ⇒ Object
4 5 6 |
# File 'lib/pwrake/locality_aware_queue.rb', line 4 def assigned @assigned ||= [] end |
#check_prereq_finished(preq_name = nil) ⇒ Object
203 204 205 206 |
# File 'lib/pwrake/task_algorithm.rb', line 203 def check_prereq_finished(preq_name=nil) @unfinished_prereq.delete(preq_name) @unfinished_prereq.empty? end |
#file_size ⇒ Object
265 266 267 |
# File 'lib/pwrake/task_algorithm.rb', line 265 def file_size @file_stat ? @file_stat.size : 0 end |
#invoke_modify(*args) ⇒ Object
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 |
# File 'lib/pwrake/task_algorithm.rb', line 20 def invoke_modify(*args) return if @already_invoked application.start_worker if false th = Thread.new(args){|a| pw_search_tasks(a) } else pw_search_tasks(args) th = nil end Log.info "-- ps:\n"+`ps xwv|egrep 'PID|ruby'` if conn = Pwrake.current_shell application.thread_loop(conn,self) else if fname = application.['GC_PROFILE'] File.open(fname,"w") do |f| gc_count = 0 while true t = application.finish_queue.deq if GC.count > gc_count f.write Log.fmt_time(Time.now)+" " f.write(GC::Profiler.result) GC::Profiler.clear gc_count = GC.count end break if t==self end end else while true t = application.finish_queue.deq break if t==self end end end th.join if th end |
#location ⇒ Object
8 9 10 |
# File 'lib/pwrake/task_algorithm.rb', line 8 def location @location ||= [] end |
#location=(a) ⇒ Object
12 13 14 |
# File 'lib/pwrake/task_algorithm.rb', line 12 def location=(a) @location = a end |
#log_host(exec_host) ⇒ Object
306 307 308 309 310 311 312 313 314 315 316 317 |
# File 'lib/pwrake/task_algorithm.rb', line 306 def log_host(exec_host) # exec_host = Pwrake.current_shell.host if loc = suggest_location() Pwrake.application.count( loc, exec_host ) if loc.include? exec_host compare = "==" else compare = "!=" end Log.info "-- access to #{@prerequisites[0]}: file_host=#{loc.inspect} #{compare} exec_host=#{exec_host}" end end |
#log_task(time_start) ⇒ Object
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 |
# File 'lib/pwrake/task_algorithm.rb', line 96 def log_task(time_start) time_end = Time.now loc = suggest_location() shell = Pwrake.current_shell if loc && !loc.empty? && shell && !@actions.empty? Pwrake.application.count( loc, shell.host ) end return if !application.task_logger row = [ @task_id, name, time_start, time_end, time_end-time_start, @prerequisites.join('|') ] if loc row << loc.join('|') else row << '' end if shell row.concat [shell.host, shell.id] else row.concat ['',''] end row << ((@actions.empty?) ? 0 : 1) row << ((@executed) ? 1 : 0) if @file_stat row.concat [@file_stat.size, @file_stat.mtime, self.location.join('|')] else row.concat ['','',''] end s = row.map do |x| if x.kind_of?(Time) Profiler.format_time(x) elsif x.kind_of?(String) && x!='' '"'+x+'"' else x.to_s end end.join(',') # task_id task_name start_time end_time elap_time preq preq_host # exec_host shell_id has_action executed file_size file_mtime file_host application.task_logger.print s+"\n" end |
#prior? ⇒ Boolean
269 270 271 |
# File 'lib/pwrake/task_algorithm.rb', line 269 def prior? kind_of?(Rake::FileTask) && !@prerequisites.empty? end |
#pw_enq_subsequents ⇒ Object
190 191 192 193 194 195 196 197 198 199 200 201 |
# File 'lib/pwrake/task_algorithm.rb', line 190 def pw_enq_subsequents @lock.synchronize do t = Time.now @subsequents.each do |t| # <<--- competition !!! if t && t.check_prereq_finished(self.name) application.task_queue.enq(t) end end @already_finished = true # <<--- competition !!! Log.debug "--- pw_enq_subseq (#{name}) time=#{Time.now-t} sec" end end |
#pw_execute(args = nil) ⇒ Object
Execute the actions associated with this task.
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 |
# File 'lib/pwrake/task_algorithm.rb', line 150 def pw_execute(args=nil) args ||= Rake::EMPTY_TASK_ARGS if application..dryrun Log.info "** Execute (dry run) #{name}" return end if application..trace Log.info "** Execute #{name}" end application.enhance_with_matching_rule(name) if @actions.empty? begin @actions.each do |act| case act.arity when 1 act.call(self) else act.call(self, args) end end rescue Exception=>e if kind_of?(Rake::FileTask) && File.exist?(name) opt = application.['FAILED_TARGET']||"rename" case opt when /rename/i dst = name+"._fail_" ::FileUtils.mv(name,dst) msg = "Rename failed target file '#{name}' to '#{dst}'" Log.stderr_puts(msg) when /delete/i ::FileUtils.rm(name) msg = "Delete failed target file '#{name}'" Log.stderr_puts(msg) when /leave/i end end raise e end @executed = true if !@actions.empty? end |
#pw_invoke ⇒ Object
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 |
# File 'lib/pwrake/task_algorithm.rb', line 71 def pw_invoke time_start = Time.now if shell = Pwrake.current_shell shell.current_task = self end @lock.synchronize do return if @already_invoked @already_invoked = true end pw_execute(@arg_data) if needed? if kind_of?(Rake::FileTask) application.postprocess(self) # <--------- if File.exist?(name) @file_stat = File::Stat.new(name) end end log_task(time_start) t = Time.now application.finish_queue.enq(self) shell.current_task = nil if shell pw_enq_subsequents # <--------- Log.debug "--- pw_invoke (#{name}) postprocess time=#{Time.now-t} sec" end |
#pw_search_tasks(args) ⇒ Object
61 62 63 64 65 66 67 68 69 |
# File 'lib/pwrake/task_algorithm.rb', line 61 def pw_search_tasks(args) task_args = TaskArguments.new(arg_names, args) timer = Timer.new("search_task") h = application.['HALT_QUEUE_WHILE_SEARCH'] application.task_queue.synchronize(h) do search_with_call_chain(self, task_args, InvocationChain::EMPTY) end timer.finish end |
#search_prerequisites(task_args, invocation_chain) ⇒ Object
Search all the prerequisites of a task.
244 245 246 247 248 249 250 251 252 253 |
# File 'lib/pwrake/task_algorithm.rb', line 244 def search_prerequisites(task_args, invocation_chain) # :nodoc: @unfinished_prereq = {} @prerequisites.each{|t| @unfinished_prereq[t]=true} prerequisite_tasks.each { |prereq| #prereq_args = task_args.new_scope(prereq.arg_names) # in vain if prereq.search_with_call_chain(self, task_args, invocation_chain) @unfinished_prereq.delete(prereq.name) end } end |
#search_with_call_chain(subseq, task_args, invocation_chain) ⇒ Object
Same as search, but explicitly pass a call chain to detect circular dependencies.
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 |
# File 'lib/pwrake/task_algorithm.rb', line 211 def search_with_call_chain(subseq, task_args, invocation_chain) # :nodoc: new_chain = InvocationChain.append(self, invocation_chain) @lock.synchronize do if application..trace Log.info "** Search #{name} #{format_search_flags}" end return true if @already_finished # <<--- competition !!! @subsequents ||= [] @subsequents << subseq # <<--- competition !!! if ! @already_searched @already_searched = true @arg_data = task_args if @prerequisites.empty? @unfinished_prereq = {} else search_prerequisites(task_args, new_chain) end @task_id = application.task_id_counter #check_and_enq if @unfinished_prereq.empty? application.task_queue.enq(self) end end return false end rescue Exception => ex add_chain_to(ex, new_chain) raise ex end |
#suggest_location ⇒ Object
273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 |
# File 'lib/pwrake/task_algorithm.rb', line 273 def suggest_location if prior? && @suggest_location.nil? @suggest_location = [] loc_fsz = Hash.new(0) @prerequisites.each do |preq| t = application[preq] loc = t.location fsz = t.file_size if loc && fsz > 0 loc.each do |h| loc_fsz[h] += fsz end end end if !loc_fsz.empty? half_max_fsz = loc_fsz.values.max / 2 Log.debug "--- loc_fsz=#{loc_fsz.inspect} half_max_fsz=#{half_max_fsz}" loc_fsz.each do |h,sz| if sz > half_max_fsz @suggest_location << h end end end end @suggest_location end |
#suggest_location2 ⇒ Object
300 301 302 303 304 |
# File 'lib/pwrake/task_algorithm.rb', line 300 def suggest_location2 if kind_of?(Rake::FileTask) && preq_name = @prerequisites[0] application[preq_name].location end end |
#task_id ⇒ Object
16 17 18 |
# File 'lib/pwrake/task_algorithm.rb', line 16 def task_id @task_id end |