blob: 7d76fc02b44b38fbb6b27d6b37639a1fa998ef9f [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
Christopher Tate7060b042014-06-09 19:50:00 -070021import com.android.server.job.StateChangedListener;
Matthew Williams6de79e22014-05-01 10:47:00 -070022
Matthew Williamseffacfa2014-06-05 20:56:40 -070023import java.io.PrintWriter;
24
Matthew Williams6de79e22014-05-01 10:47:00 -070025/**
Christopher Tate7060b042014-06-09 19:50:00 -070026 * Incorporates shared controller logic between the various controllers of the JobManager.
27 * These are solely responsible for tracking a list of jobs, and notifying the JM when these
Matthew Williams6de79e22014-05-01 10:47:00 -070028 * are ready to run, or whether they must be stopped.
29 */
30public abstract class StateController {
Georgi Nikolov326f2302014-10-08 11:50:50 -070031 protected static final boolean DEBUG = false;
Matthew Williams6de79e22014-05-01 10:47:00 -070032 protected Context mContext;
33 protected StateChangedListener mStateChangedListener;
34
Matthew Williams3d86fd22014-05-16 18:02:17 -070035 public StateController(StateChangedListener stateChangedListener, Context context) {
36 mStateChangedListener = stateChangedListener;
37 mContext = context;
Matthew Williams6de79e22014-05-01 10:47:00 -070038 }
39
40 /**
Christopher Tate7060b042014-06-09 19:50:00 -070041 * Implement the logic here to decide whether a job should be tracked by this controller.
42 * This logic is put here so the JobManger can be completely agnostic of Controller logic.
Matthew Williams6de79e22014-05-01 10:47:00 -070043 * Also called when updating a task, so implementing controllers have to be aware of
44 * preexisting tasks.
45 */
Christopher Tate7060b042014-06-09 19:50:00 -070046 public abstract void maybeStartTrackingJob(JobStatus jobStatus);
Matthew Williams6de79e22014-05-01 10:47:00 -070047 /**
48 * Remove task - this will happen if the task is cancelled, completed, etc.
49 */
Christopher Tate7060b042014-06-09 19:50:00 -070050 public abstract void maybeStopTrackingJob(JobStatus jobStatus);
Matthew Williams6de79e22014-05-01 10:47:00 -070051
Matthew Williamseffacfa2014-06-05 20:56:40 -070052 public abstract void dumpControllerState(PrintWriter pw);
53
Matthew Williams6de79e22014-05-01 10:47:00 -070054}