Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

fix: Manually-paused uploads don't resume again #27

Merged
merged 3 commits into from
Jun 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Sources/MuxUploadSDK/PublicAPI/MuxUpload.swift
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ public final class MuxUpload : Hashable, Equatable {
MuxUploadSDK.logger?.warning("start() called but upload is already in progress")
fileWorker?.addDelegate(
withToken: id,
InternalUploaderDelegate { [weak self] state in self?.handleStateUpdate(state) }
InternalUploaderDelegate { [self] state in handleStateUpdate(state) }
)
fileWorker?.start()
return
Expand Down
20 changes: 8 additions & 12 deletions Sources/MuxUploadSDK/Upload/ChunkedFileUploader.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ class ChunkedFileUploader {
private var currentWorkTask: Task<(), Never>? = nil
private var _currentState: InternalUploadState = .ready
private var overallProgress: Progress = Progress()
private var lastSeenUpdate: InternalUploadState? = nil
private var lastReadCount: UInt64 = 0
private let reporter = Reporter()

Expand Down Expand Up @@ -121,20 +120,17 @@ class ChunkedFileUploader {
notifyStateFromWorker(.success(success))
} catch {
file.close()
if let lastUpdate = lastSeenUpdate {
switch lastUpdate {
case .uploading(let update): do {
if lastReadCount > 0 {
lastReadCount = UInt64(update.progress.completedUnitCount)
}
}
default: break
if error is CancellationError {
MuxUploadSDK.logger?.debug("Task finished due to cancellation in state \(String(describing: self.currentState))")
if case let .uploading(update) = self.currentState {
self._currentState = .paused(update)
}
} else {
MuxUploadSDK.logger?.debug("Task finished due to error in state \(String(describing: self.currentState))")
let uploadError = InternalUploaderError(reason: error, lastByte: lastReadCount)
notifyStateFromWorker(.failure(uploadError))
}
let uploadError = InternalUploaderError(reason: error, lastByte: lastReadCount)
notifyStateFromWorker(.failure(uploadError))
}

}
currentWorkTask = task
}
Expand Down
6 changes: 2 additions & 4 deletions Sources/MuxUploadSDK/Upload/UploadPersistence.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ class UploadPersistence {
try remove(entryAtAbsUrl: upload.uploadURL)
}
} catch {
MuxUploadSDK.logger?.critical("Swallowed error writing to UploadPersistence! Error below:\n\(error.localizedDescription)")
// This makes a lot of noise on the emulator, but might be worth logging if you're having issues around here
//MuxUploadSDK.logger?.critical("Swallowed error writing to UploadPersistence! Error below:\n\(error.localizedDescription)")
}
}

Expand Down Expand Up @@ -81,8 +82,6 @@ class UploadPersistence {

func maybeOpenCache() throws {
if cache == nil {
MuxUploadSDK.logger?.info("Had to populate write-through cache")

try self.uploadsFile.maybeOpenCache()
self.cache = try uploadsFile.readContents().asDictionary()
try cleanUpOldEntries() // Obligatory
Expand Down Expand Up @@ -207,7 +206,6 @@ fileprivate struct UploadsFileImpl : UploadsFile {
func maybeOpenCache() throws {
let dir = fileURL.deletingLastPathComponent()
if !FileManager.default.fileExists(atPath: dir.path) {
MuxUploadSDK.logger?.info("Had to create temp dir")
try FileManager.default.createDirectory(atPath: dir.path, withIntermediateDirectories: true)
}

Expand Down