blob: b619ea8cdd5dd167046da9f09dfc4ac876388007 [file] [log] [blame]
Matthew Williams6de79e22014-05-01 10:47: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
Christopher Tate7060b042014-06-09 19:50:00 -070017package com.android.server.job.controllers;
Matthew Williams6de79e22014-05-01 10:47:00 -070018
19import android.content.Context;
20
Matthew Williamsfa8e5082015-10-15 15:59:12 -070021import com.android.server.job.JobSchedulerService;
Christopher Tate7060b042014-06-09 19:50:00 -070022import com.android.server.job.StateChangedListener;
Matthew Williams6de79e22014-05-01 10:47:00 -070023
Matthew Williamseffacfa2014-06-05 20:56:40 -070024import java.io.PrintWriter;
25
Matthew Williams6de79e22014-05-01 10:47:00 -070026/**
Christopher Tate7060b042014-06-09 19:50:00 -070027 * Incorporates shared controller logic between the various controllers of the JobManager.
28 * These are solely responsible for tracking a list of jobs, and notifying the JM when these
Matthew Williams6de79e22014-05-01 10:47:00 -070029 * are ready to run, or whether they must be stopped.
30 */
31public abstract class StateController {
Matthew Williamsfa8e5082015-10-15 15:59:12 -070032 protected static final boolean DEBUG = JobSchedulerService.DEBUG;
Matthew Williams6de79e22014-05-01 10:47:00 -070033 protected Context mContext;
34 protected StateChangedListener mStateChangedListener;
Dianne Hackborn88e98df2015-03-23 13:29:14 -070035 protected boolean mDeviceIdleMode;
Matthew Williams6de79e22014-05-01 10:47:00 -070036
Matthew Williams3d86fd22014-05-16 18:02:17 -070037 public StateController(StateChangedListener stateChangedListener, Context context) {
38 mStateChangedListener = stateChangedListener;
39 mContext = context;
Matthew Williams6de79e22014-05-01 10:47:00 -070040 }
41
Dianne Hackborn88e98df2015-03-23 13:29:14 -070042 public void deviceIdleModeChanged(boolean enabled) {
43 mDeviceIdleMode = enabled;
44 }
45
Matthew Williams6de79e22014-05-01 10:47:00 -070046 /**
Christopher Tate7060b042014-06-09 19:50:00 -070047 * Implement the logic here to decide whether a job should be tracked by this controller.
Amith Yamasanib0ff3222015-03-04 09:56:14 -080048 * This logic is put here so the JobManager can be completely agnostic of Controller logic.
Matthew Williams6de79e22014-05-01 10:47:00 -070049 * Also called when updating a task, so implementing controllers have to be aware of
50 * preexisting tasks.
51 */
Dianne Hackborn1a30bd92016-01-11 11:05:00 -080052 public abstract void maybeStartTrackingJob(JobStatus jobStatus, JobStatus lastJob);
53 /**
54 * Optionally implement logic here to prepare the job to be executed.
55 */
56 public void prepareForExecution(JobStatus jobStatus) {
57 }
Matthew Williams6de79e22014-05-01 10:47:00 -070058 /**
59 * Remove task - this will happen if the task is cancelled, completed, etc.
60 */
Dianne Hackborn1a30bd92016-01-11 11:05:00 -080061 public abstract void maybeStopTrackingJob(JobStatus jobStatus, boolean forUpdate);
62 /**
63 * Called when a new job is being created to reschedule an old failed job.
64 */
65 public void rescheduleForFailure(JobStatus newJob, JobStatus failureToReschedule) {
66 }
Matthew Williams6de79e22014-05-01 10:47:00 -070067
Matthew Williamseffacfa2014-06-05 20:56:40 -070068 public abstract void dumpControllerState(PrintWriter pw);
Matthew Williams6de79e22014-05-01 10:47:00 -070069}