mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
2.5 KiB
Swift
68 lines
2.5 KiB
Swift
import SessionUtilitiesKit
|
|
|
|
@objc(SNJobQueue)
|
|
public final class JobQueue : NSObject, JobDelegate {
|
|
|
|
@objc public static let shared = JobQueue()
|
|
|
|
@objc public func add(_ job: Job, using transaction: Any) {
|
|
job.id = String(NSDate.millisecondTimestamp())
|
|
Configuration.shared.storage.persist(job, using: transaction)
|
|
job.delegate = self
|
|
job.execute()
|
|
}
|
|
|
|
@objc public func resumePendingJobs() {
|
|
let allJobTypes: [Job.Type] = [ AttachmentDownloadJob.self, AttachmentUploadJob.self, MessageReceiveJob.self, MessageSendJob.self, NotifyPNServerJob.self ]
|
|
allJobTypes.forEach { type in
|
|
let allPendingJobs = Configuration.shared.storage.getAllPendingJobs(of: type)
|
|
allPendingJobs.sorted(by: { $0.id! < $1.id! }).forEach { $0.execute() } // Retry the oldest jobs first
|
|
}
|
|
}
|
|
|
|
public func handleJobSucceeded(_ job: Job) {
|
|
Configuration.shared.storage.withAsync({ transaction in
|
|
Configuration.shared.storage.markJobAsSucceeded(job, using: transaction)
|
|
}, completion: {
|
|
// Do nothing
|
|
})
|
|
}
|
|
|
|
public func handleJobFailed(_ job: Job, with error: Error) {
|
|
job.failureCount += 1
|
|
let storage = Configuration.shared.storage
|
|
storage.withAsync({ transaction in
|
|
storage.persist(job, using: transaction)
|
|
}, completion: { // Intentionally capture self
|
|
if job.failureCount == type(of: job).maxFailureCount {
|
|
storage.withAsync({ transaction in
|
|
storage.markJobAsFailed(job, using: transaction)
|
|
}, completion: {
|
|
// Do nothing
|
|
})
|
|
} else {
|
|
let retryInterval = self.getRetryInterval(for: job)
|
|
Timer.weakScheduledTimer(withTimeInterval: retryInterval, target: self, selector: #selector(self.retry(_:)), userInfo: job, repeats: false)
|
|
}
|
|
})
|
|
}
|
|
|
|
private func getRetryInterval(for job: Job) -> TimeInterval {
|
|
// Arbitrary backoff factor...
|
|
// try 1 delay: 0.00s
|
|
// try 2 delay: 0.19s
|
|
// ...
|
|
// try 5 delay: 1.30s
|
|
// ...
|
|
// try 11 delay: 61.31s
|
|
let backoffFactor = 1.9
|
|
let maxBackoff: Double = 60 * 60 * 1000
|
|
return 0.1 * min(maxBackoff, pow(backoffFactor, Double(job.failureCount)))
|
|
}
|
|
|
|
@objc private func retry(_ job: Any) {
|
|
guard let job = job as? Job else { return }
|
|
job.execute()
|
|
}
|
|
}
|