20690: Remove workbench1 and testing/packaging references.
[arvados.git] / apps / workbench / app / models / job_work_unit.rb
diff --git a/apps/workbench/app/models/job_work_unit.rb b/apps/workbench/app/models/job_work_unit.rb
deleted file mode 100644 (file)
index 7f1c73f..0000000
+++ /dev/null
@@ -1,86 +0,0 @@
-class JobWorkUnit < ProxyWorkUnit
-  def children
-    uuid = get(:uuid)
-    items = []
-
-    # Job tasks - for now do not include job tasks
-    # tasks = JobTask.filter([['job_uuid', '=', uuid]]).results
-    # tasks.each do |t|
-    #   items << t.work_unit("task #{items.size}")
-    # end
-
-    # Jobs components
-    components = get(:components)
-    uuids = components.andand.collect {|_, v| v}
-    return items if (!uuids or uuids.empty?)
-
-    rcs = {}
-    uuids.each do |u|
-      r = ArvadosBase::resource_class_for_uuid(u)
-      rcs[r] = [] unless rcs[r]
-      rcs[r] << u
-    end
-    rcs.each do |rc, ids|
-      rc.where(uuid: ids).each do |obj|
-        items << obj.work_unit(components.key(obj.uuid))
-      end
-    end
-    items
-  end
-
-  def progress
-    state = get(:state)
-    if state == 'Complete'
-      return 1.0
-    end
-
-    tasks_summary = get(:tasks_summary)
-    failed = tasks_summary[:failed] || 0 rescue 0
-    done = tasks_summary[:done] || 0 rescue 0
-    running = tasks_summary[:running] || 0 rescue 0
-    todo = tasks_summary[:todo] || 0 rescue 0
-    if done + running + failed + todo > 0
-      total_tasks = done + running + failed + todo
-      (done+failed).to_f / total_tasks
-    else
-      0.0
-    end
-  end
-
-  def docker_image
-    get(:docker_image_locator)
-  end
-
-  def nondeterministic
-    get(:nondeterministic)
-  end
-
-  def priority
-    get(:priority)
-  end
-
-  def log_collection
-    get(:log)
-  end
-
-  def output
-    get(:output)
-  end
-
-  def can_cancel?
-    true
-  end
-
-  def uri
-    uuid = get(:uuid)
-    "/jobs/#{uuid}"
-  end
-
-  def child_summary
-    get(:tasks_summary)
-  end
-
-  def title
-    "job"
-  end
-end