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
|
//===--- SchemeGenerator.swift --------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2024 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
import Xcodeproj
struct Scheme {
var name: String
var buildAction: BuildAction
var runAction: RunAction?
var replaceExisting: Bool
init(_ name: String, replaceExisting: Bool, buildTargets: [BuildTarget]) {
self.name = name
self.replaceExisting = replaceExisting
self.buildAction = .init(targets: buildTargets)
}
init(_ name: String, replaceExisting: Bool, buildTargets: BuildTarget...) {
self.init(
name, replaceExisting: replaceExisting, buildTargets: buildTargets
)
}
mutating func addBuildTarget(
_ target: Xcode.Target, in path: RelativePath
) {
buildAction.targets.append(.init(target, in: path))
}
}
extension Scheme {
struct BuildAction {
var targets: [BuildTarget]
}
struct BuildTarget {
var name: String
var container: RelativePath
init(_ target: Xcode.Target, in path: RelativePath) {
self.name = target.name
self.container = path
}
init(_ name: String, in path: RelativePath) {
self.name = name
self.container = path
}
}
struct RunAction {
var path: AbsolutePath
}
}
struct SchemeGenerator {
let containerDir: AbsolutePath
let disableAutoCreation: Bool
var schemes: [Scheme] = []
init(in containerDir: AbsolutePath, disableAutoCreation: Bool = true) {
self.containerDir = containerDir
self.disableAutoCreation = disableAutoCreation
}
}
extension SchemeGenerator {
mutating func add(_ scheme: Scheme) {
schemes.append(scheme)
}
}
extension SchemeGenerator {
private func disableAutoCreationIfNeeded() throws {
guard disableAutoCreation else { return }
var relPath: RelativePath = "xcshareddata/WorkspaceSettings.xcsettings"
if containerDir.hasExtension(.xcodeproj) {
relPath = "project.xcworkspace/\(relPath)"
}
let settingsPath = containerDir.appending(relPath)
let workspaceSettings = """
<?xml version="1.0" encoding="UTF-8"?>
<plist version="1.0">
<dict>
<key>IDEWorkspaceSharedSettings_AutocreateContextsIfNeeded</key>
<false/>
</dict>
</plist>
"""
try settingsPath.write(workspaceSettings)
log.info("Generated '\(settingsPath)'")
}
private func writeScheme(_ scheme: Scheme) throws {
let path = containerDir.appending(
"xcshareddata/xcschemes/\(scheme.name).xcscheme"
)
// Don't overwrite if we haven't been asked to.
if !scheme.replaceExisting && path.exists {
return
}
var plist = """
<?xml version="1.0" encoding="UTF-8"?>
<Scheme LastUpgradeVersion = "9999" version = "1.3">
<BuildAction parallelizeBuildables = "YES" buildImplicitDependencies = "YES">
<BuildActionEntries>
"""
for buildTarget in scheme.buildAction.targets {
plist += """
<BuildActionEntry buildForTesting = "YES" buildForRunning = "YES" buildForProfiling = "YES" buildForArchiving = "YES" buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BuildableName = "\(buildTarget.name)"
BlueprintName = "\(buildTarget.name)"
ReferencedContainer = "container:\(buildTarget.container)">
</BuildableReference>
</BuildActionEntry>
"""
}
plist += """
</BuildActionEntries>
</BuildAction>
"""
if let runAction = scheme.runAction {
plist += """
<LaunchAction>
<PathRunnable
FilePath = "\(runAction.path.escaped(addQuotesIfNeeded: false))">
</PathRunnable>
</LaunchAction>
"""
}
plist += """
</Scheme>
"""
try path.write(plist)
log.info("Generated '\(path)'")
}
private func writeSchemes() throws {
for scheme in schemes {
try writeScheme(scheme)
}
}
func write() throws {
try disableAutoCreationIfNeeded()
try writeSchemes()
}
}
|