Files
SwiftLint/Source/SwiftLintFramework/Models/RuleList.swift
T
JP Simard b83e0991b9 Remove all file headers
The MIT license doesn't require that all files be prepended with this
licensing or copyright information. Realm confirmed that they're ok with this
change. This will enable some companies to contribute to SwiftLint and the
date & authorship information will remain accessible via git source control.
2018-05-04 13:42:02 -07:00

67 lines
2.0 KiB
Swift

import Foundation
public enum RuleListError: Error {
case duplicatedConfigurations(rule: Rule.Type)
}
public struct RuleList {
public let list: [String: Rule.Type]
private let aliases: [String: String]
public init(rules: Rule.Type...) {
self.init(rules: rules)
}
public init(rules: [Rule.Type]) {
var tmpList = [String: Rule.Type]()
var tmpAliases = [String: String]()
for rule in rules {
let identifier = rule.description.identifier
tmpList[identifier] = rule
for alias in rule.description.deprecatedAliases {
tmpAliases[alias] = identifier
}
tmpAliases[identifier] = identifier
}
list = tmpList
aliases = tmpAliases
}
internal func configuredRules(with dictionary: [String: Any]) throws -> [Rule] {
var rules = [String: Rule]()
for (key, configuration) in dictionary {
guard let identifier = identifier(for: key), let ruleType = list[identifier] else {
continue
}
guard rules[identifier] == nil else {
throw RuleListError.duplicatedConfigurations(rule: ruleType)
}
do {
let configuredRule = try ruleType.init(configuration: configuration)
rules[identifier] = configuredRule
} catch {
queuedPrintError("Invalid configuration for '\(identifier)'. Falling back to default.")
rules[identifier] = ruleType.init()
}
}
for (identifier, ruleType) in list where rules[identifier] == nil {
rules[identifier] = ruleType.init()
}
return Array(rules.values)
}
internal func identifier(for alias: String) -> String? {
return aliases[alias]
}
internal func allValidIdentifiers() -> [String] {
return list.flatMap { _, rule -> [String] in
rule.description.allIdentifiers
}
}
}