Files
2025-12-07 08:11:08 -05:00

59 lines
2.4 KiB
Swift

/// A rule configuration that allows specifying thresholds for `warning` and `error` severities.
public struct SeverityLevelsConfiguration<Parent: Rule>: RuleConfiguration, InlinableOptionType, Sendable {
/// The threshold for a violation to be a warning.
@ConfigurationElement(key: "warning")
public var warning = 12
/// The threshold for a violation to be an error.
@ConfigurationElement(key: "error")
public var error: Int?
/// Create a `SeverityLevelsConfiguration` based on the specified `warning` and `error` thresholds.
///
/// - parameter warning: The threshold for a violation to be a warning.
/// - parameter error: The threshold for a violation to be an error.
public init(warning: Int, error: Int? = nil) {
self.warning = warning
self.error = error
}
/// The rule parameters that define the thresholds that should map to each severity.
public var params: [RuleParameter<Int>] {
if let error {
return [
RuleParameter(severity: .error, value: error),
RuleParameter(severity: .warning, value: warning),
]
}
return [RuleParameter(severity: .warning, value: warning)]
}
public mutating func apply(configuration: Any) throws(Issue) {
if let configurationArray = [Int].array(of: configuration), configurationArray.isNotEmpty {
warning = configurationArray[0]
error = (configurationArray.count > 1) ? configurationArray[1] : nil
} else if let configDict = configuration as? [String: Any?] {
let warningValue = configDict[$warning.key]
if let warningValue {
if let warning = warningValue as? Int {
self.warning = warning
} else {
throw .invalidConfiguration(ruleID: Parent.identifier)
}
}
if let errorValue = configDict[$error.key] {
if errorValue == nil {
error = nil
} else if let error = errorValue as? Int {
self.error = error
} else {
throw .invalidConfiguration(ruleID: Parent.identifier)
}
} else if warningValue != nil {
error = nil
}
} else {
throw .nothingApplied(ruleID: Parent.identifier)
}
}
}