mirror of
https://github.com/realm/SwiftLint.git
synced 2026-06-06 20:18:40 +00:00
b83e0991b9
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.
77 lines
2.3 KiB
Swift
77 lines
2.3 KiB
Swift
import Foundation
|
|
import SourceKittenFramework
|
|
|
|
public struct Location: CustomStringConvertible, Comparable {
|
|
public let file: String?
|
|
public let line: Int?
|
|
public let character: Int?
|
|
public var description: String {
|
|
// Xcode likes warnings and errors in the following format:
|
|
// {full_path_to_file}{:line}{:character}: {error,warning}: {content}
|
|
let fileString: String = file ?? "<nopath>"
|
|
let lineString: String = ":\(line ?? 1)"
|
|
let charString: String = character.map({ ":\($0)" }) ?? ""
|
|
return [fileString, lineString, charString].joined()
|
|
}
|
|
public var relativeFile: String? {
|
|
return file?.replacingOccurrences(of: FileManager.default.currentDirectoryPath + "/", with: "")
|
|
}
|
|
|
|
public init(file: String?, line: Int? = nil, character: Int? = nil) {
|
|
self.file = file
|
|
self.line = line
|
|
self.character = character
|
|
}
|
|
|
|
public init(file: File, byteOffset offset: Int) {
|
|
self.file = file.path
|
|
if let lineAndCharacter = file.contents.bridge().lineAndCharacter(forByteOffset: offset) {
|
|
line = lineAndCharacter.line
|
|
character = lineAndCharacter.character
|
|
} else {
|
|
line = nil
|
|
character = nil
|
|
}
|
|
}
|
|
|
|
public init(file: File, characterOffset offset: Int) {
|
|
self.file = file.path
|
|
if let lineAndCharacter = file.contents.bridge().lineAndCharacter(forCharacterOffset: offset) {
|
|
line = lineAndCharacter.line
|
|
character = lineAndCharacter.character
|
|
} else {
|
|
line = nil
|
|
character = nil
|
|
}
|
|
}
|
|
}
|
|
|
|
// MARK: Comparable
|
|
|
|
private func < <T: Comparable>(lhs: T?, rhs: T?) -> Bool {
|
|
switch (lhs, rhs) {
|
|
case let (lhs?, rhs?):
|
|
return lhs < rhs
|
|
case (nil, _?):
|
|
return true
|
|
default:
|
|
return false
|
|
}
|
|
}
|
|
|
|
public func == (lhs: Location, rhs: Location) -> Bool {
|
|
return lhs.file == rhs.file &&
|
|
lhs.line == rhs.line &&
|
|
lhs.character == rhs.character
|
|
}
|
|
|
|
public func < (lhs: Location, rhs: Location) -> Bool {
|
|
if lhs.file != rhs.file {
|
|
return lhs.file < rhs.file
|
|
}
|
|
if lhs.line != rhs.line {
|
|
return lhs.line < rhs.line
|
|
}
|
|
return lhs.character < rhs.character
|
|
}
|