65 lines
2.1 KiB
Swift
65 lines
2.1 KiB
Swift
//
|
|
// LazyDecoding.swift
|
|
// Tusker
|
|
//
|
|
// Created by Shadowfacts on 4/11/20.
|
|
// Copyright © 2020 Shadowfacts. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
private let decoder = PropertyListDecoder()
|
|
private let encoder = PropertyListEncoder()
|
|
|
|
// todo: invalidate cache on underlying data change using KVO?
|
|
@propertyWrapper
|
|
public struct LazilyDecoding<Enclosing, Value: Codable> {
|
|
|
|
private let keyPath: ReferenceWritableKeyPath<Enclosing, Data?>
|
|
private let fallback: Value
|
|
private var value: Value?
|
|
|
|
init(from keyPath: ReferenceWritableKeyPath<Enclosing, Data?>, fallback: Value) {
|
|
self.keyPath = keyPath
|
|
self.fallback = fallback
|
|
}
|
|
|
|
public var wrappedValue: Value {
|
|
get { fatalError("called LazilyDecoding wrappedValue getter") }
|
|
set { fatalError("called LazilyDecoding wrappedValue setter") }
|
|
}
|
|
|
|
public static subscript(_enclosingInstance instance: Enclosing, wrapped wrappedKeyPath: ReferenceWritableKeyPath<Enclosing, Value>, storage storageKeyPath: ReferenceWritableKeyPath<Enclosing, Self>) -> Value {
|
|
get {
|
|
var wrapper = instance[keyPath: storageKeyPath]
|
|
if let value = wrapper.value {
|
|
return value
|
|
} else {
|
|
guard let data = instance[keyPath: wrapper.keyPath] else { return wrapper.fallback }
|
|
do {
|
|
let value = try decoder.decode(Value.self, from: data)
|
|
wrapper.value = value
|
|
instance[keyPath: storageKeyPath] = wrapper
|
|
return value
|
|
} catch {
|
|
return wrapper.fallback
|
|
}
|
|
}
|
|
}
|
|
set {
|
|
var wrapper = instance[keyPath: storageKeyPath]
|
|
wrapper.value = newValue
|
|
instance[keyPath: storageKeyPath] = wrapper
|
|
let newData = try? encoder.encode(newValue)
|
|
instance[keyPath: wrapper.keyPath] = newData
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
extension LazilyDecoding {
|
|
init(arrayFrom keyPath: ReferenceWritableKeyPath<Enclosing, Data?>) {
|
|
self.init(from: keyPath, fallback: [] as! Value)
|
|
}
|
|
}
|