| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- import Foundation
- protocol FileStorage {
- func save<Value: JSON>(_ value: Value, as name: String)
- func saveAsync<Value: JSON>(_ value: Value, as name: String) async
- func retrieve<Value: JSON>(_ name: String, as type: Value.Type) -> Value?
- func retrieveAsync<Value: JSON>(_ name: String, as type: Value.Type) async -> Value?
- func retrieveRaw(_ name: String) -> RawJSON?
- func retrieveRawAsync(_ name: String) async -> RawJSON?
- func append<Value: JSON>(_ newValue: Value, to name: String)
- func append<Value: JSON>(_ newValues: [Value], to name: String)
- func append<Value: JSON, T: Equatable>(_ newValue: Value, to name: String, uniqBy keyPath: KeyPath<Value, T>)
- func append<Value: JSON, T: Equatable>(_ newValues: [Value], to name: String, uniqBy keyPath: KeyPath<Value, T>)
- func remove(_ name: String)
- func rename(_ name: String, to newName: String)
- func transaction(_ exec: (FileStorage) -> Void)
- func urlFor(file: String) -> URL?
- }
- final class BaseFileStorage: FileStorage {
- private let processQueue = DispatchQueue.markedQueue(label: "BaseFileStorage.processQueue", qos: .utility)
- func save<Value: JSON>(_ value: Value, as name: String) {
- processQueue.safeSync {
- if let value = value as? RawJSON, let data = value.data(using: .utf8) {
- try? Disk.save(data, to: .documents, as: name)
- } else {
- try? Disk.save(value, to: .documents, as: name, encoder: JSONCoding.encoder)
- }
- }
- }
- func saveAsync<Value: JSON>(_ value: Value, as name: String) async {
- await withCheckedContinuation { continuation in
- processQueue.safeSync {
- if let value = value as? RawJSON, let data = value.data(using: .utf8) {
- try? Disk.save(data, to: .documents, as: name)
- } else {
- try? Disk.save(value, to: .documents, as: name, encoder: JSONCoding.encoder)
- }
- continuation.resume()
- }
- }
- }
- func retrieve<Value: JSON>(_ name: String, as type: Value.Type) -> Value? {
- processQueue.safeSync {
- try? Disk.retrieve(name, from: .documents, as: type, decoder: JSONCoding.decoder)
- }
- }
- func retrieveAsync<Value: JSON>(_ name: String, as type: Value.Type) async -> Value? {
- await withCheckedContinuation { continuation in
- processQueue.safeSync {
- let result = try? Disk.retrieve(name, from: .documents, as: type, decoder: JSONCoding.decoder)
- continuation.resume(returning: result)
- }
- }
- }
- func retrieveRaw(_ name: String) -> RawJSON? {
- processQueue.safeSync {
- guard let data = try? Disk.retrieve(name, from: .documents, as: Data.self) else {
- return nil
- }
- return String(data: data, encoding: .utf8)
- }
- }
- func retrieveRawAsync(_ name: String) async -> RawJSON? {
- await withCheckedContinuation { continuation in
- processQueue.safeSync {
- guard let data = try? Disk.retrieve(name, from: .documents, as: Data.self) else {
- continuation.resume(returning: nil)
- return
- }
- continuation.resume(returning: String(data: data, encoding: .utf8))
- }
- }
- }
- func append<Value: JSON>(_ newValue: Value, to name: String) {
- processQueue.safeSync {
- try? Disk.append(newValue, to: name, in: .documents, decoder: JSONCoding.decoder, encoder: JSONCoding.encoder)
- }
- }
- func append<Value: JSON>(_ newValues: [Value], to name: String) {
- processQueue.safeSync {
- try? Disk.append(newValues, to: name, in: .documents, decoder: JSONCoding.decoder, encoder: JSONCoding.encoder)
- }
- }
- func append<Value: JSON, T: Equatable>(_ newValue: Value, to name: String, uniqBy keyPath: KeyPath<Value, T>) {
- if let value = retrieve(name, as: Value.self) {
- if value[keyPath: keyPath] != newValue[keyPath: keyPath] {
- append(newValue, to: name)
- }
- } else if let values = retrieve(name, as: [Value].self) {
- guard values.first(where: { $0[keyPath: keyPath] == newValue[keyPath: keyPath] }) == nil else {
- return
- }
- append(newValue, to: name)
- } else {
- save(newValue, as: name)
- }
- }
- func append<Value: JSON, T: Equatable>(_ newValues: [Value], to name: String, uniqBy keyPath: KeyPath<Value, T>) {
- if let value = retrieve(name, as: Value.self) {
- if newValues.firstIndex(where: { $0[keyPath: keyPath] == value[keyPath: keyPath] }) != nil {
- save(newValues, as: name)
- return
- }
- append(newValues, to: name)
- } else if var values = retrieve(name, as: [Value].self) {
- for newValue in newValues {
- if let index = values.firstIndex(where: { $0[keyPath: keyPath] == newValue[keyPath: keyPath] }) {
- values[index] = newValue
- } else {
- values.append(newValue)
- }
- save(values, as: name)
- }
- } else {
- save(newValues, as: name)
- }
- }
- func remove(_ name: String) {
- processQueue.safeSync {
- try? Disk.remove(name, from: .documents)
- }
- }
- func rename(_ name: String, to newName: String) {
- processQueue.safeSync {
- try? Disk.rename(name, in: .documents, to: newName)
- }
- }
- func transaction(_ exec: (FileStorage) -> Void) {
- processQueue.safeSync {
- exec(self)
- }
- }
- func urlFor(file: String) -> URL? {
- try? Disk.url(for: file, in: .documents)
- }
- }
|