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
|
//===----------------------------------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
#if swift(>=6)
public import SwiftSyntax
#else
import SwiftSyntax
#endif
public struct GroupedDiagnostics {
/// A unique identifier for a source file.
public struct SourceFileID: Equatable, Hashable {
var id: Int
}
/// A representation used for a given source file that contains diagnostics.
struct SourceFile {
/// The id for this source file.
let id: SourceFileID
/// The syntax tree for the source file.
let tree: SourceFileSyntax
/// The source location converter for this source file.
let sourceLocationConverter: SourceLocationConverter
/// The human-readable name to use to identify this source file.
let displayName: String
/// The position of this source file within another, parent source file.
///
/// The first element identifies the parent source file, while the second
/// provides an absolute position within that source file.
let parent: (SourceFileID, AbsolutePosition)?
/// The set of direct children of this source file, i.e., those whose
/// parent refers to this source file ID.
var children: [SourceFileID] = []
/// The set of diagnostics that are emitted within this source file.
var diagnostics: [Diagnostic] = []
}
/// The set of source files for which diagnostics will be emitted.
var sourceFiles: [SourceFile] = []
/// Mapping from the root source file syntax nodes to the corresponding
/// source file IDs.
var rootIndexes: [SourceFileSyntax: SourceFileID] = [:]
public init() {}
/// Add a new source file to the set of grouped diagnostics.
///
/// - Parameters:
/// - tree: The source file syntax tree.
/// - displayName: The file name to be used when printing diagnostics.
/// - parent: The source file of the "parent" source file, which is
/// conceptually where this source file will be inserted, and the
/// absolute position within that parent source file.
///
/// - Returns: The unique ID for this source file.
@discardableResult
public mutating func addSourceFile(
tree: SourceFileSyntax,
sourceLocationConverter: SourceLocationConverter? = nil,
displayName: String,
parent: (SourceFileID, AbsolutePosition)? = nil,
diagnostics: [Diagnostic] = []
) -> SourceFileID {
// Determine the ID this source file will have.
let id = SourceFileID(id: sourceFiles.count)
let slc =
sourceLocationConverter
?? SourceLocationConverter(
fileName: displayName,
tree: tree
)
sourceFiles.append(
SourceFile(
id: id,
tree: tree,
sourceLocationConverter: slc,
displayName: displayName,
parent: parent,
diagnostics: diagnostics
)
)
rootIndexes[tree] = id
// If there is a parent source file, register with it.
if let parentID = parent?.0 {
sourceFiles[parentID.id].children.append(id)
}
return id
}
/// Find the ID of the source file containing this syntax node.
func findSourceFileContaining(_ node: Syntax) -> SourceFileID? {
guard let rootSourceFile = node.root.as(SourceFileSyntax.self) else {
return nil
}
return rootIndexes[rootSourceFile]
}
/// Add a diagnostic to the set of grouped diagnostics.
///
/// - Parameters:
/// - diagnostic: the diagnostic to add
/// - knownSourceFileID: the source file into which this diagnostic goes,
/// if known.
public mutating func addDiagnostic(
_ diagnostic: Diagnostic,
in knownSourceFileID: SourceFileID? = nil
) {
guard let sourceFileID = knownSourceFileID ?? findSourceFileContaining(diagnostic.node) else {
// Drop the diagnostic on the floor.
return
}
// Add the diagnostic
sourceFiles[sourceFileID.id].diagnostics.append(diagnostic)
}
}
extension GroupedDiagnostics {
/// Determine the set of "root" source files that have no parents. These
/// are the source files where diagnostics will start being emitted.
var rootSourceFiles: [SourceFileID] {
sourceFiles.compactMap { sourceFile in
if sourceFile.parent == nil {
return sourceFile.id
}
return nil
}
}
// Find the "primary" diagnostic that will be shown at the top of the diagnostic
// message. This is typically the error, warning, or remark.
private func findPrimaryDiagnostic(in sourceFile: SourceFile) -> (SourceFile, Diagnostic)? {
// If there is a non-note diagnostic, it's the primary diagnostic.
if let primaryDiag = sourceFile.diagnostics.first(where: { $0.diagMessage.severity != .note }) {
return (sourceFile, primaryDiag)
}
// If one of our child source files has a primary diagnostic, return that.
for childID in sourceFile.children {
if let foundInChild = findPrimaryDiagnostic(in: sourceFiles[childID.id]) {
return foundInChild
}
}
// If this is a root note, take the first note.
if sourceFile.parent == nil,
let note = sourceFile.diagnostics.first
{
return (sourceFile, note)
}
// There is no primary diagnostic.
return nil
}
/// Annotate the source for a given source file ID, embedding its child
/// source files.
func annotateSource(
_ sourceFileID: GroupedDiagnostics.SourceFileID,
formatter: DiagnosticsFormatter,
indentString: String
) -> String {
let sourceFile = sourceFiles[sourceFileID.id]
let slc = sourceFile.sourceLocationConverter
let diagnosticDecorator = formatter.diagnosticDecorator
let childPadding = String(slc.sourceLines.count + 1).count + 1;
// Collect the child sources.
var childSources: [AbsolutePosition: String] = [:]
for childBufferID in sourceFiles[sourceFileID.id].children {
let childSource = annotateSource(
childBufferID,
formatter: formatter,
indentString: indentString + String(repeating: " ", count: childPadding) + "|"
)
childSources[sourceFiles[childBufferID.id].parent!.1, default: ""].append(childSource)
}
// If this is a nested source file, draw a box around it.
let isRoot = sourceFile.parent == nil
var prefixString: String
let suffixString: String
if isRoot {
// If there's a primary diagnostic, print it first.
if let (primaryDiagSourceFile, primaryDiag) = findPrimaryDiagnostic(in: sourceFile) {
let primaryDiagSLC = primaryDiagSourceFile.sourceLocationConverter
let location = primaryDiag.location(converter: primaryDiagSLC)
// Display file/line/column and diagnostic text for the primary diagnostic.
prefixString =
"\(location.presumedFile):\(location.presumedLine):\(location.column): \(diagnosticDecorator.decorateDiagnosticMessage(primaryDiag.diagMessage))\n"
// If the primary diagnostic source file is not the same as the root source file, we're pointing into a generated buffer.
// Provide a link back to the original source file where this generated buffer occurred, so it's easy to find if
// (for example) the generated buffer is no longer available.
if sourceFile.id != primaryDiagSourceFile.id,
var (rootSourceID, rootPosition) = primaryDiagSourceFile.parent
{
// Go all the way up to the root to find the absolute position of the outermost generated buffer within the
// root source file.
while let parent = sourceFiles[rootSourceID.id].parent {
(rootSourceID, rootPosition) = parent
}
if rootSourceID == sourceFileID {
let bufferLoc = slc.location(for: rootPosition)
let decoratedMessage = diagnosticDecorator.decorateMessage(
"expanded code originates here",
basedOnSeverity: .note
)
prefixString += "`- \(bufferLoc.file):\(bufferLoc.line):\(bufferLoc.column): \(decoratedMessage)\n"
}
}
} else {
let firstLine = sourceFile.diagnostics.first.map { $0.location(converter: slc).line } ?? 0
prefixString = "\(sourceFile.displayName): \(firstLine):"
}
suffixString = ""
} else {
let padding = indentString.dropLast(1)
// Should we make this depend on the width of the snippet itself?
let targetLineLength = 72
let extraLengthNeeded = targetLineLength - padding.count - sourceFile.displayName.count - 6
let boxSuffix: String
if extraLengthNeeded > 0 {
boxSuffix = diagnosticDecorator.decorateBufferOutline(String(repeating: "-", count: extraLengthNeeded))
} else {
boxSuffix = ""
}
prefixString =
diagnosticDecorator.decorateBufferOutline(padding + "+--- ") + sourceFile.displayName + " " + boxSuffix + "\n"
suffixString =
diagnosticDecorator.decorateBufferOutline(
padding + "+---" + String(repeating: "-", count: sourceFile.displayName.count + 2)
) + boxSuffix + "\n"
}
// Render the buffer.
return prefixString
+ formatter.annotatedSource(
tree: sourceFile.tree,
diags: sourceFile.diagnostics,
indentString: diagnosticDecorator.decorateBufferOutline(indentString),
suffixTexts: childSources,
sourceLocationConverter: slc
) + suffixString
}
}
extension DiagnosticsFormatter {
/// Annotate all of the source files in the given set of grouped diagnostics.
public func annotateSources(in group: GroupedDiagnostics) -> String {
return group.rootSourceFiles.map { rootSourceFileID in
group.annotateSource(rootSourceFileID, formatter: self, indentString: "")
}.joined(separator: "\n")
}
public static func annotateSources(
in group: GroupedDiagnostics,
contextSize: Int = 2,
colorize: Bool = false
) -> String {
let formatter = DiagnosticsFormatter(contextSize: contextSize, colorize: colorize)
return formatter.annotateSources(in: group)
}
}
|