-
Notifications
You must be signed in to change notification settings - Fork 442
/
Copy pathPluginMacroExpansionContext.swift
324 lines (280 loc) · 10.1 KB
/
PluginMacroExpansionContext.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
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift open source project
//
// Copyright (c) 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
//
//===----------------------------------------------------------------------===//
#if swift(>=6)
internal import SwiftDiagnostics
internal import SwiftOperators
internal import SwiftParser
internal import SwiftSyntax
internal import SwiftSyntaxMacros
#else
import SwiftDiagnostics
import SwiftOperators
import SwiftParser
import SwiftSyntax
import SwiftSyntaxMacros
#endif
/// Caching parser for PluginMessage.Syntax
class ParsedSyntaxRegistry {
struct Key: Hashable {
let source: String
let kind: PluginMessage.Syntax.Kind
}
private var storage: LRUCache<Key, Syntax>
init(cacheCapacity: Int) {
self.storage = LRUCache(capacity: cacheCapacity)
}
private func parse(source: String, kind: PluginMessage.Syntax.Kind) -> Syntax {
var parser = Parser(source)
switch kind {
case .declaration:
return Syntax(DeclSyntax.parse(from: &parser))
case .statement:
return Syntax(StmtSyntax.parse(from: &parser))
case .expression:
return Syntax(ExprSyntax.parse(from: &parser))
case .type:
return Syntax(TypeSyntax.parse(from: &parser))
case .pattern:
return Syntax(PatternSyntax.parse(from: &parser))
case .attribute:
return Syntax(AttributeSyntax.parse(from: &parser))
}
}
func get(source: String, kind: PluginMessage.Syntax.Kind) -> Syntax {
let key = Key(source: source, kind: kind)
if let cached = storage[key] {
return cached
}
let node = parse(source: source, kind: kind)
storage[key] = node
return node
}
}
/// Manages known source code combined with their filename/fileID. This can be
/// used to get line/column from a syntax node in the managed source code.
class SourceManager {
class KnownSourceSyntax {
struct Location {
/// UTF-8 offset of the location in the file.
var offset: Int
var line: Int
var column: Int
/// A file ID consisting of the module name and file name (without full path),
/// as would be generated by the macro expansion `#fileID`.
var fileID: String
/// A full path name as would be generated by the macro expansion `#filePath`,
/// e.g., `/home/taylor/alison.swift`.
var fileName: String
}
let node: Syntax
let location: Location
init(node: Syntax, location: Location) {
self.node = node
self.location = location
}
/// Location converter to get line/column in the node.
lazy var locationConverter: SourceLocationConverter = .init(
fileName: self.location.fileName,
tree: self.node
)
}
struct SourcePosition {
var fileName: String
var utf8Offset: Int
}
struct SourceRange {
var fileName: String
var startUTF8Offset: Int
var endUTF8Offset: Int
}
/// Caching syntax parser.
private let syntaxRegistry: ParsedSyntaxRegistry
/// Syntax added by `add(_:)` method. Keyed by the `id` of the node.
private var knownSourceSyntax: [Syntax.ID: KnownSourceSyntax] = [:]
init(syntaxRegistry: ParsedSyntaxRegistry) {
self.syntaxRegistry = syntaxRegistry
}
/// Convert syntax information to a ``Syntax`` node. The location informations
/// are cached in the source manager to provide `location(of:)` et al.
func add(
_ syntaxInfo: PluginMessage.Syntax,
foldingWith operatorTable: OperatorTable? = nil
) -> Syntax {
var node = syntaxRegistry.get(source: syntaxInfo.source, kind: syntaxInfo.kind)
if let operatorTable {
node = operatorTable.foldAll(node, errorHandler: { _ in /*ignore*/ })
}
// Copy the location info from the plugin message.
let location = KnownSourceSyntax.Location(
offset: syntaxInfo.location.offset,
line: syntaxInfo.location.line,
column: syntaxInfo.location.column,
fileID: syntaxInfo.location.fileID,
fileName: syntaxInfo.location.fileName
)
knownSourceSyntax[node.id] = KnownSourceSyntax(node: node, location: location)
return node
}
/// Get position (file name + UTF-8 offset) of `node` in the known root nodes.
/// The root node of `node` must be one of the returned value from `add(_:)`.
func position(
of node: Syntax,
at kind: PositionInSyntaxNode
) -> SourcePosition? {
guard let base = self.knownSourceSyntax[node.root.id] else {
return nil
}
let localPosition = node.position(at: kind)
let positionOffset = base.location.offset
return SourcePosition(
fileName: base.location.fileName,
utf8Offset: localPosition.advanced(by: positionOffset).utf8Offset
)
}
/// Get ``SourceRange`` (file name + UTF-8 offset range) of `node` in the known root nodes.
/// The root node of `node` must be one of the returned value from `add(_:)`.
func range(
of node: Syntax,
from startKind: PositionInSyntaxNode = .afterLeadingTrivia,
to endKind: PositionInSyntaxNode = .beforeTrailingTrivia
) -> SourceRange? {
range(node.position(at: startKind)..<node.position(at: endKind), in: node)
}
/// Get ``SourceRange`` (file name + UTF-8 offset range) of `localRange` in `node`'s root node, which must be one
/// of the returned values from `add(_:)`.
func range(
_ localRange: @autoclosure () -> Range<AbsolutePosition>,
in node: some SyntaxProtocol
) -> SourceRange? {
guard let base = self.knownSourceSyntax[node.root.id] else {
return nil
}
let positionOffset = base.location.offset
let localRange = localRange()
return SourceRange(
fileName: base.location.fileName,
startUTF8Offset: localRange.lowerBound.advanced(by: positionOffset).utf8Offset,
endUTF8Offset: localRange.upperBound.advanced(by: positionOffset).utf8Offset
)
}
/// Get location of `node` in the known root nodes.
/// The root node of `node` must be one of the returned value from `add(_:)`.
func location(
of node: Syntax,
at kind: PositionInSyntaxNode,
filePathMode: SourceLocationFilePathMode
) -> SourceLocation? {
guard let base = self.knownSourceSyntax[node.root.id] else {
return nil
}
let file: String
switch filePathMode {
case .fileID: file = base.location.fileID
case .filePath: file = base.location.fileName
#if RESILIENT_LIBRARIES
@unknown default: fatalError()
#endif
}
let localPosition = node.position(at: kind)
let localLocation = base.locationConverter.location(for: localPosition)
let positionOffset = base.location.offset
// NOTE '- 1' because base.location.{line|column} are 1-based.
let lineOffset = base.location.line - 1
let columnOffset = localLocation.line == 1 ? (base.location.column - 1) : 0
return SourceLocation(
// NOTE: IUO because 'localLocation' is created by a location converter
// which guarantees non-nil line/column.
line: localLocation.line + lineOffset,
column: localLocation.column + columnOffset,
offset: localLocation.offset + positionOffset,
file: file
)
}
}
fileprivate extension Syntax {
/// Get a position in the node by ``PositionInSyntaxNode``.
func position(at pos: PositionInSyntaxNode) -> AbsolutePosition {
switch pos {
case .beforeLeadingTrivia:
return self.position
case .afterLeadingTrivia:
return self.positionAfterSkippingLeadingTrivia
case .beforeTrailingTrivia:
return self.endPositionBeforeTrailingTrivia
case .afterTrailingTrivia:
return self.endPosition
#if RESILIENT_LIBRARIES
@unknown default:
fatalError()
#endif
}
}
}
class PluginMacroExpansionContext {
private var sourceManger: SourceManager
/// The lexical context of the macro expansion described by this context.
let lexicalContext: [Syntax]
/// The macro expansion discriminator, which is used to form unique names
/// when requested.
///
/// The expansion discriminator is combined with the `uniqueNames` counters
/// to produce unique names.
private var expansionDiscriminator: String
/// Counter for each of the uniqued names.
///
/// Used in conjunction with `expansionDiscriminator`.
private var uniqueNames: [String: Int] = [:]
/// The set of diagnostics that were emitted as part of expanding the
/// macro.
internal private(set) var diagnostics: [Diagnostic] = []
init(sourceManager: SourceManager, lexicalContext: [Syntax], expansionDiscriminator: String = "") {
self.sourceManger = sourceManager
self.lexicalContext = lexicalContext
self.expansionDiscriminator = expansionDiscriminator
}
}
extension PluginMacroExpansionContext: MacroExpansionContext {
/// Generate a unique name for use in the macro.
public func makeUniqueName(_ providedName: String) -> TokenSyntax {
// If provided with an empty name, substitute in something.
let name = providedName.isEmpty ? "__local" : providedName
// Grab a unique index value for this name.
let uniqueIndex = uniqueNames[name, default: 0]
uniqueNames[name] = uniqueIndex + 1
// Start with the discriminator.
var resultString = expansionDiscriminator
// Mangle the name
resultString += "\(name.count)\(name)"
// Mangle the operator for unique macro names.
resultString += "fMu"
// Mangle the index.
if uniqueIndex > 0 {
resultString += "\(uniqueIndex - 1)"
}
resultString += "_"
return TokenSyntax(.identifier(resultString), presence: .present)
}
/// Produce a diagnostic while expanding the macro.
public func diagnose(_ diagnostic: Diagnostic) {
diagnostics.append(diagnostic)
}
public func location(
of node: some SyntaxProtocol,
at positionMode: PositionInSyntaxNode,
filePathMode: SourceLocationFilePathMode
) -> AbstractSourceLocation? {
guard let location = sourceManger.location(of: Syntax(node), at: positionMode, filePathMode: filePathMode) else {
return nil
}
return AbstractSourceLocation(location)
}
}