| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- // Copyright 2022 Google LLC
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- import Foundation
- #if COCOAPODS
- import GTMSessionFetcher
- #else
- import GTMSessionFetcherCore
- #endif
- /**
- * `StorageDownloadTask` implements resumable downloads from an object in Firebase Storage.
- *
- * Downloads can be returned on completion with a completion handler, and can be monitored
- * by attaching observers, or controlled by calling `pause()`, `resume()`,
- * or `cancel()`.
- *
- * Downloads can currently be returned as `Data` in memory, or as a `URL` to a file on disk.
- *
- * Downloads are performed on a background queue, and callbacks are raised on the developer
- * specified `callbackQueue` in Storage, or the main queue if left unspecified.
- */
- @objc(FIRStorageDownloadTask)
- @available(iOS 13, tvOS 13, macOS 10.15, macCatalyst 13, watchOS 7, *)
- open class StorageDownloadTask: StorageObservableTask, StorageTaskManagement {
- /**
- * Prepares a task and begins execution.
- */
- @objc open func enqueue() {
- Task {
- await enqueueImplementation()
- }
- }
- /**
- * Pauses a task currently in progress. Calling this on a paused task has no effect.
- */
- @objc open func pause() {
- dispatchQueue.async { [weak self] in
- guard let self = self else { return }
- if self.state == .paused || self.state == .pausing {
- return
- }
- self.state = .pausing
- // Use the resume callback to confirm pause status since it always runs after the last
- // NSURLSession update.
- self.fetcher?.resumeDataBlock = { [weak self] (data: Data) in
- guard let self = self else { return }
- self.downloadData = data
- self.state = .paused
- self.fire(for: .pause, snapshot: self.snapshot)
- }
- self.fetcher?.stopFetching()
- }
- }
- /**
- * Cancels a task.
- */
- @objc open func cancel() {
- cancel(withError: StorageError.cancelled as NSError)
- }
- /**
- * Resumes a paused task. Calling this on a running task has no effect.
- */
- @objc open func resume() {
- dispatchQueue.async { [weak self] in
- guard let self = self else { return }
- self.state = .resuming
- self.fire(for: .resume, snapshot: self.snapshot)
- self.state = .running
- Task {
- await self.enqueueImplementation(resumeWith: self.downloadData)
- }
- }
- }
- private var fetcher: GTMSessionFetcher?
- var downloadData: Data?
- // Hold completion in object to force it to be retained until completion block is called.
- var completionData: ((Data?, Error?) -> Void)?
- var completionURL: ((URL?, Error?) -> Void)?
- // MARK: - Internal Implementations
- override init(reference: StorageReference,
- queue: DispatchQueue,
- file: URL?) {
- super.init(reference: reference, queue: queue, file: file)
- }
- deinit {
- self.fetcher?.stopFetching()
- }
- private func enqueueImplementation(resumeWith resumeData: Data? = nil) async {
- state = .queueing
- var request = baseRequest
- request.httpMethod = "GET"
- request.timeoutInterval = reference.storage.maxDownloadRetryTime
- var components = URLComponents(url: request.url!, resolvingAgainstBaseURL: false)
- components?.query = "alt=media"
- request.url = components?.url
- var fetcher: GTMSessionFetcher
- if let resumeData {
- fetcher = GTMSessionFetcher(downloadResumeData: resumeData)
- fetcher.comment = "Resuming DownloadTask"
- } else {
- let fetcherService = await StorageFetcherService.shared.service(reference.storage)
- fetcher = fetcherService.fetcher(with: request)
- fetcher.comment = "Starting DownloadTask"
- }
- fetcher.maxRetryInterval = reference.storage.maxDownloadRetryInterval
- if let fileURL {
- // Handle file downloads
- fetcher.destinationFileURL = fileURL
- fetcher.downloadProgressBlock = { [weak self] (bytesWritten: Int64,
- totalBytesWritten: Int64,
- totalBytesExpectedToWrite: Int64) in
- guard let self = self else { return }
- self.state = .progress
- self.progress.completedUnitCount = totalBytesWritten
- self.progress.totalUnitCount = totalBytesExpectedToWrite
- self.fire(for: .progress, snapshot: self.snapshot)
- self.state = .running
- }
- } else {
- // Handle data downloads
- fetcher.receivedProgressBlock = { [weak self] (bytesWritten: Int64,
- totalBytesWritten: Int64) in
- guard let self = self else { return }
- self.state = .progress
- self.progress.completedUnitCount = totalBytesWritten
- if let totalLength = self.fetcher?.response?.expectedContentLength {
- self.progress.totalUnitCount = totalLength
- }
- self.fire(for: .progress, snapshot: self.snapshot)
- self.state = .running
- }
- }
- self.fetcher = fetcher
- state = .running
- do {
- let data = try await self.fetcher?.beginFetch()
- // Fire last progress updates
- fire(for: .progress, snapshot: snapshot)
- // Download completed successfully, fire completion callbacks
- state = .success
- if let data {
- downloadData = data
- }
- fire(for: .success, snapshot: snapshot)
- } catch {
- fire(for: .progress, snapshot: snapshot)
- state = .failed
- self.error = StorageErrorCode.error(
- withServerError: error as NSError,
- ref: reference
- )
- fire(for: .failure, snapshot: snapshot)
- }
- removeAllObservers()
- }
- func cancel(withError error: NSError) {
- dispatchQueue.async { [weak self] in
- guard let self = self else { return }
- self.state = .cancelled
- self.fetcher?.stopFetching()
- self.error = error
- self.fire(for: .failure, snapshot: self.snapshot)
- self.removeAllObservers()
- }
- }
- }
|