2018-06-18 19:27:04 +00:00
|
|
|
/**
|
|
|
|
* Copyright (C) 2014 Open Whisper Systems
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
package org.thoughtcrime.securesms.jobmanager;
|
|
|
|
|
2018-08-09 14:15:43 +00:00
|
|
|
import org.thoughtcrime.securesms.jobmanager.requirements.NetworkBackoffRequirement;
|
|
|
|
import org.thoughtcrime.securesms.jobmanager.requirements.NetworkRequirement;
|
2018-06-18 19:27:04 +00:00
|
|
|
import org.thoughtcrime.securesms.jobmanager.requirements.Requirement;
|
2018-08-09 14:15:43 +00:00
|
|
|
import org.thoughtcrime.securesms.jobs.requirements.NetworkOrServiceRequirement;
|
|
|
|
import org.thoughtcrime.securesms.jobs.requirements.SqlCipherMigrationRequirement;
|
2018-06-18 19:27:04 +00:00
|
|
|
|
|
|
|
import java.io.Serializable;
|
2018-08-09 14:15:43 +00:00
|
|
|
import java.util.Collections;
|
2018-06-18 19:27:04 +00:00
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The set of parameters that describe a {@link org.thoughtcrime.securesms.jobmanager.Job}.
|
|
|
|
*/
|
|
|
|
public class JobParameters implements Serializable {
|
|
|
|
|
2018-06-20 02:22:39 +00:00
|
|
|
private static final long serialVersionUID = 4880456378402584584L;
|
|
|
|
|
2018-06-18 19:27:04 +00:00
|
|
|
private final List<Requirement> requirements;
|
2018-08-09 14:15:43 +00:00
|
|
|
private final boolean requiresNetwork;
|
|
|
|
private final boolean requiresSqlCipher;
|
2018-06-18 19:27:04 +00:00
|
|
|
private final int retryCount;
|
2018-06-20 02:22:39 +00:00
|
|
|
private final long retryUntil;
|
2018-06-18 19:27:04 +00:00
|
|
|
private final String groupId;
|
2018-08-09 14:15:43 +00:00
|
|
|
private final boolean ignoreDuplicates;
|
|
|
|
|
|
|
|
private JobParameters(String groupId,
|
|
|
|
boolean ignoreDuplicates,
|
|
|
|
boolean requiresNetwork,
|
|
|
|
boolean requiresSqlCipher,
|
|
|
|
int retryCount,
|
|
|
|
long retryUntil)
|
2018-06-18 19:27:04 +00:00
|
|
|
{
|
2018-11-15 20:05:08 +00:00
|
|
|
this.groupId = groupId;
|
|
|
|
this.ignoreDuplicates = ignoreDuplicates;
|
|
|
|
this.requirements = Collections.emptyList();
|
|
|
|
this.requiresNetwork = requiresNetwork;
|
|
|
|
this.requiresSqlCipher = requiresSqlCipher;
|
|
|
|
this.retryCount = retryCount;
|
|
|
|
this.retryUntil = retryUntil;
|
2018-08-09 14:15:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public boolean shouldIgnoreDuplicates() {
|
|
|
|
return ignoreDuplicates;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean requiresNetwork() {
|
|
|
|
return requiresNetwork || hasNetworkRequirement(requirements);
|
2018-06-18 19:27:04 +00:00
|
|
|
}
|
|
|
|
|
2018-08-09 14:15:43 +00:00
|
|
|
public boolean requiresSqlCipher() {
|
|
|
|
return requiresSqlCipher || hasSqlCipherRequirement(requirements);
|
|
|
|
}
|
|
|
|
|
|
|
|
private boolean hasNetworkRequirement(List<Requirement> requirements) {
|
|
|
|
if (requirements == null || requirements.size() == 0) return false;
|
|
|
|
|
|
|
|
for (Requirement requirement : requirements) {
|
|
|
|
if (requirement instanceof NetworkRequirement ||
|
|
|
|
requirement instanceof NetworkOrServiceRequirement ||
|
|
|
|
requirement instanceof NetworkBackoffRequirement)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2018-06-18 19:27:04 +00:00
|
|
|
}
|
|
|
|
|
2018-08-09 14:15:43 +00:00
|
|
|
private boolean hasSqlCipherRequirement(List<Requirement> requirements) {
|
|
|
|
if (requirements == null || requirements.size() == 0) return false;
|
|
|
|
|
|
|
|
for (Requirement requirement : requirements) {
|
|
|
|
if (requirement instanceof SqlCipherMigrationRequirement) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2018-06-18 19:27:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public int getRetryCount() {
|
|
|
|
return retryCount;
|
|
|
|
}
|
|
|
|
|
2018-06-20 02:22:39 +00:00
|
|
|
public long getRetryUntil() {
|
|
|
|
return retryUntil;
|
|
|
|
}
|
|
|
|
|
2018-12-07 20:16:37 +00:00
|
|
|
public ChainParameters getSoloChainParameters() {
|
|
|
|
return new ChainParameters.Builder()
|
|
|
|
.setGroupId(groupId)
|
|
|
|
.ignoreDuplicates(ignoreDuplicates)
|
|
|
|
.build();
|
|
|
|
}
|
|
|
|
|
2018-06-18 19:27:04 +00:00
|
|
|
/**
|
|
|
|
* @return a builder used to construct JobParameters.
|
|
|
|
*/
|
|
|
|
public static Builder newBuilder() {
|
|
|
|
return new Builder();
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getGroupId() {
|
|
|
|
return groupId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static class Builder {
|
2018-08-09 14:15:43 +00:00
|
|
|
private int retryCount = 100;
|
|
|
|
private long retryDuration = 0;
|
|
|
|
private String groupId = null;
|
|
|
|
private boolean ignoreDuplicates = false;
|
|
|
|
private boolean requiresNetwork = false;
|
|
|
|
private boolean requiresSqlCipher = false;
|
|
|
|
|
|
|
|
public Builder withNetworkRequirement() {
|
|
|
|
requiresNetwork = true;
|
2018-06-18 19:27:04 +00:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2018-08-09 14:15:43 +00:00
|
|
|
@Deprecated
|
|
|
|
public Builder withSqlCipherRequirement() {
|
|
|
|
requiresSqlCipher = true;
|
2018-06-18 19:27:04 +00:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Specify how many times the job should be retried if execution fails but onShouldRetry() returns
|
|
|
|
* true.
|
|
|
|
*
|
|
|
|
* @param retryCount The number of times the job should be retried.
|
|
|
|
* @return the builder.
|
|
|
|
*/
|
|
|
|
public Builder withRetryCount(int retryCount) {
|
2018-06-20 02:22:39 +00:00
|
|
|
this.retryCount = retryCount;
|
|
|
|
this.retryDuration = 0;
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2018-08-09 14:15:43 +00:00
|
|
|
/**
|
|
|
|
* Specify for how long we should keep retrying this job. Ignored if retryCount is set.
|
|
|
|
* @param duration The duration (in ms) for how long we should keep retrying this job for.
|
|
|
|
* @return the builder
|
|
|
|
*/
|
2018-06-20 02:22:39 +00:00
|
|
|
public Builder withRetryDuration(long duration) {
|
|
|
|
this.retryDuration = duration;
|
|
|
|
this.retryCount = 0;
|
2018-06-18 19:27:04 +00:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Specify a groupId the job should belong to. Jobs with the same groupId are guaranteed to be
|
|
|
|
* executed serially.
|
|
|
|
*
|
|
|
|
* @param groupId The job's groupId.
|
|
|
|
* @return the builder.
|
|
|
|
*/
|
|
|
|
public Builder withGroupId(String groupId) {
|
|
|
|
this.groupId = groupId;
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-08-09 14:15:43 +00:00
|
|
|
* If true, only one job with this groupId can be active at a time. If a job with the same
|
|
|
|
* groupId is already running, then subsequent jobs will be ignored silently. Only has an effect
|
|
|
|
* if a groupId has been specified via {@link #withGroupId(String)}.
|
|
|
|
* <p />
|
|
|
|
* Defaults to false.
|
2018-06-18 19:27:04 +00:00
|
|
|
*
|
2018-08-09 14:15:43 +00:00
|
|
|
* @param ignoreDuplicates Whether to ignore duplicates.
|
|
|
|
* @return the builder
|
2018-06-18 19:27:04 +00:00
|
|
|
*/
|
2018-08-09 14:15:43 +00:00
|
|
|
public Builder withDuplicatesIgnored(boolean ignoreDuplicates) {
|
|
|
|
this.ignoreDuplicates = ignoreDuplicates;
|
2018-06-18 19:27:04 +00:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return the JobParameters instance that describes a Job.
|
|
|
|
*/
|
|
|
|
public JobParameters create() {
|
2018-11-15 20:05:08 +00:00
|
|
|
return new JobParameters(groupId, ignoreDuplicates, requiresNetwork, requiresSqlCipher, retryCount, System.currentTimeMillis() + retryDuration);
|
2018-06-18 19:27:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|