forked from utmapp/UTM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQEMUConstant.swift
396 lines (326 loc) · 12.2 KB
/
QEMUConstant.swift
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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
//
// Copyright © 2022 osy. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
import Foundation
import Metal
// MARK: QEMUConstant protocol
/// A QEMU constant is a enum that can be generated externally
protocol QEMUConstant: Codable, RawRepresentable, CaseIterable where RawValue == String, AllCases == [Self] {
static var allRawValues: [String] { get }
static var allPrettyValues: [String] { get }
var prettyValue: String { get }
var rawValue: String { get }
init?(rawValue: String)
}
extension QEMUConstant where Self: CaseIterable, AllCases == [Self] {
static var allRawValues: [String] {
allCases.map { value in value.rawValue }
}
static var allPrettyValues: [String] {
allCases.map { value in value.prettyValue }
}
}
extension QEMUConstant where Self: RawRepresentable, RawValue == String {
init(from decoder: Decoder) throws {
let rawValue = try String(from: decoder)
guard let representedValue = Self.init(rawValue: rawValue) else {
throw UTMConfigurationError.invalidConfigurationValue(rawValue)
}
self = representedValue
}
func encode(to encoder: Encoder) throws {
try rawValue.encode(to: encoder)
}
}
protocol QEMUDefaultConstant: QEMUConstant {
static var `default`: Self { get }
}
extension Optional where Wrapped: QEMUDefaultConstant {
var _bound: Wrapped? {
get {
return self
}
set {
self = newValue
}
}
var bound: Wrapped {
get {
return _bound ?? Wrapped.default
}
set {
_bound = newValue
}
}
}
/// Type erasure for a QEMU constant useful for serialization/deserialization
struct AnyQEMUConstant: QEMUConstant, RawRepresentable {
static var allRawValues: [String] { [] }
static var allPrettyValues: [String] { [] }
static var allCases: [AnyQEMUConstant] { [] }
var prettyValue: String { rawValue }
let rawValue: String
init<C>(_ base: C) where C : QEMUConstant {
self.rawValue = base.rawValue
}
init?(rawValue: String) {
self.rawValue = rawValue
}
}
extension QEMUConstant {
func asAnyQEMUConstant() -> AnyQEMUConstant {
return AnyQEMUConstant(self)
}
}
extension AnyQEMUConstant: QEMUDefaultConstant {
static var `default`: AnyQEMUConstant {
AnyQEMUConstant(rawValue: "default")!
}
}
// MARK: Enhanced type checking for generated constants
protocol QEMUTarget: QEMUDefaultConstant {}
extension AnyQEMUConstant: QEMUTarget {}
protocol QEMUCPU: QEMUDefaultConstant {}
extension AnyQEMUConstant: QEMUCPU {}
protocol QEMUCPUFlag: QEMUConstant {}
extension AnyQEMUConstant: QEMUCPUFlag {}
protocol QEMUDisplayDevice: QEMUConstant {}
extension AnyQEMUConstant: QEMUDisplayDevice {}
protocol QEMUNetworkDevice: QEMUConstant {}
extension AnyQEMUConstant: QEMUNetworkDevice {}
protocol QEMUSoundDevice: QEMUConstant {}
extension AnyQEMUConstant: QEMUSoundDevice {}
protocol QEMUSerialDevice: QEMUConstant {}
extension AnyQEMUConstant: QEMUSerialDevice {}
// MARK: Display constants
enum QEMUScaler: String, CaseIterable, QEMUConstant {
case linear = "Linear"
case nearest = "Nearest"
var prettyValue: String {
switch self {
case .linear: return NSLocalizedString("Linear", comment: "UTMQemuConstants")
case .nearest: return NSLocalizedString("Nearest Neighbor", comment: "UTMQemuConstants")
}
}
var metalSamplerMinMagFilter: MTLSamplerMinMagFilter {
switch self {
case .linear: return .linear
case .nearest: return .nearest
}
}
}
// MARK: USB constants
enum QEMUUSBBus: String, CaseIterable, QEMUConstant {
case disabled = "Disabled"
case usb2_0 = "2.0"
case usb3_0 = "3.0"
var prettyValue: String {
switch self {
case .disabled: return NSLocalizedString("Disabled", comment: "UTMQemuConstants")
case .usb2_0: return NSLocalizedString("USB 2.0", comment: "UTMQemuConstants")
case .usb3_0: return NSLocalizedString("USB 3.0 (XHCI)", comment: "UTMQemuConstants")
}
}
}
// MARK: Network constants
enum QEMUNetworkMode: String, CaseIterable, QEMUConstant {
case emulated = "Emulated"
#if os(macOS)
case shared = "Shared"
case host = "Host"
case bridged = "Bridged"
#endif
var prettyValue: String {
switch self {
case .emulated: return NSLocalizedString("Emulated VLAN", comment: "UTMQemuConstants")
#if os(macOS)
case .shared: return NSLocalizedString("Shared Network", comment: "UTMQemuConstants")
case .host: return NSLocalizedString("Host Only", comment: "UTMQemuConstants")
case .bridged: return NSLocalizedString("Bridged (Advanced)", comment: "UTMQemuConstants")
#endif
}
}
}
enum QEMUNetworkProtocol: String, CaseIterable, QEMUConstant {
case tcp = "TCP"
case udp = "UDP"
var prettyValue: String {
switch self {
case .tcp: return NSLocalizedString("TCP", comment: "UTMQemuConstants")
case .udp: return NSLocalizedString("UDP", comment: "UTMQemuConstants")
}
}
}
// MARK: Serial constants
enum QEMUTerminalTheme: String, CaseIterable, QEMUDefaultConstant {
case `default` = "Default"
var prettyValue: String {
switch self {
case .`default`: return NSLocalizedString("Default", comment: "UTMQemuConstants")
}
}
}
struct QEMUTerminalFont: QEMUConstant {
#if os(macOS)
static var allRawValues: [String] = {
NSFontManager.shared.availableFontNames(with: .fixedPitchFontMask) ?? []
}()
static var allPrettyValues: [String] = {
allRawValues.map { name in
NSFont(name: name, size: 1)?.displayName ?? name
}
}()
#else
static var allRawValues: [String] = {
UIFont.familyNames.flatMap { family -> [String] in
guard let font = UIFont(name: family, size: 1) else {
return []
}
if font.fontDescriptor.symbolicTraits.contains(.traitMonoSpace) {
return UIFont.fontNames(forFamilyName: family)
} else {
return []
}
}
}()
static var allPrettyValues: [String] = {
allRawValues.map { name in
guard let font = UIFont(name: name, size: 1) else {
return name
}
let traits = font.fontDescriptor.symbolicTraits
let description: String
if traits.isSuperset(of: [.traitItalic, .traitBold]) {
description = NSLocalizedString("Italic, Bold", comment: "UTMQemuConstants")
} else if traits.contains(.traitItalic) {
description = NSLocalizedString("Italic", comment: "UTMQemuConstants")
} else if traits.contains(.traitBold) {
description = NSLocalizedString("Bold", comment: "UTMQemuConstants")
} else {
description = NSLocalizedString("Regular", comment: "UTMQemuConstants")
}
return "\(font.familyName) (\(description)"
}
}()
#endif
static var allCases: [QEMUTerminalFont] {
Self.allRawValues.map { Self(rawValue: $0) }
}
var prettyValue: String {
guard let index = Self.allRawValues.firstIndex(of: rawValue) else {
return rawValue
}
return Self.allPrettyValues[index]
}
let rawValue: String
}
enum QEMUSerialMode: String, CaseIterable, QEMUConstant {
case builtin = "Terminal"
case tcpClient = "TcpClient"
case tcpServer = "TcpServer"
#if os(macOS)
case ptty = "Ptty"
#endif
var prettyValue: String {
switch self {
case .builtin: return NSLocalizedString("Built-in Terminal", comment: "UTMQemuConstants")
case .tcpClient: return NSLocalizedString("TCP Client Connection", comment: "UTMQemuConstants")
case .tcpServer: return NSLocalizedString("TCP Server Connection", comment: "UTMQemuConstants")
#if os(macOS)
case .ptty: return NSLocalizedString("Pseudo-TTY Device", comment: "UTMQemuConstants")
#endif
}
}
}
enum QEMUSerialTarget: String, CaseIterable, QEMUConstant {
case autoDevice = "Auto"
case manualDevice = "Manual"
case gdb = "GDB"
case monitor = "Monitor"
var prettyValue: String {
switch self {
case .autoDevice: return NSLocalizedString("Automatic Serial Device (max 4)", comment: "UTMQemuConstants")
case .manualDevice: return NSLocalizedString("Manual Serial Device (advanced)", comment: "UTMQemuConstants")
case .gdb: return NSLocalizedString("GDB Debug Stub", comment: "UTMQemuConstants")
case .monitor: return NSLocalizedString("QEMU Monitor (HMP)", comment: "UTMQemuConstants")
}
}
}
// MARK: Drive constants
enum QEMUDriveImageType: String, CaseIterable, QEMUConstant {
case none = "None"
case disk = "Disk"
case cd = "CD"
case bios = "BIOS"
case linuxKernel = "LinuxKernel"
case linuxInitrd = "LinuxInitrd"
case linuxDtb = "LinuxDTB"
var prettyValue: String {
switch self {
case .none: return NSLocalizedString("None", comment: "UTMQemuConstants")
case .disk: return NSLocalizedString("Disk Image", comment: "UTMQemuConstants")
case .cd: return NSLocalizedString("CD/DVD (ISO) Image", comment: "UTMQemuConstants")
case .bios: return NSLocalizedString("BIOS", comment: "UTMQemuConstants")
case .linuxKernel: return NSLocalizedString("Linux Kernel", comment: "UTMQemuConstants")
case .linuxInitrd: return NSLocalizedString("Linux RAM Disk", comment: "UTMQemuConstants")
case .linuxDtb: return NSLocalizedString("Linux Device Tree Binary", comment: "UTMQemuConstants")
}
}
}
enum QEMUDriveInterface: String, CaseIterable, QEMUConstant {
case none = "None"
case ide = "IDE"
case scsi = "SCSI"
case sd = "SD"
case mtd = "MTD"
case floppy = "Floppy"
case pflash = "PFlash"
case virtio = "VirtIO"
case nvme = "NVMe"
case usb = "USB"
var prettyValue: String {
switch self {
case .none: return NSLocalizedString("None (Advanced)", comment: "UTMQemuConstants")
case .ide: return NSLocalizedString("IDE", comment: "UTMQemuConstants")
case .scsi: return NSLocalizedString("SCSI", comment: "UTMQemuConstants")
case .sd: return NSLocalizedString("SD Card", comment: "UTMQemuConstants")
case .mtd: return NSLocalizedString("MTD (NAND/NOR)", comment: "UTMQemuConstants")
case .floppy: return NSLocalizedString("Floppy", comment: "UTMQemuConstants")
case .pflash: return NSLocalizedString("PC System Flash", comment: "UTMQemuConstants")
case .virtio: return NSLocalizedString("VirtIO", comment: "UTMQemuConstants")
case .nvme: return NSLocalizedString("NVMe", comment: "UTMQemuConstants")
case .usb: return NSLocalizedString("USB", comment: "UTMQemuConstants")
}
}
}
// MARK: Sharing constants
enum QEMUFileShareMode: String, CaseIterable, QEMUConstant {
case none = "None"
case webdav = "WebDAV"
case virtfs = "VirtFS"
var prettyValue: String {
switch self {
case .none: return NSLocalizedString("None", comment: "UTMQemuConstants")
case .webdav: return NSLocalizedString("SPICE WebDAV (Legacy)", comment: "UTMQemuConstants")
case .virtfs: return NSLocalizedString("VirtFS (Recommended)", comment: "UTMQemuConstants")
}
}
}
// MARK: File names
enum QEMUPackageFileName: String {
case images = "Images"
case debugLog = "debug.log"
case efiVariables = "efi_vars.fd"
}