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 ensure_script_version_is_commit
74 if self.is_locked_by_uuid and self.started_at
75 # Apparently client has already decided to go for it. This is
76 # needed to run a local job using a local working directory
77 # instead of a commit-ish.
80 if new_record? or script_version_changed?
81 sha1 = Commit.find_commit_range(current_user, nil, nil, self.script_version, nil)[0] rescue nil
83 self.script_version = sha1
85 raise ArgumentError.new("Specified script_version does not resolve to a commit")
90 def ensure_unique_submit_id
92 if Job.where('submit_id=?',self.submit_id).first
93 raise SubmitIdReused.new
101 queue = self.script_parameters.values
102 while not queue.empty?
103 queue = queue.flatten.compact.collect do |v|
107 v.match(/^(([0-9a-f]{32})\b(\+[^,]+)?,?)*$/) do |locator|
108 deps[locator.to_s] = true
117 def permission_to_update
118 if is_locked_by_uuid_was and !(current_user and
119 (current_user.uuid == is_locked_by_uuid_was or
120 current_user.uuid == system_user.uuid))
121 if script_changed? or
122 script_parameters_changed? or
123 script_version_changed? or
124 (!cancelled_at_was.nil? and
125 (cancelled_by_client_uuid_changed? or
126 cancelled_by_user_uuid_changed? or
127 cancelled_at_changed?)) or
128 started_at_changed? or
129 finished_at_changed? or
134 tasks_summary_changed?
135 logger.warn "User #{current_user.uuid if current_user} tried to change protected job attributes on locked #{self.class.to_s} #{uuid_was}"
139 if !is_locked_by_uuid_changed?
143 logger.warn "Anonymous user tried to change lock on #{self.class.to_s} #{uuid_was}"
145 elsif is_locked_by_uuid_was and is_locked_by_uuid_was != current_user.uuid
146 logger.warn "User #{current_user.uuid} tried to steal lock on #{self.class.to_s} #{uuid_was} from #{is_locked_by_uuid_was}"
148 elsif !is_locked_by_uuid.nil? and is_locked_by_uuid != current_user.uuid
149 logger.warn "User #{current_user.uuid} tried to lock #{self.class.to_s} #{uuid_was} with uuid #{is_locked_by_uuid}"
157 def update_modified_by_fields
158 if self.cancelled_at_changed?
159 # Ensure cancelled_at cannot be set to arbitrary non-now times,
160 # or changed once it is set.
161 if self.cancelled_at and not self.cancelled_at_was
162 self.cancelled_at = Time.now
163 self.cancelled_by_user_uuid = current_user.uuid
164 self.cancelled_by_client_uuid = current_api_client.uuid
165 @need_crunch_dispatch_trigger = true
167 self.cancelled_at = self.cancelled_at_was
168 self.cancelled_by_user_uuid = self.cancelled_by_user_uuid_was
169 self.cancelled_by_client_uuid = self.cancelled_by_client_uuid_was
175 def trigger_crunch_dispatch_if_cancelled
176 if @need_crunch_dispatch_trigger
177 File.open(Rails.configuration.crunch_refresh_trigger, 'wb') do
178 # That's all, just create/touch a file for crunch-job to see.
185 @@redis ||= Redis.new(:timeout => 0)
186 if @@redis.exists uuid
187 @@redis.getrange(uuid, 0 - 2**10, -1)
189 rescue Redis::CannotConnectError
190 return '(not available)'