Files
SwiftLint/Source/SwiftLintCore/Extensions/Configuration+Merging.swift
T
JP Simard 86d60400c1 Move core SwiftLint functionality to new SwiftLintCore module
Over the years, SwiftLintFramework had become a fairly massive monolith,
containing over 400 source files with both core infrastructure and
rules.

Architecturally, the rules should rely on the core infrastructure but
not the other way around. There are two exceptions to this:
`custom_rules` and `superfluous_disable_command` which need special
integration with the linter infrastructure.

Now the time has come to formalize this architecture and one way to do
that is to move the core SwiftLint functionality out of
SwiftLintFramework and into a new SwiftLintCore module that the rules
can depend on.

Beyond enforcing architectural patterns, this also has the advantage of
speeding up incremental compilation by skipping rebuilding the core
functionality when iterating on rules.

Because the core functionality is always useful when building rules, I'm
opting to import SwiftLintCore in SwiftLintFramework as `@_exported` so
that it's implicitly available to all files in SwiftLintFramework
without needing to import it directly.

In a follow-up I'll also split the built-in rules and the extra rules
into their own modules. More modularization is possible from there, but
not planned.

The bulk of this PR just moves files from `Source/SwiftLintFramework/*`
to `Source/SwiftLintCore/*`. There are some other changes that can't be
split up into their own PRs:

* Change jazzy to document the SwiftLintCore module instead of
  SwiftLintFramework.
* Change imports in unit tests to reflect where code was moved to.
* Update `sourcery` make rule to reflect where code was moved to.
* Create a new `coreRules` array and register those rules with the
  registry. This allows the `custom_rules` and
  `superfluous_disable_command` rule implementations to remain internal
  to the SwiftLintCore module, preventing more implementation details
  from leaking across architectural layers.
* Move `RuleRegistry.registerAllRulesOnce()` out of the type declaration
  and up one level so it can access rules defined downstream from
  SwiftLintCore.
2023-04-26 21:10:19 -04:00

141 lines
6.0 KiB
Swift

import Foundation
import SourceKittenFramework
/// GENERAL NOTE ON MERGING: The child configuration is added on top of the parent configuration
/// and is preferred in case of conflicts!
extension Configuration {
// MARK: - Methods: Merging
@_spi(TestHelper)
public func merged(
withChild childConfiguration: Configuration,
rootDirectory: String
) -> Configuration {
let mergedIncludedAndExcluded = self.mergedIncludedAndExcluded(
with: childConfiguration,
rootDirectory: rootDirectory
)
return Configuration(
rulesWrapper: rulesWrapper.merged(with: childConfiguration.rulesWrapper),
fileGraph: FileGraph(rootDirectory: rootDirectory),
includedPaths: mergedIncludedAndExcluded.includedPaths,
excludedPaths: mergedIncludedAndExcluded.excludedPaths,
indentation: childConfiguration.indentation,
warningThreshold: mergedWarningTreshold(with: childConfiguration),
reporter: reporter,
cachePath: cachePath,
allowZeroLintableFiles: childConfiguration.allowZeroLintableFiles
)
}
private func mergedIncludedAndExcluded(
with childConfiguration: Configuration,
rootDirectory: String
) -> (includedPaths: [String], excludedPaths: [String]) {
// Render paths relative to their respective root paths → makes them comparable
let childConfigIncluded = childConfiguration.includedPaths.map {
$0.bridge().absolutePathRepresentation(rootDirectory: childConfiguration.rootDirectory)
}
let childConfigExcluded = childConfiguration.excludedPaths.map {
$0.bridge().absolutePathRepresentation(rootDirectory: childConfiguration.rootDirectory)
}
let parentConfigIncluded = includedPaths.map {
$0.bridge().absolutePathRepresentation(rootDirectory: self.rootDirectory)
}
let parentConfigExcluded = excludedPaths.map {
$0.bridge().absolutePathRepresentation(rootDirectory: self.rootDirectory)
}
// Prefer child configuration over parent configuration
let includedPaths = parentConfigIncluded.filter { !childConfigExcluded.contains($0) } + childConfigIncluded
let excludedPaths = parentConfigExcluded.filter { !childConfigIncluded.contains($0) } + childConfigExcluded
// Return paths relative to the provided root directory
return (
includedPaths: includedPaths.map { $0.path(relativeTo: rootDirectory) },
excludedPaths: excludedPaths.map { $0.path(relativeTo: rootDirectory) }
)
}
private func mergedWarningTreshold(
with childConfiguration: Configuration
) -> Int? {
if let parentWarningTreshold = warningThreshold {
if let childWarningTreshold = childConfiguration.warningThreshold {
return min(childWarningTreshold, parentWarningTreshold)
} else {
return parentWarningTreshold
}
} else {
return childConfiguration.warningThreshold
}
}
// MARK: Accessing File Configurations
/// Returns a new configuration that applies to the specified file by merging the current configuration with any
/// nested configurations in the directory inheritance graph present until the level of the specified file.
///
/// - parameter file: The file for which to obtain a configuration value.
///
/// - returns: A new configuration.
public func configuration(for file: SwiftLintFile) -> Configuration {
return (file.path?.bridge().deletingLastPathComponent).map(configuration(forDirectory:)) ?? self
}
private func configuration(forDirectory directory: String) -> Configuration {
// If the configuration was explicitly specified via the `--config` param, don't use nested configs
guard !basedOnCustomConfigurationFiles else { return self }
let directoryNSString = directory.bridge()
let configurationSearchPath = directoryNSString.appendingPathComponent(Self.defaultFileName)
let cacheIdentifier = "nestedPath" + rootDirectory + configurationSearchPath
if Self.getIsNestedConfigurationSelf(forIdentifier: cacheIdentifier) == true {
return self
} else if let cached = Self.getCached(forIdentifier: cacheIdentifier) {
return cached
} else {
var config: Configuration
if directory == rootDirectory {
// Use self if at level self
config = self
} else if
FileManager.default.fileExists(atPath: configurationSearchPath),
!fileGraph.includesFile(atPath: configurationSearchPath)
{
// Use self merged with the nested config that was found
// iff that nested config has not already been used to build the main config
// Ignore parent_config / child_config specifications of nested configs
var childConfiguration = Configuration(
configurationFiles: [configurationSearchPath],
ignoreParentAndChildConfigs: true
)
childConfiguration.fileGraph = FileGraph(rootDirectory: directory)
config = merged(withChild: childConfiguration, rootDirectory: rootDirectory)
// Cache merged result to circumvent heavy merge recomputations
config.setCached(forIdentifier: cacheIdentifier)
} else if directory != "/" {
// If we are not at the root path, continue down the tree
config = configuration(forDirectory: directoryNSString.deletingLastPathComponent)
} else {
// Fallback to self
config = self
}
if config == self {
// Cache that for this path, the config equals self
Self.setIsNestedConfigurationSelf(forIdentifier: cacheIdentifier, value: true)
}
return config
}
}
}