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 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608
|
//===----------------------------------------------------------------------===//
//
// 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 class Foundation.Bundle
import class Foundation.ProcessInfo
import SWBCore
import SWBUtil
import SWBTaskExecution
// MARK: Top-level Testing & Debugging Tools
/// Execute an internally defined "command line tool".
///
/// The output from the tool will be passed to the given handlers, and the tool result (success/failure) will be returned.
func executeInternalTool(core: Core, commandLine: [String], workingDirectory: Path, stdoutHandler: @escaping (String) -> Void, stderrHandler: @escaping (String) -> Void) async -> Bool {
do {
switch commandLine[0] {
case "dumpMsgPack":
let tool = MsgPackDumpTool(commandLine, workingDirectory: workingDirectory, stdoutHandler: stdoutHandler, stderrHandler: stderrHandler)
return try tool.execute()
case "headermap":
let tool = HeadermapTool(commandLine, workingDirectory: workingDirectory, stdoutHandler: stdoutHandler, stderrHandler: stderrHandler)
return try tool.execute()
case "clang-scan":
let tool = ClangScanTool(commandLine, workingDirectory: workingDirectory, stdoutHandler: stdoutHandler, stderrHandler: stderrHandler)
return try tool.execute()
case "serializedDiagnostics":
let tool = SerializedDiagnosticsTool(commandLine, workingDirectory: workingDirectory, stdoutHandler: stdoutHandler, stderrHandler: stderrHandler)
return try await tool.execute(core: core)
case let program:
stderrHandler("error: unknown internal tool `\(program)`\n")
return false
}
} catch {
stderrHandler("error: tool threw uncaught error: \(error)\n")
return false
}
}
/// Dump a MsgPack file (used for checking build description.
///
/// This will build using the given input specification (possibly multiple times) and check the result.
private class MsgPackDumpTool {
/// The parsed command line options.
struct Options {
static func emitUsage(_ name: String, _ handler: @escaping (String) -> Void) {
let stream = OutputByteStream()
stream <<< "usage: \(name) --path path\n"
handler(stream.bytes.asString)
}
/// The path to the file to dump.
let path: Path
init?(_ commandLine: AnySequence<String>, workingDirectory cwd: Path, stderrHandler: @escaping (String) -> Void) {
var pathOpt: Path? = nil
var hadErrors = false
func error(_ message: String) {
stderrHandler("error: \(message)\n")
hadErrors = true
}
// Parse the arguments.
let generator = commandLine.makeIterator()
// Skip the executable.
let programName = generator.next() ?? "<<missing program name>>"
while let arg = generator.next() {
switch arg {
case "--help":
Options.emitUsage(programName, stderrHandler)
return nil
case "--path":
guard let path = generator.next() else {
error("missing argument for option: '\(arg)'")
continue
}
pathOpt = cwd.join(Path(path))
default:
error("unrecognized argument: '\(arg)'")
}
}
// Diagnose missing required arguments.
guard let path = pathOpt else {
error("no path given, --path is required")
return nil
}
// Initialize contents.
self.path = path
// If there were errors, emit the usage and return an error.
if hadErrors {
stderrHandler("\n")
Options.emitUsage(programName, stderrHandler)
return nil
}
}
}
let commandLine: [String]
let workingDirectory: Path
let stdoutHandler: (String) -> Void
let stderrHandler: (String) -> Void
var numErrors = 0
init(_ commandLine: [String], workingDirectory: Path, stdoutHandler: @escaping (String) -> Void, stderrHandler: @escaping (String) -> Void) {
self.commandLine = commandLine
self.workingDirectory = workingDirectory
self.stdoutHandler = stdoutHandler
self.stderrHandler = stderrHandler
}
func emitNote(_ message: String) {
stdoutHandler("note: \(message)\n")
}
func emitWarning(_ message: String) {
stdoutHandler("warning: \(message)\n")
}
func emitError(_ message: String) {
stderrHandler("error: \(message)\n")
numErrors += 1
}
/// Execute the tool.
func execute() throws -> Bool {
// Parse the command line arguments.
guard let options = Options(AnySequence(commandLine), workingDirectory: workingDirectory, stderrHandler: stderrHandler) else {
return false
}
// Read the file.
let data = try localFS.read(options.path)
emitNote("loaded \(data.count) bytes")
let decoder = MsgPackDecoder(ArraySlice(data.bytes))
// Consume all the objects in the file.
enum DecoderItem {
/// A dictionary with N elements remaining.
case dict(count: Int, atKey: Bool)
/// An array with N elements remaining.
case array(count: Int)
}
var stack = [DecoderItem]()
var indent: String {
return String(repeating: " ", count: stack.count)
}
while decoder.consumedCount != data.count || !stack.isEmpty {
// Check where we are in the object stack.
if !stack.isEmpty {
switch stack.removeLast() {
case .dict(let n, let atKey):
// If we are at the last item, close the dictionary.
if n == 0, !atKey {
stdoutHandler("\(indent)},\n")
continue
}
// Otherwise, step to the next item.
if atKey {
stack.append(.dict(count: n, atKey: false))
} else {
stack.append(.dict(count: n - 1, atKey: true))
}
case .array(let n):
// If we are at the last item, close the dictionary.
if n == 0 {
stdoutHandler("\(indent)],\n")
continue
}
// Otherwise, step to the next item.
stack.append(.array(count: n - 1))
}
}
if decoder.consumedCount == data.count {
continue // at EOF, go back through and finish the indenting
}
// Read the next item from the decoder.
if let i = decoder.readInt64() {
stdoutHandler("\(indent)\(i),\n")
} else if let i = decoder.readUInt64() {
stdoutHandler("\(indent)\(i),\n")
} else if decoder.readNil() {
stdoutHandler("\(indent)nil,\n")
} else if let i = decoder.readBool() {
stdoutHandler("\(indent)\(i),\n")
} else if let i = decoder.readFloat32() {
stdoutHandler("\(indent)\(i),\n")
} else if let i = decoder.readFloat64() {
stdoutHandler("\(indent)\(i),\n")
} else if let i = decoder.readString() {
stdoutHandler("\(indent)\(i),\n")
} else if let i = decoder.readBinary() {
stdoutHandler("\(indent)\(i.asReadableString()),\n")
} else if let n = decoder.readBeginArray() {
stdoutHandler("\(indent)[ # \(n) elements\n")
stack.append(.array(count: n))
} else if let n = decoder.readBeginMap() {
stdoutHandler("\(indent){ # \(n) elements\n")
stack.append(.dict(count: n, atKey: true))
} else {
emitError("unrecognized item in MsgPack sequence")
break
}
}
return numErrors == 0
}
}
/// Utilities for working with headermaps.
private class HeadermapTool {
/// The parsed command line options.
struct Options {
static func emitUsage(_ name: String, _ handler: @escaping (String) -> Void) {
let stream = OutputByteStream()
stream <<< "usage: \(name) --dump path\n"
handler(stream.bytes.asString)
}
/// The path to the file to dump.
let path: Path
init?(_ commandLine: AnySequence<String>, workingDirectory cwd: Path, stderrHandler: @escaping (String) -> Void) {
var pathOpt: Path? = nil
var hadErrors = false
func error(_ message: String) {
stderrHandler("error: \(message)\n")
hadErrors = true
}
// Parse the arguments.
let generator = commandLine.makeIterator()
// Skip the executable.
let programName = generator.next() ?? "<<missing program name>>"
while let arg = generator.next() {
switch arg {
case "--help":
Options.emitUsage(programName, stderrHandler)
return nil
case "--dump":
guard let path = generator.next() else {
error("missing argument for option: '\(arg)'")
continue
}
pathOpt = cwd.join(Path(path))
default:
error("unrecognized argument: '\(arg)'")
}
}
// Diagnose missing required arguments.
if pathOpt == nil {
pathOpt = Path("")
error("no path specified")
}
// Initialize contents.
self.path = pathOpt!
// If there were errors, emit the usage and return an error.
if hadErrors {
stderrHandler("\n")
Options.emitUsage(programName, stderrHandler)
return nil
}
}
}
let commandLine: [String]
let workingDirectory: Path
let stdoutHandler: (String) -> Void
let stderrHandler: (String) -> Void
var numErrors = 0
init(_ commandLine: [String], workingDirectory: Path, stdoutHandler: @escaping (String) -> Void, stderrHandler: @escaping (String) -> Void) {
self.commandLine = commandLine
self.workingDirectory = workingDirectory
self.stdoutHandler = stdoutHandler
self.stderrHandler = stderrHandler
}
func emitNote(_ message: String) {
stdoutHandler("note: \(message)\n")
}
func emitWarning(_ message: String) {
stdoutHandler("warning: \(message)\n")
}
func emitError(_ message: String) {
stderrHandler("error: \(message)\n")
numErrors += 1
}
/// Execute the tool.
func execute() throws -> Bool {
// Parse the command line arguments.
guard let options = Options(AnySequence(commandLine), workingDirectory: workingDirectory, stderrHandler: stderrHandler) else {
return false
}
// Read the file.
let data: ByteString
do {
data = try localFS.read(options.path)
} catch {
emitError("unable to load headermap data: \(error)")
return false
}
let hmap: Headermap
do {
hmap = try Headermap(bytes: data.bytes)
} catch {
emitError("unable to parse headermap contents: \(error)")
return false
}
for entry in hmap {
stdoutHandler("\(entry.0.asReadableString()) -> \(entry.1.asReadableString())\n")
}
return true
}
}
/// Utilities for working with dependency scanner outputs.
private class ClangScanTool {
/// The parsed command line options.
struct Options {
static func emitUsage(_ name: String, _ handler: @escaping (String) -> Void) {
let stream = OutputByteStream()
stream <<< "usage: \(name) --dump path\n"
handler(stream.bytes.asString)
}
/// The path to the file to dump.
let path: Path
init?(_ commandLine: AnySequence<String>, workingDirectory cwd: Path, stderrHandler: @escaping (String) -> Void) {
var pathOpt: Path? = nil
var hadErrors = false
func error(_ message: String) {
stderrHandler("error: \(message)\n")
hadErrors = true
}
// Parse the arguments.
let generator = commandLine.makeIterator()
// Skip the executable.
let programName = generator.next() ?? "<<missing program name>>"
while let arg = generator.next() {
switch arg {
case "--help":
Options.emitUsage(programName, stderrHandler)
return nil
case "--dump":
guard let path = generator.next() else {
error("missing argument for option: '\(arg)'")
continue
}
pathOpt = cwd.join(Path(path))
default:
error("unrecognized argument: '\(arg)'")
}
}
// Diagnose missing required arguments.
if pathOpt == nil {
pathOpt = Path("")
error("no path specified")
}
// Initialize contents.
self.path = pathOpt!
// If there were errors, emit the usage and return an error.
if hadErrors {
stderrHandler("\n")
Options.emitUsage(programName, stderrHandler)
return nil
}
}
}
let commandLine: [String]
let workingDirectory: Path
let stdoutHandler: (String) -> Void
let stderrHandler: (String) -> Void
var numErrors = 0
init(_ commandLine: [String], workingDirectory: Path, stdoutHandler: @escaping (String) -> Void, stderrHandler: @escaping (String) -> Void) {
self.commandLine = commandLine
self.workingDirectory = workingDirectory
self.stdoutHandler = stdoutHandler
self.stderrHandler = stderrHandler
}
func emitNote(_ message: String) {
stdoutHandler("note: \(message)\n")
}
func emitWarning(_ message: String) {
stdoutHandler("warning: \(message)\n")
}
func emitError(_ message: String) {
stderrHandler("error: \(message)\n")
numErrors += 1
}
/// Execute the tool.
func execute() throws -> Bool {
// Parse the command line arguments.
guard let options = Options(AnySequence(commandLine), workingDirectory: workingDirectory, stderrHandler: stderrHandler) else {
return false
}
// Read the file.
let data: ByteString
do {
data = try localFS.read(options.path)
} catch {
emitError("unable to load headermap data: \(error)")
return false
}
let scan: ClangModuleDependencyGraph.DependencyInfo
do {
let deserializer = MsgPackDeserializer(data)
scan = try deserializer.deserialize()
} catch {
emitError("unable to parse scan contents: \(error)")
return false
}
stdoutHandler("kind: \(scan.kind)\n")
stdoutHandler("usesSerializedDiagnostics: \(scan.usesSerializedDiagnostics)\n")
stdoutHandler("commands:\n")
for command in scan.commands {
stdoutHandler("\t\(command.cacheKey ?? "no cache key"): \(command.arguments.joined(separator: " "))\n")
}
stdoutHandler("files:\n")
for file in scan.files {
stdoutHandler("\t\(file.str)\n")
}
stdoutHandler("modules:\n")
for module in scan.modules {
stdoutHandler("\t\(module.str)\n")
}
return true
}
}
private class SerializedDiagnosticsTool {
/// The parsed command line options.
struct Options {
static func emitUsage(_ name: String, _ handler: @escaping (String) -> Void) {
let stream = OutputByteStream()
stream <<< "usage: \(name) --dump path\n"
handler(stream.bytes.asString)
}
/// The path to the file to dump.
let path: Path
init?(_ commandLine: AnySequence<String>, workingDirectory cwd: Path, stderrHandler: @escaping (String) -> Void) {
var pathOpt: Path? = nil
var hadErrors = false
func error(_ message: String) {
stderrHandler("error: \(message)\n")
hadErrors = true
}
// Parse the arguments.
let generator = commandLine.makeIterator()
// Skip the executable.
let programName = generator.next() ?? "<<missing program name>>"
while let arg = generator.next() {
switch arg {
case "--help":
Options.emitUsage(programName, stderrHandler)
return nil
case "--dump":
guard let path = generator.next() else {
error("missing argument for option: '\(arg)'")
continue
}
pathOpt = cwd.join(Path(path))
default:
error("unrecognized argument: '\(arg)'")
}
}
// Diagnose missing required arguments.
if pathOpt == nil {
pathOpt = Path("")
error("no path specified")
}
// Initialize contents.
self.path = pathOpt!
// If there were errors, emit the usage and return an error.
if hadErrors {
stderrHandler("\n")
Options.emitUsage(programName, stderrHandler)
return nil
}
}
}
let commandLine: [String]
let workingDirectory: Path
let stdoutHandler: (String) -> Void
let stderrHandler: (String) -> Void
var numErrors = 0
init(_ commandLine: [String], workingDirectory: Path, stdoutHandler: @escaping (String) -> Void, stderrHandler: @escaping (String) -> Void) {
self.commandLine = commandLine
self.workingDirectory = workingDirectory
self.stdoutHandler = stdoutHandler
self.stderrHandler = stderrHandler
}
func emitNote(_ message: String) {
stdoutHandler("note: \(message)\n")
}
func emitWarning(_ message: String) {
stdoutHandler("warning: \(message)\n")
}
func emitError(_ message: String) {
stderrHandler("error: \(message)\n")
numErrors += 1
}
/// Execute the tool.
func execute(core: Core) async throws -> Bool {
// Parse the command line arguments.
guard let options = Options(AnySequence(commandLine), workingDirectory: workingDirectory, stderrHandler: stderrHandler) else {
return false
}
let toolchain = core.toolchainRegistry.defaultToolchain
guard let libclangPath = toolchain?.librarySearchPaths.findLibrary(operatingSystem: core.hostOperatingSystem, basename: "clang") ?? toolchain?.fallbackLibrarySearchPaths.findLibrary(operatingSystem: core.hostOperatingSystem, basename: "clang") else {
throw StubError.error("unable to find libclang")
}
guard let libclang = Libclang(path: libclangPath.str) else {
emitError("unable to open libclang: \(libclangPath)")
return false
}
defer {
libclang.leak()
}
let diagnostics: [ClangDiagnostic]
do {
func printDiagnostic(_ diagnostic: Diagnostic, indentationLevel: Int = 0) {
for _ in 0..<indentationLevel {
stdoutHandler("\t")
}
stdoutHandler(diagnostic.formatLocalizedDescription(.debug))
stdoutHandler("\n")
}
diagnostics = try libclang.loadDiagnostics(filePath: options.path.str)
for diagnostic in diagnostics.map({ Diagnostic($0, workingDirectory: workingDirectory, appendToOutputStream: false) }) {
printDiagnostic(diagnostic)
for childDiagnostic in diagnostic.childDiagnostics {
printDiagnostic(childDiagnostic, indentationLevel: 1)
}
}
} catch {
emitError("unable to parse serialized diagnostics file: \(error)")
return false
}
return true
}
}
|