use of android.app.job.JobParameters in project platform_frameworks_base by android.
the class SyncJobService method callJobFinished.
public void callJobFinished(int jobId, boolean needsReschedule) {
synchronized (jobParamsMap) {
JobParameters params = jobParamsMap.get(jobId);
if (params != null) {
jobFinished(params, needsReschedule);
jobParamsMap.remove(jobId);
} else {
Slog.e(TAG, "Job params not found for " + String.valueOf(jobId));
}
}
}
use of android.app.job.JobParameters in project platform_frameworks_base by android.
the class TestJobService method callJobFinished.
public boolean callJobFinished() {
if (jobParamsMap.size() == 0) {
return false;
}
JobParameters params = jobParamsMap.valueAt(0);
if (params == null) {
return false;
} else {
jobFinished(params, false);
jobParamsMap.removeAt(0);
return true;
}
}
use of android.app.job.JobParameters in project platform_frameworks_base by android.
the class JobServiceContext method executeRunnableJob.
/**
* Give a job to this context for execution. Callers must first check {@link #getRunningJob()}
* and ensure it is null to make sure this is a valid context.
* @param job The status of the job that we are going to run.
* @return True if the job is valid and is running. False if the job cannot be executed.
*/
boolean executeRunnableJob(JobStatus job) {
synchronized (mLock) {
if (!mAvailable) {
Slog.e(TAG, "Starting new runnable but context is unavailable > Error.");
return false;
}
mPreferredUid = NO_PREFERRED_UID;
mRunningJob = job;
final boolean isDeadlineExpired = job.hasDeadlineConstraint() && (job.getLatestRunTimeElapsed() < SystemClock.elapsedRealtime());
Uri[] triggeredUris = null;
if (job.changedUris != null) {
triggeredUris = new Uri[job.changedUris.size()];
job.changedUris.toArray(triggeredUris);
}
String[] triggeredAuthorities = null;
if (job.changedAuthorities != null) {
triggeredAuthorities = new String[job.changedAuthorities.size()];
job.changedAuthorities.toArray(triggeredAuthorities);
}
mParams = new JobParameters(this, job.getJobId(), job.getExtras(), isDeadlineExpired, triggeredUris, triggeredAuthorities);
mExecutionStartTimeElapsed = SystemClock.elapsedRealtime();
mVerb = VERB_BINDING;
scheduleOpTimeOut();
final Intent intent = new Intent().setComponent(job.getServiceComponent());
boolean binding = mContext.bindServiceAsUser(intent, this, Context.BIND_AUTO_CREATE | Context.BIND_NOT_FOREGROUND, new UserHandle(job.getUserId()));
if (!binding) {
if (DEBUG) {
Slog.d(TAG, job.getServiceComponent().getShortClassName() + " unavailable.");
}
mRunningJob = null;
mParams = null;
mExecutionStartTimeElapsed = 0L;
mVerb = VERB_FINISHED;
removeOpTimeOut();
return false;
}
try {
mBatteryStats.noteJobStart(job.getBatteryName(), job.getSourceUid());
} catch (RemoteException e) {
// Whatever.
}
mJobPackageTracker.noteActive(job);
mAvailable = false;
return true;
}
}
use of android.app.job.JobParameters in project android-priority-jobqueue by yigit.
the class FrameworkJobSchedulerServiceTest method onStopJobWithoutScheduler.
@Test
public void onStopJobWithoutScheduler() {
when(mockJobManager.getScheduler()).thenReturn(null);
JobParameters params = mock(JobParameters.class);
service.onStopJob(params);
// test sanity
verify(mockScheduler, never()).onStopJob(params);
}
use of android.app.job.JobParameters in project android-priority-jobqueue by yigit.
the class FrameworkJobSchedulerServiceTest method onStopJob.
@Test
public void onStopJob() {
JobParameters params = mock(JobParameters.class);
service.onStopJob(params);
verify(mockScheduler).onStopJob(params);
}
Aggregations