-
Notifications
You must be signed in to change notification settings - Fork 8
/
Regexp.swift
385 lines (312 loc) · 12.9 KB
/
Regexp.swift
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
//
// Regex.swift
// SwiftRuby
//
// Created by John Holdsworth on 26/09/2015.
// Copyright © 2015 John Holdsworth. All rights reserved.
//
// $Id: //depot/SwiftRuby/Regexp.swift#12 $
//
// Repo: https://github.com/RubyNative/SwiftRuby
//
// See: http://ruby-doc.org/core-2.2.3/Regexp.html
//
import Foundation
infix operator =~ : ComparisonPrecedence
public func =~ (lhs: String, rhs: String) -> Regexp {
return Regexp(target: lhs as NSString, pattern: rhs)
}
infix operator !~ : ComparisonPrecedence
public func !~ (lhs: String, rhs: String) -> NotRegexp {
return NotRegexp(target: lhs as NSString, pattern: rhs)
}
extension String {
public subscript (pattern: String) -> Regexp {
return Regexp(target: self as NSString, pattern: pattern)
}
public subscript (pattern: String, options: NSRegularExpression.Options) -> Regexp {
return Regexp(target: self as NSString, pattern: pattern, options: options)
}
public subscript (pattern: String, optionString: String) -> Regexp {
return Regexp(target: self as NSString, pattern: pattern, optionString: optionString)
}
public subscript (pattern: String, capture: Int) -> String? {
return slice(pattern, capture)
}
public var mutableString: NSMutableString {
return NSMutableString(string: self)
}
public func gsub(_ pattern: String, _ template: String) -> String {
let out = self.mutableString
_ = out[pattern] =~ template
return out as String
}
public func index(_ pattern: String) -> Int? {
let range = Regexp(target: self as NSString, pattern: pattern).range()
return range.location != NSNotFound ? range.location : nil
}
public var lstrip: String {
return self["^\\s+"][""]
}
public func match(_ pattern: String) -> [String?]? {
return Regexp(target: self as NSString, pattern: pattern).groups()
}
public var rstrip: String {
return self["\\s*+"][""]
}
public func slice(_ pattern: String, _ capture: Int = 0) -> String? {
return Regexp(target: self as NSString, pattern: pattern)[capture]
}
public func scan(_ pattern: String) -> [[String?]] {
return Regexp(target: self as NSString, pattern: pattern).allGroups()
}
public var strip: String {
return self["^\\s+|\\s+$"][""]
}
public func sub(_ pattern: String, _ template: String) -> String {
let out = self.mutableString
_ = out[pattern] =~ [template]
return out as String
}
}
extension NSMutableString {
public subscript (pattern: String) -> MutableRegexp {
return MutableRegexp(target: self, pattern: pattern)
}
public subscript (pattern: String, options: NSRegularExpression.Options) -> MutableRegexp {
return MutableRegexp(target: self, pattern: pattern, options: options)
}
public subscript (pattern: String, optionString: String) -> MutableRegexp {
return MutableRegexp(target: self, pattern: pattern, optionString: optionString)
}
}
open class Regexp: RubyObject {
let target: NSString
let regexp: NSRegularExpression
var file: RegexpFile?
public convenience init(target: NSString, pattern: String, optionString: String) {
var options: UInt = 0
for char in optionString {
switch char {
case "i":
options |= NSRegularExpression.Options.caseInsensitive.rawValue
case "x":
options |= NSRegularExpression.Options.allowCommentsAndWhitespace.rawValue
case "q":
options |= NSRegularExpression.Options.ignoreMetacharacters.rawValue
case "m":
options |= NSRegularExpression.Options.anchorsMatchLines.rawValue
case "s":
options |= NSRegularExpression.Options.dotMatchesLineSeparators.rawValue
case "l":
options |= NSRegularExpression.Options.useUnixLineSeparators.rawValue
case "u":
options |= NSRegularExpression.Options.useUnicodeWordBoundaries.rawValue
default:
SRLog("Invalid Regexp option \(char)")
break
}
}
self.init(target: target, pattern: pattern, options: NSRegularExpression.Options(rawValue: options ))
}
public init(target: NSString, pattern: String,
options: NSRegularExpression.Options = NSRegularExpression.Options(rawValue: 0 )) {
self.target = target
do {
self.regexp = try NSRegularExpression(pattern: pattern, options: options)
}
catch let error as NSError {
SRLog("Regexp pattern: '\(pattern)' compile error: \(error)")
self.regexp = NSRegularExpression()
}
}
final var targetRange: NSRange {
return NSMakeRange(0, target.length)
}
final func substring(_ range: NSRange) -> String? {
if (range.location != NSNotFound) {
return target.substring(with: range)
} else {
return nil
}
}
open func doesMatch(_ options: NSRegularExpression.MatchingOptions? = nil) -> Bool {
return range(options).location != NSNotFound
}
open func range(_ options: NSRegularExpression.MatchingOptions? = nil) -> NSRange {
return regexp.rangeOfFirstMatch(in: target as String, options: options ?? NSRegularExpression.MatchingOptions(rawValue: 0), range: targetRange)
}
func matchResults(_ options: NSRegularExpression.MatchingOptions? = nil) -> [NSTextCheckingResult] {
return regexp.matches(in: target as String, options: options ?? NSRegularExpression.MatchingOptions(rawValue: 0), range: targetRange)
}
func replaceWith(_ template: String, options: NSRegularExpression.MatchingOptions? = nil) -> NSMutableString {
let mutable = /*target as? NSMutableString ??*/ NSMutableString(string: target)
regexp.replaceMatches(in: mutable, options: options ?? NSRegularExpression.MatchingOptions(rawValue: 0), range: targetRange, withTemplate: template)
return mutable
}
func groupsForMatch(_ match: NSTextCheckingResult) -> [String?] {
var groups = [String?]()
for groupno in 0...regexp.numberOfCaptureGroups {
groups.append(substring(match.range(at: groupno) ))
}
return groups
}
open func dictionary(_ options: NSRegularExpression.MatchingOptions? = nil) -> [String:String] {
var out = [String:String]()
for match in matchResults(options) {
out[substring(match.range(at: 1))!] =
substring(match.range(at: 2))!
}
return out
}
open func match(_ options: NSRegularExpression.MatchingOptions? = nil) -> String? {
return substring(range(options ))
}
open func groups(_ options: NSRegularExpression.MatchingOptions? = nil) -> [String?]? {
if let match = regexp.firstMatch(in: target as String, options: options ?? NSRegularExpression.MatchingOptions(rawValue: 0), range: targetRange) {
return groupsForMatch(match)
}
return nil
}
open func allGroups(_ options: NSRegularExpression.MatchingOptions? = nil) -> [[String?]] {
return matchResults(options).map { self.groupsForMatch($0) }
}
open subscript (groupno: Int) -> String? {
if let match = regexp.firstMatch(in: target as String, options: NSRegularExpression.MatchingOptions(rawValue: 0), range: targetRange) {
return substring(match.range(at: groupno ))
}
return nil
}
open subscript (groupno: Int, options: NSRegularExpression.MatchingOptions) -> String? {
if let match = regexp.firstMatch(in: target as String, options: options, range: targetRange) {
return substring(match.range(at: groupno ))
}
return nil
}
open subscript(template: String) -> String {
return replaceWith(template) as String
}
open subscript(template: String, options: NSRegularExpression.MatchingOptions) -> String {
return replaceWith(template, options: options) as String
}
open var boolValue: Bool {
return doesMatch()
}
}
open class NotRegexp : Regexp {
open override var boolValue: Bool {
return !doesMatch()
}
}
open class MutableRegexp: Regexp {
override open subscript (groupno: Int) -> String? {
get {
if let match = regexp.firstMatch(in: target as String, options: NSRegularExpression.MatchingOptions(rawValue: 0), range: targetRange) {
return substring(match.range(at: groupno ))
}
return nil
}
set(newValue) {
if let newValue = newValue {
if let mutableTarget = target as? NSMutableString {
for match in Array(matchResults().reversed()) {
let replacement = regexp.replacementString(for: match,
in: target as String, offset: 0, template: newValue)
mutableTarget.replaceCharacters(in: match.range(at: groupno), with: replacement)
}
} else {
SRLog("Group modify on non-mutable")
}
}
else {
SRLog("nil replacement in group modify")
}
}
}
func substituteMatches(_ substitution: (NSTextCheckingResult, UnsafeMutablePointer<ObjCBool>) -> String) -> Bool {
let out = NSMutableString()
var pos = 0
regexp.enumerateMatches(in: target as String, options: NSRegularExpression.MatchingOptions(rawValue: 0), range: targetRange) {
(match: NSTextCheckingResult?, flags: NSRegularExpression.MatchingFlags, stop: UnsafeMutablePointer<ObjCBool>) in
let matchRange = match!.range
out.append(self.substring(NSMakeRange(pos, matchRange.location-pos ))!) ////
out.append(substitution(match!, stop ))
pos = matchRange.location + matchRange.length
}
out.append(substring(NSMakeRange(pos, targetRange.length-pos ))!) ////
if let mutableTarget = target as? NSMutableString {
if out != target {
mutableTarget.setString(out as String)
return true
}
} else {
SRLog("Modify substitute on non-mutable")
}
return false
}
}
public func =~ (left: MutableRegexp, right: String) -> Bool {
return left.substituteMatches({
(match: NSTextCheckingResult, stop: UnsafeMutablePointer<ObjCBool>) in
return left.regexp.replacementString(for: match,
in: left.target as String, offset: 0, template: right)
})
}
public func =~ (left: MutableRegexp, right: [String]) -> Bool {
var matchNumber = 0
return left.substituteMatches({
(match: NSTextCheckingResult, stop: UnsafeMutablePointer<ObjCBool>) in
matchNumber += 1
if matchNumber == right.count {
stop.pointee = true
}
return left.regexp.replacementString(for: match,
in: left.target as String, offset: 0, template: right[matchNumber-1])
})
}
public func =~ (left: MutableRegexp, right: (String?) -> String) -> Bool {
return left.substituteMatches({
(match: NSTextCheckingResult, stop: UnsafeMutablePointer<ObjCBool>) in
return right(left.substring(match.range ))
})
}
public func =~ (left: MutableRegexp, right: ([String?]) -> String) -> Bool {
return left.substituteMatches({
(match: NSTextCheckingResult, stop: UnsafeMutablePointer<ObjCBool>) in
return right(left.groupsForMatch(match ))
})
}
open class RegexpFile {
let filepath: String
let contents: NSMutableString! ////
let original: String!
public init?(_ path: String, file: StaticString = #file, line: UInt = #line) {
filepath = path
contents = File.read(path)?.to_s.mutableString
original = contents as String
if contents == nil {
SRError("RegexpFile could not read '\(path)'", file: file, line: line)
return nil
}
}
open subscript(pattern: String) -> MutableRegexp {
let regexp = MutableRegexp(target: contents, pattern: pattern)
regexp.file = self // retains until after substitution
return regexp
}
open subscript (pattern: String, options: NSRegularExpression.Options) -> MutableRegexp {
let regexp = MutableRegexp(target: contents, pattern: pattern, options: options)
regexp.file = self // retains until after substitution
return regexp
}
open subscript (pattern: String, options: String) -> MutableRegexp {
let regexp = MutableRegexp(target: contents, pattern: pattern, optionString: options)
regexp.file = self // retains until after substitution
return regexp
}
deinit {
if contents as String != original {
File.write(filepath, contents as String)
}
}
}