File: PrecompileClangModuleTaskAction.swift

package info (click to toggle)
swiftlang 6.2.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,856,264 kB
  • sloc: cpp: 9,995,718; ansic: 2,234,019; asm: 1,092,167; python: 313,940; objc: 82,726; f90: 80,126; lisp: 38,373; pascal: 25,580; sh: 20,378; ml: 5,058; perl: 4,751; makefile: 4,725; awk: 3,535; javascript: 3,018; xml: 918; fortran: 664; cs: 573; ruby: 396
file content (247 lines) | stat: -rw-r--r-- 10,646 bytes parent folder | download
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
//===----------------------------------------------------------------------===//
//
// 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
public import SWBUtil
import SWBLibc
public import SWBCore
public import SWBLLBuild

final public class PrecompileClangModuleTaskAction: TaskAction, BuildValueValidatingTaskAction {
    public override class var toolIdentifier: String {
        return "precompile-module"
    }

    private let key: PrecompileClangModuleTaskKey

    // Reference for potential errors during task action callbacks that need to be propagated until performTaskAction,
    // since that's when the TaskAction is considered to be executed.
    private var executionError: (any Error)?

    package init(key: PrecompileClangModuleTaskKey) {
        self.key = key
        super.init()
    }

    public func isResultValid(_ task: any ExecutableTask, _ operationContext: DynamicTaskOperationContext, buildValue: BuildValue) -> Bool {
        fatalError("Unexpectedly called the old version of isResultValid")
    }

    public func isResultValid(_ task: any ExecutableTask, _ operationContext: DynamicTaskOperationContext, buildValue: BuildValue, fallback: (BuildValue) -> Bool) -> Bool {
        fallback(buildValue) && areCASResultsValid(operationContext)
    }

    private func areCASResultsValid(_ operationContext: DynamicTaskOperationContext) -> Bool {
        guard let casOptions = key.casOptions else {
            return true
        }

        guard let dependencyInfo = try? operationContext.clangModuleDependencyGraph.queryDependencies(at: key.dependencyInfoPath, fileSystem: localFS) else {
            return false
        }

        guard let casDBs = try? operationContext.clangModuleDependencyGraph.getCASDatabases(libclangPath: key.libclangPath, casOptions: casOptions) else {
            return false
        }

        for command in dependencyInfo.commands {
            guard let cacheKey = command.cacheKey else {
                return false
            }

            guard let compilation = try? casDBs.getLocalCachedCompilation(cacheKey: cacheKey) else {
                return false
            }

            for output in compilation.getOutputs() {
                if !compilation.isOutputMaterialized(output) {
                    return false
                }
            }
        }

        return true
    }

    public override func taskSetup(_ task: any ExecutableTask, executionDelegate: any TaskExecutionDelegate, dynamicExecutionDelegate: any DynamicTaskExecutionDelegate) {
        let clangModuleDependencyGraph = dynamicExecutionDelegate.operationContext.clangModuleDependencyGraph

        // If a precompile task action is executing, it is expected that the scanning action already happened, so the
        // dependencies for this module should already be present in the ModuleDependencyGraph.
        let dependencyInfo: ClangModuleDependencyGraph.DependencyInfo
        do {
            dependencyInfo = try clangModuleDependencyGraph.queryDependencies(at: key.dependencyInfoPath, fileSystem: executionDelegate.fs)
        } catch {
            executionError = error
            return
        }

        var taskID = UInt(0)
        for module in dependencyInfo.modules {
            let taskKey = PrecompileClangModuleTaskKey(
                dependencyInfoPath: Path(module.withoutSuffix + ".scan"),
                usesSerializedDiagnostics: dependencyInfo.usesSerializedDiagnostics,
                libclangPath: key.libclangPath,
                casOptions: key.casOptions,
                verifyingModule: key.verifyingModule,
                fileNameMapPath: key.fileNameMapPath
            )

            dynamicExecutionDelegate.requestDynamicTask(
                toolIdentifier: PrecompileClangModuleTaskAction.toolIdentifier,
                taskKey: .precompileClangModule(taskKey),
                taskID: taskID,
                singleUse: false,
                workingDirectory: Path.root,
                environment: task.environment,
                forTarget: task.forTarget,
                priority: .preferred,
                showEnvironment: task.showEnvironment,
                reason: .wasScannedClangModuleDependency(of: key.dependencyInfoPath.str)
            )
            taskID += 1
        }

        do {
            try ClangCompileTaskAction.maybeRequestCachingKeyMaterialization(
                dependencyInfo: dependencyInfo,
                dynamicExecutionDelegate: dynamicExecutionDelegate,
                libclangPath: key.libclangPath,
                casOptions: key.casOptions,
                taskID: &taskID
            )
        } catch {
            executionError = error
            return
        }
    }

