2019-03-28 08:56:35 -07:00
|
|
|
package org.thoughtcrime.securesms.jobmanager.impl;
|
|
|
|
|
|
|
|
import android.app.Application;
|
|
|
|
import android.app.job.JobInfo;
|
2020-08-19 10:06:26 +10:00
|
|
|
import androidx.annotation.NonNull;
|
2019-03-28 08:56:35 -07:00
|
|
|
|
|
|
|
import org.thoughtcrime.securesms.jobmanager.Constraint;
|
|
|
|
import org.thoughtcrime.securesms.sms.TelephonyServiceState;
|
|
|
|
|
|
|
|
public class CellServiceConstraint implements Constraint {
|
|
|
|
|
|
|
|
public static final String KEY = "CellServiceConstraint";
|
|
|
|
|
|
|
|
private final Application application;
|
|
|
|
|
|
|
|
public CellServiceConstraint(@NonNull Application application) {
|
|
|
|
this.application = application;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public @NonNull String getFactoryKey() {
|
|
|
|
return KEY;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isMet() {
|
|
|
|
TelephonyServiceState telephonyServiceState = new TelephonyServiceState();
|
|
|
|
return telephonyServiceState.isConnected(application);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void applyToJobInfo(@NonNull JobInfo.Builder jobInfoBuilder) {
|
|
|
|
}
|
|
|
|
|
|
|
|
public static final class Factory implements Constraint.Factory<CellServiceConstraint> {
|
|
|
|
|
|
|
|
private final Application application;
|
|
|
|
|
|
|
|
public Factory(@NonNull Application application) {
|
|
|
|
this.application = application;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public CellServiceConstraint create() {
|
|
|
|
return new CellServiceConstraint(application);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|