Files
sourcekit-lsp/Sources/SwiftLanguageService/CodeActions/ConvertStringConcatenationToStringInterpolation.swift
2026-01-15 08:02:34 +05:30

326 lines
11 KiB
Swift

//===----------------------------------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
@_spi(SourceKitLSP) import LanguageServerProtocol
import SwiftBasicFormat
import SwiftRefactor
import SwiftSyntax
/// ConvertStringConcatenationToStringInterpolation is a code action that converts a valid string concatenation into a
/// string interpolation.
struct ConvertStringConcatenationToStringInterpolation: SyntaxRefactoringProvider {
static func refactor(syntax: SequenceExprSyntax, in context: Void) throws -> SequenceExprSyntax {
guard let (componentsOnly, commonPounds, hasMultilineString) = preflight(exprList: syntax.elements) else {
throw RefactoringNotApplicableError("unsupported expression")
}
var segments: StringLiteralSegmentListSyntax = []
for (index, component) in componentsOnly.enumerated() {
let isLastComponent = index == componentsOnly.count - 1
guard let stringLiteral = component.as(StringLiteralExprSyntax.self) else {
let expression =
hasMultilineString
? component.with(\.leadingTrivia, []).with(\.trailingTrivia, [])
: component.singleLineTrivia
let exprSeg = ExpressionSegmentSyntax(
pounds: commonPounds,
expressions: [
LabeledExprSyntax(expression: expression)
]
)
segments.append(.expressionSegment(exprSeg))
continue
}
var literalSegments = stringLiteral.segments
// strip base indentation for multiline strings
if hasMultilineString && !stringLiteral.isSingleLine {
let baseIndent = stringLiteral.closingQuote.indentationOfLine
literalSegments = stripIndentation(from: literalSegments, baseIndent: baseIndent)
}
if hasMultilineString && !isLastComponent && !stringLiteral.isSingleLine {
if let lastSeg = literalSegments.last, case let .stringSegment(s) = lastSeg {
let strippedContent = s.content.with(\.trailingTrivia, [])
let strippedSeg = s.with(\.content, strippedContent)
literalSegments = StringLiteralSegmentListSyntax(
literalSegments.dropLast() + [.stringSegment(strippedSeg)]
)
}
}
// process segments with possible merging for multiline strings
var segmentsToAdd = literalSegments
if let commonPounds, stringLiteral.openingPounds?.tokenKind != commonPounds.tokenKind {
segmentsToAdd = StringLiteralSegmentListSyntax(
literalSegments.map { segment in
if case let .expressionSegment(exprSegment) = segment {
.expressionSegment(exprSegment.with(\.pounds, commonPounds))
} else {
segment
}
}
)
}
// merge segments across string boundaries for multiline strings
if hasMultilineString,
let lastSeg = segments.last,
case let .stringSegment(lastStrSeg) = lastSeg,
!lastStrSeg.content.text.hasSuffix("\n"),
let firstSeg = segmentsToAdd.first,
case let .stringSegment(firstStrSeg) = firstSeg
{
// merge last of previous with first of current
let merged = lastStrSeg.content.text + firstStrSeg.content.text
let mergedSeg = StringSegmentSyntax(content: .stringSegment(merged))
segments = StringLiteralSegmentListSyntax(segments.dropLast() + [.stringSegment(mergedSeg)])
segmentsToAdd = StringLiteralSegmentListSyntax(segmentsToAdd.dropFirst())
}
segments += segmentsToAdd
}
// ensure trailing newline for multiline strings
if hasMultilineString,
let lastSeg = segments.last,
case let .stringSegment(lastStrSeg) = lastSeg,
!lastStrSeg.content.text.hasSuffix("\n")
{
let newText = lastStrSeg.content.text + "\n"
let newSeg = StringSegmentSyntax(content: .stringSegment(newText))
segments = StringLiteralSegmentListSyntax(segments.dropLast() + [.stringSegment(newSeg)])
}
let quoteToken: TokenSyntax =
hasMultilineString
? .multilineStringQuoteToken()
: .stringQuoteToken()
let openingQuote: TokenSyntax =
hasMultilineString
? quoteToken.with(\.trailingTrivia, .newline)
: quoteToken
return syntax.with(
\.elements,
[
ExprSyntax(
StringLiteralExprSyntax(
leadingTrivia: syntax.leadingTrivia,
openingPounds: commonPounds,
openingQuote: openingQuote,
segments: segments,
closingQuote: quoteToken,
closingPounds: commonPounds,
trailingTrivia: componentsOnly.last?.kind == .stringLiteralExpr ? syntax.trailingTrivia : nil
)
)
]
)
}
/// If `exprList` is a valid string concatenation, returns 1) all elements in `exprList` with concat operators
/// stripped, 2) the longest pounds amongst all string literals, and 3) whether any string literal is multi-line,
/// otherwise returns nil.
///
/// `exprList` as a valid string concatenation must contain n >= 3 children where n is an odd number with a concat
/// operator `+` separating every other child, which must either be a string literal or a valid
/// expression for string interpolation. `exprList` must also contain at least one string literal child.
///
/// The following are valid string concatenations.
/// ``` swift
/// "Hello " + aString + "\(1)World"
///
/// """
/// Hello
/// """ + """
/// World
/// """
/// ```
/// The following are invalid string concatenations.
/// ``` swift
/// aString + bString // no string literals
///
/// "Hello " * aString - "World" // non `+` operators
/// ```
private static func preflight(
exprList: ExprListSyntax
) -> (componentsOnly: [ExprListSyntax.Element], longestPounds: TokenSyntax?, hasMultilineString: Bool)? {
var iter = exprList.makeIterator()
guard let first = iter.next() else {
return nil
}
var hasStringComponents = false
var hasMultilineString = false
var longestPounds: TokenSyntax?
var componentsOnly = [ExprListSyntax.Element]()
componentsOnly.reserveCapacity(exprList.count / 2 + 1)
if let stringLiteral = first.as(StringLiteralExprSyntax.self) {
hasStringComponents = true
hasMultilineString = hasMultilineString || !stringLiteral.isSingleLine
longestPounds = stringLiteral.openingPounds
}
componentsOnly.append(first)
while let concat = iter.next(), let stringComponent = iter.next() {
guard let concat = concat.as(BinaryOperatorExprSyntax.self),
concat.operator.tokenKind == .binaryOperator("+") && !stringComponent.is(MissingExprSyntax.self)
else {
return nil
}
if let stringLiteral = stringComponent.as(StringLiteralExprSyntax.self) {
hasStringComponents = true
hasMultilineString = hasMultilineString || !stringLiteral.isSingleLine
if let pounds = stringLiteral.openingPounds,
pounds.trimmedLength > (longestPounds?.trimmedLength ?? SourceLength(utf8Length: 0))
{
longestPounds = pounds
}
}
componentsOnly[componentsOnly.count - 1].trailingTrivia += concat.leadingTrivia
componentsOnly.append(
stringComponent.with(\.leadingTrivia, stringComponent.leadingTrivia + concat.trailingTrivia)
)
}
guard hasStringComponents && componentsOnly.count > 1 else {
return nil
}
return (componentsOnly, longestPounds, hasMultilineString)
}
}
extension ConvertStringConcatenationToStringInterpolation: SyntaxRefactoringCodeActionProvider {
static let title: String = "Convert String Concatenation to String Interpolation"
static func nodeToRefactor(in scope: SyntaxCodeActionScope) -> SequenceExprSyntax? {
guard let expr = scope.innermostNodeContainingRange,
let seqExpr = expr.findParentOfSelf(
ofType: SequenceExprSyntax.self,
stoppingIf: {
$0.kind == .codeBlockItem || $0.kind == .memberBlockItem
}
)
else {
return nil
}
return seqExpr
}
}
private extension String {
var uncommented: Substring {
trimmingPrefix { $0 == "/" }
}
}
private extension StringLiteralExprSyntax {
var isSingleLine: Bool {
openingQuote.tokenKind == .stringQuote
}
}
/// strips base indentation from multiline string segments
private func stripIndentation(
from segments: StringLiteralSegmentListSyntax,
baseIndent: Trivia
) -> StringLiteralSegmentListSyntax {
let indentString = baseIndent.reduce(into: "") { result, piece in
switch piece {
case .spaces(let count):
result += String(repeating: " ", count: count)
case .tabs(let count):
result += String(repeating: "\t", count: count)
default:
break
}
}
guard !indentString.isEmpty else { return segments }
var result = [StringLiteralSegmentListSyntax.Element]()
for segment in segments {
guard case let .stringSegment(stringSeg) = segment else {
result.append(segment)
continue
}
var text = stringSeg.content.text
// strip indentation from start of each line (after each newline)
text = text.replacing("\n" + indentString, with: "\n")
// also strip from the very beginning if segment starts with indentation
if text.hasPrefix(indentString) {
text = String(text.dropFirst(indentString.count))
}
let newSegment = stringSeg.with(\.content, .stringSegment(text))
result.append(.stringSegment(newSegment))
}
return StringLiteralSegmentListSyntax(result)
}
private extension SyntaxProtocol {
/// Modifies the trivia to not contain any newlines. This removes whitespace trivia, replaces newlines with
/// whitespaces in block comments and converts line comments to block comments.
var singleLineTrivia: Self {
with(\.leadingTrivia, leadingTrivia.withSingleLineComments.withCommentsOnly(isLeadingTrivia: true))
.with(\.trailingTrivia, trailingTrivia.withSingleLineComments.withCommentsOnly(isLeadingTrivia: false))
}
}
private extension Trivia {
/// Replaces newlines with whitespaces in block comments and converts line comments to block comments.
var withSingleLineComments: Self {
Trivia(
pieces: map {
switch $0 {
case let .lineComment(lineComment):
.blockComment("/*\(lineComment.uncommented)*/")
case let .docLineComment(docLineComment):
.docBlockComment("/**\(docLineComment.uncommented)*/")
case let .blockComment(blockComment), let .docBlockComment(blockComment):
.blockComment(blockComment.replacing("\r\n", with: " ").replacing("\n", with: " "))
default:
$0
}
}
)
}
/// Removes all non-comment trivia pieces and inserts a whitespace between each comment.
func withCommentsOnly(isLeadingTrivia: Bool) -> Self {
Trivia(
pieces: flatMap { piece -> [TriviaPiece] in
if piece.isComment {
if isLeadingTrivia {
[piece, .spaces(1)]
} else {
[.spaces(1), piece]
}
} else {
[]
}
}
)
}
}