mirror of
https://github.com/realm/SwiftLint.git
synced 2026-06-06 20:18:40 +00:00
9acc4c56b3
before: 1097.1ms after: 44.2ms
71 lines
1.9 KiB
Swift
71 lines
1.9 KiB
Swift
//
|
|
// Location.swift
|
|
// SwiftLint
|
|
//
|
|
// Created by JP Simard on 2015-05-16.
|
|
// Copyright (c) 2015 Realm. All rights reserved.
|
|
//
|
|
|
|
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}
|
|
return [
|
|
file ?? "<nopath>",
|
|
line.map({ ":\($0)" }) ?? "",
|
|
character.map({ ":\($0)" }) ?? ""
|
|
].joinWithSeparator("")
|
|
}
|
|
|
|
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.lineAndCharacterForByteOffset(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.lineAndCharacterForCharacterOffset(offset) {
|
|
line = lineAndCharacter.line
|
|
character = lineAndCharacter.character
|
|
} else {
|
|
line = nil
|
|
character = nil
|
|
}
|
|
}
|
|
}
|
|
|
|
// MARK: Comparable
|
|
|
|
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
|
|
}
|