-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add swift package add-target-plugin
command
#8432
Open
hi2gage
wants to merge
2
commits into
swiftlang:main
Choose a base branch
from
hi2gage:add_add-plugin_command
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+271
−2
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// This source file is part of the Swift open source project | ||
// | ||
// Copyright (c) 2014-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 ArgumentParser | ||
import Basics | ||
import CoreCommands | ||
import PackageModel | ||
import PackageModelSyntax | ||
import SwiftParser | ||
import SwiftSyntax | ||
import TSCBasic | ||
import TSCUtility | ||
import Workspace | ||
|
||
extension SwiftPackageCommand { | ||
struct AddTargetPlugin: SwiftCommand { | ||
package static let configuration = CommandConfiguration( | ||
abstract: "Add a new target plugin to the manifest" | ||
) | ||
|
||
@OptionGroup(visibility: .hidden) | ||
var globalOptions: GlobalOptions | ||
|
||
@Argument(help: "The name of the new plugin") | ||
var pluginName: String | ||
|
||
@Argument(help: "The name of the target to update") | ||
var targetName: String | ||
|
||
@Option(help: "The package in which the plugin resides") | ||
var package: String? | ||
|
||
func run(_ swiftCommandState: SwiftCommandState) throws { | ||
let workspace = try swiftCommandState.getActiveWorkspace() | ||
|
||
guard let packagePath = try swiftCommandState.getWorkspaceRoot().packages.first else { | ||
throw StringError("unknown package") | ||
} | ||
|
||
// Load the manifest file | ||
let fileSystem = workspace.fileSystem | ||
let manifestPath = packagePath.appending("Package.swift") | ||
let manifestContents: ByteString | ||
do { | ||
manifestContents = try fileSystem.readFileContents(manifestPath) | ||
} catch { | ||
throw StringError("cannot find package manifest in \(manifestPath)") | ||
} | ||
|
||
// Parse the manifest. | ||
let manifestSyntax = manifestContents.withData { data in | ||
data.withUnsafeBytes { buffer in | ||
buffer.withMemoryRebound(to: UInt8.self) { buffer in | ||
Parser.parse(source: buffer) | ||
} | ||
} | ||
} | ||
|
||
let plugin: TargetDescription.PluginUsage = .plugin(name: pluginName, package: package) | ||
|
||
let editResult = try PackageModelSyntax.AddPluginDependency.addTargetPlugin( | ||
plugin, | ||
targetName: targetName, | ||
to: manifestSyntax | ||
) | ||
|
||
try editResult.applyEdits( | ||
to: fileSystem, | ||
manifest: manifestSyntax, | ||
manifestPath: manifestPath, | ||
verbose: !globalOptions.logging.quiet | ||
) | ||
} | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// 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 Basics | ||
import PackageLoading | ||
import PackageModel | ||
import SwiftParser | ||
import SwiftSyntax | ||
import SwiftSyntaxBuilder | ||
|
||
/// Add a target plugin to a manifest's source code. | ||
public struct AddPluginDependency { | ||
/// The set of argument labels that can occur after the "plugins" | ||
/// argument in the various target initializers. | ||
/// | ||
/// TODO: Could we generate this from the the PackageDescription module, so | ||
/// we don't have keep it up-to-date manually? | ||
private static let argumentLabelsAfterDependencies: Set<String> = [] | ||
|
||
/// Produce the set of source edits needed to add the given target | ||
/// plugin to the given manifest file. | ||
public static func addTargetPlugin( | ||
_ plugin: TargetDescription.PluginUsage, | ||
targetName: String, | ||
to manifest: SourceFileSyntax | ||
) throws -> PackageEditResult { | ||
// Make sure we have a suitable tools version in the manifest. | ||
try manifest.checkEditManifestToolsVersion() | ||
|
||
guard let packageCall = manifest.findCall(calleeName: "Package") else { | ||
throw ManifestEditError.cannotFindPackage | ||
} | ||
|
||
// Dig out the array of targets. | ||
guard let targetsArgument = packageCall.findArgument(labeled: "targets"), | ||
let targetArray = targetsArgument.expression.findArrayArgument() else { | ||
throw ManifestEditError.cannotFindTargets | ||
} | ||
|
||
// Look for a call whose name is a string literal matching the | ||
// requested target name. | ||
func matchesTargetCall(call: FunctionCallExprSyntax) -> Bool { | ||
guard let nameArgument = call.findArgument(labeled: "name") else { | ||
return false | ||
} | ||
|
||
guard let stringLiteral = nameArgument.expression.as(StringLiteralExprSyntax.self), | ||
let literalValue = stringLiteral.representedLiteralValue else { | ||
return false | ||
} | ||
|
||
return literalValue == targetName | ||
} | ||
|
||
guard let targetCall = FunctionCallExprSyntax.findFirst(in: targetArray, matching: matchesTargetCall) else { | ||
throw ManifestEditError.cannotFindTarget(targetName: targetName) | ||
} | ||
|
||
let newTargetCall = try addTargetPluginLocal( | ||
plugin, to: targetCall | ||
) | ||
|
||
return PackageEditResult( | ||
manifestEdits: [ | ||
.replace(targetCall, with: newTargetCall.description) | ||
] | ||
) | ||
} | ||
|
||
/// Implementation of adding a target dependency to an existing call. | ||
static func addTargetPluginLocal( | ||
_ plugin: TargetDescription.PluginUsage, | ||
to targetCall: FunctionCallExprSyntax | ||
) throws -> FunctionCallExprSyntax { | ||
try targetCall.appendingToArrayArgument( | ||
label: "plugins", | ||
trailingLabels: Self.argumentLabelsAfterDependencies, | ||
newElement: plugin.asSyntax() | ||
) | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// This source file is part of the Swift open source project | ||
// | ||
// Copyright (c) 2014-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 PackageModel | ||
import SwiftSyntax | ||
|
||
extension TargetDescription.PluginUsage: ManifestSyntaxRepresentable { | ||
func asSyntax() -> ExprSyntax { | ||
switch self { | ||
case let .plugin(name: name, package: package): | ||
if let package { | ||
return ".plugin(name: \(literal: name.description), package: \(literal: package.description))" | ||
} else { | ||
return ".plugin(name: \(literal: name.description))" | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed borked tests in main