-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathQEMUConstant.swift
More file actions
558 lines (469 loc) · 16.3 KB
/
Copy pathQEMUConstant.swift
File metadata and controls
558 lines (469 loc) · 16.3 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
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
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
//
// 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 }
static var shownPrettyValues: [String] { get }
var prettyValue: String { get }
var rawValue: String { get }
var isHidden: Bool { 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 }
}
static var shownPrettyValues: [String] {
allCases.compactMap { value in value.isHidden ? nil : value.prettyValue }
}
var isHidden: Bool {
false
}
}
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"
case shared = "Shared"
case host = "Host"
case bridged = "Bridged"
var prettyValue: String {
switch self {
case .emulated: return NSLocalizedString("Emulated VLAN", comment: "UTMQemuConstants")
case .shared: return NSLocalizedString("Shared Network", comment: "UTMQemuConstants")
case .host: return NSLocalizedString("Host Only", comment: "UTMQemuConstants")
case .bridged: return NSLocalizedString("Bridged (Advanced)", comment: "UTMQemuConstants")
}
}
}
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 String.localizedStringWithFormat(NSLocalizedString("%@ (%@)", comment: "QEMUConstant"), 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", comment: "UTMQemuConstants")
case .virtfs: return NSLocalizedString("VirtFS", comment: "UTMQemuConstants")
}
}
}
// MARK: File names
enum QEMUPackageFileName: String {
case images = "Images"
case debugLog = "debug.log"
case efiVariables = "efi_vars.fd"
case tpmData = "tpmdata"
case vmState = "vmstate"
}
// MARK: Supported features
extension QEMUArchitecture {
var hasAgentSupport: Bool {
switch self {
case .avr: return false
case .m68k: return false
case .microblaze, .microblazeel: return false
case .ppc, .ppc64: return false
case .rx: return false
case .sparc, .sparc64: return false
case .tricore: return false
default: return true
}
}
var hasSharingSupport: Bool {
switch self {
case .sparc, .sparc64: return false
default: return true
}
}
var hasUsbSupport: Bool {
switch self {
case .s390x: return false
case .sparc, .sparc64: return false
case .m68k: return false
default: return true
}
}
var hasHypervisorSupport: Bool {
guard UTMCapabilities.current.contains(.hasHypervisorSupport) else {
return false
}
if UTMCapabilities.current.contains(.isAarch64) {
return self == .aarch64
} else if UTMCapabilities.current.contains(.isX86_64) {
return self == .x86_64
} else {
return false
}
}
/// TSO is supported on jailbroken iOS devices with Hypervisor support
var hasTSOSupport: Bool {
#if os(iOS) || os(visionOS)
return hasHypervisorSupport
#else
if #available(macOS 15, *) {
return true
} else {
return false
}
#endif
}
var hasSecureBootSupport: Bool {
switch self {
case .x86_64, .i386: return true
case .aarch64: return true
default: return false
}
}
}
extension QEMUTarget {
var hasUsbSupport: Bool {
switch self.rawValue {
case "isapc": return false
default: return true
}
}
var hasUsbSharingSupport: Bool {
switch self.rawValue {
case let x where x.hasPrefix("raspi"): return false
default: return true
}
}
var hasAgentSupport: Bool {
switch self.rawValue {
case "isapc": return false
case let x where x.hasPrefix("raspi"): return false
default: return true
}
}
var hasUefiSupport: Bool {
switch self.rawValue {
case let x where x.hasPrefix("raspi"): return false
default: return true
}
}
var hasSecureBootSupport: Bool {
switch self.rawValue {
case "microvm": return false
default: return true
}
}
var hasHypervisorSupport: Bool {
switch self.rawValue {
case let x where x.hasPrefix("raspi"): return false
default: return true
}
}
var hasBuiltinFramebuffer: Bool {
switch self.rawValue {
case let x where x.hasPrefix("raspi"): return true
default: return false
}
}
var fixedMemorySize: Int? {
switch self.rawValue {
case "raspi0", "raspi1ap", "raspi3ap": return 512
case "raspi2b", "raspi3b": return 1024
case "raspi4b": return 2048
default: return nil
}
}
var fixedCPUCount: (Int, Int)? {
switch self.rawValue {
case "raspi0", "raspi1ap": return (1, 1)
case "raspi2b", "raspi3ap", "raspi3b", "raspi4b": return (4, 4)
default: return nil
}
}
}
#if WITH_QEMU_TCI
/// TCI build has a reduced set of supported architectures due to size of binaries.
extension QEMUArchitecture {
var isHidden: Bool {
switch self {
case .aarch64: return false
case .i386: return false
case .m68k: return false
case .ppc: return false
case .ppc64: return false
case .riscv64: return false
case .x86_64: return false
default: return true
}
}
}
#endif