Change order of suspending steps to prevent work from going to a suspended queue. Issue #1400

This commit is contained in:
Maurice Parker 2019-12-04 17:27:39 -07:00
parent 26f49d4b51
commit 95c1b36fe7
9 changed files with 60 additions and 30 deletions

View File

@ -405,8 +405,11 @@ public final class Account: DisplayNameProvider, UnreadCountProvider, Container,
} }
public func suspend() { public func suspendNetwork() {
delegate.suspend() delegate.suspendNetwork()
}
public func suspendDatabase() {
database.suspend() database.suspend()
save() save()
metadataFile.suspend() metadataFile.suspend()

View File

@ -50,7 +50,12 @@ protocol AccountDelegate {
static func validateCredentials(transport: Transport, credentials: Credentials, endpoint: URL?, completion: @escaping (Result<Credentials?, Error>) -> Void) static func validateCredentials(transport: Transport, credentials: Credentials, endpoint: URL?, completion: @escaping (Result<Credentials?, Error>) -> Void)
// For iOS, so we can suspend and resume properly. /// Suspend all network activity
func suspend() // Make sure no SQLite databases are open. func suspendNetwork()
/// Suspend the SQLLite databases
func suspendDatabase()
/// Make sure no SQLite databases are open and we are ready to issue network requests.
func resume() func resume()
} }

View File

@ -164,9 +164,13 @@ public final class AccountManager: UnreadCountProvider {
return accountsDictionary[accountID] return accountsDictionary[accountID]
} }
public func suspendAll() { public func suspendNetworkAll() {
isSuspended = true isSuspended = true
accounts.forEach { $0.suspend() } accounts.forEach { $0.suspendNetwork() }
}
public func suspendDatabaseAll() {
accounts.forEach { $0.suspendDatabase() }
} }
public func resumeAll() { public func resumeAll() {

View File

@ -437,13 +437,17 @@ final class FeedWranglerAccountDelegate: AccountDelegate {
// MARK: Suspend and Resume (for iOS) // MARK: Suspend and Resume (for iOS)
/// Suspend the sync database so that it can close its SQLite file. /// Suspend all network activity
func suspend() { func suspendNetwork() {
caller.cancelAll() caller.cancelAll()
}
/// Suspend the SQLLite databases
func suspendDatabase() {
database.suspend() database.suspend()
} }
/// Resume the sync database let it reopen its SQLite file. /// Make sure no SQLite databases are open and we are ready to issue network requests.
func resume() { func resume() {
database.resume() database.resume()
} }

View File

@ -554,13 +554,17 @@ final class FeedbinAccountDelegate: AccountDelegate {
// MARK: Suspend and Resume (for iOS) // MARK: Suspend and Resume (for iOS)
/// Suspend the sync database so that it can close its SQLite file. /// Suspend all network activity
func suspend() { func suspendNetwork() {
caller.suspend() caller.suspend()
}
/// Suspend the SQLLite databases
func suspendDatabase() {
database.suspend() database.suspend()
} }
/// Resume the sync database let it reopen its SQLite file. /// Make sure no SQLite databases are open and we are ready to issue network requests.
func resume() { func resume() {
caller.resume() caller.resume()
database.resume() database.resume()

View File

@ -509,13 +509,17 @@ final class FeedlyAccountDelegate: AccountDelegate {
// MARK: Suspend and Resume (for iOS) // MARK: Suspend and Resume (for iOS)
/// Suspend the sync database so that it can close its SQLite file. /// Suspend all network activity
func suspend() { func suspendNetwork() {
operationQueue.cancelAllOperations() operationQueue.cancelAllOperations()
}
/// Suspend the SQLLite databases
func suspendDatabase() {
database.suspend() database.suspend()
} }
/// Resume the sync database let it reopen its SQLite file. /// Make sure no SQLite databases are open and we are ready to issue network requests.
func resume() { func resume() {
database.resume() database.resume()
} }

View File

@ -31,10 +31,6 @@ final class LocalAccountDelegate: AccountDelegate {
return refresher.progress return refresher.progress
} }
func cancelAll(for account: Account) {
refresher.cancelAll()
}
func refreshAll(for account: Account, completion: @escaping (Result<Void, Error>) -> Void) { func refreshAll(for account: Account, completion: @escaping (Result<Void, Error>) -> Void) {
refresher.refreshFeeds(account.flattenedWebFeeds()) { refresher.refreshFeeds(account.flattenedWebFeeds()) {
completion(.success(())) completion(.success(()))
@ -205,10 +201,14 @@ final class LocalAccountDelegate: AccountDelegate {
// MARK: Suspend and Resume (for iOS) // MARK: Suspend and Resume (for iOS)
func suspend() { func suspendNetwork() {
// Nothing to do refresher.cancelAll()
} }
func suspendDatabase() {
// Nothing to do
}
func resume() { func resume() {
// Nothing to do // Nothing to do
} }

View File

@ -435,13 +435,17 @@ final class ReaderAPIAccountDelegate: AccountDelegate {
// MARK: Suspend and Resume (for iOS) // MARK: Suspend and Resume (for iOS)
/// Suspend the sync database so that it can close its SQLite file. /// Suspend all network activity
func suspend() { func suspendNetwork() {
caller.cancelAll() caller.cancelAll()
}
/// Suspend the SQLLite databases
func suspendDatabase() {
database.suspend() database.suspend()
} }
/// Resume the sync database let it reopen its SQLite file. /// Make sure no SQLite databases are open and we are ready to issue network requests.
func resume() { func resume() {
database.resume() database.resume()
} }

View File

@ -303,14 +303,16 @@ private extension AppDelegate {
func suspendApplication() { func suspendApplication() {
guard !isAnySceneInForeground else { return } guard !isAnySceneInForeground else { return }
AccountManager.shared.suspendNetworkAll()
CoalescingQueue.standard.performCallsImmediately() CoalescingQueue.standard.performCallsImmediately()
for scene in UIApplication.shared.connectedScenes { for scene in UIApplication.shared.connectedScenes {
if let sceneDelegate = scene.delegate as? SceneDelegate { if let sceneDelegate = scene.delegate as? SceneDelegate {
sceneDelegate.suspend() sceneDelegate.suspend()
} }
} }
AccountManager.shared.saveAll()
AccountManager.shared.suspendAll() AccountManager.shared.suspendDatabaseAll()
} }
} }