1 class Job < ArvadosModel
4 include CommonApiTemplate
5 attr_protected :docker_image_locator
6 serialize :script_parameters, Hash
7 serialize :runtime_constraints, Hash
8 serialize :tasks_summary, Hash
9 before_create :ensure_unique_submit_id
10 after_commit :trigger_crunch_dispatch_if_cancelled, :on => :update
11 before_validation :set_priority
12 before_validation :update_timestamps_when_state_changes
13 before_validation :update_state_from_old_state_attrs
14 validate :ensure_script_version_is_commit
15 validate :find_docker_image_locator
16 validate :validate_status
17 validate :validate_state_change
19 has_many :commit_ancestors, :foreign_key => :descendant, :primary_key => :script_version
20 has_many(:nodes, foreign_key: :job_uuid, primary_key: :uuid)
22 class SubmitIdReused < StandardError
25 api_accessible :user, extend: :common do |t|
29 t.add :script_parameters
32 t.add :cancelled_by_client_uuid
33 t.add :cancelled_by_user_uuid
40 t.add :is_locked_by_uuid
42 t.add :runtime_constraints
45 t.add :nondeterministic
47 t.add :supplied_script_version
48 t.add :docker_image_locator
54 # Supported states for a job
57 (Running = 'Running'),
58 (Cancelled = 'Cancelled'),
60 (Complete = 'Complete'),
64 update_attributes(finished_at: finished_at || Time.now,
65 success: success.nil? ? false : success,
74 self.where('state = ?', Queued).order('priority desc, created_at')
79 Job::queue.each do |j|
80 if j[:uuid] == self.uuid
88 self.where('running = ?', true).
89 order('priority desc, created_at')
92 def lock locked_by_uuid
95 unless self.state == Queued and self.is_locked_by_uuid.nil?
96 raise AlreadyLockedError
99 self.is_locked_by_uuid = locked_by_uuid
106 def foreign_key_attributes
107 super + %w(output log)
110 def skip_uuid_read_permission_check
111 super + %w(cancelled_by_client_uuid)
114 def skip_uuid_existence_check
115 super + %w(output log)
119 if self.priority.nil?
125 def ensure_script_version_is_commit
126 if self.state == Running
127 # Apparently client has already decided to go for it. This is
128 # needed to run a local job using a local working directory
129 # instead of a commit-ish.
132 if new_record? or script_version_changed?
133 sha1 = Commit.find_commit_range(current_user, self.repository, nil, self.script_version, nil)[0] rescue nil
135 self.supplied_script_version = self.script_version if self.supplied_script_version.nil? or self.supplied_script_version.empty?
136 self.script_version = sha1
138 self.errors.add :script_version, "#{self.script_version} does not resolve to a commit"
144 def ensure_unique_submit_id
146 if Job.where('submit_id=?',self.submit_id).first
147 raise SubmitIdReused.new
153 def find_docker_image_locator
154 # Find the Collection that holds the Docker image specified in the
155 # runtime constraints, and store its locator in docker_image_locator.
156 unless runtime_constraints.is_a? Hash
157 # We're still in validation stage, so we can't assume
158 # runtime_constraints isn't something horrible like an array or
159 # a string. Treat those cases as "no docker image supplied";
160 # other validations will fail anyway.
161 self.docker_image_locator = nil
164 image_search = runtime_constraints['docker_image']
165 image_tag = runtime_constraints['docker_image_tag']
167 self.docker_image_locator = nil
169 elsif coll = Collection.for_latest_docker_image(image_search, image_tag)
170 self.docker_image_locator = coll.portable_data_hash
173 errors.add(:docker_image_locator, "not found for #{image_search}")
180 queue = self.script_parameters.values
181 while not queue.empty?
182 queue = queue.flatten.compact.collect do |v|
186 v.match(/^(([0-9a-f]{32})\b(\+[^,]+)?,?)*$/) do |locator|
187 deps[locator.to_s] = true
196 def permission_to_update
197 if is_locked_by_uuid_was and !(current_user and
198 (current_user.uuid == is_locked_by_uuid_was or
199 current_user.uuid == system_user.uuid))
200 if script_changed? or
201 script_parameters_changed? or
202 script_version_changed? or
203 (!cancelled_at_was.nil? and
204 (cancelled_by_client_uuid_changed? or
205 cancelled_by_user_uuid_changed? or
206 cancelled_at_changed?)) or
207 started_at_changed? or
208 finished_at_changed? or
213 tasks_summary_changed? or
215 logger.warn "User #{current_user.uuid if current_user} tried to change protected job attributes on locked #{self.class.to_s} #{uuid_was}"
219 if !is_locked_by_uuid_changed?
223 logger.warn "Anonymous user tried to change lock on #{self.class.to_s} #{uuid_was}"
225 elsif is_locked_by_uuid_was and is_locked_by_uuid_was != current_user.uuid
226 logger.warn "User #{current_user.uuid} tried to steal lock on #{self.class.to_s} #{uuid_was} from #{is_locked_by_uuid_was}"
228 elsif !is_locked_by_uuid.nil? and is_locked_by_uuid != current_user.uuid
229 logger.warn "User #{current_user.uuid} tried to lock #{self.class.to_s} #{uuid_was} with uuid #{is_locked_by_uuid}"
237 def update_modified_by_fields
238 if self.cancelled_at_changed?
239 # Ensure cancelled_at cannot be set to arbitrary non-now times,
240 # or changed once it is set.
241 if self.cancelled_at and not self.cancelled_at_was
242 self.cancelled_at = Time.now
243 self.cancelled_by_user_uuid = current_user.uuid
244 self.cancelled_by_client_uuid = current_api_client.andand.uuid
245 @need_crunch_dispatch_trigger = true
247 self.cancelled_at = self.cancelled_at_was
248 self.cancelled_by_user_uuid = self.cancelled_by_user_uuid_was
249 self.cancelled_by_client_uuid = self.cancelled_by_client_uuid_was
255 def trigger_crunch_dispatch_if_cancelled
256 if @need_crunch_dispatch_trigger
257 File.open(Rails.configuration.crunch_refresh_trigger, 'wb') do
258 # That's all, just create/touch a file for crunch-job to see.
263 def update_timestamps_when_state_changes
264 return if not (state_changed? or new_record?)
267 self.started_at ||= Time.now
268 when Failed, Complete
269 self.finished_at ||= Time.now
271 self.cancelled_at ||= Time.now
274 # TODO: Remove the following case block when old "success" and
275 # "running" attrs go away. Until then, this ensures we still
276 # expose correct success/running flags to older clients, even if
277 # some new clients are writing only the new state attribute.
285 when Cancelled, Failed
292 self.running ||= false # Default to false instead of nil.
297 def update_state_from_old_state_attrs
298 # If a client has touched the legacy state attrs, update the
299 # "state" attr to agree with the updated values of the legacy
302 # TODO: Remove this method when old "success" and "running" attrs
304 if cancelled_at_changed? or
309 self.state = Cancelled
310 elsif success == false
312 elsif success == true
313 self.state = Complete
314 elsif running == true
324 if self.state.in?(States)
327 errors.add :state, "#{state.inspect} must be one of: #{States.inspect}"
332 def validate_state_change
334 if self.state_changed?
335 ok = case self.state_was
337 # state isn't set yet
340 # Permit going from queued to any state
343 # From running, may only transition to a finished state
344 [Complete, Failed, Cancelled].include? self.state
345 when Complete, Failed, Cancelled
346 # Once in a finished state, don't permit any more state changes
349 # Any other state transition is also invalid
353 errors.add :state, "invalid change from #{self.state_was} to #{self.state}"