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
|
/*
This source file is part of the Swift.org open source project
Copyright (c) 2021-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 Swift project authors
*/
import Foundation
import SymbolKit
/// Loads symbol graph files from a documentation bundle.
///
/// A type that groups a bundle's symbol graphs by the module they describe,
/// which makes detecting symbol collisions and overloads easier.
struct SymbolGraphLoader {
private(set) var symbolGraphs: [URL: SymbolKit.SymbolGraph] = [:]
private(set) var unifiedGraphs: [String: SymbolKit.UnifiedSymbolGraph] = [:]
private(set) var graphLocations: [String: [SymbolKit.GraphCollector.GraphKind]] = [:]
private var dataProvider: DocumentationContextDataProvider
private var bundle: DocumentationBundle
private var configureSymbolGraph: ((inout SymbolGraph) -> ())? = nil
/// Creates a new loader, initialized with the given bundle.
/// - Parameters:
/// - bundle: The documentation bundle from which to load symbol graphs.
/// - dataProvider: A data provider in the bundle's context.
init(
bundle: DocumentationBundle,
dataProvider: DocumentationContextDataProvider,
configureSymbolGraph: ((inout SymbolGraph) -> ())? = nil
) {
self.bundle = bundle
self.dataProvider = dataProvider
self.configureSymbolGraph = configureSymbolGraph
}
/// A strategy to decode symbol graphs.
enum DecodingConcurrencyStrategy {
/// Decode all symbol graph files on separate threads concurrently.
case concurrentlyAllFiles
/// Decode all symbol graph files sequentially, each one split into batches that are decoded concurrently.
case concurrentlyEachFileInBatches
}
/// The symbol graph decoding strategy to use.
private(set) var decodingStrategy: DecodingConcurrencyStrategy = .concurrentlyEachFileInBatches
/// Loads all symbol graphs in the given bundle.
///
/// - Throws: If loading and decoding any of the symbol graph files throws, this method re-throws one of the encountered errors.
mutating func loadAll() throws {
let loadingLock = Lock()
var loadedGraphs = [URL: (usesExtensionSymbolFormat: Bool?, graph: SymbolKit.SymbolGraph)]()
var loadError: Error?
let bundle = self.bundle
let dataProvider = self.dataProvider
let loadGraphAtURL: (URL) -> Void = { symbolGraphURL in
// Bail out in case a symbol graph has already errored
guard loadError == nil else { return }
do {
// Load and decode a single symbol graph file
let data = try dataProvider.contentsOfURL(symbolGraphURL, in: bundle)
var symbolGraph: SymbolGraph
switch decodingStrategy {
case .concurrentlyAllFiles:
symbolGraph = try JSONDecoder().decode(SymbolGraph.self, from: data)
case .concurrentlyEachFileInBatches:
symbolGraph = try SymbolGraphConcurrentDecoder.decode(data)
}
configureSymbolGraph?(&symbolGraph)
let (moduleName, isMainSymbolGraph) = Self.moduleNameFor(symbolGraph, at: symbolGraphURL)
// If the bundle provides availability defaults add symbol availability data.
self.addDefaultAvailability(to: &symbolGraph, moduleName: moduleName)
// main symbol graphs are ambiguous
var usesExtensionSymbolFormat: Bool? = nil
// transform extension block based structure emitted by the compiler to a
// custom structure where all extensions to the same type are collected in
// one extended type symbol
if !isMainSymbolGraph {
let containsExtensionSymbols = try ExtendedTypeFormatTransformation.transformExtensionBlockFormatToExtendedTypeFormat(&symbolGraph, moduleName: moduleName)
// empty symbol graphs are ambiguous (but shouldn't exist)
usesExtensionSymbolFormat = symbolGraph.symbols.isEmpty ? nil : containsExtensionSymbols
}
// Store the decoded graph in `loadedGraphs`
loadingLock.sync {
loadedGraphs[symbolGraphURL] = (usesExtensionSymbolFormat, symbolGraph)
}
} catch {
// If the symbol graph was invalid, store the error
loadingLock.sync { loadError = error }
}
}
// If we have symbol graph files for multiple platforms
// load and decode each one on a separate thread.
// This strategy benchmarks better when we have multiple
// "larger" symbol graphs.
#if os(macOS) || os(iOS)
if bundle.symbolGraphURLs.filter({ !$0.lastPathComponent.contains("@") }).count > 1 {
// There are multiple main symbol graphs, better parallelize all files decoding.
decodingStrategy = .concurrentlyAllFiles
}
#endif
switch decodingStrategy {
case .concurrentlyAllFiles:
// Concurrently load and decode all symbol graphs
bundle.symbolGraphURLs.concurrentPerform(block: loadGraphAtURL)
case .concurrentlyEachFileInBatches:
// Serially load and decode all symbol graphs, each one in concurrent batches.
bundle.symbolGraphURLs.forEach(loadGraphAtURL)
}
// define an appropriate merging strategy based on the graph formats
let foundGraphUsingExtensionSymbolFormat = loadedGraphs.values.map(\.usesExtensionSymbolFormat).contains(true)
let usingExtensionSymbolFormat = foundGraphUsingExtensionSymbolFormat
let graphLoader = GraphCollector(extensionGraphAssociationStrategy: usingExtensionSymbolFormat ? .extendingGraph : .extendedGraph)
// feed the loaded graphs into the `graphLoader`
for (url, (_, graph)) in loadedGraphs {
graphLoader.mergeSymbolGraph(graph, at: url)
}
// In case any of the symbol graphs errors, re-throw the error.
// We will not process unexpected file formats.
if let loadError {
throw loadError
}
self.symbolGraphs = loadedGraphs.mapValues(\.graph)
(self.unifiedGraphs, self.graphLocations) = graphLoader.finishLoading(
createOverloadGroups: FeatureFlags.current.isExperimentalOverloadedSymbolPresentationEnabled
)
for var unifiedGraph in unifiedGraphs.values {
var defaultUnavailablePlatforms = [PlatformName]()
var defaultAvailableInformation = [DefaultAvailability.ModuleAvailability]()
if let defaultAvailabilities = bundle.info.defaultAvailability?.modules[unifiedGraph.moduleName] {
let (unavailablePlatforms, availablePlatforms) = defaultAvailabilities.categorize(where: { $0.versionInformation == .unavailable })
defaultUnavailablePlatforms = unavailablePlatforms.map(\.platformName)
defaultAvailableInformation = availablePlatforms
}
let platformsFoundInSymbolGraphs: [PlatformName] = unifiedGraph.moduleData.compactMap {
guard let platformName = $0.value.platform.name else { return nil }
return PlatformName(operatingSystemName: platformName)
}
addMissingAvailability(
unifiedGraph: &unifiedGraph,
unconditionallyUnavailablePlatformNames: defaultUnavailablePlatforms,
registeredPlatforms: platformsFoundInSymbolGraphs,
defaultAvailabilities: defaultAvailableInformation
)
}
}
// Alias to declutter code
typealias AvailabilityItem = SymbolGraph.Symbol.Availability.AvailabilityItem
/// Cache default availability items as we create them on demand.
private var cachedAvailabilityItems = [DefaultAvailability.ModuleAvailability: AvailabilityItem]()
/// Returns a symbol graph availability item, given a module availability.
/// - returns: An availability item, or `nil` if the input data is invalid.
private func availabilityItem(for defaultAvailability: DefaultAvailability.ModuleAvailability) -> AvailabilityItem? {
if let cached = cachedAvailabilityItems[defaultAvailability] {
return cached
}
return AvailabilityItem(defaultAvailability)
}
private func loadSymbolGraph(at url: URL) throws -> (SymbolGraph, isMainSymbolGraph: Bool) {
// This is a private method, the `url` key is known to exist
var symbolGraph = symbolGraphs[url]!
let (moduleName, isMainSymbolGraph) = Self.moduleNameFor(symbolGraph, at: url)
if !isMainSymbolGraph && symbolGraph.module.bystanders == nil {
// If this is an extending another module, change the module name to match the extended module.
// This makes the symbols in this graph have a path that starts with the extended module's name.
symbolGraph.module.name = moduleName
}
return (symbolGraph, isMainSymbolGraph)
}
/// Adds the missing fallback and default availability information to the unified symbol graph
/// in case it didn't exists in the loaded symbol graphs.
private func addMissingAvailability(
unifiedGraph: inout UnifiedSymbolGraph,
unconditionallyUnavailablePlatformNames: [PlatformName],
registeredPlatforms: [PlatformName],
defaultAvailabilities: [DefaultAvailability.ModuleAvailability]
) {
// The fallback platforms that are missing from the unified graph correspond to
// the fallback platforms that have not been registered yet,
// are not marked as unavailable,
// and the corresponding inheritance platform has a SGF (has been registered).
let missingFallbackPlatforms = DefaultAvailability.fallbackPlatforms.filter {
!registeredPlatforms.contains($0.key) &&
!unconditionallyUnavailablePlatformNames.contains($0.key) &&
registeredPlatforms.contains($0.value)
}
// Platforms that are defined in the Info.plist that had no corresponding SGF
// and are not being added as fallback of another platform.
let missingAvailabilities = defaultAvailabilities.filter {
!missingFallbackPlatforms.keys.contains($0.platformName) &&
!registeredPlatforms.contains($0.platformName)
}
unifiedGraph.symbols.values.forEach { symbol in
for (selector, _) in symbol.mixins {
if var symbolAvailability = (symbol.mixins[selector]?["availability"] as? SymbolGraph.Symbol.Availability) {
guard !symbolAvailability.availability.isEmpty else { continue }
// For platforms with a fallback option (e.g., Catalyst and iOS), apply the explicit availability annotation of the fallback platform when it is not explicitly available on the primary platform.
DefaultAvailability.fallbackPlatforms.forEach { (fallbackPlatform, inheritedPlatform) in
guard
var inheritedAvailability = symbolAvailability.availability.first(where: {
$0.matches(inheritedPlatform)
}),
let fallbackAvailabilityIntroducedVersion = symbolAvailability.availability.first(where: {
$0.matches(fallbackPlatform)
})?.introducedVersion,
let defaultAvailabilityIntroducedVersion = defaultAvailabilities.first(where: { $0.platformName == fallbackPlatform })?.introducedVersion
else { return }
// Ensure that the availability version is not overwritten if the symbol has an explicit availability annotation for that platform.
if SymbolGraph.SemanticVersion(string: defaultAvailabilityIntroducedVersion) == fallbackAvailabilityIntroducedVersion {
inheritedAvailability.domain = SymbolGraph.Symbol.Availability.Domain(rawValue: fallbackPlatform.rawValue)
symbolAvailability.availability.removeAll(where: {
$0.matches(fallbackPlatform)
})
symbolAvailability.availability.append(inheritedAvailability)
}
}
// Add fallback availability.
for (fallbackPlatform, inheritedPlatform) in missingFallbackPlatforms {
if !symbolAvailability.contains(fallbackPlatform) {
for var fallbackAvailability in symbolAvailability.availability {
// Add the platform fallback to the availability mixin the platform is inheriting from.
// The added availability copies the entire availability information,
// including deprecated and obsolete versions.
if fallbackAvailability.matches(inheritedPlatform) {
fallbackAvailability.domain = SymbolGraph.Symbol.Availability.Domain(rawValue: fallbackPlatform.rawValue)
symbolAvailability.availability.append(fallbackAvailability)
}
}
}
}
// Add the missing default platform availability.
missingAvailabilities.forEach { missingAvailability in
if !symbolAvailability.contains(missingAvailability.platformName) {
guard let defaultAvailability = AvailabilityItem(missingAvailability) else { return }
symbolAvailability.availability.append(defaultAvailability)
}
}
symbol.mixins[selector]![SymbolGraph.Symbol.Availability.mixinKey] = symbolAvailability
}
}
}
}
/// If the bundle defines default availability for the symbols in the given symbol graph
/// this method adds them to each of the symbols in the graph.
private func addDefaultAvailability(to symbolGraph: inout SymbolGraph, moduleName: String) {
let selector = UnifiedSymbolGraph.Selector(forSymbolGraph: symbolGraph)
// Check if there are defined default availabilities for the current module
if let defaultAvailabilities = bundle.info.defaultAvailability?.modules[moduleName],
let platformName = symbolGraph.module.platform.name.map(PlatformName.init) {
// Prepare a default availability versions lookup for this module.
let defaultAvailabilityVersionByPlatform = defaultAvailabilities
.reduce(into: [PlatformName: SymbolGraph.SemanticVersion](), { result, defaultAvailability in
if let introducedVersion = defaultAvailability.introducedVersion, let version = SymbolGraph.SemanticVersion(string: introducedVersion) {
result[defaultAvailability.platformName] = version
}
})
// Map all symbols and add default availability for any missing platforms
let symbolsWithFilledIntroducedVersions = symbolGraph.symbols.mapValues { symbol -> SymbolGraph.Symbol in
var symbol = symbol
let defaultModuleVersion = defaultAvailabilityVersionByPlatform[platformName]
// The availability item for each symbol of the given module.
let modulePlatformAvailabilityItem = AvailabilityItem(domain: SymbolGraph.Symbol.Availability.Domain(rawValue: platformName.rawValue), introducedVersion: defaultModuleVersion, deprecatedVersion: nil, obsoletedVersion: nil, message: nil, renamed: nil, isUnconditionallyDeprecated: false, isUnconditionallyUnavailable: false, willEventuallyBeDeprecated: false)
// Check if the symbol has existing availabilities from source
if var availability = symbol.mixins[SymbolGraph.Symbol.Availability.mixinKey] as? SymbolGraph.Symbol.Availability {
// Fill introduced versions when missing.
availability.availability = availability.availability.map {
$0.fillingMissingIntroducedVersion(
from: defaultAvailabilityVersionByPlatform,
fallbackPlatform: DefaultAvailability.fallbackPlatforms[platformName]?.rawValue
)
}
// Add the module availability information to each of the symbols availability mixin.
if !availability.contains(platformName) {
availability.availability.append(modulePlatformAvailabilityItem)
}
symbol.mixins[SymbolGraph.Symbol.Availability.mixinKey] = availability
} else {
// ObjC doesn't propagate symbol availability to their children properties,
// so only add the default availability to the Swift variant of the symbols.
if !(selector?.interfaceLanguage == InterfaceLanguage.objc.name.lowercased()) {
symbol.mixins[SymbolGraph.Symbol.Availability.mixinKey] = SymbolGraph.Symbol.Availability(availability: [modulePlatformAvailabilityItem])
}
}
return symbol
}
symbolGraph.symbols = symbolsWithFilledIntroducedVersions
}
}
/// Returns the module name, if any, in the file name of a given symbol-graph URL.
///
/// Returns "Combine", if it's a main symbol-graph file, such as "Combine.symbols.json".
/// Returns "Swift", if it's an extension file such as, "Combine@Swift.symbols.json".
/// - parameter url: A URL to a symbol graph file.
/// - returns: A module name, or `nil` if the file name cannot be parsed.
static func moduleNameFor(_ url: URL) -> String? {
let fileName = url.lastPathComponent.components(separatedBy: ".symbols.json")[0]
let fileNameComponents = fileName.components(separatedBy: "@")
if fileNameComponents.count > 2 {
// Two "@"s found in the name - it's a cross import symbol graph:
// "Framework1@Framework2@_Framework1_Framework2.symbols.json"
return fileNameComponents[0]
}
return fileName.split(separator: "@", maxSplits: 1).last.map({ String($0) })
}
/// Returns the module name of a symbol graph based on the JSON data and file name.
///
/// Useful during decoding the symbol graphs to implement the correct name logic starting with the module name in the JSON.
private static func moduleNameFor(_ symbolGraph: SymbolGraph, at url: URL) -> (String, Bool) {
let isMainSymbolGraph = !url.lastPathComponent.contains("@")
let moduleName: String
if isMainSymbolGraph || symbolGraph.module.bystanders != nil {
// For main symbol graphs, get the module name from the symbol graph's data
// When bystander modules are present, the symbol graph is a cross-import overlay, and
// we need to preserve the original module name to properly render it. It is still
// kept with the extension symbols, due to the merging behavior of UnifiedSymbolGraph.
moduleName = symbolGraph.module.name
} else {
// For extension symbol graphs, derive the extended module's name from the file name.
//
// The per-symbol `extendedModule` value is the same as the main module for most symbols, so it's not a good way to find the name
// of the module that was extended (rdar://63200368).
moduleName = SymbolGraphLoader.moduleNameFor(url)!
}
return (moduleName, isMainSymbolGraph)
}
}
extension SymbolGraph.SemanticVersion {
/// Creates a new semantic version from the given string.
///
/// Returns `nil` if the string doesn't contain 1, 2, or 3 numeric components separated by periods.
/// - parameter string: A version number as a string.
init?(string: String) {
let componentStrings = string.components(separatedBy: ".")
let components = componentStrings.compactMap(Int.init)
// Check that all components parsed to an `Int` successfully.
guard components.count == componentStrings.count else {
return nil
}
// Check that there is at least one component but no more than three
guard (1...3).contains(components.count) else {
return nil
}
var componentIterator = components.makeIterator()
self.init(major: componentIterator.next()!,
minor: componentIterator.next() ?? 0,
patch: componentIterator.next() ?? 0)
}
}
extension SymbolGraph.Symbol.Availability.AvailabilityItem {
/// Create an availability item with a `domain` and an `introduced` version.
/// - parameter defaultAvailability: Default availability information for symbols that lack availability authored in code.
/// - Note: If the `defaultAvailability` argument doesn't have a valid
/// platform version that can be parsed as a `SemanticVersion`, returns `nil`.
init?(_ defaultAvailability: DefaultAvailability.ModuleAvailability) {
guard let introducedVersion = defaultAvailability.introducedVersion, let platformVersion = SymbolGraph.SemanticVersion(string: introducedVersion) else {
return nil
}
let domain = SymbolGraph.Symbol.Availability.Domain(rawValue: defaultAvailability.platformName.rawValue)
self.init(domain: domain,
introducedVersion: platformVersion,
deprecatedVersion: nil,
obsoletedVersion: nil,
message: nil,
renamed: nil,
isUnconditionallyDeprecated: false,
isUnconditionallyUnavailable: false,
willEventuallyBeDeprecated: false)
}
/**
Fills lacking availability information with defaults, if available.
If this item does not have an `introducedVersion`, attempt to fill it
in from the `defaults`. If the defaults do not have a version for
this item's domain/platform, also try the `fallbackPlatform`.
- parameter defaults: Default module availabilities for each platform mentioned in a documentation bundle's `Info.plist`
- parameter fallbackPlatform: An optional fallback platform name if this item's domain isn't found in the `defaults`.
*/
func fillingMissingIntroducedVersion(from defaults: [PlatformName: SymbolGraph.SemanticVersion],
fallbackPlatform: String?) -> SymbolGraph.Symbol.Availability.AvailabilityItem {
// If this availability item doesn't have a domain, do nothing.
guard let domain = self.domain else {
return self
}
var newValue = self
// To ensure the uniformity of platform availability names derived from SGFs,
// we replace the original domain value with a value from the platform's name
// since the platform name maps aliases to the canonical name.
let platformName = PlatformName(operatingSystemName: domain.rawValue)
newValue.domain = SymbolGraph.Symbol.Availability.Domain(rawValue: platformName.rawValue)
// If a symbol is unconditionally unavailable for a given domain,
// don't add an introduced version here as it may cause it to
// incorrectly display availability information
guard !isUnconditionallyUnavailable else {
return newValue
}
// If this had an explicit introduced version from source, don't replace it.
guard introducedVersion == nil else {
return newValue
}
let fallbackPlatformName = fallbackPlatform.map(PlatformName.init(operatingSystemName:))
// Try to find a default version string for this availability
// item's platform (a.k.a. domain)
guard let platformVersion = defaults[platformName] ??
fallbackPlatformName.flatMap({ defaults[$0] }) else {
return newValue
}
newValue.introducedVersion = platformVersion
return newValue
}
}
private extension SymbolGraph.Symbol.Availability {
func contains(_ platform: PlatformName) -> Bool {
availability.contains(where: { $0.matches(platform) })
}
}
private extension SymbolGraph.Symbol.Availability.AvailabilityItem {
func matches(_ platform: PlatformName) -> Bool {
domain?.rawValue.lowercased() == platform.rawValue.lowercased()
}
}
|