X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/c3e2a93527a137fbeb3e2bb13c5ab344a95ab47f..35035ce1c0e71990a30f6b1cc2aad961d06774cd:/apps/workbench/app/models/proxy_work_unit.rb diff --git a/apps/workbench/app/models/proxy_work_unit.rb b/apps/workbench/app/models/proxy_work_unit.rb index b1d758b8f2..f570563b75 100644 --- a/apps/workbench/app/models/proxy_work_unit.rb +++ b/apps/workbench/app/models/proxy_work_unit.rb @@ -1,3 +1,7 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + class ProxyWorkUnit < WorkUnit require 'time' @@ -6,9 +10,10 @@ class ProxyWorkUnit < WorkUnit attr_accessor :my_children attr_accessor :unreadable_children - def initialize proxied, label + def initialize proxied, label, parent @lbl = label @proxied = proxied + @parent = parent end def label @@ -19,31 +24,39 @@ class ProxyWorkUnit < WorkUnit get(:uuid) end + def parent + @parent + end + def modified_by_user_uuid get(:modified_by_user_uuid) end + def owner_uuid + get(:owner_uuid) + end + def created_at t = get(:created_at) - t = Time.parse(t) if (t.andand.class == String) + t = Time.parse(t) if (t.is_a? String) t end def started_at t = get(:started_at) - t = Time.parse(t) if (t.andand.class == String) + t = Time.parse(t) if (t.is_a? String) t end def modified_at t = get(:modified_at) - t = Time.parse(t) if (t.andand.class == String) + t = Time.parse(t) if (t.is_a? String) t end def finished_at t = get(:finished_at) - t = Time.parse(t) if (t.andand.class == String) + t = Time.parse(t) if (t.is_a? String) t end @@ -51,13 +64,15 @@ class ProxyWorkUnit < WorkUnit state = get(:state) if ["Running", "RunningOnServer", "RunningOnClient"].include? state "Running" + elsif state == 'New' + "Not started" else state end end def state_bootstrap_class - state = get(:state) + state = state_label case state when 'Complete' 'success' @@ -71,7 +86,7 @@ class ProxyWorkUnit < WorkUnit end def success? - state = get(:state) + state = state_label if state == 'Complete' true elsif state == 'Failed' or state == 'Cancelled' @@ -129,7 +144,7 @@ class ProxyWorkUnit < WorkUnit end def progress - state = get(:state) + state = state_label if state == 'Complete' return 1.0 elsif state == 'Failed' or state == 'Cancelled' @@ -167,31 +182,6 @@ class ProxyWorkUnit < WorkUnit @unreadable_children end - def readable? - resource_class = ArvadosBase::resource_class_for_uuid(uuid) - resource_class.where(uuid: [uuid]).first rescue nil - end - - def link_to_log - if state_label.in? ["Complete", "Failed", "Cancelled"] - lc = log_collection - if lc - logCollection = Collection.find? lc - if logCollection - ApplicationController.helpers.link_to("Log", "#{uri}#Log") - else - "Log unavailable" - end - end - elsif state_label == "Running" - if readable? - ApplicationController.helpers.link_to("Log", "#{uri}#Log") - else - "Log unavailable" - end - end - end - def walltime if state_label != "Queued" if started_at @@ -201,9 +191,15 @@ class ProxyWorkUnit < WorkUnit end def cputime - if state_label != "Queued" + if children.any? + children.map { |c| + c.cputime + }.reduce(:+) || 0 + else if started_at - (runtime_constraints.andand[:min_nodes] || 1) * ((finished_at || Time.now()) - started_at) + (runtime_constraints.andand[:min_nodes] || 1).to_i * ((finished_at || Time.now()) - started_at) + else + 0 end end end @@ -230,14 +226,26 @@ class ProxyWorkUnit < WorkUnit state_label == 'Failed' end - def show_runtime - runningtime = ApplicationController.helpers.determine_wallclock_runtime(if children.any? then children else [self] end) + def runtime_contributors + contributors = [] + if children.any? + children.each{|c| contributors << c.runtime_contributors} + else + contributors << self + end + contributors.flatten + end + + def runningtime + ApplicationController.helpers.determine_wallclock_runtime runtime_contributors + end + def show_runtime walltime = 0 + running_time = runningtime if started_at walltime = if finished_at then (finished_at - started_at) else (Time.now - started_at) end end - resp = '

' if started_at @@ -252,11 +260,7 @@ class ProxyWorkUnit < WorkUnit resp << "has been active for " end - if walltime > runningtime - resp << ApplicationController.helpers.render_time(walltime, false) - else - resp << ApplicationController.helpers.render_time(runningtime, false) - end + resp << ApplicationController.helpers.render_time(walltime, false) if finished_at resp << " at " @@ -278,33 +282,14 @@ class ProxyWorkUnit < WorkUnit resp << "

" if state_label - resp << "It " - if state_label == 'Running' - resp << "has run" - else - resp << "ran" - end - resp << " for " - - cpu_time = 0 - if children.any? - cpu_time = children.map { |c| - if c.started_at - (c.runtime_constraints.andand[:min_nodes] || 1) * ((c.finished_at || Time.now()) - c.started_at) - else - 0 - end - }.reduce(:+) || 0 - else - if started_at - cpu_time = (runtime_constraints.andand[:min_nodes] || 1) * ((finished_at || Time.now()) - started_at) - end - end + resp << "It has runtime of " + + cpu_time = cputime - resp << ApplicationController.helpers.render_time(runningtime, false) - if (walltime - runningtime) > 0 + resp << ApplicationController.helpers.render_time(running_time, false) + if (walltime - running_time) > 0 resp << "(" - resp << ApplicationController.helpers.render_time(walltime - runningtime, false) + resp << ApplicationController.helpers.render_time(walltime - running_time, false) resp << "queued)" end if cpu_time == 0 @@ -313,7 +298,7 @@ class ProxyWorkUnit < WorkUnit resp << " and used " resp << ApplicationController.helpers.render_time(cpu_time, false) resp << " of node allocation time (" - resp << (cpu_time/runningtime).round(1).to_s + resp << (cpu_time/running_time).round(1).to_s resp << "⨯ scaling)." end end @@ -322,13 +307,27 @@ class ProxyWorkUnit < WorkUnit resp end + def log_object_uuids + [uuid] + end + + def live_log_lines(limit) + Log.where(object_uuid: log_object_uuids). + order("created_at DESC"). + limit(limit). + with_count('none'). + select { |log| log.properties[:text].is_a? String }. + reverse. + flat_map { |log| log.properties[:text].split("\n") } + end + protected - def get key - if @proxied.respond_to? key - @proxied.send(key) - elsif @proxied.is_a?(Hash) - @proxied[key] + def get key, obj=@proxied + if obj.respond_to? key + obj.send(key) + elsif obj.is_a?(Hash) + obj[key] || obj[key.to_s] end end end