blob: 25b54acf6b7864a2e864ffd8edaac7f66ccb9905 [file] [log] [blame]
Christopher Tate7060b042014-06-09 19:50:00 -07001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License
15 */
16
17package com.android.server.job;
18
Shreyas Basarge5db09082016-01-07 13:38:29 +000019import java.io.FileDescriptor;
20import java.io.PrintWriter;
21import java.util.ArrayList;
22import java.util.Iterator;
23import java.util.List;
24
Dianne Hackborn8ad2af72015-03-17 17:00:24 -070025import android.app.ActivityManager;
Dianne Hackbornbef28fe2015-10-29 17:57:11 -070026import android.app.ActivityManagerNative;
Christopher Tate5568f542014-06-18 13:53:31 -070027import android.app.AppGlobals;
Dianne Hackbornbef28fe2015-10-29 17:57:11 -070028import android.app.IUidObserver;
Christopher Tate7060b042014-06-09 19:50:00 -070029import android.app.job.JobInfo;
Shreyas Basarge5db09082016-01-07 13:38:29 +000030import android.app.job.JobParameters;
Christopher Tate7060b042014-06-09 19:50:00 -070031import android.app.job.JobScheduler;
32import android.app.job.JobService;
Shreyas Basarge5db09082016-01-07 13:38:29 +000033import android.app.job.IJobScheduler;
Christopher Tate7060b042014-06-09 19:50:00 -070034import android.content.BroadcastReceiver;
35import android.content.ComponentName;
36import android.content.Context;
37import android.content.Intent;
38import android.content.IntentFilter;
Christopher Tate5568f542014-06-18 13:53:31 -070039import android.content.pm.IPackageManager;
Christopher Tate7060b042014-06-09 19:50:00 -070040import android.content.pm.PackageManager;
Christopher Tate7060b042014-06-09 19:50:00 -070041import android.content.pm.ServiceInfo;
Dianne Hackbornfdb19562014-07-11 16:03:36 -070042import android.os.BatteryStats;
Christopher Tate7060b042014-06-09 19:50:00 -070043import android.os.Binder;
44import android.os.Handler;
45import android.os.Looper;
46import android.os.Message;
Dianne Hackborn88e98df2015-03-23 13:29:14 -070047import android.os.PowerManager;
Christopher Tate7060b042014-06-09 19:50:00 -070048import android.os.RemoteException;
Dianne Hackbornfdb19562014-07-11 16:03:36 -070049import android.os.ServiceManager;
Christopher Tate7060b042014-06-09 19:50:00 -070050import android.os.SystemClock;
51import android.os.UserHandle;
Shreyas Basarge968ac752016-01-11 23:09:26 +000052import android.os.Process;
Dianne Hackbornfdb19562014-07-11 16:03:36 -070053import android.util.ArraySet;
Christopher Tate7060b042014-06-09 19:50:00 -070054import android.util.Slog;
55import android.util.SparseArray;
56
Dianne Hackbornfdb19562014-07-11 16:03:36 -070057import com.android.internal.app.IBatteryStats;
Dianne Hackborn627dfa12015-11-11 18:10:30 -080058import com.android.server.DeviceIdleController;
59import com.android.server.LocalServices;
Amith Yamasanib0ff3222015-03-04 09:56:14 -080060import com.android.server.job.controllers.AppIdleController;
Christopher Tate7060b042014-06-09 19:50:00 -070061import com.android.server.job.controllers.BatteryController;
62import com.android.server.job.controllers.ConnectivityController;
Dianne Hackborn1a30bd92016-01-11 11:05:00 -080063import com.android.server.job.controllers.ContentObserverController;
Christopher Tate7060b042014-06-09 19:50:00 -070064import com.android.server.job.controllers.IdleController;
65import com.android.server.job.controllers.JobStatus;
66import com.android.server.job.controllers.StateController;
67import com.android.server.job.controllers.TimeController;
68
Christopher Tate7060b042014-06-09 19:50:00 -070069/**
70 * Responsible for taking jobs representing work to be performed by a client app, and determining
71 * based on the criteria specified when that job should be run against the client application's
72 * endpoint.
73 * Implements logic for scheduling, and rescheduling jobs. The JobSchedulerService knows nothing
74 * about constraints, or the state of active jobs. It receives callbacks from the various
75 * controllers and completed jobs and operates accordingly.
76 *
77 * Note on locking: Any operations that manipulate {@link #mJobs} need to lock on that object.
78 * Any function with the suffix 'Locked' also needs to lock on {@link #mJobs}.
79 * @hide
80 */
Dianne Hackborn33d31c52016-02-16 10:30:33 -080081public final class JobSchedulerService extends com.android.server.SystemService
Matthew Williams01ac45b2014-07-22 20:44:12 -070082 implements StateChangedListener, JobCompletedListener {
Matthew Williamsaa984312015-10-15 16:08:05 -070083 public static final boolean DEBUG = false;
Christopher Tate7060b042014-06-09 19:50:00 -070084 /** The number of concurrent jobs we run at one time. */
Dianne Hackborn8ad2af72015-03-17 17:00:24 -070085 private static final int MAX_JOB_CONTEXTS_COUNT
Shreyas Basarge8c834c02016-01-07 13:53:16 +000086 = ActivityManager.isLowRamDeviceStatic() ? 3 : 6;
Matthew Williamsbe0c4172014-08-06 18:14:16 -070087 static final String TAG = "JobSchedulerService";
Dianne Hackborn33d31c52016-02-16 10:30:33 -080088 /** Global local for all job scheduler state. */
89 final Object mLock = new Object();
Christopher Tate7060b042014-06-09 19:50:00 -070090 /** Master list of jobs. */
Dianne Hackbornfdb19562014-07-11 16:03:36 -070091 final JobStore mJobs;
Christopher Tate7060b042014-06-09 19:50:00 -070092
93 static final int MSG_JOB_EXPIRED = 0;
94 static final int MSG_CHECK_JOB = 1;
Dianne Hackbornbef28fe2015-10-29 17:57:11 -070095 static final int MSG_STOP_JOB = 2;
Shreyas Basarge4cff8ac2015-12-10 21:32:52 +000096 static final int MSG_CHECK_JOB_GREEDY = 3;
Christopher Tate7060b042014-06-09 19:50:00 -070097
98 // Policy constants
99 /**
100 * Minimum # of idle jobs that must be ready in order to force the JMS to schedule things
101 * early.
102 */
Dianne Hackbornfdb19562014-07-11 16:03:36 -0700103 static final int MIN_IDLE_COUNT = 1;
Christopher Tate7060b042014-06-09 19:50:00 -0700104 /**
Matthew Williamsbe0c4172014-08-06 18:14:16 -0700105 * Minimum # of charging jobs that must be ready in order to force the JMS to schedule things
106 * early.
107 */
108 static final int MIN_CHARGING_COUNT = 1;
109 /**
Christopher Tate7060b042014-06-09 19:50:00 -0700110 * Minimum # of connectivity jobs that must be ready in order to force the JMS to schedule
111 * things early.
112 */
Matthew Williamsaa984312015-10-15 16:08:05 -0700113 static final int MIN_CONNECTIVITY_COUNT = 1; // Run connectivity jobs as soon as ready.
Christopher Tate7060b042014-06-09 19:50:00 -0700114 /**
Dianne Hackborn1a30bd92016-01-11 11:05:00 -0800115 * Minimum # of content trigger jobs that must be ready in order to force the JMS to schedule
116 * things early.
117 */
118 static final int MIN_CONTENT_COUNT = 1;
119 /**
Christopher Tate7060b042014-06-09 19:50:00 -0700120 * Minimum # of jobs (with no particular constraints) for which the JMS will be happy running
121 * some work early.
Matthew Williamsbe0c4172014-08-06 18:14:16 -0700122 * This is correlated with the amount of batching we'll be able to do.
Christopher Tate7060b042014-06-09 19:50:00 -0700123 */
Matthew Williamsbe0c4172014-08-06 18:14:16 -0700124 static final int MIN_READY_JOBS_COUNT = 2;
Christopher Tate7060b042014-06-09 19:50:00 -0700125
126 /**
127 * Track Services that have currently active or pending jobs. The index is provided by
128 * {@link JobStatus#getServiceToken()}
129 */
Dianne Hackborn88e98df2015-03-23 13:29:14 -0700130 final List<JobServiceContext> mActiveServices = new ArrayList<>();
Christopher Tate7060b042014-06-09 19:50:00 -0700131 /** List of controllers that will notify this service of updates to jobs. */
Dianne Hackbornfdb19562014-07-11 16:03:36 -0700132 List<StateController> mControllers;
Christopher Tate7060b042014-06-09 19:50:00 -0700133 /**
134 * Queue of pending jobs. The JobServiceContext class will receive jobs from this list
135 * when ready to execute them.
136 */
Dianne Hackborn88e98df2015-03-23 13:29:14 -0700137 final ArrayList<JobStatus> mPendingJobs = new ArrayList<>();
Christopher Tate7060b042014-06-09 19:50:00 -0700138
Shreyas Basarge5db09082016-01-07 13:38:29 +0000139 final ArrayList<Integer> mStartedUsers = new ArrayList<>();
Matthew Williams9ae3dbe2014-08-21 13:47:47 -0700140
Dianne Hackbornfdb19562014-07-11 16:03:36 -0700141 final JobHandler mHandler;
142 final JobSchedulerStub mJobSchedulerStub;
143
144 IBatteryStats mBatteryStats;
Dianne Hackborn88e98df2015-03-23 13:29:14 -0700145 PowerManager mPowerManager;
Dianne Hackborn627dfa12015-11-11 18:10:30 -0800146 DeviceIdleController.LocalService mLocalDeviceIdleController;
Dianne Hackbornfdb19562014-07-11 16:03:36 -0700147
148 /**
149 * Set to true once we are allowed to run third party apps.
150 */
151 boolean mReadyToRock;
152
Christopher Tate7060b042014-06-09 19:50:00 -0700153 /**
Dianne Hackborn88e98df2015-03-23 13:29:14 -0700154 * True when in device idle mode, so we don't want to schedule any jobs.
155 */
156 boolean mDeviceIdleMode;
157
158 /**
Dianne Hackborn627dfa12015-11-11 18:10:30 -0800159 * What we last reported to DeviceIdleController about wheter we are active.
160 */
161 boolean mReportedActive;
162
163 /**
Christopher Tate7060b042014-06-09 19:50:00 -0700164 * Cleans up outstanding jobs when a package is removed. Even if it's being replaced later we
165 * still clean up. On reinstall the package will have a new uid.
166 */
167 private final BroadcastReceiver mBroadcastReceiver = new BroadcastReceiver() {
168 @Override
169 public void onReceive(Context context, Intent intent) {
Shreyas Basarge5db09082016-01-07 13:38:29 +0000170 Slog.d(TAG, "Receieved: " + intent.getAction());
171 if (Intent.ACTION_PACKAGE_REMOVED.equals(intent.getAction())) {
Christopher Tateaad67a32014-10-20 16:29:20 -0700172 // If this is an outright uninstall rather than the first half of an
173 // app update sequence, cancel the jobs associated with the app.
174 if (!intent.getBooleanExtra(Intent.EXTRA_REPLACING, false)) {
175 int uidRemoved = intent.getIntExtra(Intent.EXTRA_UID, -1);
176 if (DEBUG) {
177 Slog.d(TAG, "Removing jobs for uid: " + uidRemoved);
178 }
Dianne Hackbornbef28fe2015-10-29 17:57:11 -0700179 cancelJobsForUid(uidRemoved, true);
Christopher Tate7060b042014-06-09 19:50:00 -0700180 }
Shreyas Basarge5db09082016-01-07 13:38:29 +0000181 } else if (Intent.ACTION_USER_REMOVED.equals(intent.getAction())) {
Christopher Tate7060b042014-06-09 19:50:00 -0700182 final int userId = intent.getIntExtra(Intent.EXTRA_USER_HANDLE, 0);
183 if (DEBUG) {
184 Slog.d(TAG, "Removing jobs for user: " + userId);
185 }
186 cancelJobsForUser(userId);
Shreyas Basarge5db09082016-01-07 13:38:29 +0000187 } else if (PowerManager.ACTION_LIGHT_DEVICE_IDLE_MODE_CHANGED.equals(intent.getAction())
188 || PowerManager.ACTION_DEVICE_IDLE_MODE_CHANGED.equals(intent.getAction())) {
Dianne Hackborn08c47a52015-10-15 12:38:14 -0700189 updateIdleMode(mPowerManager != null
190 ? (mPowerManager.isDeviceIdleMode()
Shreyas Basarge5db09082016-01-07 13:38:29 +0000191 || mPowerManager.isLightDeviceIdleMode())
Dianne Hackborn08c47a52015-10-15 12:38:14 -0700192 : false);
Christopher Tate7060b042014-06-09 19:50:00 -0700193 }
194 }
195 };
196
Dianne Hackbornbef28fe2015-10-29 17:57:11 -0700197 final private IUidObserver mUidObserver = new IUidObserver.Stub() {
198 @Override public void onUidStateChanged(int uid, int procState) throws RemoteException {
199 }
200
201 @Override public void onUidGone(int uid) throws RemoteException {
202 }
203
204 @Override public void onUidActive(int uid) throws RemoteException {
205 }
206
207 @Override public void onUidIdle(int uid) throws RemoteException {
208 cancelJobsForUid(uid, false);
209 }
210 };
211
Dianne Hackborn33d31c52016-02-16 10:30:33 -0800212 public Object getLock() {
213 return mLock;
214 }
215
Matthew Williams9ae3dbe2014-08-21 13:47:47 -0700216 @Override
217 public void onStartUser(int userHandle) {
Shreyas Basarge5db09082016-01-07 13:38:29 +0000218 mStartedUsers.add(userHandle);
Matthew Williams9ae3dbe2014-08-21 13:47:47 -0700219 // Let's kick any outstanding jobs for this user.
220 mHandler.obtainMessage(MSG_CHECK_JOB).sendToTarget();
221 }
222
223 @Override
224 public void onStopUser(int userHandle) {
Shreyas Basarge5db09082016-01-07 13:38:29 +0000225 mStartedUsers.remove(Integer.valueOf(userHandle));
Matthew Williams9ae3dbe2014-08-21 13:47:47 -0700226 }
227
Christopher Tate7060b042014-06-09 19:50:00 -0700228 /**
229 * Entry point from client to schedule the provided job.
230 * This cancels the job if it's already been scheduled, and replaces it with the one provided.
231 * @param job JobInfo object containing execution parameters
232 * @param uId The package identifier of the application this job is for.
Christopher Tate7060b042014-06-09 19:50:00 -0700233 * @return Result of this operation. See <code>JobScheduler#RESULT_*</code> return codes.
234 */
Matthew Williams900c67f2014-07-09 12:46:53 -0700235 public int schedule(JobInfo job, int uId) {
Shreyas Basarge968ac752016-01-11 23:09:26 +0000236 return scheduleAsPackage(job, uId, null, -1);
237 }
238
239 public int scheduleAsPackage(JobInfo job, int uId, String packageName, int userId) {
Dianne Hackborn33d31c52016-02-16 10:30:33 -0800240 JobStatus jobStatus = new JobStatus(getLock(), job, uId, packageName, userId);
Dianne Hackbornbef28fe2015-10-29 17:57:11 -0700241 try {
242 if (ActivityManagerNative.getDefault().getAppStartMode(uId,
243 job.getService().getPackageName()) == ActivityManager.APP_START_MODE_DISABLED) {
244 Slog.w(TAG, "Not scheduling job " + uId + ":" + job.toString()
245 + " -- package not allowed to start");
246 return JobScheduler.RESULT_FAILURE;
247 }
248 } catch (RemoteException e) {
249 }
Dianne Hackborn1a30bd92016-01-11 11:05:00 -0800250 if (DEBUG) Slog.d(TAG, "SCHEDULE: " + jobStatus.toShortString());
251 JobStatus toCancel;
Dianne Hackborn33d31c52016-02-16 10:30:33 -0800252 synchronized (mLock) {
Dianne Hackborn1a30bd92016-01-11 11:05:00 -0800253 toCancel = mJobs.getJobByUidAndJobId(uId, job.getId());
254 }
255 startTrackingJob(jobStatus, toCancel);
256 if (toCancel != null) {
257 cancelJobImpl(toCancel);
258 }
Matthew Williamsbafeeb92014-08-08 11:51:06 -0700259 mHandler.obtainMessage(MSG_CHECK_JOB).sendToTarget();
Christopher Tate7060b042014-06-09 19:50:00 -0700260 return JobScheduler.RESULT_SUCCESS;
261 }
262
263 public List<JobInfo> getPendingJobs(int uid) {
264 ArrayList<JobInfo> outList = new ArrayList<JobInfo>();
Dianne Hackborn33d31c52016-02-16 10:30:33 -0800265 synchronized (mLock) {
Dianne Hackbornfdb19562014-07-11 16:03:36 -0700266 ArraySet<JobStatus> jobs = mJobs.getJobs();
267 for (int i=0; i<jobs.size(); i++) {
268 JobStatus job = jobs.valueAt(i);
Christopher Tate7060b042014-06-09 19:50:00 -0700269 if (job.getUid() == uid) {
270 outList.add(job.getJob());
271 }
272 }
273 }
274 return outList;
275 }
276
Dianne Hackborn88e98df2015-03-23 13:29:14 -0700277 void cancelJobsForUser(int userHandle) {
Matthew Williams48a30db2014-09-23 13:39:36 -0700278 List<JobStatus> jobsForUser;
Dianne Hackborn33d31c52016-02-16 10:30:33 -0800279 synchronized (mLock) {
Matthew Williams48a30db2014-09-23 13:39:36 -0700280 jobsForUser = mJobs.getJobsByUser(userHandle);
281 }
282 for (int i=0; i<jobsForUser.size(); i++) {
283 JobStatus toRemove = jobsForUser.get(i);
284 cancelJobImpl(toRemove);
Christopher Tate7060b042014-06-09 19:50:00 -0700285 }
286 }
287
288 /**
289 * Entry point from client to cancel all jobs originating from their uid.
290 * This will remove the job from the master list, and cancel the job if it was staged for
291 * execution or being executed.
Matthew Williams48a30db2014-09-23 13:39:36 -0700292 * @param uid Uid to check against for removal of a job.
Dianne Hackbornbef28fe2015-10-29 17:57:11 -0700293 * @param forceAll If true, all jobs for the uid will be canceled; if false, only those
294 * whose apps are stopped.
Christopher Tate7060b042014-06-09 19:50:00 -0700295 */
Dianne Hackbornbef28fe2015-10-29 17:57:11 -0700296 public void cancelJobsForUid(int uid, boolean forceAll) {
Matthew Williams48a30db2014-09-23 13:39:36 -0700297 List<JobStatus> jobsForUid;
Dianne Hackborn33d31c52016-02-16 10:30:33 -0800298 synchronized (mLock) {
Matthew Williams48a30db2014-09-23 13:39:36 -0700299 jobsForUid = mJobs.getJobsByUid(uid);
300 }
301 for (int i=0; i<jobsForUid.size(); i++) {
302 JobStatus toRemove = jobsForUid.get(i);
Dianne Hackbornbef28fe2015-10-29 17:57:11 -0700303 if (!forceAll) {
304 String packageName = toRemove.getServiceComponent().getPackageName();
305 try {
306 if (ActivityManagerNative.getDefault().getAppStartMode(uid, packageName)
307 != ActivityManager.APP_START_MODE_DISABLED) {
308 continue;
309 }
310 } catch (RemoteException e) {
311 }
312 }
Matthew Williams48a30db2014-09-23 13:39:36 -0700313 cancelJobImpl(toRemove);
Christopher Tate7060b042014-06-09 19:50:00 -0700314 }
315 }
316
317 /**
318 * Entry point from client to cancel the job corresponding to the jobId provided.
319 * This will remove the job from the master list, and cancel the job if it was staged for
320 * execution or being executed.
321 * @param uid Uid of the calling client.
322 * @param jobId Id of the job, provided at schedule-time.
323 */
324 public void cancelJob(int uid, int jobId) {
325 JobStatus toCancel;
Dianne Hackborn33d31c52016-02-16 10:30:33 -0800326 synchronized (mLock) {
Christopher Tate7060b042014-06-09 19:50:00 -0700327 toCancel = mJobs.getJobByUidAndJobId(uid, jobId);
Matthew Williams48a30db2014-09-23 13:39:36 -0700328 }
329 if (toCancel != null) {
330 cancelJobImpl(toCancel);
Christopher Tate7060b042014-06-09 19:50:00 -0700331 }
332 }
333
Matthew Williams48a30db2014-09-23 13:39:36 -0700334 private void cancelJobImpl(JobStatus cancelled) {
Dianne Hackborn1a30bd92016-01-11 11:05:00 -0800335 if (DEBUG) Slog.d(TAG, "CANCEL: " + cancelled.toShortString());
Shreyas Basarge73f10252016-02-11 17:06:13 +0000336 stopTrackingJob(cancelled, true /* writeBack */);
Dianne Hackborn33d31c52016-02-16 10:30:33 -0800337 synchronized (mLock) {
Matthew Williams48a30db2014-09-23 13:39:36 -0700338 // Remove from pending queue.
339 mPendingJobs.remove(cancelled);
340 // Cancel if running.
Shreyas Basarge5db09082016-01-07 13:38:29 +0000341 stopJobOnServiceContextLocked(cancelled, JobParameters.REASON_CANCELED);
Dianne Hackborn627dfa12015-11-11 18:10:30 -0800342 reportActive();
Matthew Williams48a30db2014-09-23 13:39:36 -0700343 }
Christopher Tate7060b042014-06-09 19:50:00 -0700344 }
345
Dianne Hackborn88e98df2015-03-23 13:29:14 -0700346 void updateIdleMode(boolean enabled) {
347 boolean changed = false;
348 boolean rocking;
Dianne Hackborn33d31c52016-02-16 10:30:33 -0800349 synchronized (mLock) {
Dianne Hackborn88e98df2015-03-23 13:29:14 -0700350 if (mDeviceIdleMode != enabled) {
351 changed = true;
352 }
353 rocking = mReadyToRock;
354 }
355 if (changed) {
356 if (rocking) {
357 for (int i=0; i<mControllers.size(); i++) {
358 mControllers.get(i).deviceIdleModeChanged(enabled);
359 }
360 }
Dianne Hackborn33d31c52016-02-16 10:30:33 -0800361 synchronized (mLock) {
Dianne Hackborn88e98df2015-03-23 13:29:14 -0700362 mDeviceIdleMode = enabled;
363 if (enabled) {
364 // When becoming idle, make sure no jobs are actively running.
365 for (int i=0; i<mActiveServices.size(); i++) {
366 JobServiceContext jsc = mActiveServices.get(i);
367 final JobStatus executing = jsc.getRunningJob();
368 if (executing != null) {
Shreyas Basarge5db09082016-01-07 13:38:29 +0000369 jsc.cancelExecutingJob(JobParameters.REASON_DEVICE_IDLE);
Dianne Hackborn88e98df2015-03-23 13:29:14 -0700370 }
371 }
372 } else {
373 // When coming out of idle, allow thing to start back up.
Dianne Hackborn627dfa12015-11-11 18:10:30 -0800374 if (rocking) {
375 if (mLocalDeviceIdleController != null) {
376 if (!mReportedActive) {
377 mReportedActive = true;
378 mLocalDeviceIdleController.setJobsActive(true);
379 }
380 }
381 }
Dianne Hackborn88e98df2015-03-23 13:29:14 -0700382 mHandler.obtainMessage(MSG_CHECK_JOB).sendToTarget();
383 }
384 }
385 }
386 }
387
Dianne Hackborn627dfa12015-11-11 18:10:30 -0800388 void reportActive() {
Shreyas Basarge4cff8ac2015-12-10 21:32:52 +0000389 // active is true if pending queue contains jobs OR some job is running.
390 boolean active = mPendingJobs.size() > 0;
Dianne Hackborn627dfa12015-11-11 18:10:30 -0800391 if (mPendingJobs.size() <= 0) {
392 for (int i=0; i<mActiveServices.size(); i++) {
393 JobServiceContext jsc = mActiveServices.get(i);
Shreyas Basarge5db09082016-01-07 13:38:29 +0000394 if (jsc.getRunningJob() != null) {
Dianne Hackborn627dfa12015-11-11 18:10:30 -0800395 active = true;
396 break;
397 }
398 }
399 }
Shreyas Basarge4cff8ac2015-12-10 21:32:52 +0000400
401 if (mReportedActive != active) {
402 mReportedActive = active;
403 if (mLocalDeviceIdleController != null) {
Dianne Hackborn627dfa12015-11-11 18:10:30 -0800404 mLocalDeviceIdleController.setJobsActive(active);
405 }
406 }
407 }
408
Christopher Tate7060b042014-06-09 19:50:00 -0700409 /**
410 * Initializes the system service.
411 * <p>
412 * Subclasses must define a single argument constructor that accepts the context
413 * and passes it to super.
414 * </p>
415 *
416 * @param context The system server context.
417 */
418 public JobSchedulerService(Context context) {
419 super(context);
420 // Create the controllers.
Dianne Hackbornfdb19562014-07-11 16:03:36 -0700421 mControllers = new ArrayList<StateController>();
Christopher Tate7060b042014-06-09 19:50:00 -0700422 mControllers.add(ConnectivityController.get(this));
423 mControllers.add(TimeController.get(this));
424 mControllers.add(IdleController.get(this));
425 mControllers.add(BatteryController.get(this));
Amith Yamasanib0ff3222015-03-04 09:56:14 -0800426 mControllers.add(AppIdleController.get(this));
Dianne Hackborn1a30bd92016-01-11 11:05:00 -0800427 mControllers.add(ContentObserverController.get(this));
Christopher Tate7060b042014-06-09 19:50:00 -0700428
429 mHandler = new JobHandler(context.getMainLooper());
430 mJobSchedulerStub = new JobSchedulerStub();
Christopher Tate7060b042014-06-09 19:50:00 -0700431 mJobs = JobStore.initAndGet(this);
432 }
433
434 @Override
435 public void onStart() {
436 publishBinderService(Context.JOB_SCHEDULER_SERVICE, mJobSchedulerStub);
437 }
438
439 @Override
440 public void onBootPhase(int phase) {
441 if (PHASE_SYSTEM_SERVICES_READY == phase) {
Shreyas Basarge5db09082016-01-07 13:38:29 +0000442 // Register br for package removals and user removals.
Christopher Tate7060b042014-06-09 19:50:00 -0700443 final IntentFilter filter = new IntentFilter(Intent.ACTION_PACKAGE_REMOVED);
444 filter.addDataScheme("package");
445 getContext().registerReceiverAsUser(
446 mBroadcastReceiver, UserHandle.ALL, filter, null, null);
447 final IntentFilter userFilter = new IntentFilter(Intent.ACTION_USER_REMOVED);
Dianne Hackborn88e98df2015-03-23 13:29:14 -0700448 userFilter.addAction(PowerManager.ACTION_DEVICE_IDLE_MODE_CHANGED);
Dianne Hackborn08c47a52015-10-15 12:38:14 -0700449 userFilter.addAction(PowerManager.ACTION_LIGHT_DEVICE_IDLE_MODE_CHANGED);
Christopher Tate7060b042014-06-09 19:50:00 -0700450 getContext().registerReceiverAsUser(
451 mBroadcastReceiver, UserHandle.ALL, userFilter, null, null);
Shreyas Basarge5db09082016-01-07 13:38:29 +0000452 mPowerManager = (PowerManager)getContext().getSystemService(Context.POWER_SERVICE);
Dianne Hackbornbef28fe2015-10-29 17:57:11 -0700453 try {
454 ActivityManagerNative.getDefault().registerUidObserver(mUidObserver,
455 ActivityManager.UID_OBSERVER_IDLE);
456 } catch (RemoteException e) {
457 // ignored; both services live in system_server
458 }
Dianne Hackbornfdb19562014-07-11 16:03:36 -0700459 } else if (phase == PHASE_THIRD_PARTY_APPS_CAN_START) {
Dianne Hackborn33d31c52016-02-16 10:30:33 -0800460 synchronized (mLock) {
Dianne Hackbornfdb19562014-07-11 16:03:36 -0700461 // Let's go!
462 mReadyToRock = true;
463 mBatteryStats = IBatteryStats.Stub.asInterface(ServiceManager.getService(
464 BatteryStats.SERVICE_NAME));
Dianne Hackborn627dfa12015-11-11 18:10:30 -0800465 mLocalDeviceIdleController
466 = LocalServices.getService(DeviceIdleController.LocalService.class);
Dianne Hackbornfdb19562014-07-11 16:03:36 -0700467 // Create the "runners".
468 for (int i = 0; i < MAX_JOB_CONTEXTS_COUNT; i++) {
469 mActiveServices.add(
470 new JobServiceContext(this, mBatteryStats,
471 getContext().getMainLooper()));
472 }
473 // Attach jobs to their controllers.
474 ArraySet<JobStatus> jobs = mJobs.getJobs();
475 for (int i=0; i<jobs.size(); i++) {
476 JobStatus job = jobs.valueAt(i);
Christopher Tate4a79dae2014-07-18 17:01:40 -0700477 for (int controller=0; controller<mControllers.size(); controller++) {
Dianne Hackborn2bf51f42015-03-24 14:17:12 -0700478 mControllers.get(controller).deviceIdleModeChanged(mDeviceIdleMode);
Dianne Hackborn1a30bd92016-01-11 11:05:00 -0800479 mControllers.get(controller).maybeStartTrackingJob(job, null);
Dianne Hackbornfdb19562014-07-11 16:03:36 -0700480 }
481 }
482 // GO GO GO!
483 mHandler.obtainMessage(MSG_CHECK_JOB).sendToTarget();
484 }
Christopher Tate7060b042014-06-09 19:50:00 -0700485 }
486 }
487
488 /**
489 * Called when we have a job status object that we need to insert in our
490 * {@link com.android.server.job.JobStore}, and make sure all the relevant controllers know
491 * about.
492 */
Dianne Hackborn1a30bd92016-01-11 11:05:00 -0800493 private void startTrackingJob(JobStatus jobStatus, JobStatus lastJob) {
Christopher Tate7060b042014-06-09 19:50:00 -0700494 boolean update;
Dianne Hackbornfdb19562014-07-11 16:03:36 -0700495 boolean rocking;
Dianne Hackborn33d31c52016-02-16 10:30:33 -0800496 synchronized (mLock) {
Christopher Tate7060b042014-06-09 19:50:00 -0700497 update = mJobs.add(jobStatus);
Dianne Hackbornfdb19562014-07-11 16:03:36 -0700498 rocking = mReadyToRock;
Christopher Tate7060b042014-06-09 19:50:00 -0700499 }
Dianne Hackbornfdb19562014-07-11 16:03:36 -0700500 if (rocking) {
501 for (int i=0; i<mControllers.size(); i++) {
502 StateController controller = mControllers.get(i);
503 if (update) {
Dianne Hackborn1a30bd92016-01-11 11:05:00 -0800504 controller.maybeStopTrackingJob(jobStatus, true);
Dianne Hackbornfdb19562014-07-11 16:03:36 -0700505 }
Dianne Hackborn1a30bd92016-01-11 11:05:00 -0800506 controller.maybeStartTrackingJob(jobStatus, lastJob);
Christopher Tate7060b042014-06-09 19:50:00 -0700507 }
Christopher Tate7060b042014-06-09 19:50:00 -0700508 }
509 }
510
511 /**
512 * Called when we want to remove a JobStatus object that we've finished executing. Returns the
513 * object removed.
514 */
Shreyas Basarge73f10252016-02-11 17:06:13 +0000515 private boolean stopTrackingJob(JobStatus jobStatus, boolean writeBack) {
Christopher Tate7060b042014-06-09 19:50:00 -0700516 boolean removed;
Dianne Hackbornfdb19562014-07-11 16:03:36 -0700517 boolean rocking;
Dianne Hackborn33d31c52016-02-16 10:30:33 -0800518 synchronized (mLock) {
Christopher Tate7060b042014-06-09 19:50:00 -0700519 // Remove from store as well as controllers.
Shreyas Basarge73f10252016-02-11 17:06:13 +0000520 removed = mJobs.remove(jobStatus, writeBack);
Dianne Hackbornfdb19562014-07-11 16:03:36 -0700521 rocking = mReadyToRock;
Christopher Tate7060b042014-06-09 19:50:00 -0700522 }
Dianne Hackbornfdb19562014-07-11 16:03:36 -0700523 if (removed && rocking) {
524 for (int i=0; i<mControllers.size(); i++) {
525 StateController controller = mControllers.get(i);
Dianne Hackborn1a30bd92016-01-11 11:05:00 -0800526 controller.maybeStopTrackingJob(jobStatus, false);
Christopher Tate7060b042014-06-09 19:50:00 -0700527 }
528 }
529 return removed;
530 }
531
Shreyas Basarge5db09082016-01-07 13:38:29 +0000532 private boolean stopJobOnServiceContextLocked(JobStatus job, int reason) {
Dianne Hackbornfdb19562014-07-11 16:03:36 -0700533 for (int i=0; i<mActiveServices.size(); i++) {
534 JobServiceContext jsc = mActiveServices.get(i);
Christopher Tate7060b042014-06-09 19:50:00 -0700535 final JobStatus executing = jsc.getRunningJob();
536 if (executing != null && executing.matches(job.getUid(), job.getJobId())) {
Shreyas Basarge5db09082016-01-07 13:38:29 +0000537 jsc.cancelExecutingJob(reason);
Christopher Tate7060b042014-06-09 19:50:00 -0700538 return true;
539 }
540 }
541 return false;
542 }
543
544 /**
545 * @param job JobStatus we are querying against.
546 * @return Whether or not the job represented by the status object is currently being run or
547 * is pending.
548 */
549 private boolean isCurrentlyActiveLocked(JobStatus job) {
Dianne Hackbornfdb19562014-07-11 16:03:36 -0700550 for (int i=0; i<mActiveServices.size(); i++) {
551 JobServiceContext serviceContext = mActiveServices.get(i);
Christopher Tate7060b042014-06-09 19:50:00 -0700552 final JobStatus running = serviceContext.getRunningJob();
553 if (running != null && running.matches(job.getUid(), job.getJobId())) {
554 return true;
555 }
556 }
557 return false;
558 }
559
560 /**
Matthew Williams1bde39a2015-10-07 14:29:30 -0700561 * Reschedules the given job based on the job's backoff policy. It doesn't make sense to
562 * specify an override deadline on a failed job (the failed job will run even though it's not
563 * ready), so we reschedule it with {@link JobStatus#NO_LATEST_RUNTIME}, but specify that any
564 * ready job with {@link JobStatus#numFailures} > 0 will be executed.
565 *
Christopher Tate7060b042014-06-09 19:50:00 -0700566 * @param failureToReschedule Provided job status that we will reschedule.
567 * @return A newly instantiated JobStatus with the same constraints as the last job except
568 * with adjusted timing constraints.
Matthew Williams1bde39a2015-10-07 14:29:30 -0700569 *
570 * @see JobHandler#maybeQueueReadyJobsForExecutionLockedH
Christopher Tate7060b042014-06-09 19:50:00 -0700571 */
572 private JobStatus getRescheduleJobForFailure(JobStatus failureToReschedule) {
573 final long elapsedNowMillis = SystemClock.elapsedRealtime();
574 final JobInfo job = failureToReschedule.getJob();
575
576 final long initialBackoffMillis = job.getInitialBackoffMillis();
Matthew Williamsd1c06752014-08-22 14:15:28 -0700577 final int backoffAttempts = failureToReschedule.getNumFailures() + 1;
578 long delayMillis;
Christopher Tate7060b042014-06-09 19:50:00 -0700579
580 switch (job.getBackoffPolicy()) {
Matthew Williamsd1c06752014-08-22 14:15:28 -0700581 case JobInfo.BACKOFF_POLICY_LINEAR:
582 delayMillis = initialBackoffMillis * backoffAttempts;
Christopher Tate7060b042014-06-09 19:50:00 -0700583 break;
584 default:
585 if (DEBUG) {
586 Slog.v(TAG, "Unrecognised back-off policy, defaulting to exponential.");
587 }
Matthew Williamsd1c06752014-08-22 14:15:28 -0700588 case JobInfo.BACKOFF_POLICY_EXPONENTIAL:
589 delayMillis =
590 (long) Math.scalb(initialBackoffMillis, backoffAttempts - 1);
Christopher Tate7060b042014-06-09 19:50:00 -0700591 break;
592 }
Matthew Williamsd1c06752014-08-22 14:15:28 -0700593 delayMillis =
594 Math.min(delayMillis, JobInfo.MAX_BACKOFF_DELAY_MILLIS);
Dianne Hackborn1a30bd92016-01-11 11:05:00 -0800595 JobStatus newJob = new JobStatus(failureToReschedule, elapsedNowMillis + delayMillis,
Matthew Williamsd1c06752014-08-22 14:15:28 -0700596 JobStatus.NO_LATEST_RUNTIME, backoffAttempts);
Dianne Hackborn1a30bd92016-01-11 11:05:00 -0800597 for (int ic=0; ic<mControllers.size(); ic++) {
598 StateController controller = mControllers.get(ic);
599 controller.rescheduleForFailure(newJob, failureToReschedule);
600 }
601 return newJob;
Christopher Tate7060b042014-06-09 19:50:00 -0700602 }
603
604 /**
Matthew Williams1bde39a2015-10-07 14:29:30 -0700605 * Called after a periodic has executed so we can reschedule it. We take the last execution
606 * time of the job to be the time of completion (i.e. the time at which this function is
607 * called).
Christopher Tate7060b042014-06-09 19:50:00 -0700608 * This could be inaccurate b/c the job can run for as long as
609 * {@link com.android.server.job.JobServiceContext#EXECUTING_TIMESLICE_MILLIS}, but will lead
610 * to underscheduling at least, rather than if we had taken the last execution time to be the
611 * start of the execution.
612 * @return A new job representing the execution criteria for this instantiation of the
613 * recurring job.
614 */
615 private JobStatus getRescheduleJobForPeriodic(JobStatus periodicToReschedule) {
616 final long elapsedNow = SystemClock.elapsedRealtime();
617 // Compute how much of the period is remaining.
Matthew Williams1bde39a2015-10-07 14:29:30 -0700618 long runEarly = 0L;
619
620 // If this periodic was rescheduled it won't have a deadline.
621 if (periodicToReschedule.hasDeadlineConstraint()) {
622 runEarly = Math.max(periodicToReschedule.getLatestRunTimeElapsed() - elapsedNow, 0L);
623 }
Shreyas Basarge89ee6182015-12-17 15:16:36 +0000624 long flex = periodicToReschedule.getJob().getFlexMillis();
Christopher Tate7060b042014-06-09 19:50:00 -0700625 long period = periodicToReschedule.getJob().getIntervalMillis();
Shreyas Basarge89ee6182015-12-17 15:16:36 +0000626 long newLatestRuntimeElapsed = elapsedNow + runEarly + period;
627 long newEarliestRunTimeElapsed = newLatestRuntimeElapsed - flex;
Christopher Tate7060b042014-06-09 19:50:00 -0700628
629 if (DEBUG) {
630 Slog.v(TAG, "Rescheduling executed periodic. New execution window [" +
631 newEarliestRunTimeElapsed/1000 + ", " + newLatestRuntimeElapsed/1000 + "]s");
632 }
633 return new JobStatus(periodicToReschedule, newEarliestRunTimeElapsed,
634 newLatestRuntimeElapsed, 0 /* backoffAttempt */);
635 }
636
637 // JobCompletedListener implementations.
638
639 /**
640 * A job just finished executing. We fetch the
641 * {@link com.android.server.job.controllers.JobStatus} from the store and depending on
642 * whether we want to reschedule we readd it to the controllers.
643 * @param jobStatus Completed job.
644 * @param needsReschedule Whether the implementing class should reschedule this job.
645 */
646 @Override
647 public void onJobCompleted(JobStatus jobStatus, boolean needsReschedule) {
648 if (DEBUG) {
649 Slog.d(TAG, "Completed " + jobStatus + ", reschedule=" + needsReschedule);
650 }
Shreyas Basarge73f10252016-02-11 17:06:13 +0000651 // Do not write back immediately if this is a periodic job. The job may get lost if system
652 // shuts down before it is added back.
653 if (!stopTrackingJob(jobStatus, !jobStatus.getJob().isPeriodic())) {
Christopher Tate7060b042014-06-09 19:50:00 -0700654 if (DEBUG) {
Matthew Williamsee410da2014-07-25 11:30:40 -0700655 Slog.d(TAG, "Could not find job to remove. Was job removed while executing?");
Christopher Tate7060b042014-06-09 19:50:00 -0700656 }
Dianne Hackborn1a30bd92016-01-11 11:05:00 -0800657 // We still want to check for jobs to execute, because this job may have
658 // scheduled a new job under the same job id, and now we can run it.
659 mHandler.obtainMessage(MSG_CHECK_JOB_GREEDY).sendToTarget();
Christopher Tate7060b042014-06-09 19:50:00 -0700660 return;
661 }
Dianne Hackborn1a30bd92016-01-11 11:05:00 -0800662 // Note: there is a small window of time in here where, when rescheduling a job,
663 // we will stop monitoring its content providers. This should be fixed by stopping
664 // the old job after scheduling the new one, but since we have no lock held here
665 // that may cause ordering problems if the app removes jobStatus while in here.
Christopher Tate7060b042014-06-09 19:50:00 -0700666 if (needsReschedule) {
667 JobStatus rescheduled = getRescheduleJobForFailure(jobStatus);
Dianne Hackborn1a30bd92016-01-11 11:05:00 -0800668 startTrackingJob(rescheduled, jobStatus);
Christopher Tate7060b042014-06-09 19:50:00 -0700669 } else if (jobStatus.getJob().isPeriodic()) {
670 JobStatus rescheduledPeriodic = getRescheduleJobForPeriodic(jobStatus);
Dianne Hackborn1a30bd92016-01-11 11:05:00 -0800671 startTrackingJob(rescheduledPeriodic, jobStatus);
Christopher Tate7060b042014-06-09 19:50:00 -0700672 }
Shreyas Basarge4cff8ac2015-12-10 21:32:52 +0000673 reportActive();
674 mHandler.obtainMessage(MSG_CHECK_JOB_GREEDY).sendToTarget();
Christopher Tate7060b042014-06-09 19:50:00 -0700675 }
676
677 // StateChangedListener implementations.
678
679 /**
Matthew Williams48a30db2014-09-23 13:39:36 -0700680 * Posts a message to the {@link com.android.server.job.JobSchedulerService.JobHandler} that
681 * some controller's state has changed, so as to run through the list of jobs and start/stop
682 * any that are eligible.
Christopher Tate7060b042014-06-09 19:50:00 -0700683 */
684 @Override
685 public void onControllerStateChanged() {
Matthew Williams48a30db2014-09-23 13:39:36 -0700686 mHandler.obtainMessage(MSG_CHECK_JOB).sendToTarget();
Christopher Tate7060b042014-06-09 19:50:00 -0700687 }
688
689 @Override
690 public void onRunJobNow(JobStatus jobStatus) {
691 mHandler.obtainMessage(MSG_JOB_EXPIRED, jobStatus).sendToTarget();
692 }
693
Christopher Tate7060b042014-06-09 19:50:00 -0700694 private class JobHandler extends Handler {
695
696 public JobHandler(Looper looper) {
697 super(looper);
698 }
699
700 @Override
701 public void handleMessage(Message message) {
Dianne Hackborn33d31c52016-02-16 10:30:33 -0800702 synchronized (mLock) {
Matthew Williams48a30db2014-09-23 13:39:36 -0700703 if (!mReadyToRock) {
704 return;
705 }
706 }
Christopher Tate7060b042014-06-09 19:50:00 -0700707 switch (message.what) {
708 case MSG_JOB_EXPIRED:
Dianne Hackborn33d31c52016-02-16 10:30:33 -0800709 synchronized (mLock) {
Christopher Tate7060b042014-06-09 19:50:00 -0700710 JobStatus runNow = (JobStatus) message.obj;
Matthew Williamsbafeeb92014-08-08 11:51:06 -0700711 // runNow can be null, which is a controller's way of indicating that its
712 // state is such that all ready jobs should be run immediately.
Matthew Williams48a30db2014-09-23 13:39:36 -0700713 if (runNow != null && !mPendingJobs.contains(runNow)
714 && mJobs.containsJob(runNow)) {
Christopher Tate7060b042014-06-09 19:50:00 -0700715 mPendingJobs.add(runNow);
716 }
Matthew Williams48a30db2014-09-23 13:39:36 -0700717 queueReadyJobsForExecutionLockedH();
Christopher Tate7060b042014-06-09 19:50:00 -0700718 }
Christopher Tate7060b042014-06-09 19:50:00 -0700719 break;
720 case MSG_CHECK_JOB:
Dianne Hackborn33d31c52016-02-16 10:30:33 -0800721 synchronized (mLock) {
Shreyas Basarge4cff8ac2015-12-10 21:32:52 +0000722 if (mReportedActive) {
723 // if jobs are currently being run, queue all ready jobs for execution.
724 queueReadyJobsForExecutionLockedH();
725 } else {
726 // Check the list of jobs and run some of them if we feel inclined.
727 maybeQueueReadyJobsForExecutionLockedH();
728 }
729 }
730 break;
731 case MSG_CHECK_JOB_GREEDY:
Dianne Hackborn33d31c52016-02-16 10:30:33 -0800732 synchronized (mLock) {
Shreyas Basarge4cff8ac2015-12-10 21:32:52 +0000733 queueReadyJobsForExecutionLockedH();
Matthew Williams48a30db2014-09-23 13:39:36 -0700734 }
Christopher Tate7060b042014-06-09 19:50:00 -0700735 break;
Dianne Hackbornbef28fe2015-10-29 17:57:11 -0700736 case MSG_STOP_JOB:
737 cancelJobImpl((JobStatus)message.obj);
738 break;
Christopher Tate7060b042014-06-09 19:50:00 -0700739 }
740 maybeRunPendingJobsH();
741 // Don't remove JOB_EXPIRED in case one came along while processing the queue.
742 removeMessages(MSG_CHECK_JOB);
743 }
744
745 /**
746 * Run through list of jobs and execute all possible - at least one is expired so we do
747 * as many as we can.
748 */
Matthew Williams48a30db2014-09-23 13:39:36 -0700749 private void queueReadyJobsForExecutionLockedH() {
750 ArraySet<JobStatus> jobs = mJobs.getJobs();
Shreyas Basarge5db09082016-01-07 13:38:29 +0000751 mPendingJobs.clear();
Matthew Williams48a30db2014-09-23 13:39:36 -0700752 if (DEBUG) {
753 Slog.d(TAG, "queuing all ready jobs for execution:");
754 }
755 for (int i=0; i<jobs.size(); i++) {
756 JobStatus job = jobs.valueAt(i);
757 if (isReadyToBeExecutedLocked(job)) {
758 if (DEBUG) {
759 Slog.d(TAG, " queued " + job.toShortString());
Christopher Tate7060b042014-06-09 19:50:00 -0700760 }
Matthew Williams48a30db2014-09-23 13:39:36 -0700761 mPendingJobs.add(job);
Shreyas Basarge5db09082016-01-07 13:38:29 +0000762 } else if (areJobConstraintsNotSatisfied(job)) {
763 stopJobOnServiceContextLocked(job,
764 JobParameters.REASON_CONSTRAINTS_NOT_SATISFIED);
Christopher Tate7060b042014-06-09 19:50:00 -0700765 }
Matthew Williams48a30db2014-09-23 13:39:36 -0700766 }
767 if (DEBUG) {
768 final int queuedJobs = mPendingJobs.size();
769 if (queuedJobs == 0) {
770 Slog.d(TAG, "No jobs pending.");
771 } else {
772 Slog.d(TAG, queuedJobs + " jobs queued.");
Matthew Williams75fc5252014-09-02 16:17:53 -0700773 }
Christopher Tate7060b042014-06-09 19:50:00 -0700774 }
775 }
776
777 /**
778 * The state of at least one job has changed. Here is where we could enforce various
779 * policies on when we want to execute jobs.
780 * Right now the policy is such:
781 * If >1 of the ready jobs is idle mode we send all of them off
782 * if more than 2 network connectivity jobs are ready we send them all off.
783 * If more than 4 jobs total are ready we send them all off.
784 * TODO: It would be nice to consolidate these sort of high-level policies somewhere.
785 */
Matthew Williams48a30db2014-09-23 13:39:36 -0700786 private void maybeQueueReadyJobsForExecutionLockedH() {
Shreyas Basarge5db09082016-01-07 13:38:29 +0000787 mPendingJobs.clear();
Matthew Williams48a30db2014-09-23 13:39:36 -0700788 int chargingCount = 0;
Shreyas Basarge5db09082016-01-07 13:38:29 +0000789 int idleCount = 0;
Matthew Williams48a30db2014-09-23 13:39:36 -0700790 int backoffCount = 0;
791 int connectivityCount = 0;
Dianne Hackborn1a30bd92016-01-11 11:05:00 -0800792 int contentCount = 0;
Dianne Hackbornbef28fe2015-10-29 17:57:11 -0700793 List<JobStatus> runnableJobs = null;
Matthew Williams48a30db2014-09-23 13:39:36 -0700794 ArraySet<JobStatus> jobs = mJobs.getJobs();
Dianne Hackborn1a30bd92016-01-11 11:05:00 -0800795 if (DEBUG) Slog.d(TAG, "Maybe queuing ready jobs...");
Matthew Williams48a30db2014-09-23 13:39:36 -0700796 for (int i=0; i<jobs.size(); i++) {
797 JobStatus job = jobs.valueAt(i);
798 if (isReadyToBeExecutedLocked(job)) {
Dianne Hackbornbef28fe2015-10-29 17:57:11 -0700799 try {
800 if (ActivityManagerNative.getDefault().getAppStartMode(job.getUid(),
801 job.getJob().getService().getPackageName())
802 == ActivityManager.APP_START_MODE_DISABLED) {
803 Slog.w(TAG, "Aborting job " + job.getUid() + ":"
804 + job.getJob().toString() + " -- package not allowed to start");
805 mHandler.obtainMessage(MSG_STOP_JOB, job).sendToTarget();
806 continue;
807 }
808 } catch (RemoteException e) {
809 }
Matthew Williams48a30db2014-09-23 13:39:36 -0700810 if (job.getNumFailures() > 0) {
811 backoffCount++;
Christopher Tate7060b042014-06-09 19:50:00 -0700812 }
Matthew Williams48a30db2014-09-23 13:39:36 -0700813 if (job.hasIdleConstraint()) {
814 idleCount++;
815 }
816 if (job.hasConnectivityConstraint() || job.hasUnmeteredConstraint()) {
817 connectivityCount++;
818 }
819 if (job.hasChargingConstraint()) {
820 chargingCount++;
821 }
Dianne Hackborn1a30bd92016-01-11 11:05:00 -0800822 if (job.hasContentTriggerConstraint()) {
823 contentCount++;
824 }
Dianne Hackbornbef28fe2015-10-29 17:57:11 -0700825 if (runnableJobs == null) {
826 runnableJobs = new ArrayList<>();
827 }
Matthew Williams48a30db2014-09-23 13:39:36 -0700828 runnableJobs.add(job);
Shreyas Basarge5db09082016-01-07 13:38:29 +0000829 } else if (areJobConstraintsNotSatisfied(job)) {
830 stopJobOnServiceContextLocked(job,
831 JobParameters.REASON_CONSTRAINTS_NOT_SATISFIED);
Christopher Tate7060b042014-06-09 19:50:00 -0700832 }
Matthew Williams48a30db2014-09-23 13:39:36 -0700833 }
834 if (backoffCount > 0 ||
835 idleCount >= MIN_IDLE_COUNT ||
836 connectivityCount >= MIN_CONNECTIVITY_COUNT ||
837 chargingCount >= MIN_CHARGING_COUNT ||
Dianne Hackborn1a30bd92016-01-11 11:05:00 -0800838 contentCount >= MIN_CONTENT_COUNT ||
Dianne Hackbornbef28fe2015-10-29 17:57:11 -0700839 (runnableJobs != null && runnableJobs.size() >= MIN_READY_JOBS_COUNT)) {
Matthew Williamsbe0c4172014-08-06 18:14:16 -0700840 if (DEBUG) {
Matthew Williams48a30db2014-09-23 13:39:36 -0700841 Slog.d(TAG, "maybeQueueReadyJobsForExecutionLockedH: Running jobs.");
Christopher Tate7060b042014-06-09 19:50:00 -0700842 }
Matthew Williams48a30db2014-09-23 13:39:36 -0700843 for (int i=0; i<runnableJobs.size(); i++) {
844 mPendingJobs.add(runnableJobs.get(i));
845 }
846 } else {
847 if (DEBUG) {
848 Slog.d(TAG, "maybeQueueReadyJobsForExecutionLockedH: Not running anything.");
849 }
850 }
Christopher Tate7060b042014-06-09 19:50:00 -0700851 }
852
853 /**
854 * Criteria for moving a job into the pending queue:
855 * - It's ready.
856 * - It's not pending.
857 * - It's not already running on a JSC.
Matthew Williams9ae3dbe2014-08-21 13:47:47 -0700858 * - The user that requested the job is running.
Christopher Tate7060b042014-06-09 19:50:00 -0700859 */
860 private boolean isReadyToBeExecutedLocked(JobStatus job) {
Matthew Williams9ae3dbe2014-08-21 13:47:47 -0700861 final boolean jobReady = job.isReady();
862 final boolean jobPending = mPendingJobs.contains(job);
863 final boolean jobActive = isCurrentlyActiveLocked(job);
Shreyas Basarge5db09082016-01-07 13:38:29 +0000864 final boolean userRunning = mStartedUsers.contains(job.getUserId());
Matthew Williams9ae3dbe2014-08-21 13:47:47 -0700865 if (DEBUG) {
866 Slog.v(TAG, "isReadyToBeExecutedLocked: " + job.toShortString()
867 + " ready=" + jobReady + " pending=" + jobPending
Shreyas Basarge5db09082016-01-07 13:38:29 +0000868 + " active=" + jobActive + " userRunning=" + userRunning);
Matthew Williams9ae3dbe2014-08-21 13:47:47 -0700869 }
Shreyas Basarge5db09082016-01-07 13:38:29 +0000870 return userRunning && jobReady && !jobPending && !jobActive;
Christopher Tate7060b042014-06-09 19:50:00 -0700871 }
872
873 /**
874 * Criteria for cancelling an active job:
875 * - It's not ready
876 * - It's running on a JSC.
877 */
Shreyas Basarge5db09082016-01-07 13:38:29 +0000878 private boolean areJobConstraintsNotSatisfied(JobStatus job) {
Christopher Tate7060b042014-06-09 19:50:00 -0700879 return !job.isReady() && isCurrentlyActiveLocked(job);
880 }
881
882 /**
883 * Reconcile jobs in the pending queue against available execution contexts.
884 * A controller can force a job into the pending queue even if it's already running, but
885 * here is where we decide whether to actually execute it.
886 */
887 private void maybeRunPendingJobsH() {
Dianne Hackborn33d31c52016-02-16 10:30:33 -0800888 synchronized (mLock) {
Dianne Hackborn88e98df2015-03-23 13:29:14 -0700889 if (mDeviceIdleMode) {
890 // If device is idle, we will not schedule jobs to run.
891 return;
892 }
Matthew Williams75fc5252014-09-02 16:17:53 -0700893 if (DEBUG) {
894 Slog.d(TAG, "pending queue: " + mPendingJobs.size() + " jobs.");
895 }
Shreyas Basarge5db09082016-01-07 13:38:29 +0000896 assignJobsToContextsH();
Dianne Hackborn627dfa12015-11-11 18:10:30 -0800897 reportActive();
Christopher Tate7060b042014-06-09 19:50:00 -0700898 }
899 }
900 }
901
902 /**
Shreyas Basarge5db09082016-01-07 13:38:29 +0000903 * Takes jobs from pending queue and runs them on available contexts.
904 * If no contexts are available, preempts lower priority jobs to
905 * run higher priority ones.
906 * Lock on mJobs before calling this function.
907 */
908 private void assignJobsToContextsH() {
909 if (DEBUG) {
910 Slog.d(TAG, printPendingQueue());
911 }
912
913 // This array essentially stores the state of mActiveServices array.
914 // ith index stores the job present on the ith JobServiceContext.
915 // We manipulate this array until we arrive at what jobs should be running on
916 // what JobServiceContext.
917 JobStatus[] contextIdToJobMap = new JobStatus[MAX_JOB_CONTEXTS_COUNT];
918 // Indicates whether we need to act on this jobContext id
919 boolean[] act = new boolean[MAX_JOB_CONTEXTS_COUNT];
920 int[] preferredUidForContext = new int[MAX_JOB_CONTEXTS_COUNT];
921 for (int i=0; i<mActiveServices.size(); i++) {
922 contextIdToJobMap[i] = mActiveServices.get(i).getRunningJob();
923 preferredUidForContext[i] = mActiveServices.get(i).getPreferredUid();
924 }
925 if (DEBUG) {
926 Slog.d(TAG, printContextIdToJobMap(contextIdToJobMap, "running jobs initial"));
927 }
928 Iterator<JobStatus> it = mPendingJobs.iterator();
929 while (it.hasNext()) {
930 JobStatus nextPending = it.next();
931
932 // If job is already running, go to next job.
933 int jobRunningContext = findJobContextIdFromMap(nextPending, contextIdToJobMap);
934 if (jobRunningContext != -1) {
935 continue;
936 }
937
938 // Find a context for nextPending. The context should be available OR
939 // it should have lowest priority among all running jobs
940 // (sharing the same Uid as nextPending)
941 int minPriority = Integer.MAX_VALUE;
942 int minPriorityContextId = -1;
943 for (int i=0; i<mActiveServices.size(); i++) {
944 JobStatus job = contextIdToJobMap[i];
945 int preferredUid = preferredUidForContext[i];
946 if (job == null && (preferredUid == nextPending.getUid() ||
947 preferredUid == JobServiceContext.NO_PREFERRED_UID) ) {
948 minPriorityContextId = i;
949 break;
950 }
Shreyas Basarge347c2782016-01-15 18:24:36 +0000951 if (job == null) {
952 // No job on this context, but nextPending can't run here because
953 // the context has a preferred Uid.
954 continue;
955 }
Shreyas Basarge5db09082016-01-07 13:38:29 +0000956 if (job.getUid() != nextPending.getUid()) {
957 continue;
958 }
959 if (job.getPriority() >= nextPending.getPriority()) {
960 continue;
961 }
962 if (minPriority > nextPending.getPriority()) {
963 minPriority = nextPending.getPriority();
964 minPriorityContextId = i;
965 }
966 }
967 if (minPriorityContextId != -1) {
968 contextIdToJobMap[minPriorityContextId] = nextPending;
969 act[minPriorityContextId] = true;
970 }
971 }
972 if (DEBUG) {
973 Slog.d(TAG, printContextIdToJobMap(contextIdToJobMap, "running jobs final"));
974 }
975 for (int i=0; i<mActiveServices.size(); i++) {
976 boolean preservePreferredUid = false;
977 if (act[i]) {
978 JobStatus js = mActiveServices.get(i).getRunningJob();
979 if (js != null) {
980 if (DEBUG) {
981 Slog.d(TAG, "preempting job: " + mActiveServices.get(i).getRunningJob());
982 }
983 // preferredUid will be set to uid of currently running job.
984 mActiveServices.get(i).preemptExecutingJob();
985 preservePreferredUid = true;
986 } else {
987 if (DEBUG) {
988 Slog.d(TAG, "About to run job on context "
989 + String.valueOf(i) + ", job: " + contextIdToJobMap[i]);
990 }
Dianne Hackborn1a30bd92016-01-11 11:05:00 -0800991 for (int ic=0; ic<mControllers.size(); ic++) {
992 StateController controller = mControllers.get(ic);
993 controller.prepareForExecution(contextIdToJobMap[i]);
994 }
Shreyas Basarge5db09082016-01-07 13:38:29 +0000995 if (!mActiveServices.get(i).executeRunnableJob(contextIdToJobMap[i])) {
996 Slog.d(TAG, "Error executing " + contextIdToJobMap[i]);
997 }
998 mPendingJobs.remove(contextIdToJobMap[i]);
999 }
1000 }
1001 if (!preservePreferredUid) {
1002 mActiveServices.get(i).clearPreferredUid();
1003 }
1004 }
1005 }
1006
1007 int findJobContextIdFromMap(JobStatus jobStatus, JobStatus[] map) {
1008 for (int i=0; i<map.length; i++) {
1009 if (map[i] != null && map[i].matches(jobStatus.getUid(), jobStatus.getJobId())) {
1010 return i;
1011 }
1012 }
1013 return -1;
1014 }
1015
1016 /**
Christopher Tate7060b042014-06-09 19:50:00 -07001017 * Binder stub trampoline implementation
1018 */
1019 final class JobSchedulerStub extends IJobScheduler.Stub {
1020 /** Cache determination of whether a given app can persist jobs
1021 * key is uid of the calling app; value is undetermined/true/false
1022 */
1023 private final SparseArray<Boolean> mPersistCache = new SparseArray<Boolean>();
1024
1025 // Enforce that only the app itself (or shared uid participant) can schedule a
1026 // job that runs one of the app's services, as well as verifying that the
1027 // named service properly requires the BIND_JOB_SERVICE permission
1028 private void enforceValidJobRequest(int uid, JobInfo job) {
Christopher Tate5568f542014-06-18 13:53:31 -07001029 final IPackageManager pm = AppGlobals.getPackageManager();
Christopher Tate7060b042014-06-09 19:50:00 -07001030 final ComponentName service = job.getService();
1031 try {
Jeff Sharkeyc7bacab2016-02-09 15:56:11 -07001032 ServiceInfo si = pm.getServiceInfo(service,
1033 PackageManager.MATCH_DEBUG_TRIAGED_MISSING, UserHandle.getUserId(uid));
Christopher Tate5568f542014-06-18 13:53:31 -07001034 if (si == null) {
1035 throw new IllegalArgumentException("No such service " + service);
1036 }
Christopher Tate7060b042014-06-09 19:50:00 -07001037 if (si.applicationInfo.uid != uid) {
1038 throw new IllegalArgumentException("uid " + uid +
1039 " cannot schedule job in " + service.getPackageName());
1040 }
1041 if (!JobService.PERMISSION_BIND.equals(si.permission)) {
1042 throw new IllegalArgumentException("Scheduled service " + service
1043 + " does not require android.permission.BIND_JOB_SERVICE permission");
1044 }
Christopher Tate5568f542014-06-18 13:53:31 -07001045 } catch (RemoteException e) {
1046 // Can't happen; the Package Manager is in this same process
Christopher Tate7060b042014-06-09 19:50:00 -07001047 }
1048 }
1049
1050 private boolean canPersistJobs(int pid, int uid) {
1051 // If we get this far we're good to go; all we need to do now is check
1052 // whether the app is allowed to persist its scheduled work.
1053 final boolean canPersist;
1054 synchronized (mPersistCache) {
1055 Boolean cached = mPersistCache.get(uid);
1056 if (cached != null) {
1057 canPersist = cached.booleanValue();
1058 } else {
1059 // Persisting jobs is tantamount to running at boot, so we permit
1060 // it when the app has declared that it uses the RECEIVE_BOOT_COMPLETED
1061 // permission
1062 int result = getContext().checkPermission(
1063 android.Manifest.permission.RECEIVE_BOOT_COMPLETED, pid, uid);
1064 canPersist = (result == PackageManager.PERMISSION_GRANTED);
1065 mPersistCache.put(uid, canPersist);
1066 }
1067 }
1068 return canPersist;
1069 }
1070
1071 // IJobScheduler implementation
1072 @Override
1073 public int schedule(JobInfo job) throws RemoteException {
1074 if (DEBUG) {
Matthew Williamsee410da2014-07-25 11:30:40 -07001075 Slog.d(TAG, "Scheduling job: " + job.toString());
Christopher Tate7060b042014-06-09 19:50:00 -07001076 }
1077 final int pid = Binder.getCallingPid();
1078 final int uid = Binder.getCallingUid();
1079
1080 enforceValidJobRequest(uid, job);
Matthew Williams900c67f2014-07-09 12:46:53 -07001081 if (job.isPersisted()) {
1082 if (!canPersistJobs(pid, uid)) {
1083 throw new IllegalArgumentException("Error: requested job be persisted without"
1084 + " holding RECEIVE_BOOT_COMPLETED permission.");
1085 }
1086 }
Christopher Tate7060b042014-06-09 19:50:00 -07001087
1088 long ident = Binder.clearCallingIdentity();
1089 try {
Matthew Williams900c67f2014-07-09 12:46:53 -07001090 return JobSchedulerService.this.schedule(job, uid);
Christopher Tate7060b042014-06-09 19:50:00 -07001091 } finally {
1092 Binder.restoreCallingIdentity(ident);
1093 }
1094 }
1095
1096 @Override
Shreyas Basarge968ac752016-01-11 23:09:26 +00001097 public int scheduleAsPackage(JobInfo job, String packageName, int userId)
1098 throws RemoteException {
1099 if (DEBUG) {
1100 Slog.d(TAG, "Scheduling job: " + job.toString() + " on behalf of " + packageName);
1101 }
1102 final int uid = Binder.getCallingUid();
1103 if (uid != Process.SYSTEM_UID) {
1104 throw new IllegalArgumentException("Only system process is allowed"
1105 + "to set packageName");
1106 }
1107 long ident = Binder.clearCallingIdentity();
1108 try {
1109 return JobSchedulerService.this.scheduleAsPackage(job, uid, packageName, userId);
1110 } finally {
1111 Binder.restoreCallingIdentity(ident);
1112 }
1113 }
1114
1115 @Override
Christopher Tate7060b042014-06-09 19:50:00 -07001116 public List<JobInfo> getAllPendingJobs() throws RemoteException {
1117 final int uid = Binder.getCallingUid();
1118
1119 long ident = Binder.clearCallingIdentity();
1120 try {
1121 return JobSchedulerService.this.getPendingJobs(uid);
1122 } finally {
1123 Binder.restoreCallingIdentity(ident);
1124 }
1125 }
1126
1127 @Override
1128 public void cancelAll() throws RemoteException {
1129 final int uid = Binder.getCallingUid();
1130
1131 long ident = Binder.clearCallingIdentity();
1132 try {
Dianne Hackbornbef28fe2015-10-29 17:57:11 -07001133 JobSchedulerService.this.cancelJobsForUid(uid, true);
Christopher Tate7060b042014-06-09 19:50:00 -07001134 } finally {
1135 Binder.restoreCallingIdentity(ident);
1136 }
1137 }
1138
1139 @Override
1140 public void cancel(int jobId) throws RemoteException {
1141 final int uid = Binder.getCallingUid();
1142
1143 long ident = Binder.clearCallingIdentity();
1144 try {
1145 JobSchedulerService.this.cancelJob(uid, jobId);
1146 } finally {
1147 Binder.restoreCallingIdentity(ident);
1148 }
1149 }
1150
1151 /**
1152 * "dumpsys" infrastructure
1153 */
1154 @Override
1155 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
1156 getContext().enforceCallingOrSelfPermission(android.Manifest.permission.DUMP, TAG);
1157
1158 long identityToken = Binder.clearCallingIdentity();
1159 try {
1160 JobSchedulerService.this.dumpInternal(pw);
1161 } finally {
1162 Binder.restoreCallingIdentity(identityToken);
1163 }
1164 }
Shreyas Basarge5db09082016-01-07 13:38:29 +00001165 };
1166
1167 private String printContextIdToJobMap(JobStatus[] map, String initial) {
1168 StringBuilder s = new StringBuilder(initial + ": ");
1169 for (int i=0; i<map.length; i++) {
1170 s.append("(")
1171 .append(map[i] == null? -1: map[i].getJobId())
1172 .append(map[i] == null? -1: map[i].getUid())
1173 .append(")" );
1174 }
1175 return s.toString();
1176 }
1177
1178 private String printPendingQueue() {
1179 StringBuilder s = new StringBuilder("Pending queue: ");
1180 Iterator<JobStatus> it = mPendingJobs.iterator();
1181 while (it.hasNext()) {
1182 JobStatus js = it.next();
1183 s.append("(")
1184 .append(js.getJob().getId())
1185 .append(", ")
1186 .append(js.getUid())
1187 .append(") ");
1188 }
1189 return s.toString();
Jeff Sharkey5217cac2015-12-20 15:34:01 -07001190 }
Christopher Tate7060b042014-06-09 19:50:00 -07001191
1192 void dumpInternal(PrintWriter pw) {
Christopher Tatef973a7b2014-08-29 12:54:08 -07001193 final long now = SystemClock.elapsedRealtime();
Dianne Hackborn33d31c52016-02-16 10:30:33 -08001194 synchronized (mLock) {
Shreyas Basarge5db09082016-01-07 13:38:29 +00001195 pw.print("Started users: ");
1196 for (int i=0; i<mStartedUsers.size(); i++) {
1197 pw.print("u" + mStartedUsers.get(i) + " ");
1198 }
1199 pw.println();
Christopher Tate7060b042014-06-09 19:50:00 -07001200 pw.println("Registered jobs:");
1201 if (mJobs.size() > 0) {
Dianne Hackbornfdb19562014-07-11 16:03:36 -07001202 ArraySet<JobStatus> jobs = mJobs.getJobs();
1203 for (int i=0; i<jobs.size(); i++) {
1204 JobStatus job = jobs.valueAt(i);
Dianne Hackborn1a30bd92016-01-11 11:05:00 -08001205 pw.print(" Job #"); pw.print(i); pw.print(": ");
1206 pw.println(job.toShortString());
1207 job.dump(pw, " ");
1208 pw.print(" Ready: ");
1209 pw.print(mHandler.isReadyToBeExecutedLocked(job));
1210 pw.print(" (job=");
1211 pw.print(job.isReady());
1212 pw.print(" pending=");
1213 pw.print(mPendingJobs.contains(job));
1214 pw.print(" active=");
1215 pw.print(isCurrentlyActiveLocked(job));
1216 pw.print(" user=");
1217 pw.print(mStartedUsers.contains(job.getUserId()));
1218 pw.println(")");
Christopher Tate7060b042014-06-09 19:50:00 -07001219 }
1220 } else {
Christopher Tatef973a7b2014-08-29 12:54:08 -07001221 pw.println(" None.");
Christopher Tate7060b042014-06-09 19:50:00 -07001222 }
Dianne Hackbornfdb19562014-07-11 16:03:36 -07001223 for (int i=0; i<mControllers.size(); i++) {
Christopher Tate7060b042014-06-09 19:50:00 -07001224 pw.println();
Dianne Hackbornfdb19562014-07-11 16:03:36 -07001225 mControllers.get(i).dumpControllerState(pw);
Christopher Tate7060b042014-06-09 19:50:00 -07001226 }
1227 pw.println();
Shreyas Basarge5db09082016-01-07 13:38:29 +00001228 pw.println(printPendingQueue());
Christopher Tate7060b042014-06-09 19:50:00 -07001229 pw.println();
1230 pw.println("Active jobs:");
Dianne Hackbornfdb19562014-07-11 16:03:36 -07001231 for (int i=0; i<mActiveServices.size(); i++) {
1232 JobServiceContext jsc = mActiveServices.get(i);
Shreyas Basarge5db09082016-01-07 13:38:29 +00001233 if (jsc.getRunningJob() == null) {
Christopher Tate7060b042014-06-09 19:50:00 -07001234 continue;
1235 } else {
Christopher Tatef973a7b2014-08-29 12:54:08 -07001236 final long timeout = jsc.getTimeoutElapsed();
1237 pw.print("Running for: ");
1238 pw.print((now - jsc.getExecutionStartTimeElapsed())/1000);
1239 pw.print("s timeout=");
1240 pw.print(timeout);
1241 pw.print(" fromnow=");
1242 pw.println(timeout-now);
1243 jsc.getRunningJob().dump(pw, " ");
Christopher Tate7060b042014-06-09 19:50:00 -07001244 }
1245 }
Dianne Hackbornfdb19562014-07-11 16:03:36 -07001246 pw.println();
1247 pw.print("mReadyToRock="); pw.println(mReadyToRock);
Dianne Hackborn88e98df2015-03-23 13:29:14 -07001248 pw.print("mDeviceIdleMode="); pw.println(mDeviceIdleMode);
Dianne Hackborn627dfa12015-11-11 18:10:30 -08001249 pw.print("mReportedActive="); pw.println(mReportedActive);
Christopher Tate7060b042014-06-09 19:50:00 -07001250 }
1251 pw.println();
1252 }
1253}