-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCodablePackageDocument.swift
More file actions
107 lines (92 loc) · 4.15 KB
/
CodablePackageDocument.swift
File metadata and controls
107 lines (92 loc) · 4.15 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
//
// CodablePackageDocument.swift
// RadiantKit
//
// Created by Leo Dion.
// Copyright © 2025 BrightDigit.
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
// files (the “Software”), to deal in the Software without
// restriction, including without limitation the rights to use,
// copy, modify, merge, publish, distribute, sublicense, and/or
// sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following
// conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
// OTHER DEALINGS IN THE SOFTWARE.
//
#if canImport(SwiftUI)
#if os(macOS) || os(iOS) || os(visionOS)
public import Foundation
public import SwiftUI
public import UniformTypeIdentifiers
/// A `FileDocument` implementation for a `CodablePackage`.
public struct CodablePackageDocument<T: CodablePackage>: FileDocument {
/// An error that can occur during the reading of the configuration.
internal enum ReadError: Error {
case missingConfigurationAtKey(String)
}
/// The readable content types for the `CodablePackage`.
public static var readableContentTypes: [UTType] {
T.readableContentTypes.map(UTType.init)
}
/// The configuration of the `CodablePackage`.
private let configuration: T
/// Initializes a `CodablePackageDocument` with the provided configuration.
/// - Parameter configuration: The configuration of the `CodablePackage`.
public init(configuration: T) {
self.configuration = configuration
}
/// Initializes a `CodablePackageDocument` from the provided read
/// configuration.
/// - Parameter configuration: The read configuration.
/// - Throws: A `ReadError` if the configuration file wrapper is missing.
public init(configuration: ReadConfiguration) throws {
let regularFileContents = configuration
.file
.fileWrappers?[T.configurationFileWrapperKey]?
.regularFileContents
guard let configJSONWrapperData = regularFileContents else {
throw ReadError.missingConfigurationAtKey(T.configurationFileWrapperKey)
}
let configuration = try T.decoder.decode(T.self, from: configJSONWrapperData)
self.init(configuration: configuration)
}
/// Generates a `FileWrapper` for the current configuration.
/// - Parameter configuration: The write configuration.
/// - Returns: A `FileWrapper` containing the configuration.
/// - Throws: An error if there is a problem encoding the configuration.
public func fileWrapper(configuration: WriteConfiguration) throws -> FileWrapper {
let rootFileWrapper =
configuration.existingFile ?? FileWrapper(directoryWithFileWrappers: [:])
if let oldConfigJSONWrapper = rootFileWrapper
.fileWrappers?[T.configurationFileWrapperKey]
{
rootFileWrapper.removeFileWrapper(oldConfigJSONWrapper)
}
let newConfigJSONData = try T.encoder.encode(self.configuration)
let newConfigJSONWrapper = FileWrapper(regularFileWithContents: newConfigJSONData)
newConfigJSONWrapper.preferredFilename = T.configurationFileWrapperKey
rootFileWrapper.addFileWrapper(newConfigJSONWrapper)
return rootFileWrapper
}
}
extension CodablePackageDocument where T: InitializablePackage {
/// Initializes a `CodablePackageDocument` with a default configuration.
public init() {
self.init(configuration: .init())
}
}
#endif
#endif