1 class Job < ArvadosModel
4 include CommonApiTemplate
5 serialize :script_parameters, Hash
6 serialize :runtime_constraints, Hash
7 serialize :tasks_summary, Hash
8 before_create :ensure_unique_submit_id
9 before_create :ensure_script_version_is_commit
10 before_update :ensure_script_version_is_commit
11 after_commit :trigger_crunch_dispatch_if_cancelled, :on => :update
13 has_many :commit_ancestors, :foreign_key => :descendant, :primary_key => :script_version
15 class SubmitIdReused < StandardError
18 api_accessible :user, extend: :common do |t|
22 t.add :script_parameters
25 t.add :cancelled_by_client_uuid
26 t.add :cancelled_by_user_uuid
30 t.add :output_is_persistent
33 t.add :is_locked_by_uuid
35 t.add :runtime_constraints
38 t.add :log_stream_href
40 t.add :nondeterministic
45 update_attributes(finished_at: finished_at || Time.now,
46 success: success.nil? ? false : success,
51 unless self.finished_at
52 "#{current_api_base}/#{self.class.to_s.pluralize.underscore}/#{self.uuid}/log_tail_follow"
57 self.where('started_at is ? and is_locked_by_uuid is ? and cancelled_at is ? and success is ?',
59 order('priority desc, created_at')
63 self.where('running = ?', true).
64 order('priority desc, created_at')
69 def foreign_key_attributes
70 super + %w(output log)
73 def skip_uuid_read_permission_check
74 super + %w(cancelled_by_client_uuid)
77 def skip_uuid_existence_check
78 super + %w(output log)
81 def ensure_script_version_is_commit
82 if self.is_locked_by_uuid and self.started_at
83 # Apparently client has already decided to go for it. This is
84 # needed to run a local job using a local working directory
85 # instead of a commit-ish.
88 if new_record? or script_version_changed?
89 sha1 = Commit.find_commit_range(current_user, self.repository, nil, self.script_version, nil)[0] rescue nil
91 self.script_version = sha1
93 raise ArgumentError.new("Specified script_version does not resolve to a commit")
98 def ensure_unique_submit_id
100 if Job.where('submit_id=?',self.submit_id).first
101 raise SubmitIdReused.new
109 queue = self.script_parameters.values
110 while not queue.empty?
111 queue = queue.flatten.compact.collect do |v|
115 v.match(/^(([0-9a-f]{32})\b(\+[^,]+)?,?)*$/) do |locator|
116 deps[locator.to_s] = true
125 def permission_to_update
126 if is_locked_by_uuid_was and !(current_user and
127 (current_user.uuid == is_locked_by_uuid_was or
128 current_user.uuid == system_user.uuid))
129 if script_changed? or
130 script_parameters_changed? or
131 script_version_changed? or
132 (!cancelled_at_was.nil? and
133 (cancelled_by_client_uuid_changed? or
134 cancelled_by_user_uuid_changed? or
135 cancelled_at_changed?)) or
136 started_at_changed? or
137 finished_at_changed? or
142 tasks_summary_changed?
143 logger.warn "User #{current_user.uuid if current_user} tried to change protected job attributes on locked #{self.class.to_s} #{uuid_was}"
147 if !is_locked_by_uuid_changed?
151 logger.warn "Anonymous user tried to change lock on #{self.class.to_s} #{uuid_was}"
153 elsif is_locked_by_uuid_was and is_locked_by_uuid_was != current_user.uuid
154 logger.warn "User #{current_user.uuid} tried to steal lock on #{self.class.to_s} #{uuid_was} from #{is_locked_by_uuid_was}"
156 elsif !is_locked_by_uuid.nil? and is_locked_by_uuid != current_user.uuid
157 logger.warn "User #{current_user.uuid} tried to lock #{self.class.to_s} #{uuid_was} with uuid #{is_locked_by_uuid}"
165 def update_modified_by_fields
166 if self.cancelled_at_changed?
167 # Ensure cancelled_at cannot be set to arbitrary non-now times,
168 # or changed once it is set.
169 if self.cancelled_at and not self.cancelled_at_was
170 self.cancelled_at = Time.now
171 self.cancelled_by_user_uuid = current_user.uuid
172 self.cancelled_by_client_uuid = current_api_client.uuid
173 @need_crunch_dispatch_trigger = true
175 self.cancelled_at = self.cancelled_at_was
176 self.cancelled_by_user_uuid = self.cancelled_by_user_uuid_was
177 self.cancelled_by_client_uuid = self.cancelled_by_client_uuid_was
183 def trigger_crunch_dispatch_if_cancelled
184 if @need_crunch_dispatch_trigger
185 File.open(Rails.configuration.crunch_refresh_trigger, 'wb') do
186 # That's all, just create/touch a file for crunch-job to see.
193 @@redis ||= Redis.new(:timeout => 0)
194 if @@redis.exists uuid
195 @@redis.getrange(uuid, 0 - 2**10, -1)
197 rescue Redis::CannotConnectError
198 return '(not available)'