summaryrefslogtreecommitdiff
path: root/Sora/Data/ImageCacheManager.swift
blob: 8b886dfe3e039f07df532f09d0f87b4b1a75d187 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import Combine
import SwiftUI

@MainActor
final class ImageCacheManager {
  // MARK: - Singleton
  static let shared = ImageCacheManager()

  // MARK: - Private Properties
  private let cache = URLCache(
    memoryCapacity: 100 * 1_024 * 1_024,  // 100 MB
    diskCapacity: 500 * 1_024 * 1_024,  // 500 MB
    directory: FileManager.default.urls(for: .cachesDirectory, in: .userDomainMask).first?
      .appendingPathComponent("SoraImageCache", isDirectory: true)
  )
  private var cancellables = Set<AnyCancellable>()
  private let downloadQueue = OperationQueue()

  // MARK: - Initialisation
  private init() {
    downloadQueue.maxConcurrentOperationCount = 5
  }

  // MARK: - Public Methods
  func preloadImages(_ urls: [URL]) {
    for url in urls {
      downloadQueue.addOperation {
        let cancellable = URLSession.shared.dataTaskPublisher(for: url)
          .map { CachedURLResponse(response: $0.response, data: $0.data) }
          .sink(
            receiveCompletion: { _ in () },
            receiveValue: { [weak self] cachedResponse in
              self?.cache.storeCachedResponse(cachedResponse, for: URLRequest(url: url))
            }
          )

        DispatchQueue.main.async { [weak self] in
          self?.cancellables.insert(cancellable)
        }
      }
    }
  }
}