forked from Carthage/Carthage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BuildSettings.swift
478 lines (418 loc) · 17.7 KB
/
BuildSettings.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
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
import Foundation
import Result
import ReactiveTask
import ReactiveSwift
import XCDBLD
/// A map of build settings and their values, as generated by Xcode.
public struct BuildSettings {
/// The target to which these settings apply.
public let target: String
/// All build settings given at initialization.
public let settings: [String: String]
/// The build arguments used for loading the settings.
public let arguments: BuildArguments
/// The designated xcodebuild action if present.
public let action: BuildArguments.Action?
internal init(
target: String,
settings: [String: String],
arguments: BuildArguments,
action: BuildArguments.Action?
) {
self.target = target
self.settings = settings
self.arguments = arguments
self.action = action
}
/// Matches lines of the forms:
///
/// Build settings for action build and target "ReactiveCocoaLayout Mac":
/// Build settings for action test and target CarthageKitTests:
private static let targetSettingsRegex = try! NSRegularExpression( // swiftlint:disable:this force_try
pattern: "^Build settings for action (?:\\S+) and target \\\"?([^\":]+)\\\"?:$",
options: [ .caseInsensitive, .anchorsMatchLines ]
)
private static let xcodeVersion: XcodeVersion? = XcodeVersion.make()
/// Invokes `xcodebuild` to retrieve build settings for the given build
/// arguments.
///
/// Upon .success, sends one BuildSettings value for each target included in
/// the referenced scheme.
public static func load(with arguments: BuildArguments, for action: BuildArguments.Action? = nil, with environment: [String: String]? = nil) -> SignalProducer<BuildSettings, CarthageError> {
// xcodebuild (in Xcode 8.0) has a bug where xcodebuild -showBuildSettings
// can hang indefinitely on projects that contain core data models.
// rdar://27052195
// Including the action "clean" works around this issue, which is further
// discussed here: https://forums.developer.apple.com/thread/50372
//
// "archive" also works around the issue above so use it to determine if
// it is configured for the archive action.
let xcodeIsBelowVersion16 = (BuildSettings.xcodeVersion?.majorVersionNumber ?? 0) < 16
let xcodebuildAction: BuildArguments.Action = (xcodeIsBelowVersion16 || arguments.sdk?.isDevice ?? false) ? .archive : .build
let task = xcodebuildTask([xcodebuildAction.rawValue, "-showBuildSettings", "-skipUnavailableActions"], arguments, environment: environment)
return task.launch()
.ignoreTaskData()
.flatMapError { error in
switch error {
case let .shellTaskFailed(_, _, standardError):
let pattern = "error[:] Found no destinations for the scheme [^\n]+ and action [^\n]+[.]\n"
guard Foundation.NSNotFound == NSRegularExpression.rangeOfFirstMatch(pattern: pattern, within: standardError).location else {
return SignalProducer.empty
}
default: break
}
return SignalProducer(error: CarthageError.taskError(error))
}
// xcodebuild has a bug where xcodebuild -showBuildSettings
// can sometimes hang indefinitely on projects that don't
// share any schemes, so automatically bail out if it looks
// like that's happening.
.timeout(after: 60, raising: .xcodebuildTimeout(arguments.project), on: QueueScheduler(qos: .default))
.retry(upTo: 5)
.map { data in
return String(data: data, encoding: .utf8)!
}
.flatMap(.merge) { string -> SignalProducer<BuildSettings, CarthageError> in
return SignalProducer { observer, lifetime in
var currentSettings: [String: String] = [:]
var currentTarget: String?
let flushTarget = { () -> Void in
if let currentTarget = currentTarget {
let buildSettings = self.init(
target: currentTarget,
settings: currentSettings,
arguments: arguments,
action: action
)
observer.send(value: buildSettings)
}
currentTarget = nil
currentSettings = [:]
}
string.enumerateLines { line, stop in
if lifetime.hasEnded {
stop = true
return
}
if let result = self.targetSettingsRegex.firstMatch(in: line, range: NSRange(line.startIndex..., in: line)) {
let targetRange = Range(result.range(at: 1), in: line)!
flushTarget()
currentTarget = String(line[targetRange])
return
}
let trimSet = CharacterSet.whitespacesAndNewlines
let components = line
.split(maxSplits: 1) { $0 == "=" }
.map { $0.trimmingCharacters(in: trimSet) }
if components.count == 2 {
currentSettings[components[0]] = components[1]
}
}
flushTarget()
observer.sendCompleted()
}
}
}
/// Determines which SDKs the given scheme builds for, by default.
///
/// If an SDK is unrecognized or could not be determined, an error will be
/// sent on the returned signal.
public static func SDKsForScheme(_ scheme: Scheme, inProject project: ProjectLocator) -> SignalProducer<SDK, CarthageError> {
return load(with: BuildArguments(project: project, scheme: scheme))
.zip(with: SDK.setsFromJSONShowSDKsWithFallbacks.promoteError(CarthageError.self))
.take(first: 1)
.map { $1.intersection($0.buildSDKRawNames.map { sdk in SDK(name: sdk, simulatorHeuristic: "") }) }
.flatten()
}
/// We `deny` — not in the sense of taking effect — but informing via `Bool`.
public static func denySDKUnderXcodesSub14IfWatchOSOrTVOSAndProjectsDoesNotSpecifySatisfactoryBitcodeSetting(
_ sdk: SDK,
under arguments: BuildArguments,
for action: BuildArguments.Action? = nil,
with environment: [String: String]? = nil
) -> SignalProducer<(SDK, Bool), CarthageError> {
if BuildSettings.xcodeVersion?.majorVersionNumber ?? 0 >= 14 { return .init(value: (sdk, true)) }
if !["appletvos", "watchos"].contains(sdk.rawValue) { return .init(value: (sdk, true)) }
return BuildSettings
.load(with: arguments, for: action, with: environment)
.map { settings in
(sdk, settings.bitcodeEnabled.value == true)
}
}
/// Returns the value for the given build setting, or an error if it could
/// not be determined.
public subscript(key: String) -> Result<String, CarthageError> {
if let value = settings[key] {
return .success(value)
} else {
return .failure(.missingBuildSetting(key))
}
}
/// Attempts to determine the SDKs this scheme builds for.
public var buildSDKRawNames: Set<String> {
let supportedPlatforms = self["SUPPORTED_PLATFORMS"]
if let supportedPlatforms = supportedPlatforms.value {
return Set(
supportedPlatforms.split(separator: " ").map(String.init)
)
} else if let platformName = self["PLATFORM_NAME"].value {
return [platformName] as Set
} else {
return [] as Set
}
}
public var archs: Result<Set<String>, CarthageError> {
return self["ARCHS"].map { Set($0.components(separatedBy: " ")) }
}
/// Attempts to determine the ProductType specified in these build settings.
public var productType: Result<ProductType, CarthageError> {
return self["PRODUCT_TYPE"].flatMap(ProductType.from(string:))
}
/// Attempts to determine the MachOType specified in these build settings.
public var machOType: Result<MachOType, CarthageError> {
return self["MACH_O_TYPE"].flatMap(MachOType.from(string:))
}
/// Attempts to determine the FrameworkType identified by these build settings.
internal var frameworkType: Result<FrameworkType?, CarthageError> {
return productType.fanout(machOType).map(FrameworkType.init)
}
internal var frameworkSearchPaths: Result<[URL], CarthageError> {
return self["FRAMEWORK_SEARCH_PATHS"].map { paths in
paths.split(separator: " ").map { URL(fileURLWithPath: String($0), isDirectory: true) }
}
}
/// Attempts to determine the URL to the built products directory.
public var builtProductsDirectoryURL: Result<URL, CarthageError> {
return self["BUILT_PRODUCTS_DIR"].map { productsDir in
return URL(fileURLWithPath: productsDir, isDirectory: true)
}
}
private var productsDirectoryURLDependingOnAction: Result<URL, CarthageError> {
if action == .archive {
return self["OBJROOT"]
.map { objroot -> URL in
let root = URL(fileURLWithPath: objroot, isDirectory: true)
guard 1600 <= UInt(self.settings["XCODE_VERSION_ACTUAL", default: "0"]) ?? 0 else { return root }
return Result(at: root, attempt: { root in
var url = root
for _ in 0...url.pathComponents.count {
if url.pathComponents.suffix(2) == ["Build", "Intermediates.noindex"] {
return url
} else {
url.deleteLastPathComponent()
}
}
throw NSError()
})
.value ?? root
}
.fanout(archiveIntermediatesBuildProductsPath)
.map { root, path -> URL in
return root.appendingPathComponent(path)
}
} else {
return builtProductsDirectoryURL
}
}
private var archiveIntermediatesBuildProductsPath: Result<String, CarthageError> {
let r1 = self["TARGET_NAME"]
guard let schemeOrTarget = arguments.scheme?.name ?? r1.value else { return r1 }
let basePath = "ArchiveIntermediates/\(schemeOrTarget)/BuildProductsPath"
let pathComponent: String
if
let buildDir = self["BUILD_DIR"].value,
let builtProductsDir = self["BUILT_PRODUCTS_DIR"].value,
builtProductsDir.hasPrefix(buildDir)
{
// This is required to support CocoaPods-generated projects.
// See https://github.com/AliSoftware/Reusable/issues/50#issuecomment-336434345 for the details.
pathComponent = String(builtProductsDir[buildDir.endIndex...]) // e.g., /Release-iphoneos/Reusable-iOS
} else {
let r2 = self["CONFIGURATION"]
guard let configuration = r2.value else { return r2 }
// A value almost certainly beginning with `-` or (lacking said value) an
// empty string to append without effect in the path below because Xcode
// expects the path like that.
let effectivePlatformName = self["EFFECTIVE_PLATFORM_NAME"].value ?? ""
// e.g.,
// - Release
// - Release-iphoneos
pathComponent = "\(configuration)\(effectivePlatformName)"
}
let path = (basePath as NSString).appendingPathComponent(pathComponent)
return .success(path)
}
/// Attempts to determine the relative path (from the build folder) to the
/// built executable.
public var executablePath: Result<String, CarthageError> {
return self["EXECUTABLE_PATH"]
}
/// Attempts to determine the URL to the built executable, corresponding to
/// its xcodebuild action.
public var executableURL: Result<URL, CarthageError> {
return productsDirectoryURLDependingOnAction
.fanout(executablePath)
.map { productsDirectoryURL, executablePath in
return productsDirectoryURL.appendingPathComponent(executablePath)
}
}
/// Attempts to determine the name of the built product's wrapper bundle.
public var wrapperName: Result<String, CarthageError> {
return self["WRAPPER_NAME"]
}
/// Attempts to determine the name of the built product.
public var productName: Result<String, CarthageError> {
return self["PRODUCT_NAME"]
}
/// Attempts to determine the URL to the built product's wrapper, corresponding
/// to its xcodebuild action.
public var wrapperURL: Result<URL, CarthageError> {
return productsDirectoryURLDependingOnAction
.fanout(wrapperName)
.map { productsDirectoryURL, wrapperName in
return productsDirectoryURL.appendingPathComponent(wrapperName)
}
}
/// Attempts to determine whether bitcode is enabled or not.
public var bitcodeEnabled: Result<Bool, CarthageError> {
return self["ENABLE_BITCODE"].map { $0 == "YES" }
}
/// Attempts to determine the relative path (from the build folder) where
/// the Swift modules for the built product will exist.
///
/// If the product does not build any modules, `nil` will be returned.
internal var relativeModulesPath: Result<String?, CarthageError> {
if let moduleName = self["PRODUCT_MODULE_NAME"].value {
return self["CONTENTS_FOLDER_PATH"].map { contentsPath in
let path1 = (contentsPath as NSString).appendingPathComponent("Modules")
let path2 = (path1 as NSString).appendingPathComponent(moduleName)
return (path2 as NSString).appendingPathExtension("swiftmodule")
}
} else {
return .success(nil)
}
}
/// Attempts to determine the code signing identity.
public var codeSigningIdentity: Result<String, CarthageError> {
return self["CODE_SIGN_IDENTITY"]
}
/// Attempts to determine if ad hoc code signing is allowed.
public var adHocCodeSigningAllowed: Result<Bool, CarthageError> {
return self["AD_HOC_CODE_SIGNING_ALLOWED"].map { $0 == "YES" }
}
/// Attempts to determine the path to the project that contains the current target
public var projectPath: Result<String, CarthageError> {
return self["PROJECT_FILE_PATH"]
}
/// Attempts to determine target build directory
public var targetBuildDirectory: Result<String, CarthageError> {
return self["TARGET_BUILD_DIR"]
}
/// The "OPERATING_SYSTEM" component of the target triple. Used in XCFrameworks to denote the supported platform.
public var platformTripleOS: Result<String, CarthageError> {
return self["LLVM_TARGET_TRIPLE_OS_VERSION"].map { osVersion in
// osVersion is a string like "ios8.0". Remove any trailing version number.
// This should match the OS component of an "unversionedTriple" printed by `swift -print-target-info`.
osVersion.replacingOccurrences(of: "([0-9]\\.?)*$", with: "", options: .regularExpression)
}.flatMapError { _ in
// LLVM_TARGET_TRIPLE_OS_VERSION may be unavailable if `USE_LLVM_TARGET_TRIPLES = NO`.
// SWIFT_PLATFORM_TARGET_PREFIX anecdotally appears to contain the unversioned OS component, even in
// non-swift projects.
self["SWIFT_PLATFORM_TARGET_PREFIX"]
}
}
// The "ENVIRONMENT" component of the target triple, which is "simulator" when building for a simulator target
// and missing otherwise.
public var platformTripleVariant: Result<String, CarthageError> {
return self["LLVM_TARGET_TRIPLE_SUFFIX"].map { $0.stripping(prefix: "-") }
}
/// Add subdirectory path if it's not possible to paste product to destination path
public func productDestinationPath(in destinationURL: URL) -> URL {
let directoryURL: URL
let frameworkType = self.frameworkType.value.flatMap { $0 }
if frameworkType == .static {
directoryURL = destinationURL.appendingPathComponent(FrameworkType.staticFolderName)
} else {
directoryURL = destinationURL
}
return directoryURL
}
}
extension BuildSettings: CustomStringConvertible {
public var description: String {
return "Build settings for target \"\(target)\": \(settings)"
}
}
private enum Environment {
static let withoutActiveXcodeXCConfigFile: [String: String] =
ProcessInfo.processInfo.environment
.merging(
["XCODE_XCCONFIG_FILE": "/dev/null", "LC_ALL": "c"],
uniquingKeysWith: { _, replacer in replacer }
)
}
extension SDK {
/// Starting around Xcode 7.3.1, and current as of Xcode 11.5, Xcodes contain a
/// xcodeproj that we can derive `XCDBLD.SDK`s via Xcode-defaulted `AVAILABLE_PLATFORMS`.
///
/// - Note: Pass no scheme, later Xcodes handle it correctly, but Xcode 7.3.1 doesn’t…
/// - Note: As last ditch effort, try inside `/Applications/Xcode.app`, which might not exist.
/// - Note: Mostly, `xcodebuild -showsdks -json`-based `XCDBLD.SDK`s will be grabbed instead of
/// this signal reaching completion.
/// - Note: Will, where possible, draw from `SDK.knownIn2023YearSDKs` for 2023-era captialization.
static let setFromFallbackXcodeprojBuildSettings: SignalProducer<Set<SDK>?, NoError> =
Task("/usr/bin/xcrun", arguments: ["--find", "xcodebuild"], environment: Environment.withoutActiveXcodeXCConfigFile)
.launch()
.materializeResults() // to map below and ignore errors
.map {
$0.value?.value.flatMap { String(data: $0, encoding: .utf8) }
?? "/Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild\n"
}
.map { String.reversed($0)().first == "\n" ? String($0.dropLast(1)) : $0 }
.map(URL.init(fileURLWithPath:))
.map { (base: URL) in
let relative = "../../usr/share/xcs/xcsd/node_modules/nodobjc/node_modules/ffi/deps/libffi/libffi.xcodeproj/"
return relative.withCString {
URL(fileURLWithFileSystemRepresentation: $0, isDirectory: true, relativeTo: base.isFileURL ? base.standardizedFileURL : URL(string: "file:///var/empty/ø/ø/ø/")!)
}
}
.map { (potentialFile: URL) in BuildArguments(
project: ProjectLocator.projectFile(potentialFile),
scheme: Scheme?.none,
configuration: "Release"
) }
.map { ($0 as BuildArguments, BuildArguments.Action?.none, Environment.withoutActiveXcodeXCConfigFile) }
.flatMap(.race, BuildSettings.load) // note: above var empty path will soft error and get nilled below
.materializeResults()
.reduce(into: Set<SDK>?.none) {
guard let unsplit = $1.value?.settings["AVAILABLE_PLATFORMS"] else { return }
guard $0 == nil else { return }
$0 = Set(
unsplit.split(separator: " ").lazy.map {
SDK(rawValue: String($0)) ?? SDK(name: String($0), simulatorHeuristic: "")
}
)
}
}
extension SDK {
/// - See: `SDK.setFromJSONShowSDKs`
/// - Note: Fallbacks are `SDK.setFromFallbackXcodeprojBuildSettings` and
/// hardcoded `SDK.knownIn2023YearSDKs`.
static let setsFromJSONShowSDKsWithFallbacks: SignalProducer<Set<SDK>, NoError> =
SDK.setFromJSONShowSDKs
.concat(SDK.setFromFallbackXcodeprojBuildSettings)
.skip(while: { $0 == nil })
.take(first: 1)
.skipNil()
.reduce(into: SDK.knownIn2023YearSDKs) { $0 = $1 }
.replayLazily(upTo: 1)
}
extension NSRegularExpression {
/// Check ``location`` of the returned object against ``Foundation.NSNotFound``. That's a good way to utilize this.
static func rangeOfFirstMatch(pattern: String, within string: String?) -> NSRange {
let ourString = string ?? ""
let range = NSRange(ourString.startIndex..., in: ourString)
let regex = try! NSRegularExpression(pattern: pattern)
return regex.rangeOfFirstMatch(in: ourString, range: range)
}
}