Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix false positives on redundant_objc_attribute rule when using nested types #2540

Merged
merged 4 commits into from
Jan 4, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@
[Marcelo Fabri](https://github.com/marcelofabri)
[#2533](https://github.com/realm/SwiftLint/issues/2533)

* Fix false positives on `redundant_objc_attribute` rule when using nested
types.
[Marcelo Fabri](https://github.com/marcelofabri)
[#2539](https://github.com/realm/SwiftLint/issues/2539)

## 0.29.2: Washateria

#### Breaking
Expand Down
34 changes: 30 additions & 4 deletions Rules.md
Original file line number Diff line number Diff line change
Expand Up @@ -15319,6 +15319,22 @@ class Foo: NSObject {
}
```

```swift
@objcMembers
class Foo {
class Bar: NSObject {
@objc var foo: Any
}
}
```

```swift
@objcMembers
class Foo {
@objc class Bar {}
}
```

</details>
<details>
<summary>Triggering Examples</summary>
Expand Down Expand Up @@ -15399,13 +15415,23 @@ extension Foo {
}
```

```swift
@objcMembers
class Foo {
@objcMembers
class Bar: NSObject {
@objc ↓var foo: Any
}
}
```

```swift
@objc
extension Foo {
@objc
private ↓var bar: Int {
return 0
}
@objc
private ↓var bar: Int {
return 0
}
}
```

Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
import Foundation
import SourceKittenFramework

private let kindsImplyingObjc: Set<SwiftDeclarationAttributeKind> =
[.ibaction, .iboutlet, .ibinspectable, .gkinspectable, .ibdesignable, .nsManaged]

private let privateACL: Set<SwiftDeclarationAttributeKind> = [.private, .fileprivate]

public struct RedundantObjcAttributeRule: ASTRule, ConfigurationProviderRule, AutomaticTestableRule {
public struct RedundantObjcAttributeRule: ConfigurationProviderRule, AutomaticTestableRule {
public var configuration = SeverityConfiguration(.warning)

public init() {}
Expand Down Expand Up @@ -73,6 +70,20 @@ public struct RedundantObjcAttributeRule: ASTRule, ConfigurationProviderRule, Au
return 0
}
}
""",
"""
@objcMembers
class Foo {
class Bar: NSObject {
@objc var foo: Any
}
}
""",
"""
@objcMembers
class Foo {
@objc class Bar {}
}
"""
],
triggeringExamples: [
Expand Down Expand Up @@ -122,24 +133,47 @@ public struct RedundantObjcAttributeRule: ASTRule, ConfigurationProviderRule, Au
}
""",
"""
@objcMembers
class Foo {
@objcMembers
class Bar: NSObject {
@objc ↓var foo: Any
}
}
""",
"""
@objc
extension Foo {
@objc
private ↓var bar: Int {
return 0
}
@objc
private ↓var bar: Int {
return 0
}
}
"""
])

fileprivate struct ObjcAttributeLocations {
var inObjcMembers = [NSRange]()
var inObjcExtension = [NSRange]()
public func validate(file: File) -> [StyleViolation] {
return validate(file: file, dictionary: file.structure.dictionary, parentStructure: nil)
}

public func validate(file: File,
kind: SwiftDeclarationKind,
dictionary: [String: SourceKitRepresentable]) -> [StyleViolation] {
private func validate(file: File, dictionary: [String: SourceKitRepresentable],
parentStructure: [String: SourceKitRepresentable]?) -> [StyleViolation] {
return dictionary.substructure.flatMap { subDict -> [StyleViolation] in
var violations = validate(file: file, dictionary: subDict, parentStructure: dictionary)

if let kindString = subDict.kind,
let kind = SwiftDeclarationKind(rawValue: kindString) {
violations += validate(file: file, kind: kind, dictionary: subDict, parentStructure: dictionary)
}

return violations
}
}

private func validate(file: File,
kind: SwiftDeclarationKind,
dictionary: [String: SourceKitRepresentable],
parentStructure: [String: SourceKitRepresentable]?) -> [StyleViolation] {
let enclosedSwiftAttributes = Set(dictionary.enclosedSwiftAttributes)
guard let offset = dictionary.offset,
enclosedSwiftAttributes.contains(.objc),
Expand All @@ -148,16 +182,28 @@ public struct RedundantObjcAttributeRule: ASTRule, ConfigurationProviderRule, Au
}

let isInObjcVisibleScope = { () -> Bool in
let ranges = file.structure.dictionary.objcAttributeLocationRanges
if ranges.inObjcMembers.contains(where: { $0.contains(offset) })
&& !enclosedSwiftAttributes.isDisjoint(with: privateACL) {
guard let parentStructure = parentStructure,
let kind = dictionary.kind.flatMap(SwiftDeclarationKind.init),
let parentKind = parentStructure.kind.flatMap(SwiftDeclarationKind.init),
let acl = dictionary.accessibility.flatMap(AccessControlLevel.init(identifier:)) else {
return false
}

let isInObjCExtension = [.extensionClass, .extension].contains(parentKind) &&
parentStructure.enclosedSwiftAttributes.contains(.objc)

let isInObjcMembers = parentStructure.enclosedSwiftAttributes.contains(.objcMembers) && !acl.isPrivate

guard isInObjCExtension || isInObjcMembers else {
return false
}
return (ranges.inObjcMembers + ranges.inObjcExtension).contains(where: { $0.contains(offset) })

return !SwiftDeclarationKind.typeKinds.contains(kind)
}

let isUsedWithObjcAttribute = { !enclosedSwiftAttributes.isDisjoint(with: kindsImplyingObjc) }
if isInObjcVisibleScope() || isUsedWithObjcAttribute() {
let isUsedWithObjcAttribute = !enclosedSwiftAttributes.isDisjoint(with: kindsImplyingObjc)

if isUsedWithObjcAttribute || isInObjcVisibleScope() {
return [StyleViolation(ruleDescription: type(of: self).description,
severity: configuration.severity,
location: Location(file: file, byteOffset: offset))]
Expand All @@ -168,75 +214,6 @@ public struct RedundantObjcAttributeRule: ASTRule, ConfigurationProviderRule, Au
}

private extension Dictionary where Key == String, Value == SourceKitRepresentable {
var objcAttributeLocationRanges: RedundantObjcAttributeRule.ObjcAttributeLocations {
var objcImpliedAttributeLocatioRanges = RedundantObjcAttributeRule.ObjcAttributeLocations()
func search(in dictionary: [Key: Value]) {
if let enclosedObjcMembersRange = dictionary.enclosedObjcMembersRange {
objcImpliedAttributeLocatioRanges.inObjcMembers.append(enclosedObjcMembersRange)
}

if let enclosedObjcExtensionRange = dictionary.enclosedObjcExtensionRange {
objcImpliedAttributeLocatioRanges.inObjcExtension.append(enclosedObjcExtensionRange)
}

if let enclosedNonObjcMembersClassRange = dictionary.enclosedNonObjcMembersClassRange {
func split(ranges: inout [NSRange]) {
let intersectingRanges = ranges.filter { $0.intersects(enclosedNonObjcMembersClassRange) }
intersectingRanges.compactMap(ranges.index(of:))
.forEach { ranges.remove(at: $0) }

intersectingRanges.forEach {
let (lhs, rhs) = $0.split(by: enclosedNonObjcMembersClassRange)
ranges += [lhs, rhs]
}
}

split(ranges: &objcImpliedAttributeLocatioRanges.inObjcMembers)
split(ranges: &objcImpliedAttributeLocatioRanges.inObjcExtension)
}

dictionary.substructure.forEach(search)
}
search(in: self)
return objcImpliedAttributeLocatioRanges
}

var bodyRange: NSRange? {
guard let bodyOffset = bodyOffset, let bodyLength = bodyLength else {
return nil
}
return NSRange(location: bodyOffset, length: bodyLength)
}

var enclosedObjcExtensionRange: NSRange? {
guard let kind = kind,
let declaration = SwiftDeclarationKind(rawValue: kind),
[.extensionClass, .extension].contains(declaration),
enclosedSwiftAttributes.contains(.objc),
let bodyRange = bodyRange else {
return nil
}
return bodyRange
}

var enclosedObjcMembersRange: NSRange? {
guard enclosedSwiftAttributes.contains(.objcMembers), let bodyRange = bodyRange else {
return nil
}
return bodyRange
}

var enclosedNonObjcMembersClassRange: NSRange? {
guard let kind = kind,
SwiftDeclarationKind(rawValue: kind) == .class,
!enclosedSwiftAttributes.contains(.objcMembers),
let offset = offset,
let bodyLength = bodyLength else {
return nil
}
return NSRange(location: offset, length: bodyLength)
}

var isObjcAndIBDesignableDeclaredExtension: Bool {
guard let kind = kind, let declaration = SwiftDeclarationKind(rawValue: kind) else {
return false
Expand All @@ -245,11 +222,3 @@ private extension Dictionary where Key == String, Value == SourceKitRepresentabl
&& Set(enclosedSwiftAttributes).isSuperset(of: [.ibdesignable, .objc])
}
}

private extension NSRange {
func split(by range: NSRange) -> (lhs: NSRange, rhs: NSRange) {
return (NSRange(location: location, length: range.location - location),
NSRange(location: (range.location + range.length),
length: location + length - (range.location + range.length)))
}
}