-
Notifications
You must be signed in to change notification settings - Fork 434
/
Copy pathActiveSyntaxRewriter.swift
489 lines (428 loc) · 16.6 KB
/
ActiveSyntaxRewriter.swift
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
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift.org 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 https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
import SwiftDiagnostics
import SwiftSyntax
extension SyntaxProtocol {
/// Produce a copy of this syntax node that removes all syntax regions that
/// are inactive according to the given build configuration, leaving only
/// the code that is active within that build configuration.
///
/// If there are errors in the conditions of any configuration
/// clauses, e.g., `#if FOO > 10`, then the condition will be
/// considered to have failed and the clauses's elements will be
/// removed.
/// - Parameters:
/// - configuration: the configuration to apply.
/// - Returns: the syntax node with all inactive regions removed, along with
/// an array containing any diagnostics produced along the way.
public func removingInactive(
in configuration: some BuildConfiguration
) -> (result: Syntax, diagnostics: [Diagnostic]) {
return removingInactive(in: configuration, retainFeatureCheckIfConfigs: false)
}
/// Produce a copy of this syntax node that removes all syntax regions that
/// are inactive according to the given build configuration, leaving only
/// the code that is active within that build configuration.
///
/// If there are errors in the conditions of any configuration
/// clauses, e.g., `#if FOO > 10`, then the condition will be
/// considered to have failed and the clauses's elements will be
/// removed.
/// - Parameters:
/// - configuration: the configuration to apply.
/// - retainFeatureCheckIfConfigs: whether to retain `#if` blocks involving
/// compiler version checks (e.g., `compiler(>=6.0)`) and `$`-based
/// feature checks.
/// - Returns: the syntax node with all inactive regions removed, along with
/// an array containing any diagnostics produced along the way.
@_spi(Compiler)
public func removingInactive(
in configuration: some BuildConfiguration,
retainFeatureCheckIfConfigs: Bool
) -> (result: Syntax, diagnostics: [Diagnostic]) {
// Rewrite the syntax tree by removing the inactive clauses
// from each #if (along with the #ifs themselves).
let rewriter = ActiveSyntaxRewriter(
configuration: configuration,
retainFeatureCheckIfConfigs: retainFeatureCheckIfConfigs
)
return (
rewriter.rewrite(Syntax(self)),
rewriter.diagnostics
)
}
}
extension ConfiguredRegions {
/// Produce a copy of some syntax node in the configured region that removes
/// all syntax regions that are inactive according to the build configuration,
/// leaving only the code that is active within that build configuration.
///
/// If there are errors in the conditions of any configuration
/// clauses, e.g., `#if FOO > 10`, then the condition will be
/// considered to have failed and the clauses's elements will be
/// removed.
/// - Parameters:
/// - node: the stnrax node from which inactive regions will be removed.
/// - Returns: the syntax node with all inactive regions removed.
public func removingInactive(from node: some SyntaxProtocol) -> Syntax {
return removingInactive(from: node, retainFeatureCheckIfConfigs: false)
}
/// Produce a copy of some syntax node in the configured region that removes
/// all syntax regions that are inactive according to the build configuration,
/// leaving only the code that is active within that build configuration.
///
/// If there are errors in the conditions of any configuration
/// clauses, e.g., `#if FOO > 10`, then the condition will be
/// considered to have failed and the clauses's elements will be
/// removed.
/// - Parameters:
/// - node: the stnrax node from which inactive regions will be removed.
/// - retainFeatureCheckIfConfigs: whether to retain `#if` blocks involving
/// compiler version checks (e.g., `compiler(>=6.0)`) and `$`-based
/// feature checks.
/// - Returns: the syntax node with all inactive regions removed.
@_spi(Compiler)
public func removingInactive(
from node: some SyntaxProtocol,
retainFeatureCheckIfConfigs: Bool
) -> Syntax {
// If there are no inactive regions, there's nothing to do.
if regions.isEmpty {
return Syntax(node)
}
// Rewrite the syntax tree by removing the inactive clauses
// from each #if (along with the #ifs themselves).
let rewriter = ActiveSyntaxRewriter(
configuredRegions: self,
retainFeatureCheckIfConfigs: retainFeatureCheckIfConfigs
)
return rewriter.rewrite(Syntax(node))
}
}
/// Syntax rewriter that only visits syntax nodes that are active according
/// to a particular build configuration.
///
/// Given an example such as
///
/// ```swift
/// #if os(Linux)
/// func f() { }
/// #elseif os(iOS)
/// func g() { }
/// #endif
/// ```
///
/// the rewriter will eliminate nodes for inactive clauses, leaving only
/// those nodes that are in active clauses. When rewriting the above given
/// a build configuration for Linux, the resulting tree will be
///
/// ```swift
/// func f() { }
/// ```
///
/// When rewriting the above given a build configuration for iOS, the resulting
/// tree will be
///
/// ```swift
/// func g() { }
/// ```
///
/// For any other target platforms, the resulting tree will be empty (other
/// than trivia).
class ActiveSyntaxRewriter: SyntaxRewriter {
let activeClauses: ActiveClauseEvaluator
var diagnostics: [Diagnostic]
/// Whether to retain `#if` blocks containing compiler and feature checks.
var retainFeatureCheckIfConfigs: Bool
init(configuredRegions: ConfiguredRegions, retainFeatureCheckIfConfigs: Bool) {
self.activeClauses = .configuredRegions(configuredRegions)
self.diagnostics = activeClauses.priorDiagnostics
self.retainFeatureCheckIfConfigs = retainFeatureCheckIfConfigs
}
init(configuration: some BuildConfiguration, retainFeatureCheckIfConfigs: Bool) {
self.activeClauses = .configuration(configuration)
self.diagnostics = activeClauses.priorDiagnostics
self.retainFeatureCheckIfConfigs = retainFeatureCheckIfConfigs
}
private func dropInactive<List: SyntaxCollection>(
_ node: List,
elementAsIfConfig: (List.Element) -> IfConfigDeclSyntax?
) -> List {
var newElements: [List.Element] = []
var anyChanged = false
// Note that an element changed at the given index.
func noteElementChanged(at elementIndex: List.Index) {
if anyChanged {
return
}
// This is the first element that changed, so note that we have
// changes and add all prior elements to the list of new elements.
anyChanged = true
newElements.append(contentsOf: node[..<elementIndex])
}
for elementIndex in node.indices {
let element = node[elementIndex]
// Find #ifs within the list.
if let ifConfigDecl = elementAsIfConfig(element),
(!retainFeatureCheckIfConfigs || !ifConfigDecl.containsFeatureCheck)
{
// Retrieve the active `#if` clause
let activeClause = activeClauses.activeClause(for: ifConfigDecl, diagnostics: &diagnostics)
noteElementChanged(at: elementIndex)
// Extract the elements from the active clause, if there are any.
guard let elements = activeClause?.elements else {
continue
}
// In a well-formed syntax tree, the element list is always the
// same type as List. However, handle a manually-constructed,
// ill-formed syntax tree gracefully by dropping the inner elements
// as well.
if let innerElements = Syntax(elements).as(List.self) {
let newInnerElements = dropInactive(innerElements, elementAsIfConfig: elementAsIfConfig)
newElements.append(contentsOf: newInnerElements)
}
continue
}
// Transform the element directly. If it changed, note the changes.
if let transformedElement = rewrite(Syntax(element)).as(List.Element.self),
transformedElement.id != element.id
{
noteElementChanged(at: elementIndex)
newElements.append(transformedElement)
continue
}
if anyChanged {
newElements.append(element)
}
}
if !anyChanged {
return node
}
return List(newElements)
}
override func visit(_ node: CodeBlockItemListSyntax) -> CodeBlockItemListSyntax {
return dropInactive(node) { element in
guard case .decl(let declElement) = element.item else {
return nil
}
return declElement.as(IfConfigDeclSyntax.self)
}
}
override func visit(_ node: MemberBlockItemListSyntax) -> MemberBlockItemListSyntax {
return dropInactive(node) { element in
return element.decl.as(IfConfigDeclSyntax.self)
}
}
override func visit(_ node: SwitchCaseListSyntax) -> SwitchCaseListSyntax {
return dropInactive(node) { element in
if case .ifConfigDecl(let ifConfigDecl) = element {
return ifConfigDecl
}
return nil
}
}
override func visit(_ node: AttributeListSyntax) -> AttributeListSyntax {
return dropInactive(node) { element in
if case .ifConfigDecl(let ifConfigDecl) = element {
return ifConfigDecl
}
return nil
}
}
/// Apply the given base to the postfix expression.
private func applyBaseToPostfixExpression(
base: ExprSyntax,
postfix: ExprSyntax
) -> ExprSyntax {
/// Try to apply the base to the postfix expression using the given
/// keypath into a specific node type.
///
/// Returns the new expression node on success, `nil` when the node kind
/// didn't match.
func tryApply<Node: ExprSyntaxProtocol>(
_ keyPath: WritableKeyPath<Node, ExprSyntax>
) -> ExprSyntax? {
guard let node = postfix.as(Node.self) else {
return nil
}
let newExpr = applyBaseToPostfixExpression(base: base, postfix: visit(node[keyPath: keyPath]))
return ExprSyntax(node.with(keyPath, newExpr))
}
// Member access
if let memberAccess = postfix.as(MemberAccessExprSyntax.self) {
guard let memberBase = memberAccess.base else {
// If this member access has no base, this is the base we are
// replacing, terminating the recursion. Do so now.
return ExprSyntax(memberAccess.with(\.base, visit(base)))
}
let newBase = applyBaseToPostfixExpression(base: base, postfix: memberBase)
return ExprSyntax(memberAccess.with(\.base, newBase))
}
// Generic arguments <...>
if let result = tryApply(\SpecializeExprSyntax.expression) {
return result
}
// Call (...)
if let result = tryApply(\FunctionCallExprSyntax.calledExpression) {
return result
}
// Subscript [...]
if let result = tryApply(\SubscriptExprSyntax.calledExpression) {
return result
}
// Optional chaining ?
if let result = tryApply(\OptionalChainingExprSyntax.expression) {
return result
}
// Forced optional value !
if let result = tryApply(\ForcedValueExprSyntax.expression) {
return result
}
// Postfix unary operator.
if let result = tryApply(\PostfixUnaryExprSyntax.expression) {
return result
}
// #if
if let postfixIfConfig = postfix.as(PostfixIfConfigExprSyntax.self) {
return dropInactive(outerBase: base, postfixIfConfig: postfixIfConfig)
}
assertionFailure("Unhandled postfix expression in #if elimination")
return postfix
}
/// Drop inactive regions from a postfix `#if` configuration, applying the
/// outer "base" expression to the rewritten node.
private func dropInactive(
outerBase: ExprSyntax?,
postfixIfConfig: PostfixIfConfigExprSyntax
) -> ExprSyntax {
// If we're supposed to retain #if configs that are feature checks, and
// this configuration has one, do so.
if retainFeatureCheckIfConfigs && postfixIfConfig.config.containsFeatureCheck {
return ExprSyntax(postfixIfConfig)
}
// Retrieve the active `if` clause.
let activeClause = activeClauses.activeClause(for: postfixIfConfig.config, diagnostics: &diagnostics)
guard case .postfixExpression(let postfixExpr) = activeClause?.elements
else {
// If there is no active clause, return the base.
// Prefer the base we have and, if not, use the outer base. We can
// only have both in an ill-formed syntax tree that was manually
// created.
if let base = postfixIfConfig.base ?? outerBase {
return visit(base)
}
// If there was no base, we're in an erroneous syntax tree that would
// never be produced by the parser. Synthesize a missing expression
// syntax node so clients can recover more gracefully.
return ExprSyntax(
MissingExprSyntax(
placeholder: .init(.identifier("<#expression#>"), presence: .missing)
)
)
}
// If there is no base, return the postfix expression.
guard let base = postfixIfConfig.base ?? outerBase else {
return visit(postfixExpr)
}
// Apply the base to the postfix expression.
return applyBaseToPostfixExpression(base: base, postfix: postfixExpr)
}
override func visit(_ node: PostfixIfConfigExprSyntax) -> ExprSyntax {
return dropInactive(outerBase: nil, postfixIfConfig: node)
}
}
/// Helper class to find a feature or compiler check.
fileprivate class FindFeatureCheckVisitor: SyntaxVisitor {
var foundFeatureCheck = false
override func visit(_ node: DeclReferenceExprSyntax) -> SyntaxVisitorContinueKind {
// Checks that start with $ are feature checks that should be retained.
if let identifier = node.simpleIdentifier,
let initialChar = identifier.name.first,
initialChar == "$"
{
foundFeatureCheck = true
return .skipChildren
}
return .visitChildren
}
override func visit(_ node: FunctionCallExprSyntax) -> SyntaxVisitorContinueKind {
if let calleeDeclRef = node.calledExpression.as(DeclReferenceExprSyntax.self),
let calleeName = calleeDeclRef.simpleIdentifier?.name,
(calleeName == "compiler" || calleeName == "_compiler_version")
{
foundFeatureCheck = true
}
return .skipChildren
}
}
extension ExprSyntaxProtocol {
/// Whether any of the nodes in this expression involve compiler or feature
/// checks.
fileprivate var containsFeatureCheck: Bool {
let visitor = FindFeatureCheckVisitor(viewMode: .fixedUp)
visitor.walk(self)
return visitor.foundFeatureCheck
}
}
extension IfConfigDeclSyntax {
/// Whether any of the clauses in this #if contain a feature check.
var containsFeatureCheck: Bool {
return clauses.contains { clause in
if let condition = clause.condition {
return condition.containsFeatureCheck
} else {
return false
}
}
}
}
/// Syntax visitor that writes out a syntax tree without comments or #sourceLocations.
fileprivate class DescriptionWithoutCommentsAndSourceLocationsVisitor: SyntaxVisitor {
var result: String = ""
override func visit(_ token: TokenSyntax) -> SyntaxVisitorContinueKind {
token.leadingTrivia.writeWithoutComments(to: &result)
token.text.write(to: &result)
token.trailingTrivia.writeWithoutComments(to: &result)
return .skipChildren
}
override func visit(_ node: PoundSourceLocationSyntax) -> SyntaxVisitorContinueKind {
return .skipChildren
}
}
extension SyntaxProtocol {
// Produce the source code for this syntax node with all of the comments
// and #sourceLocations removed. Each comment will be replaced with either
// a newline or a space, depending on whether the comment involved a newline.
@_spi(Compiler)
public var descriptionWithoutCommentsAndSourceLocations: String {
let visitor = DescriptionWithoutCommentsAndSourceLocationsVisitor(viewMode: .sourceAccurate)
visitor.walk(self)
return visitor.result
}
}
extension Trivia {
fileprivate func writeWithoutComments(to stream: inout some TextOutputStream) {
for piece in pieces {
switch piece {
case .backslashes, .carriageReturnLineFeeds, .carriageReturns, .formfeeds, .newlines, .pounds, .spaces, .tabs,
.unexpectedText, .verticalTabs:
piece.write(to: &stream)
case .blockComment(let text), .docBlockComment(let text), .docLineComment(let text), .lineComment(let text):
if text.contains(where: \.isNewline) {
stream.write("\n")
} else {
stream.write(" ")
}
}
}
}
}