    override public func performTaskAction(
        _ task: any ExecutableTask,
        dynamicExecutionDelegate: any DynamicTaskExecutionDelegate,
        executionDelegate: any TaskExecutionDelegate,
        clientDelegate: any TaskExecutionClientDelegate,
        outputDelegate: any TaskOutputDelegate
    ) async -> CommandResult {
        if let error = executionError {
            outputDelegate.error(error.localizedDescription)
            return .failed
        }

        let clangModuleDependencyGraph = dynamicExecutionDelegate.operationContext.clangModuleDependencyGraph
        let dependencyInfo: ClangModuleDependencyGraph.DependencyInfo
        do {
            dependencyInfo = try clangModuleDependencyGraph.queryDependencies(at: key.dependencyInfoPath, fileSystem: executionDelegate.fs)
        } catch {
            outputDelegate.error(error.localizedDescription)
            return .failed
        }

        for node in (dependencyInfo.files.map {
            ExecutionNode(identifier: $0.str)
        }) {
            dynamicExecutionDelegate.discoveredDependencyNode(node)
        }

        guard let command = dependencyInfo.commands.only else {
            outputDelegate.emitError("Module dependency \(key.dependencyInfoPath) should have a single command-line")
            return .failed
        }
        let commandLine = command.arguments

        if executionDelegate.userPreferences.enableDebugActivityLogs || executionDelegate.emitFrontendCommandLines {
            let commandString = UNIXShellCommandCodec(
                encodingStrategy: .backslashes,
                encodingBehavior: .fullCommandLine
            ).encode(commandLine)

            // <rdar://59354519> We need to find a way to use the generic infrastructure for displaying the command line in
            // the build log.
            outputDelegate.emitOutput(ByteString(encodingAsUTF8: commandString) + "\n")
        }

        if executionDelegate.userPreferences.enableDebugActivityLogs {
            outputDelegate.emitOutput(ByteString(encodingAsUTF8: dependencyInfo.files.map(\.str).joined(separator: "\n") + "\n"))
        }

        do {
            let casDBs: ClangCASDatabases?
            if let casOptions = key.casOptions, casOptions.enableIntegratedCacheQueries {
                casDBs = try clangModuleDependencyGraph.getCASDatabases(
                    libclangPath: key.libclangPath,
                    casOptions: casOptions
                )
            } else {
                casDBs = nil
            }

            if let casDBs {
                if try ClangCompileTaskAction.replayCachedCommand(
                    command,
                    casDBs: casDBs,
                    workingDirectory: dependencyInfo.workingDirectory,
                    outputDelegate: outputDelegate,
                    enableDiagnosticRemarks: key.casOptions!.enableDiagnosticRemarks
                ) {
                    return .succeeded
                }
            }

            let delegate = TaskProcessDelegate(outputDelegate: outputDelegate)
            // The frontend invocations should be unaffected by the environment, pass an empty one.
            try await spawn(commandLine: commandLine, environment: [:], workingDirectory: dependencyInfo.workingDirectory, dynamicExecutionDelegate: dynamicExecutionDelegate, clientDelegate: clientDelegate, processDelegate: delegate)

            let result = delegate.commandResult ?? .failed
            if result == .succeeded {
                if let casDBs, key.casOptions!.hasRemoteCache {
                    guard let cacheKey = command.cacheKey else {
                        throw StubError.error("missing cache key")
                    }
                    try await ClangCompileTaskAction.upload(
                        cacheKey: cacheKey,
                        casDBs: casDBs,
                        dynamicExecutionDelegate: dynamicExecutionDelegate,
                        outputDelegate: outputDelegate,
                        enableDiagnosticRemarks: key.casOptions!.enableDiagnosticRemarks,
                        enableStrictCASErrors: key.casOptions!.enableStrictCASErrors
                    )
                }
            } else if result == .failed && !executionDelegate.userPreferences.enableDebugActivityLogs && !executionDelegate.emitFrontendCommandLines {
                let commandString = UNIXShellCommandCodec(
                    encodingStrategy: .backslashes,
                    encodingBehavior: .fullCommandLine
                ).encode(commandLine)

                // <rdar://59354519> We need to find a way to use the generic infrastructure for displaying the command line in
                // the build log.
                outputDelegate.emitOutput("Failed frontend command:\n")
                outputDelegate.emitOutput(ByteString(encodingAsUTF8: commandString) + "\n")
            }
            return result
        } catch {
            outputDelegate.emitError("There was an error precompiling module \(key.dependencyInfoPath).\n\n\(error)")
            return .failed
        }
    }

    public override func serialize<T: Serializer>(to serializer: T) {
        serializer.beginAggregate(2)
        serializer.serialize(key)
        super.serialize(to: serializer)
    }

    public required init(from deserializer: any Deserializer) throws {
        try deserializer.beginAggregate(2)
        self.key = try deserializer.deserialize()
        try super.init(from: deserializer)
    }
}