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 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift open source project
//
// Copyright (c) 2020-2021 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
import Basics
import Dispatch
import struct Foundation.Data
import class Foundation.JSONDecoder
import class Foundation.JSONEncoder
import struct Foundation.URL
struct FilePackageCollectionsSourcesStorage: PackageCollectionsSourcesStorage {
let fileSystem: FileSystem
let path: AbsolutePath
private let encoder: JSONEncoder
private let decoder: JSONDecoder
init(fileSystem: FileSystem, path: AbsolutePath? = nil) {
self.fileSystem = fileSystem
self.path = path ?? (try? fileSystem.swiftPMConfigurationDirectory.appending("collections.json")) ?? .root
self.encoder = JSONEncoder.makeWithDefaults()
self.decoder = JSONDecoder.makeWithDefaults()
}
func list(callback: @escaping (Result<[Model.CollectionSource], Error>) -> Void) {
DispatchQueue.sharedConcurrent.async {
do {
let sources = try self.withLock {
try self.loadFromDisk()
}
callback(.success(sources))
} catch {
callback(.failure(error))
}
}
}
func add(source: Model.CollectionSource,
order: Int?,
callback: @escaping (Result<Void, Error>) -> Void) {
DispatchQueue.sharedConcurrent.async {
do {
try self.withLock {
var sources = try self.loadFromDisk()
sources = sources.filter { $0 != source }
let order = order.flatMap { $0 >= 0 && $0 < sources.endIndex ? order : sources.endIndex } ?? sources.endIndex
sources.insert(source, at: order)
try self.saveToDisk(sources)
}
callback(.success(()))
} catch {
callback(.failure(error))
}
}
}
func remove(source: Model.CollectionSource,
callback: @escaping (Result<Void, Error>) -> Void) {
DispatchQueue.sharedConcurrent.async {
do {
try self.withLock {
var sources = try self.loadFromDisk()
sources = sources.filter { $0 != source }
try self.saveToDisk(sources)
}
callback(.success(()))
} catch {
callback(.failure(error))
}
}
}
func move(source: Model.CollectionSource,
to order: Int,
callback: @escaping (Result<Void, Error>) -> Void) {
DispatchQueue.sharedConcurrent.async {
do {
try self.withLock {
var sources = try self.loadFromDisk()
sources = sources.filter { $0 != source }
let order = order >= 0 && order < sources.endIndex ? order : sources.endIndex
sources.insert(source, at: order)
try self.saveToDisk(sources)
}
callback(.success(()))
} catch {
callback(.failure(error))
}
}
}
func exists(source: Model.CollectionSource,
callback: @escaping (Result<Bool, Error>) -> Void) {
DispatchQueue.sharedConcurrent.async {
do {
let sources = try self.withLock {
try self.loadFromDisk()
}
callback(.success(sources.contains(source)))
} catch {
callback(.failure(error))
}
}
}
func update(source: PackageCollectionsModel.CollectionSource,
callback: @escaping (Result<Void, Error>) -> Void) {
DispatchQueue.sharedConcurrent.async {
do {
try self.withLock {
var sources = try self.loadFromDisk()
if let index = sources.firstIndex(where: { $0 == source }) {
sources[index] = source
try self.saveToDisk(sources)
}
}
callback(.success(()))
} catch {
callback(.failure(error))
}
}
}
private func loadFromDisk() throws -> [Model.CollectionSource] {
guard self.fileSystem.exists(self.path) else {
return .init()
}
let data: Data = try fileSystem.readFileContents(self.path)
guard data.count > 0 else {
return .init()
}
let container = try decoder.decode(StorageModel.Container.self, from: data)
return try container.sources()
}
private func saveToDisk(_ sources: [Model.CollectionSource]) throws {
if !self.fileSystem.exists(self.path.parentDirectory) {
try self.fileSystem.createDirectory(self.path.parentDirectory, recursive: true)
}
let container = StorageModel.Container(sources)
let buffer = try encoder.encode(container)
try self.fileSystem.writeFileContents(self.path, data: buffer)
}
private func withLock<T>(_ body: () throws -> T) throws -> T {
if !fileSystem.exists(self.path.parentDirectory) {
try self.fileSystem.createDirectory(self.path.parentDirectory, recursive: true)
}
return try self.fileSystem.withLock(on: self.path.parentDirectory, type: .exclusive, body)
}
}
// MARK: - FilePackageCollectionsSourcesStorage Serialization
private enum StorageModel {
struct Container: Codable {
var data: [Source]
init() {
self.data = .init()
}
init(_ from: [Model.CollectionSource]) {
self.data = from.map { $0.source() }
}
func sources() throws -> [Model.CollectionSource] {
return try self.data.map { try Model.CollectionSource($0) }
}
}
struct Source: Codable {
let type: String
let value: String
let isTrusted: Bool?
let skipSignatureCheck: Bool?
}
enum SourceType: String {
case json
}
}
// MARK: - Utility
private extension Model.CollectionSource {
init(_ from: StorageModel.Source) throws {
guard let url = URL(string: from.value) else {
throw SerializationError.invalidURL(from.value)
}
switch from.type {
case StorageModel.SourceType.json.rawValue:
self.init(type: .json, url: url, isTrusted: from.isTrusted, skipSignatureCheck: from.skipSignatureCheck ?? false)
default:
throw SerializationError.unknownType(from.type)
}
}
func source() -> StorageModel.Source {
switch self.type {
case .json:
return .init(type: StorageModel.SourceType.json.rawValue, value: self.url.absoluteString,
isTrusted: self.isTrusted, skipSignatureCheck: self.skipSignatureCheck)
}
}
}
private enum SerializationError: Error {
case unknownType(String)
case invalidURL(String)
}
|