-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Expand file tree
/
Copy pathString+SwiftLint.swift
More file actions
138 lines (118 loc) · 4.69 KB
/
String+SwiftLint.swift
File metadata and controls
138 lines (118 loc) · 4.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
import Foundation
import SourceKittenFramework
public extension String {
func hasTrailingWhitespace() -> Bool {
if isEmpty {
return false
}
if let unicodescalar = unicodeScalars.last {
return CharacterSet.whitespaces.contains(unicodescalar)
}
return false
}
func isUppercase() -> Bool {
self == uppercased()
}
func isLowercase() -> Bool {
self == lowercased()
}
private subscript (range: Range<Int>) -> String {
let nsrange = NSRange(location: range.lowerBound,
length: range.upperBound - range.lowerBound)
if let indexRange = nsrangeToIndexRange(nsrange) {
return String(self[indexRange])
}
queuedFatalError("invalid range")
}
func substring(from: Int, length: Int? = nil) -> String {
if let length {
return self[from..<from + length]
}
return String(self[index(startIndex, offsetBy: from, limitedBy: endIndex)!...])
}
func lastIndex(of search: String) -> Int? {
if let range = range(of: search, options: [.literal, .backwards]) {
return distance(from: startIndex, to: range.lowerBound)
}
return nil
}
func nsrangeToIndexRange(_ nsrange: NSRange) -> Range<Index>? {
guard nsrange.location != NSNotFound else {
return nil
}
let from16 = utf16.index(utf16.startIndex, offsetBy: nsrange.location,
limitedBy: utf16.endIndex) ?? utf16.endIndex
let to16 = utf16.index(from16, offsetBy: nsrange.length,
limitedBy: utf16.endIndex) ?? utf16.endIndex
guard let fromIndex = Index(from16, within: self),
let toIndex = Index(to16, within: self) else {
return nil
}
return fromIndex..<toIndex
}
var fullNSRange: NSRange {
NSRange(location: 0, length: utf16.count)
}
/// Count the number of occurrences of the given character in `self`
/// - Parameter character: Character to count
/// - Returns: Number of times `character` occurs in `self`
func countOccurrences(of character: Character) -> Int {
reduce(0) { $1 == character ? $0 + 1 : $0 }
}
/// If self is a path, this method can be used to get a path expression relative to a root directory
func path(relativeTo rootDirectory: String) -> String {
let normalizedRootDir = rootDirectory.bridge().standardizingPath
let normalizedSelf = bridge().standardizingPath
if normalizedRootDir.isEmpty {
return normalizedSelf
}
var rootDirComps = normalizedRootDir.components(separatedBy: "/")
let rootDirCompsCount = rootDirComps.count
while true {
let sharedRootDir = rootDirComps.joined(separator: "/")
if normalizedSelf == sharedRootDir || normalizedSelf.hasPrefix(sharedRootDir + "/") {
let path = (0 ..< rootDirCompsCount - rootDirComps.count).map { _ in "/.." }.flatMap(\.self)
+ String(normalizedSelf.dropFirst(sharedRootDir.count))
return String(path.dropFirst()) // Remove leading '/'
}
rootDirComps = rootDirComps.dropLast()
}
}
func deletingPrefix(_ prefix: String) -> String {
guard hasPrefix(prefix) else { return self }
return String(dropFirst(prefix.count))
}
func indent(by spaces: Int, skipFirst: Bool = false, skipEmptyLines: Bool = true) -> String {
let lines = components(separatedBy: "\n")
if skipFirst, let firstLine = lines.first {
return firstLine + "\n" + lines.dropFirst().indent(by: spaces, skipEmptyLines: skipEmptyLines)
}
return lines.indent(by: spaces, skipEmptyLines: skipEmptyLines)
}
func linesPrefixed(with prefix: Self) -> Self {
split(separator: "\n").joined(separator: "\n\(prefix)")
}
func characterPosition(of utf8Offset: Int) -> Int? {
guard utf8Offset != 0 else {
return 0
}
guard utf8Offset > 0, utf8Offset < lengthOfBytes(using: .utf8) else {
return nil
}
for (offset, index) in indices.enumerated() where self[...index].lengthOfBytes(using: .utf8) == utf8Offset {
return offset + 1
}
return nil
}
}
private extension Sequence where Element == String {
func indent(by spaces: Int, skipEmptyLines: Bool = true) -> String {
map { line in
if skipEmptyLines, line.isEmpty {
return line
}
return String(repeating: " ", count: spaces) + line
}
.joined(separator: "\n")
}
}