mirror of
https://github.com/oxen-io/session-android.git
synced 2024-12-25 01:07:47 +00:00
260 lines
9.4 KiB
Java
260 lines
9.4 KiB
Java
package org.thoughtcrime.securesms.jobs;
|
|
|
|
import android.support.annotation.NonNull;
|
|
import android.support.annotation.Nullable;
|
|
|
|
import com.annimon.stream.Stream;
|
|
|
|
import org.thoughtcrime.securesms.database.JobDatabase;
|
|
import org.thoughtcrime.securesms.jobmanager.persistence.ConstraintSpec;
|
|
import org.thoughtcrime.securesms.jobmanager.persistence.DependencySpec;
|
|
import org.thoughtcrime.securesms.jobmanager.persistence.FullSpec;
|
|
import org.thoughtcrime.securesms.jobmanager.persistence.JobSpec;
|
|
import org.thoughtcrime.securesms.jobmanager.persistence.JobStorage;
|
|
import org.thoughtcrime.securesms.util.Util;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.Collections;
|
|
import java.util.HashMap;
|
|
import java.util.HashSet;
|
|
import java.util.Iterator;
|
|
import java.util.LinkedList;
|
|
import java.util.List;
|
|
import java.util.ListIterator;
|
|
import java.util.Map;
|
|
import java.util.Set;
|
|
|
|
public class FastJobStorage implements JobStorage {
|
|
|
|
private final JobDatabase jobDatabase;
|
|
|
|
private final List<JobSpec> jobs;
|
|
private final Map<String, List<ConstraintSpec>> constraintsByJobId;
|
|
private final Map<String, List<DependencySpec>> dependenciesByJobId;
|
|
|
|
public FastJobStorage(@NonNull JobDatabase jobDatabase) {
|
|
this.jobDatabase = jobDatabase;
|
|
this.jobs = new ArrayList<>();
|
|
this.constraintsByJobId = new HashMap<>();
|
|
this.dependenciesByJobId = new HashMap<>();
|
|
}
|
|
|
|
@Override
|
|
public synchronized void init() {
|
|
List<JobSpec> jobSpecs = jobDatabase.getAllJobSpecs();
|
|
List<ConstraintSpec> constraintSpecs = jobDatabase.getAllConstraintSpecs();
|
|
List<DependencySpec> dependencySpecs = jobDatabase.getAllDependencySpecs();
|
|
|
|
jobs.addAll(jobSpecs);
|
|
|
|
for (ConstraintSpec constraintSpec: constraintSpecs) {
|
|
List<ConstraintSpec> jobConstraints = Util.getOrDefault(constraintsByJobId, constraintSpec.getJobSpecId(), new LinkedList<>());
|
|
jobConstraints.add(constraintSpec);
|
|
constraintsByJobId.put(constraintSpec.getJobSpecId(), jobConstraints);
|
|
}
|
|
|
|
for (DependencySpec dependencySpec : dependencySpecs) {
|
|
List<DependencySpec> jobDependencies = Util.getOrDefault(dependenciesByJobId, dependencySpec.getJobId(), new LinkedList<>());
|
|
jobDependencies.add(dependencySpec);
|
|
dependenciesByJobId.put(dependencySpec.getJobId(), jobDependencies);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public synchronized void insertJobs(@NonNull List<FullSpec> fullSpecs) {
|
|
jobDatabase.insertJobs(fullSpecs);
|
|
|
|
for (FullSpec fullSpec : fullSpecs) {
|
|
jobs.add(fullSpec.getJobSpec());
|
|
constraintsByJobId.put(fullSpec.getJobSpec().getId(), fullSpec.getConstraintSpecs());
|
|
dependenciesByJobId.put(fullSpec.getJobSpec().getId(), fullSpec.getDependencySpecs());
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public synchronized @Nullable JobSpec getJobSpec(@NonNull String id) {
|
|
for (JobSpec jobSpec : jobs) {
|
|
if (jobSpec.getId().equals(id)) {
|
|
return jobSpec;
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public synchronized @NonNull List<JobSpec> getAllJobSpecs() {
|
|
return new ArrayList<>(jobs);
|
|
}
|
|
|
|
@Override
|
|
public synchronized @NonNull List<JobSpec> getPendingJobsWithNoDependenciesInCreatedOrder(long currentTime) {
|
|
return Stream.of(jobs)
|
|
.filterNot(JobSpec::isRunning)
|
|
.filter(this::firstInQueue)
|
|
.filter(j -> !dependenciesByJobId.containsKey(j.getId()) || dependenciesByJobId.get(j.getId()).isEmpty())
|
|
.filter(j -> j.getNextRunAttemptTime() <= currentTime)
|
|
.sorted((j1, j2) -> Long.compare(j1.getCreateTime(), j2.getCreateTime()))
|
|
.toList();
|
|
}
|
|
|
|
private boolean firstInQueue(@NonNull JobSpec job) {
|
|
if (job.getQueueKey() == null) {
|
|
return true;
|
|
}
|
|
|
|
return Stream.of(jobs)
|
|
.filter(j -> Util.equals(j.getQueueKey(), job.getQueueKey()))
|
|
.sorted((j1, j2) -> Long.compare(j1.getCreateTime(), j2.getCreateTime()))
|
|
.toList()
|
|
.get(0)
|
|
.equals(job);
|
|
}
|
|
|
|
@Override
|
|
public synchronized int getJobInstanceCount(@NonNull String factoryKey) {
|
|
return (int) Stream.of(jobs)
|
|
.filter(j -> j.getFactoryKey().equals(factoryKey))
|
|
.count();
|
|
}
|
|
|
|
@Override
|
|
public synchronized void updateJobRunningState(@NonNull String id, boolean isRunning) {
|
|
jobDatabase.updateJobRunningState(id, isRunning);
|
|
|
|
ListIterator<JobSpec> iter = jobs.listIterator();
|
|
|
|
while (iter.hasNext()) {
|
|
JobSpec existing = iter.next();
|
|
if (existing.getId().equals(id)) {
|
|
JobSpec updated = new JobSpec(existing.getId(),
|
|
existing.getFactoryKey(),
|
|
existing.getQueueKey(),
|
|
existing.getCreateTime(),
|
|
existing.getNextRunAttemptTime(),
|
|
existing.getRunAttempt(),
|
|
existing.getMaxAttempts(),
|
|
existing.getMaxBackoff(),
|
|
existing.getLifespan(),
|
|
existing.getMaxInstances(),
|
|
existing.getSerializedData(),
|
|
isRunning);
|
|
iter.set(updated);
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public synchronized void updateJobAfterRetry(@NonNull String id, boolean isRunning, int runAttempt, long nextRunAttemptTime) {
|
|
jobDatabase.updateJobAfterRetry(id, isRunning, runAttempt, nextRunAttemptTime);
|
|
|
|
ListIterator<JobSpec> iter = jobs.listIterator();
|
|
|
|
while (iter.hasNext()) {
|
|
JobSpec existing = iter.next();
|
|
if (existing.getId().equals(id)) {
|
|
JobSpec updated = new JobSpec(existing.getId(),
|
|
existing.getFactoryKey(),
|
|
existing.getQueueKey(),
|
|
existing.getCreateTime(),
|
|
nextRunAttemptTime,
|
|
runAttempt,
|
|
existing.getMaxAttempts(),
|
|
existing.getMaxBackoff(),
|
|
existing.getLifespan(),
|
|
existing.getMaxInstances(),
|
|
existing.getSerializedData(),
|
|
isRunning);
|
|
iter.set(updated);
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public synchronized void updateAllJobsToBePending() {
|
|
jobDatabase.updateAllJobsToBePending();
|
|
|
|
ListIterator<JobSpec> iter = jobs.listIterator();
|
|
|
|
while (iter.hasNext()) {
|
|
JobSpec existing = iter.next();
|
|
JobSpec updated = new JobSpec(existing.getId(),
|
|
existing.getFactoryKey(),
|
|
existing.getQueueKey(),
|
|
existing.getCreateTime(),
|
|
existing.getNextRunAttemptTime(),
|
|
existing.getRunAttempt(),
|
|
existing.getMaxAttempts(),
|
|
existing.getMaxBackoff(),
|
|
existing.getLifespan(),
|
|
existing.getMaxInstances(),
|
|
existing.getSerializedData(),
|
|
false);
|
|
iter.set(updated);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public synchronized void deleteJob(@NonNull String jobId) {
|
|
deleteJobs(Collections.singletonList(jobId));
|
|
}
|
|
|
|
@Override
|
|
public synchronized void deleteJobs(@NonNull List<String> jobIds) {
|
|
jobDatabase.deleteJobs(jobIds);
|
|
|
|
Set<String> deleteIds = new HashSet<>(jobIds);
|
|
|
|
Iterator<JobSpec> jobIter = jobs.iterator();
|
|
while (jobIter.hasNext()) {
|
|
if (deleteIds.contains(jobIter.next().getId())) {
|
|
jobIter.remove();
|
|
}
|
|
}
|
|
|
|
for (String jobId : jobIds) {
|
|
constraintsByJobId.remove(jobId);
|
|
dependenciesByJobId.remove(jobId);
|
|
|
|
for (Map.Entry<String, List<DependencySpec>> entry : dependenciesByJobId.entrySet()) {
|
|
Iterator<DependencySpec> depedencyIter = entry.getValue().iterator();
|
|
|
|
while (depedencyIter.hasNext()) {
|
|
if (depedencyIter.next().getDependsOnJobId().equals(jobId)) {
|
|
depedencyIter.remove();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public synchronized @NonNull List<ConstraintSpec> getConstraintSpecs(@NonNull String jobId) {
|
|
return Util.getOrDefault(constraintsByJobId, jobId, new LinkedList<>());
|
|
}
|
|
|
|
@Override
|
|
public synchronized @NonNull List<ConstraintSpec> getAllConstraintSpecs() {
|
|
return Stream.of(constraintsByJobId)
|
|
.map(Map.Entry::getValue)
|
|
.flatMap(Stream::of)
|
|
.toList();
|
|
}
|
|
|
|
@Override
|
|
public synchronized @NonNull List<DependencySpec> getDependencySpecsThatDependOnJob(@NonNull String jobSpecId) {
|
|
return Stream.of(dependenciesByJobId.entrySet())
|
|
.map(Map.Entry::getValue)
|
|
.flatMap(Stream::of)
|
|
.filter(j -> j.getDependsOnJobId().equals(jobSpecId))
|
|
.toList();
|
|
}
|
|
|
|
@Override
|
|
public @NonNull List<DependencySpec> getAllDependencySpecs() {
|
|
return Stream.of(dependenciesByJobId)
|
|
.map(Map.Entry::getValue)
|
|
.flatMap(Stream::of)
|
|
.toList();
|
|
}
|
|
}
|