| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- // Copyright 2020 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
- import FirebaseCore
- /// Possible states of model downloading.
- enum DownloadStatus {
- case notStarted
- case inProgress
- case completed
- }
- /// Progress and completion handlers for a model download.
- class DownloadHandlers {
- typealias ProgressHandler = (Float) -> Void
- typealias Completion = (Result<CustomModel, DownloadError>) -> Void
- var progressHandler: ProgressHandler?
- var completion: Completion
- init(progressHandler: ProgressHandler?, completion: @escaping Completion) {
- self.progressHandler = progressHandler
- self.completion = completion
- }
- }
- /// Manager to handle model downloading device and storing downloaded model info to persistent storage.
- class ModelDownloadTask: NSObject {
- /// Name of the app associated with this instance of ModelDownloadTask.
- private let appName: String
- /// Model info downloaded from server.
- private(set) var remoteModelInfo: RemoteModelInfo
- /// User defaults to which local model info should ultimately be written.
- private let defaults: UserDefaults
- /// Task to handle model file download.
- private var downloadTask: URLSessionDownloadTask?
- /// Progress and completion handlers associated with this model download task.
- private let downloadHandlers: DownloadHandlers
- /// Keeps track of download associated with this model download task.
- private(set) var downloadStatus: DownloadStatus = .notStarted
- /// URLSession to handle model downloads.
- private lazy var downloadSession = URLSession(configuration: .ephemeral,
- delegate: self,
- delegateQueue: nil)
- init(remoteModelInfo: RemoteModelInfo, appName: String, defaults: UserDefaults,
- progressHandler: DownloadHandlers.ProgressHandler? = nil,
- completion: @escaping DownloadHandlers.Completion) {
- self.remoteModelInfo = remoteModelInfo
- self.appName = appName
- self.defaults = defaults
- downloadHandlers = DownloadHandlers(
- progressHandler: progressHandler,
- completion: completion
- )
- }
- /// Asynchronously download model file to device.
- func resumeModelDownload() {
- guard downloadStatus == .notStarted else { return }
- let downloadTask = downloadSession.downloadTask(with: remoteModelInfo.downloadURL)
- downloadTask.resume()
- downloadStatus = .inProgress
- self.downloadTask = downloadTask
- }
- }
- /// Extension to handle delegate methods.
- extension ModelDownloadTask: URLSessionDownloadDelegate {
- /// Name for model file stored on device.
- var downloadedModelFileName: String {
- return "fbml_model__\(appName)__\(remoteModelInfo.name)"
- }
- func urlSession(_ session: URLSession,
- downloadTask: URLSessionDownloadTask,
- didFinishDownloadingTo location: URL) {
- assert(downloadTask == self.downloadTask)
- downloadStatus = .completed
- let savedURL = ModelFileManager.modelsDirectory
- .appendingPathComponent(downloadedModelFileName)
- do {
- try ModelFileManager.moveFile(at: location, to: savedURL)
- } catch let error as DownloadError {
- DispatchQueue.main.async {
- self.downloadHandlers
- .completion(.failure(error))
- }
- } catch {
- DispatchQueue.main.async {
- self.downloadHandlers
- .completion(.failure(.internalError(description: error.localizedDescription)))
- }
- }
- /// Generate local model info.
- let localModelInfo = LocalModelInfo(from: remoteModelInfo, path: savedURL.absoluteString)
- /// Write model to user defaults.
- localModelInfo.writeToDefaults(defaults, appName: appName)
- /// Build model from model info.
- let model = CustomModel(localModelInfo: localModelInfo)
- DispatchQueue.main.async {
- self.downloadHandlers.completion(.success(model))
- }
- }
- func urlSession(_ session: URLSession,
- downloadTask: URLSessionDownloadTask,
- didWriteData bytesWritten: Int64,
- totalBytesWritten: Int64,
- totalBytesExpectedToWrite: Int64) {
- assert(downloadTask == self.downloadTask)
- /// Check if progress handler is unspecified.
- guard let progressHandler = downloadHandlers.progressHandler else { return }
- let calculatedProgress = Float(totalBytesWritten) / Float(totalBytesExpectedToWrite)
- DispatchQueue.main.async {
- progressHandler(calculatedProgress)
- }
- }
- }
|