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
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2024 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
import LanguageServerProtocol
import PackageModel
import PackageModelSyntax
import SwiftRefactor
import SwiftSyntax
/// Syntactic code action provider to provide refactoring actions that
/// edit a package manifest.
struct PackageManifestEdits: SyntaxCodeActionProvider {
static func codeActions(in scope: SyntaxCodeActionScope) -> [CodeAction] {
guard let call = scope.innermostNodeContainingRange?.findEnclosingCall() else {
return []
}
return addTargetActions(call: call, in: scope) + addTestTargetActions(call: call, in: scope)
+ addProductActions(call: call, in: scope)
}
/// Produce code actions to add new targets of various kinds.
static func addTargetActions(
call: FunctionCallExprSyntax,
in scope: SyntaxCodeActionScope
) -> [CodeAction] {
do {
var actions: [CodeAction] = []
let variants: [(TargetDescription.TargetType, String)] = [
(.regular, "library"),
(.executable, "executable"),
(.macro, "macro"),
]
for (type, name) in variants {
let target = try TargetDescription(
name: "NewTarget",
type: type
)
let edits = try AddTarget.addTarget(
target,
to: scope.file
)
actions.append(
CodeAction(
title: "Add \(name) target",
kind: .refactor,
edit: edits.asWorkspaceEdit(snapshot: scope.snapshot)
)
)
}
return actions
} catch {
return []
}
}
/// Produce code actions to add test target(s) if we are currently on
/// a target for which we know how to create a test.
static func addTestTargetActions(
call: FunctionCallExprSyntax,
in scope: SyntaxCodeActionScope
) -> [CodeAction] {
guard let calledMember = call.findMemberAccessCallee(),
targetsThatAllowTests.contains(calledMember),
let targetName = call.findStringArgument(label: "name")
else {
return []
}
do {
var actions: [CodeAction] = []
let variants: [(AddTarget.TestHarness, String)] = [
(.swiftTesting, "Swift Testing"),
(.xctest, "XCTest"),
]
for (testingLibrary, libraryName) in variants {
// Describe the target we are going to create.
let target = try TargetDescription(
name: "\(targetName)Tests",
dependencies: [.byName(name: targetName, condition: nil)],
type: .test
)
let edits = try AddTarget.addTarget(
target,
to: scope.file,
configuration: .init(testHarness: testingLibrary)
)
actions.append(
CodeAction(
title: "Add test target (\(libraryName))",
kind: .refactor,
edit: edits.asWorkspaceEdit(snapshot: scope.snapshot)
)
)
}
return actions
} catch {
return []
}
}
/// A list of target kinds that allow the creation of tests.
static let targetsThatAllowTests: [String] = [
"executableTarget",
"macro",
"target",
]
/// Produce code actions to add a product if we are currently on
/// a target for which we can create a product.
static func addProductActions(
call: FunctionCallExprSyntax,
in scope: SyntaxCodeActionScope
) -> [CodeAction] {
guard let calledMember = call.findMemberAccessCallee(),
targetsThatAllowProducts.contains(calledMember),
let targetName = call.findStringArgument(label: "name")
else {
return []
}
do {
let type: ProductType =
calledMember == "executableTarget"
? .executable
: .library(.automatic)
// Describe the target we are going to create.
let product = try ProductDescription(
name: targetName,
type: type,
targets: [targetName]
)
let edits = try AddProduct.addProduct(product, to: scope.file)
return [
CodeAction(
title: "Add product to export this target",
kind: .refactor,
edit: edits.asWorkspaceEdit(snapshot: scope.snapshot)
)
]
} catch {
return []
}
}
/// A list of target kinds that allow the creation of tests.
static let targetsThatAllowProducts: [String] = [
"executableTarget",
"target",
]
}
fileprivate extension PackageEditResult {
/// Translate package manifest edits into a workspace edit. This can
/// involve both modifications to the manifest file as well as the creation
/// of new files.
/// `snapshot` is the latest snapshot of the `Package.swift` file.
func asWorkspaceEdit(snapshot: DocumentSnapshot) -> WorkspaceEdit {
// The edits to perform on the manifest itself.
let manifestTextEdits = manifestEdits.map { edit in
TextEdit(
range: snapshot.range(of: edit.range),
newText: edit.replacement
)
}
// If we couldn't figure out the manifest directory, or there are no
// files to add, the only changes are the manifest edits. We're done
// here.
let manifestDirectoryURL = snapshot.uri.fileURL?
.deletingLastPathComponent()
guard let manifestDirectoryURL, !auxiliaryFiles.isEmpty else {
return WorkspaceEdit(
changes: [snapshot.uri: manifestTextEdits]
)
}
// Use the more full-featured documentChanges, which takes precedence
// over the individual changes to documents.
var documentChanges: [WorkspaceEditDocumentChange] = []
// Put the manifest changes into the array.
documentChanges.append(
.textDocumentEdit(
TextDocumentEdit(
textDocument: .init(snapshot.uri, version: snapshot.version),
edits: manifestTextEdits.map { .textEdit($0) }
)
)
)
// Create an populate all of the auxiliary files.
for (relativePath, contents) in auxiliaryFiles {
guard
let url = URL(
string: relativePath.pathString,
relativeTo: manifestDirectoryURL
)
else {
continue
}
let documentURI = DocumentURI(url)
let createFile = CreateFile(
uri: documentURI
)
let zeroPosition = Position(line: 0, utf16index: 0)
let edit = TextEdit(
range: zeroPosition..<zeroPosition,
newText: contents.description
)
documentChanges.append(.createFile(createFile))
documentChanges.append(
.textDocumentEdit(
TextDocumentEdit(
textDocument: .init(documentURI, version: snapshot.version),
edits: [.textEdit(edit)]
)
)
)
}
return WorkspaceEdit(
changes: [snapshot.uri: manifestTextEdits],
documentChanges: documentChanges
)
}
}
fileprivate extension SyntaxProtocol {
// Find an enclosing call syntax expression.
func findEnclosingCall() -> FunctionCallExprSyntax? {
var current = Syntax(self)
while true {
if let call = current.as(FunctionCallExprSyntax.self) {
return call
}
if let parent = current.parent {
current = parent
continue
}
return nil
}
}
}
fileprivate extension FunctionCallExprSyntax {
/// Find an argument with the given label that has a string literal as
/// its argument.
func findStringArgument(label: String) -> String? {
for arg in arguments {
if arg.label?.text == label {
return arg.expression.as(StringLiteralExprSyntax.self)?
.representedLiteralValue
}
}
return nil
}
/// Find the callee when it is a member access expression referencing
/// a declaration when a specific name.
func findMemberAccessCallee() -> String? {
guard
let memberAccess = self.calledExpression
.as(MemberAccessExprSyntax.self)
else {
return nil
}
return memberAccess.declName.baseName.text
}
}
|