-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathCompiler.swift
72 lines (63 loc) · 3.22 KB
/
Compiler.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
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift open source project
//
// Copyright (c) 2025 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 Foundation
@main
struct Main {
static func main() async {
let arguments = Array(ProcessInfo.processInfo.arguments.dropFirst())
guard arguments.count >= 1 else {
try? FileHandle.standardError.write(contentsOf: Data("usage: \(ProcessInfo.processInfo.arguments[0]) output-dir [input-file...]\n".utf8))
exit(EXIT_FAILURE)
}
let outputDir = arguments[0]
let inputFiles = Array(arguments[1...])
do {
try await withThrowingTaskGroup(of: Void.self) { group in
for inputFile in inputFiles {
group.addTask {
let outputFile = outputDir + "/" + URL(fileURLWithPath: inputFile).lastPathComponent
if FileManager.default.fileExists(atPath: outputFile) {
try FileManager.default.removeItem(atPath: outputFile)
}
var inputData = try Data(contentsOf: URL(fileURLWithPath: inputFile))
unifdef(&inputData)
_ = try PropertyListSerialization.propertyList(from: inputData, options: [], format: nil)
inputData.removeAll(where: { $0 == Character("\r").asciiValue }) // normalize newlines for Windows
try inputData.write(to: URL(fileURLWithPath: outputFile), options: .atomic)
}
}
try await group.waitForAll()
}
} catch {
try? FileHandle.standardError.write(contentsOf: Data("error: \(error)\n".utf8))
exit(EXIT_FAILURE)
}
}
/// Performs some very basic stripping of `#if` directives from xcspec files in case they contain them.
///
/// In this build step we are not actually going to read the values and conditionally include the inner spec portions.
/// Instead, we will just remove the `#if` lines themselves, which can be needed in certain build configurations that may contain them.
private static func unifdef(_ data: inout Data) {
// This manual processing guarantees consistency across all platforms, where unifdef may not be universally available.
let string = String(decoding: data, as: UTF8.self)
var newLines = [String]()
string.enumerateLines { line, _ in
let trimmedLine = line.trimmingCharacters(in: .whitespaces)
let isPreprocessorLine = trimmedLine.hasPrefix("#if ") || trimmedLine.hasPrefix("#elif ") || trimmedLine == "#else" || trimmedLine == "#endif"
if !isPreprocessorLine {
newLines.append(line)
}
}
let newString = newLines.joined(separator: "\n")
data = Data(newString.utf8)
}
}