Files
SwiftLint/Source/SwiftLintFramework/Rules/ImplicitGetterRule.swift
T
2017-07-02 15:50:16 +02:00

121 lines
4.6 KiB
Swift

//
// ImplicitGetterRule.swift
// SwiftLint
//
// Created by Marcelo Fabri on 29/10/16.
// Copyright © 2016 Realm. All rights reserved.
//
import Foundation
import SourceKittenFramework
private func classScoped(_ value: String) -> String {
return "class Foo {\n \(value)\n}\n"
}
public struct ImplicitGetterRule: ConfigurationProviderRule {
public var configuration = SeverityConfiguration(.warning)
public init() {}
public static let description = RuleDescription(
identifier: "implicit_getter",
name: "Implicit Getter",
description: "Computed read-only properties should avoid using the get keyword.",
kind: .style,
nonTriggeringExamples: [
classScoped("var foo: Int {\n get {\n return 3\n}\n set {\n _abc = newValue \n}\n}"),
classScoped("var foo: Int {\n return 20 \n} \n}"),
classScoped("static var foo: Int {\n return 20 \n} \n}"),
classScoped("static foo: Int {\n get {\n return 3\n}\n set {\n _abc = newValue \n}\n}"),
classScoped("var foo: Int"),
classScoped("var foo: Int {\n return getValueFromDisk() \n} \n}"),
classScoped("var foo: String {\n return \"get\" \n} \n}"),
"protocol Foo {\n var foo: Int { get }\n",
"protocol Foo {\n var foo: Int { get set }\n",
"class Foo {\n" +
" var foo: Int {\n" +
" struct Bar {\n" +
" var bar: Int {\n" +
" get { return 1 }\n" +
" set { _ = newValue }\n" +
" }\n" +
" }\n" +
" return Bar().bar\n" +
" }\n" +
"}\n"
],
triggeringExamples: [
classScoped("var foo: Int {\n ↓get {\n return 20 \n} \n} \n}"),
classScoped("var foo: Int {\n ↓get{\n return 20 \n} \n} \n}"),
classScoped("static var foo: Int {\n ↓get {\n return 20 \n} \n} \n}"),
"var foo: Int {\n ↓get {\n return 20 \n} \n} \n}"
]
)
public func validate(file: File) -> [StyleViolation] {
let pattern = "\\bget\\b"
let getTokens: [SyntaxToken] = file.rangesAndTokens(matching: pattern).flatMap { _, tokens in
guard tokens.count == 1, let token = tokens.first,
SyntaxKind(rawValue: token.type) == .keyword else {
return nil
}
return token
}
let violatingTokens = getTokens.filter { token -> Bool in
// the last element is the deepest structure
guard let dict = variableDeclarations(forByteOffset: token.offset, structure: file.structure).last else {
return false
}
// If there's a setter, `get` is allowed
return dict.setterAccessibility == nil
}
return violatingTokens.map { token in
// Violation found!
let location = Location(file: file, byteOffset: token.offset)
return StyleViolation(ruleDescription: type(of: self).description,
severity: configuration.severity,
location: location)
}
}
private func variableDeclarations(forByteOffset byteOffset: Int,
structure: Structure) -> [[String: SourceKitRepresentable]] {
var results = [[String: SourceKitRepresentable]]()
let allowedKinds = Set(SwiftDeclarationKind.variableKinds()).subtracting([.varParameter])
func parse(dictionary: [String: SourceKitRepresentable], parentKind: SwiftDeclarationKind?) {
// Only accepts variable declarations which contains a body and contains the
// searched byteOffset
guard let kindString = dictionary.kind,
let kind = SwiftDeclarationKind(rawValue: kindString),
let bodyOffset = dictionary.bodyOffset,
let bodyLength = dictionary.bodyLength,
case let byteRange = NSRange(location: bodyOffset, length: bodyLength),
NSLocationInRange(byteOffset, byteRange) else {
return
}
if parentKind != .protocol && allowedKinds.contains(kind) {
results.append(dictionary)
}
for dictionary in dictionary.substructure {
parse(dictionary: dictionary, parentKind: kind)
}
}
for dictionary in structure.dictionary.substructure {
parse(dictionary: dictionary, parentKind: nil)
}
return results
}
}