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 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift open source project
//
// Copyright (c) 2014-2023 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 Basics
import PackageModel
import SPMBuildCore
import protocol TSCBasic.OutputByteStream
/// Create an initial template package.
public final class InitPackage {
/// The tool version to be used for new packages.
public static let newPackageToolsVersion = ToolsVersion.current
/// Options for the template package.
public struct InitPackageOptions {
/// The type of package to create.
public var packageType: PackageType
/// The set of supported testing libraries to include in the package.
public var supportedTestingLibraries: Set<BuildParameters.Testing.Library>
/// The list of platforms in the manifest.
///
/// Note: This should only contain Apple platforms right now.
public var platforms: [SupportedPlatform]
public init(
packageType: PackageType,
supportedTestingLibraries: Set<BuildParameters.Testing.Library>,
platforms: [SupportedPlatform] = []
) {
self.packageType = packageType
self.supportedTestingLibraries = supportedTestingLibraries
self.platforms = platforms
}
}
/// Represents a package type for the purposes of initialization.
public enum PackageType: String, CustomStringConvertible {
case empty = "empty"
case library = "library"
case executable = "executable"
case tool = "tool"
case buildToolPlugin = "build-tool-plugin"
case commandPlugin = "command-plugin"
case macro = "macro"
public var description: String {
return rawValue
}
}
/// A block that will be called to report progress during package creation
public var progressReporter: ((String) -> Void)?
/// The file system to use
let fileSystem: FileSystem
/// Where to create the new package
let destinationPath: AbsolutePath
/// The type of package to create.
var packageType: PackageType { options.packageType }
/// The options for package to create.
let options: InitPackageOptions
/// Configuration from the used toolchain.
let installedSwiftPMConfiguration: InstalledSwiftPMConfiguration
/// The name of the package to create.
let pkgname: String
/// The name of the target to create.
var moduleName: String
/// The name of the type to create (within the package).
var typeName: String {
return moduleName
}
/// Create an instance that can create a package with given arguments.
public convenience init(
name: String,
packageType: PackageType,
supportedTestingLibraries: Set<BuildParameters.Testing.Library>,
destinationPath: AbsolutePath,
installedSwiftPMConfiguration: InstalledSwiftPMConfiguration,
fileSystem: FileSystem
) throws {
try self.init(
name: name,
options: InitPackageOptions(packageType: packageType, supportedTestingLibraries: supportedTestingLibraries),
destinationPath: destinationPath,
installedSwiftPMConfiguration: installedSwiftPMConfiguration,
fileSystem: fileSystem
)
}
/// Create an instance that can create a package with given arguments.
public init(
name: String,
options: InitPackageOptions,
destinationPath: AbsolutePath,
installedSwiftPMConfiguration: InstalledSwiftPMConfiguration,
fileSystem: FileSystem
) throws {
if options.packageType == .macro && options.supportedTestingLibraries.contains(.swiftTesting) {
// FIXME: https://github.com/swiftlang/swift-syntax/issues/2400
throw InitError.unsupportedTestingLibraryForPackageType(.swiftTesting, .macro)
}
self.options = options
self.pkgname = name
self.moduleName = name.spm_mangledToC99ExtendedIdentifier()
self.destinationPath = destinationPath
self.installedSwiftPMConfiguration = installedSwiftPMConfiguration
self.fileSystem = fileSystem
}
/// Actually creates the new package at the destinationPath
public func writePackageStructure() throws {
progressReporter?("Creating \(packageType) package: \(pkgname)")
// FIXME: We should form everything we want to write, then validate that
// none of it exists, and then act.
try writeManifestFile()
try writeGitIgnore()
try writePlugins()
try writeSources()
try writeTests()
}
private func writePackageFile(_ path: AbsolutePath, body: (OutputByteStream) -> Void) throws {
progressReporter?("Creating \(path.relative(to: destinationPath))")
try self.fileSystem.writeFileContents(path, body: body)
}
private func writeManifestFile() throws {
let manifest = destinationPath.appending(component: Manifest.filename)
guard self.fileSystem.exists(manifest) == false else {
throw InitError.manifestAlreadyExists
}
try writePackageFile(manifest) { stream in
stream.send(
"""
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
"""
)
if packageType == .macro {
stream.send(
"""
import CompilerPluginSupport
"""
)
}
stream.send(
"""
let package = Package(
"""
)
var pkgParams = [String]()
pkgParams.append("""
name: "\(pkgname)"
""")
var platforms = options.platforms
// Macros require macOS 10.15, iOS 13, etc.
if packageType == .macro {
func addIfMissing(_ newPlatform: SupportedPlatform) {
if platforms.contains(where: { platform in
platform.platform == newPlatform.platform
}) {
return
}
platforms.append(newPlatform)
}
addIfMissing(.init(platform: .macOS, version: .init("10.15")))
addIfMissing(.init(platform: .iOS, version: .init("13")))
addIfMissing(.init(platform: .tvOS, version: .init("13")))
addIfMissing(.init(platform: .watchOS, version: .init("6")))
addIfMissing(.init(platform: .macCatalyst, version: .init("13")))
}
var platformsParams = [String]()
for supportedPlatform in platforms {
let version = supportedPlatform.version
let platform = supportedPlatform.platform
var param = ".\(platform.manifestName)("
if supportedPlatform.isManifestAPIAvailable {
if version.minor > 0 {
param += ".v\(version.major)_\(version.minor)"
} else {
param += ".v\(version.major)"
}
} else {
param += "\"\(version.versionString)\""
}
param += ")"
platformsParams.append(param)
}
// Package platforms
if !platforms.isEmpty {
pkgParams.append("""
platforms: [\(platformsParams.joined(separator: ", "))]
""")
}
// Package products
if packageType == .library {
pkgParams.append("""
products: [
// Products define the executables and libraries a package produces, making them visible to other packages.
.library(
name: "\(pkgname)",
targets: ["\(pkgname)"]),
]
""")
} else if packageType == .buildToolPlugin || packageType == .commandPlugin {
pkgParams.append("""
products: [
// Products can be used to vend plugins, making them visible to other packages.
.plugin(
name: "\(pkgname)",
targets: ["\(pkgname)"]),
]
""")
} else if packageType == .macro {
pkgParams.append("""
products: [
// Products define the executables and libraries a package produces, making them visible to other packages.
.library(
name: "\(pkgname)",
targets: ["\(pkgname)"]
),
.executable(
name: "\(pkgname)Client",
targets: ["\(pkgname)Client"]
),
]
""")
}
// Package dependencies
var dependencies = [String]()
if packageType == .tool {
dependencies.append(#".package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.2.0")"#)
} else if packageType == .macro {
dependencies.append(#".package(url: "https://github.com/swiftlang/swift-syntax.git", from: "\#(self.installedSwiftPMConfiguration.swiftSyntaxVersionForMacroTemplate.description)")"#)
}
if !dependencies.isEmpty {
let dependencies = dependencies.map { dependency in
" \(dependency),"
}.joined(separator: "\n")
pkgParams.append("""
dependencies: [
\(dependencies)
]
""")
}
// Package targets
if packageType != .empty {
var param = ""
param += """
targets: [
// Targets are the basic building blocks of a package, defining a module or a test suite.
// Targets can depend on other targets in this package and products from dependencies.
"""
if packageType == .executable {
param += """
.executableTarget(
name: "\(pkgname)"),
]
"""
} else if packageType == .tool {
param += """
.executableTarget(
name: "\(pkgname)",
dependencies: [
.product(name: "ArgumentParser", package: "swift-argument-parser"),
]
),
]
"""
} else if packageType == .buildToolPlugin {
param += """
.plugin(
name: "\(pkgname)",
capability: .buildTool()
),
]
"""
} else if packageType == .commandPlugin {
param += """
.plugin(
name: "\(pkgname)",
capability: .command(intent: .custom(
verb: "\(typeName)",
description: "prints hello world"
))
),
]
"""
} else if packageType == .macro {
let testTarget: String
if options.supportedTestingLibraries.contains(.swiftTesting) {
testTarget = """
// A test target used to develop the macro implementation.
.testTarget(
name: "\(pkgname)Tests",
dependencies: [
"\(pkgname)Macros",
.product(name: "SwiftSyntaxMacrosTestSupport", package: "swift-syntax"),
.product(name: "Testing", package: "swift-testing"),
]
),
"""
} else if options.supportedTestingLibraries.contains(.xctest) {
testTarget = """
// A test target used to develop the macro implementation.
.testTarget(
name: "\(pkgname)Tests",
dependencies: [
"\(pkgname)Macros",
.product(name: "SwiftSyntaxMacrosTestSupport", package: "swift-syntax"),
]
),
"""
} else {
testTarget = ""
}
param += """
// Macro implementation that performs the source transformation of a macro.
.macro(
name: "\(pkgname)Macros",
dependencies: [
.product(name: "SwiftSyntaxMacros", package: "swift-syntax"),
.product(name: "SwiftCompilerPlugin", package: "swift-syntax")
]
),
// Library that exposes a macro as part of its API, which is used in client programs.
.target(name: "\(pkgname)", dependencies: ["\(pkgname)Macros"]),
// A client of the library, which is able to use the macro in its own code.
.executableTarget(name: "\(pkgname)Client", dependencies: ["\(pkgname)"]),
\(testTarget)
]
"""
} else {
let testTarget: String
if !options.supportedTestingLibraries.isEmpty {
testTarget = """
.testTarget(
name: "\(pkgname)Tests",
dependencies: ["\(pkgname)"]
),
"""
} else {
testTarget = ""
}
param += """
.target(
name: "\(pkgname)"),
\(testTarget)
]
"""
}
pkgParams.append(param)
}
stream.send("\(pkgParams.joined(separator: ",\n"))\n)\n")
}
// Create a tools version with current version but with patch set to zero.
// We do this to avoid adding unnecessary constraints to patch versions, if
// the package really needs it, they should add it manually.
let version = InitPackage.newPackageToolsVersion.zeroedPatch
// Write the current tools version.
try ToolsVersionSpecificationWriter.rewriteSpecification(
manifestDirectory: manifest.parentDirectory,
toolsVersion: version,
fileSystem: self.fileSystem
)
}
private func writeGitIgnore() throws {
guard packageType != .empty else {
return
}
let gitignore = destinationPath.appending(".gitignore")
guard self.fileSystem.exists(gitignore) == false else {
return
}
try writePackageFile(gitignore) { stream in
stream.send(
"""
.DS_Store
/.build
/Packages
xcuserdata/
DerivedData/
.swiftpm/configuration/registries.json
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
.netrc
"""
)
}
}
private func writePlugins() throws {
switch packageType {
case .buildToolPlugin, .commandPlugin:
let plugins = destinationPath.appending(component: "Plugins")
guard self.fileSystem.exists(plugins) == false else {
return
}
progressReporter?("Creating \(plugins.relative(to: destinationPath))/")
try makeDirectories(plugins)
let moduleDir = plugins
try makeDirectories(moduleDir)
let sourceFileName = "\(pkgname).swift"
let sourceFile = try AbsolutePath(validating: sourceFileName, relativeTo: moduleDir)
var content = """
import PackagePlugin
@main
"""
if packageType == .buildToolPlugin {
content += """
struct \(typeName): BuildToolPlugin {
/// Entry point for creating build commands for targets in Swift packages.
func createBuildCommands(context: PluginContext, target: Target) async throws -> [Command] {
// This plugin only runs for package targets that can have source files.
guard let sourceFiles = target.sourceModule?.sourceFiles else { return [] }
// Find the code generator tool to run (replace this with the actual one).
let generatorTool = try context.tool(named: "my-code-generator")
// Construct a build command for each source file with a particular suffix.
return sourceFiles.map(\\.path).compactMap {
createBuildCommand(for: $0, in: context.pluginWorkDirectory, with: generatorTool.path)
}
}
}
#if canImport(XcodeProjectPlugin)
import XcodeProjectPlugin
extension \(typeName): XcodeBuildToolPlugin {
// Entry point for creating build commands for targets in Xcode projects.
func createBuildCommands(context: XcodePluginContext, target: XcodeTarget) throws -> [Command] {
// Find the code generator tool to run (replace this with the actual one).
let generatorTool = try context.tool(named: "my-code-generator")
// Construct a build command for each source file with a particular suffix.
return target.inputFiles.map(\\.path).compactMap {
createBuildCommand(for: $0, in: context.pluginWorkDirectory, with: generatorTool.path)
}
}
}
#endif
extension \(typeName) {
/// Shared function that returns a configured build command if the input files is one that should be processed.
func createBuildCommand(for inputPath: Path, in outputDirectoryPath: Path, with generatorToolPath: Path) -> Command? {
// Skip any file that doesn't have the extension we're looking for (replace this with the actual one).
guard inputPath.extension == "my-input-suffix" else { return .none }
// Return a command that will run during the build to generate the output file.
let inputName = inputPath.lastComponent
let outputName = inputPath.stem + ".swift"
let outputPath = outputDirectoryPath.appending(outputName)
return .buildCommand(
displayName: "Generating \\(outputName) from \\(inputName)",
executable: generatorToolPath,
arguments: ["\\(inputPath)", "-o", "\\(outputPath)"],
inputFiles: [inputPath],
outputFiles: [outputPath]
)
}
}
"""
}
else {
content += """
struct \(typeName): CommandPlugin {
// Entry point for command plugins applied to Swift Packages.
func performCommand(context: PluginContext, arguments: [String]) async throws {
print("Hello, World!")
}
}
#if canImport(XcodeProjectPlugin)
import XcodeProjectPlugin
extension \(typeName): XcodeCommandPlugin {
// Entry point for command plugins applied to Xcode projects.
func performCommand(context: XcodePluginContext, arguments: [String]) throws {
print("Hello, World!")
}
}
#endif
"""
}
try writePackageFile(sourceFile) { stream in
stream.write(content)
}
case .empty, .library, .executable, .tool, .macro:
break
}
}
private func writeSources() throws {
if packageType == .empty || packageType == .buildToolPlugin || packageType == .commandPlugin {
return
}
let sources = destinationPath.appending("Sources")
guard self.fileSystem.exists(sources) == false else {
return
}
progressReporter?("Creating \(sources.relative(to: destinationPath))/")
try makeDirectories(sources)
let moduleDir: AbsolutePath
switch packageType {
case .executable, .tool:
moduleDir = sources
default:
moduleDir = sources.appending("\(pkgname)")
}
try makeDirectories(moduleDir)
let sourceFileName: String
if packageType == .executable {
sourceFileName = "main.swift"
} else {
sourceFileName = "\(typeName).swift"
}
let sourceFile = try AbsolutePath(validating: sourceFileName, relativeTo: moduleDir)
let content: String
switch packageType {
case .library:
content = """
// The Swift Programming Language
// https://docs.swift.org/swift-book
"""
case .executable:
content = """
// The Swift Programming Language
// https://docs.swift.org/swift-book
print("Hello, world!")
"""
case .tool:
content = """
// The Swift Programming Language
// https://docs.swift.org/swift-book
//
// Swift Argument Parser
// https://swiftpackageindex.com/apple/swift-argument-parser/documentation
import ArgumentParser
@main
struct \(typeName): ParsableCommand {
mutating func run() throws {
print("Hello, world!")
}
}
"""
case .macro:
content = """
// The Swift Programming Language
// https://docs.swift.org/swift-book
/// A macro that produces both a value and a string containing the
/// source code that generated the value. For example,
///
/// #stringify(x + y)
///
/// produces a tuple `(x + y, "x + y")`.
@freestanding(expression)
public macro stringify<T>(_ value: T) -> (T, String) = #externalMacro(module: "\(moduleName)Macros", type: "StringifyMacro")
"""
case .empty, .buildToolPlugin, .commandPlugin:
throw InternalError("invalid packageType \(packageType)")
}
try writePackageFile(sourceFile) { stream in
stream.write(content)
}
if packageType == .macro {
try writeMacroPluginSources(sources.appending("\(pkgname)Macros"))
try writeMacroClientSources(sources.appending("\(pkgname)Client"))
}
}
private func writeTests() throws {
if options.supportedTestingLibraries.isEmpty {
// If the developer disabled all testing libraries, do not bother to
// emit any test content.
return
}
switch packageType {
case .empty, .executable, .tool, .buildToolPlugin, .commandPlugin: return
default: break
}
let tests = destinationPath.appending("Tests")
guard self.fileSystem.exists(tests) == false else {
return
}
progressReporter?("Creating \(tests.relative(to: destinationPath))/")
try makeDirectories(tests)
try writeTestFileStubs(testsPath: tests)
}
private func writeLibraryTestsFile(_ path: AbsolutePath) throws {
var content = ""
// XCTest is only added if it was explicitly asked for, so add tests
// for it *and* Testing if it is enabled (or just XCTest if Testing
// is explicitly disabled).
if options.supportedTestingLibraries.contains(.swiftTesting) {
content += "import Testing\n"
}
if options.supportedTestingLibraries.contains(.xctest) {
content += "import XCTest\n"
}
content += "@testable import \(moduleName)\n"
if options.supportedTestingLibraries.contains(.swiftTesting) {
content += """
@Test func example() async throws {
// Write your test here and use APIs like `#expect(...)` to check expected conditions.
}
"""
}
if options.supportedTestingLibraries.contains(.xctest) {
content += """
final class \(moduleName)Tests: XCTestCase {
func testExample() throws {
// XCTest Documentation
// https://developer.apple.com/documentation/xctest
// Defining Test Cases and Test Methods
// https://developer.apple.com/documentation/xctest/defining_test_cases_and_test_methods
}
}
"""
}
try writePackageFile(path) { stream in
stream.send(content)
}
}
private func writeMacroTestsFile(_ path: AbsolutePath) throws {
var content = ""
content += ##"""
import SwiftSyntax
import SwiftSyntaxBuilder
import SwiftSyntaxMacros
import SwiftSyntaxMacrosTestSupport
"""##
if options.supportedTestingLibraries.contains(.swiftTesting) {
content += "import Testing\n"
}
if options.supportedTestingLibraries.contains(.xctest) {
content += "import XCTest\n"
}
content += ##"""
// Macro implementations build for the host, so the corresponding module is not available when cross-compiling. Cross-compiled tests may still make use of the macro itself in end-to-end tests.
#if canImport(\##(moduleName)Macros)
import \##(moduleName)Macros
let testMacros: [String: Macro.Type] = [
"stringify": StringifyMacro.self,
]
#endif
"""##
// XCTest is only added if it was explicitly asked for, so add tests
// for it *and* Testing if it is enabled.
if options.supportedTestingLibraries.contains(.swiftTesting) {
// FIXME: https://github.com/swiftlang/swift-syntax/issues/2400
}
if options.supportedTestingLibraries.contains(.xctest) {
content += ##"""
final class \##(moduleName)Tests: XCTestCase {
func testMacro() throws {
#if canImport(\##(moduleName)Macros)
assertMacroExpansion(
"""
#stringify(a + b)
""",
expandedSource: """
(a + b, "a + b")
""",
macros: testMacros
)
#else
throw XCTSkip("macros are only supported when running tests for the host platform")
#endif
}
func testMacroWithStringLiteral() throws {
#if canImport(\##(moduleName)Macros)
assertMacroExpansion(
#"""
#stringify("Hello, \(name)")
"""#,
expandedSource: #"""
("Hello, \(name)", #""Hello, \(name)""#)
"""#,
macros: testMacros
)
#else
throw XCTSkip("macros are only supported when running tests for the host platform")
#endif
}
}
"""##
}
try writePackageFile(path) { stream in
stream.send(content)
}
}
private func writeMacroPluginSources(_ path: AbsolutePath) throws {
try makeDirectories(path)
try writePackageFile(path.appending("\(moduleName)Macro.swift")) { stream in
stream.send(
##"""
import SwiftCompilerPlugin
import SwiftSyntax
import SwiftSyntaxBuilder
import SwiftSyntaxMacros
/// Implementation of the `stringify` macro, which takes an expression
/// of any type and produces a tuple containing the value of that expression
/// and the source code that produced the value. For example
///
/// #stringify(x + y)
///
/// will expand to
///
/// (x + y, "x + y")
public struct StringifyMacro: ExpressionMacro {
public static func expansion(
of node: some FreestandingMacroExpansionSyntax,
in context: some MacroExpansionContext
) -> ExprSyntax {
guard let argument = node.arguments.first?.expression else {
fatalError("compiler bug: the macro does not have any arguments")
}
return "(\(argument), \(literal: argument.description))"
}
}
@main
struct \##(moduleName)Plugin: CompilerPlugin {
let providingMacros: [Macro.Type] = [
StringifyMacro.self,
]
}
"""##
)
}
}
private func writeMacroClientSources(_ path: AbsolutePath) throws {
try makeDirectories(path)
try writePackageFile(path.appending("main.swift")) { stream in
stream.send(
##"""
import \##(moduleName)
let a = 17
let b = 25
let (result, code) = #stringify(a + b)
print("The value \(result) was produced by the code \"\(code)\"")
"""##
)
}
}
private func writeTestFileStubs(testsPath: AbsolutePath) throws {
let testModule = try AbsolutePath(validating: pkgname + Module.testModuleNameSuffix, relativeTo: testsPath)
progressReporter?("Creating \(testModule.relative(to: destinationPath))/")
try makeDirectories(testModule)
let testClassFile = try AbsolutePath(validating: "\(moduleName)Tests.swift", relativeTo: testModule)
switch packageType {
case .empty, .buildToolPlugin, .commandPlugin, .executable, .tool: break
case .library:
try writeLibraryTestsFile(testClassFile)
case .macro:
try writeMacroTestsFile(testClassFile)
}
}
}
// Private helpers
private enum InitError: Swift.Error {
case manifestAlreadyExists
case unsupportedTestingLibraryForPackageType(_ testingLibrary: BuildParameters.Testing.Library, _ packageType: InitPackage.PackageType)
}
extension InitError: CustomStringConvertible {
var description: String {
switch self {
case .manifestAlreadyExists:
return "a manifest file already exists in this directory"
case let .unsupportedTestingLibraryForPackageType(library, packageType):
return "\(library) cannot be used when initializing a \(packageType) package"
}
}
}
extension PackageModel.Platform {
var manifestName: String {
switch self {
case .macOS:
return "macOS"
case .macCatalyst:
return "macCatalyst"
case .iOS:
return "iOS"
case .tvOS:
return "tvOS"
case .watchOS:
return "watchOS"
case .visionOS:
return "visionOS"
case .driverKit:
return "DriverKit"
default:
fatalError("unexpected manifest name call for platform \(self)")
}
}
}
extension SupportedPlatform {
var isManifestAPIAvailable: Bool {
if platform == .macOS && self.version.major == 10 {
guard self.version.patch == 0 else {
return false
}
} else if [Platform.macOS, .macCatalyst, .iOS, .watchOS, .tvOS, .driverKit].contains(platform) {
guard self.version.minor == 0, self.version.patch == 0 else {
return false
}
} else {
return false
}
switch platform {
case .macOS where version.major == 10:
return (10...15).contains(version.minor)
case .macOS:
return (11...11).contains(version.major)
case .macCatalyst:
return (13...14).contains(version.major)
case .iOS:
return (8...14).contains(version.major)
case .tvOS:
return (9...14).contains(version.major)
case .watchOS:
return (2...7).contains(version.major)
case .visionOS:
return (1...1).contains(version.major)
case .driverKit:
return (19...20).contains(version.major)
default:
return false
}
}
}
|