2018-10-02 17:42:37 +00:00
|
|
|
//
|
|
|
|
// ImageCache.swift
|
|
|
|
// Tusker
|
|
|
|
//
|
|
|
|
// Created by Shadowfacts on 8/21/18.
|
|
|
|
// Copyright © 2018 Shadowfacts. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import UIKit
|
|
|
|
|
|
|
|
class ImageCache {
|
|
|
|
|
2022-02-06 19:36:01 +00:00
|
|
|
static let avatars = ImageCache(name: "Avatars", memoryExpiry: .seconds(60 * 60), diskExpiry: .seconds(60 * 60 * 24 * 7), desiredSize: CGSize(width: 50, height: 50))
|
|
|
|
static let headers = ImageCache(name: "Headers", memoryExpiry: .seconds(60 * 5), diskExpiry: .seconds(60 * 60 * 24 * 7))
|
2018-11-08 00:24:52 +00:00
|
|
|
static let attachments = ImageCache(name: "Attachments", memoryExpiry: .seconds(60 * 2))
|
2022-02-06 19:36:01 +00:00
|
|
|
static let emojis = ImageCache(name: "Emojis", memoryExpiry: .seconds(60 * 5), diskExpiry: .seconds(60 * 60 * 24 * 7))
|
2020-09-21 22:03:51 +00:00
|
|
|
|
|
|
|
#if DEBUG
|
|
|
|
private static let disableCaching = ProcessInfo.processInfo.environment.keys.contains("DISABLE_IMAGE_CACHE")
|
|
|
|
#else
|
|
|
|
private static let disableCaching = false
|
|
|
|
#endif
|
2018-10-02 17:42:37 +00:00
|
|
|
|
2021-01-16 20:24:15 +00:00
|
|
|
private let cache: ImageDataCache
|
2022-02-06 15:24:07 +00:00
|
|
|
private let desiredPixelSize: CGSize?
|
2018-10-02 17:42:37 +00:00
|
|
|
|
2021-01-18 23:46:59 +00:00
|
|
|
init(name: String, memoryExpiry: CacheExpiry, diskExpiry: CacheExpiry? = nil, desiredSize: CGSize? = nil) {
|
2021-01-17 18:27:30 +00:00
|
|
|
// todo: might not always want to use UIScreen.main for this, e.g. Catalyst?
|
|
|
|
let pixelSize = desiredSize?.applying(.init(scaleX: UIScreen.main.scale, y: UIScreen.main.scale))
|
2022-02-06 15:24:07 +00:00
|
|
|
self.desiredPixelSize = pixelSize
|
2021-01-17 18:27:30 +00:00
|
|
|
self.cache = ImageDataCache(name: name, memoryExpiry: memoryExpiry, diskExpiry: diskExpiry, storeOriginalDataInMemory: diskExpiry == nil, desiredPixelSize: pixelSize)
|
2018-11-08 00:24:52 +00:00
|
|
|
}
|
|
|
|
|
2021-01-20 23:31:30 +00:00
|
|
|
func get(_ url: URL, loadOriginal: Bool = false, completion: ((Data?, UIImage?) -> Void)?) -> Request? {
|
2018-10-02 17:42:37 +00:00
|
|
|
let key = url.absoluteString
|
2022-02-06 15:24:07 +00:00
|
|
|
|
|
|
|
let wrappedCompletion: ((Data?, UIImage?) -> Void)?
|
|
|
|
if let completion = completion {
|
|
|
|
wrappedCompletion = { (data, image) in
|
2022-11-02 02:12:26 +00:00
|
|
|
if let image {
|
|
|
|
if !loadOriginal,
|
|
|
|
let size = self.desiredPixelSize {
|
|
|
|
image.prepareThumbnail(of: size) {
|
|
|
|
completion(data, $0)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
image.prepareForDisplay {
|
|
|
|
completion(data, $0)
|
|
|
|
}
|
2022-02-06 15:24:07 +00:00
|
|
|
}
|
2022-11-02 02:12:26 +00:00
|
|
|
} else {
|
|
|
|
completion(data, image)
|
2021-01-18 18:46:07 +00:00
|
|
|
}
|
2020-10-18 15:11:47 +00:00
|
|
|
}
|
2022-02-06 15:24:07 +00:00
|
|
|
} else {
|
|
|
|
wrappedCompletion = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if !ImageCache.disableCaching,
|
|
|
|
let entry = try? cache.get(key, loadOriginal: loadOriginal) {
|
|
|
|
wrappedCompletion?(entry.data, entry.image)
|
2020-01-25 15:06:27 +00:00
|
|
|
return nil
|
2018-10-02 17:42:37 +00:00
|
|
|
} else {
|
2022-11-02 02:12:09 +00:00
|
|
|
let task = dataTask(url: url, completion: wrappedCompletion)
|
|
|
|
task.resume()
|
|
|
|
return task
|
2018-10-02 17:42:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-16 16:31:42 +00:00
|
|
|
func get(_ url: URL, loadOriginal: Bool = false) async -> (Data?, UIImage?) {
|
2022-09-18 00:27:36 +00:00
|
|
|
// todo: this should integrate with the task cancellation mechanism somehow
|
2022-05-16 16:31:42 +00:00
|
|
|
return await withCheckedContinuation { continuation in
|
|
|
|
_ = get(url, loadOriginal: loadOriginal) { data, image in
|
|
|
|
continuation.resume(returning: (data, image))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-18 19:50:56 +00:00
|
|
|
func fetchIfNotCached(_ url: URL) {
|
|
|
|
// if caching is disabled, don't bother fetching since nothing will be done with the result
|
|
|
|
guard !ImageCache.disableCaching else { return }
|
|
|
|
|
2022-11-02 02:12:09 +00:00
|
|
|
if !((try? cache.has(url.absoluteString)) ?? false) {
|
2022-11-09 23:56:59 +00:00
|
|
|
let task = dataTask(url: url, completion: nil)
|
2022-11-02 02:12:09 +00:00
|
|
|
task.resume()
|
2021-01-18 19:50:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-02 02:12:09 +00:00
|
|
|
private func dataTask(url: URL, completion: ((Data?, UIImage?) -> Void)?) -> URLSessionDataTask {
|
|
|
|
return URLSession.shared.dataTask(with: url) { data, response, error in
|
|
|
|
guard error == nil,
|
|
|
|
let data else {
|
|
|
|
return
|
2021-01-18 19:50:56 +00:00
|
|
|
}
|
2022-11-09 23:56:59 +00:00
|
|
|
let image = UIImage(data: data)
|
|
|
|
try? self.cache.set(url.absoluteString, data: data, image: image)
|
|
|
|
completion?(data, image)
|
2021-01-18 19:50:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-16 20:24:15 +00:00
|
|
|
func getData(_ url: URL) -> Data? {
|
|
|
|
return try? cache.getData(url.absoluteString)
|
|
|
|
}
|
|
|
|
|
2021-01-20 23:31:30 +00:00
|
|
|
func get(_ url: URL, loadOriginal: Bool = false) -> ImageDataCache.Entry? {
|
|
|
|
return try? cache.get(url.absoluteString, loadOriginal: loadOriginal)
|
2018-10-12 01:20:58 +00:00
|
|
|
}
|
2018-10-02 17:42:37 +00:00
|
|
|
|
2020-09-12 14:49:08 +00:00
|
|
|
func reset() throws {
|
|
|
|
try cache.removeAll()
|
|
|
|
}
|
|
|
|
|
2022-11-28 19:05:35 +00:00
|
|
|
func getDiskSizeInBytes() -> Int64? {
|
|
|
|
return cache.disk?.getSizeInBytes()
|
|
|
|
}
|
|
|
|
|
2022-11-02 02:12:09 +00:00
|
|
|
typealias Request = URLSessionDataTask
|
2018-10-02 17:42:37 +00:00
|
|
|
|
|
|
|
}
|