-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathOSRMTextInstructions.swift
555 lines (482 loc) · 22.9 KB
/
OSRMTextInstructions.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
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
import Foundation
import MapboxDirections
// Will automatically read localized Instructions.plist
let OSRMTextInstructionsStrings = NSDictionary(contentsOfFile: Bundle(for: OSRMInstructionFormatter.self).path(forResource: "Instructions", ofType: "plist")!)!
let OSRMTextInstructionsGrammar: NSDictionary? = {
guard let path = Bundle(for: OSRMInstructionFormatter.self).path(forResource: "Grammar", ofType: "plist") else {
return nil
}
return NSDictionary(contentsOfFile: path)
}()
extension NSRegularExpression.Options {
init(javaScriptFlags: String) {
var options: NSRegularExpression.Options = []
for flag in javaScriptFlags.characters {
switch flag {
case "g":
break
case "i":
options.insert(.caseInsensitive)
case "m":
options.insert(.anchorsMatchLines)
case "u":
// Character classes are always Unicode-aware in ICU regular expressions.
options.insert(.useUnicodeWordBoundaries)
case "y":
break
default:
break
}
}
self.init(rawValue: options.rawValue)
}
}
protocol Tokenized {
associatedtype T
/**
Replaces `{tokens}` in the receiver using the given closure.
*/
func replacingTokens(using interpolator: ((TokenType, String?) -> T)) -> T
func inflected(into variant: String, version: String) -> T
}
extension String: Tokenized {
public var sentenceCased: String {
return String(characters.prefix(1)).uppercased() + String(characters.dropFirst())
}
public func replacingTokens(using interpolator: ((TokenType, String?) -> String)) -> String {
let scanner = Scanner(string: self)
scanner.charactersToBeSkipped = nil
var result = ""
while !scanner.isAtEnd {
var buffer: NSString?
if scanner.scanUpTo("{", into: &buffer) {
result += buffer! as String
}
guard scanner.scanString("{", into: nil) else {
continue
}
var token: NSString?
guard scanner.scanUpTo("}", into: &token) else {
result += "{"
continue
}
var variant: NSString?
if scanner.scanString(":", into: nil) {
guard scanner.scanUpTo("}", into: &variant) else {
result += ":"
continue
}
}
if scanner.scanString("}", into: nil) {
if let tokenType = TokenType(description: token! as String) {
result += interpolator(tokenType, variant as String?)
} else {
result += "{\(token!)}"
}
} else {
result += "{\(token!)"
}
}
// remove excess spaces
result = result.replacingOccurrences(of: "\\s\\s", with: " ", options: .regularExpression)
// capitalize
let meta = OSRMTextInstructionsStrings["meta"] as! [String: Any]
if meta["capitalizeFirstLetter"] as? Bool ?? false {
result = result.sentenceCased
}
return result
}
func inflected(into variant: String, version: String) -> String {
guard let grammar = OSRMTextInstructionsGrammar?[version] as? [String: Any] else {
return self
}
guard let rules = grammar[variant] as? [[String]] else {
return self
}
var grammaticalReplacement = " \(self) "
var regularExpressionOptions: NSRegularExpression.Options = []
if let meta = OSRMTextInstructionsGrammar?["meta"] as? [String: String],
let flags = meta["regExpFlags"] {
regularExpressionOptions = NSRegularExpression.Options(javaScriptFlags: flags)
}
for rule in rules {
let regularExpression = try! NSRegularExpression(pattern: rule[0], options: regularExpressionOptions)
grammaticalReplacement = regularExpression.stringByReplacingMatches(in: grammaticalReplacement, options: [], range: NSRange(location: 0, length: grammaticalReplacement.characters.count), withTemplate: rule[1])
}
return grammaticalReplacement.trimmingCharacters(in: .whitespaces)
}
}
extension NSAttributedString: Tokenized {
public func replacingTokens(using interpolator: ((TokenType, String?) -> NSAttributedString)) -> NSAttributedString {
let scanner = Scanner(string: string)
scanner.charactersToBeSkipped = nil
let result = NSMutableAttributedString()
while !scanner.isAtEnd {
var buffer: NSString?
if scanner.scanUpTo("{", into: &buffer) {
result.append(NSAttributedString(string: buffer! as String))
}
guard scanner.scanString("{", into: nil) else {
continue
}
var token: NSString?
guard scanner.scanUpTo("}", into: &token) else {
result.append(NSAttributedString(string: "}"))
continue
}
var variant: NSString?
if scanner.scanString(":", into: nil) {
guard scanner.scanUpTo("}", into: &variant) else {
result.append(NSAttributedString(string: "}"))
continue
}
}
if scanner.scanString("}", into: nil) {
if let tokenType = TokenType(description: token! as String) {
result.append(interpolator(tokenType, variant as String?))
}
} else {
result.append(NSAttributedString(string: token! as String))
}
}
// remove excess spaces
let wholeRange = NSRange(location: 0, length: result.mutableString.length)
result.mutableString.replaceOccurrences(of: "\\s\\s", with: " ", options: .regularExpression, range: wholeRange)
// capitalize
let meta = OSRMTextInstructionsStrings["meta"] as! [String: Any]
if meta["capitalizeFirstLetter"] as? Bool ?? false {
result.replaceCharacters(in: NSRange(location: 0, length: 1), with: String(result.string.characters.first!).uppercased())
}
return result as NSAttributedString
}
@nonobjc func inflected(into variant: String, version: String) -> NSAttributedString {
guard let grammar = OSRMTextInstructionsGrammar?[version] as? [String: Any] else {
return self
}
guard let rules = grammar[variant] as? [[String]] else {
return self
}
let grammaticalReplacement = NSMutableAttributedString(string: " ")
grammaticalReplacement.append(self)
grammaticalReplacement.append(NSAttributedString(string: " "))
var regularExpressionOptions: NSRegularExpression.Options = []
if let meta = OSRMTextInstructionsGrammar?["meta"] as? [String: String],
let flags = meta["regExpFlags"] {
regularExpressionOptions = NSRegularExpression.Options(javaScriptFlags: flags)
}
for rule in rules {
let regularExpression = try! NSRegularExpression(pattern: rule[0], options: regularExpressionOptions)
regularExpression.replaceMatches(in: grammaticalReplacement.mutableString, options: [], range: NSRange(location: 0, length: grammaticalReplacement.mutableString.length), withTemplate: rule[1])
}
grammaticalReplacement.mutableString.replaceOccurrences(of: "^ +| +$", with: "", options: .regularExpression, range: NSRange(location: 0, length: grammaticalReplacement.mutableString.length))
return grammaticalReplacement
}
}
public class OSRMInstructionFormatter: Formatter {
let version: String
let instructions: [String: Any]
let ordinalFormatter: NumberFormatter = {
let formatter = NumberFormatter()
formatter.locale = .current
if #available(iOS 9.0, OSX 10.11, *) {
formatter.numberStyle = .ordinal
}
return formatter
}()
public init(version: String) {
self.version = version
self.instructions = OSRMTextInstructionsStrings[version] as! [String: Any]
super.init()
}
required public init?(coder decoder: NSCoder) {
if let version = decoder.decodeObject(of: NSString.self, forKey: "version") as String? {
self.version = version
} else {
return nil
}
if let instructions = decoder.decodeObject(of: [NSDictionary.self, NSArray.self, NSString.self], forKey: "instructions") as? [String: Any] {
self.instructions = instructions
} else {
return nil
}
super.init(coder: decoder)
}
override public func encode(with coder: NSCoder) {
super.encode(with: coder)
coder.encode(version, forKey: "version")
coder.encode(instructions, forKey: "instructions")
}
var constants: [String: Any] {
return instructions["constants"] as! [String: Any]
}
/**
Returns a format string with the given name.
- returns: A format string suitable for `String.replacingTokens(using:)`.
*/
public func phrase(named name: PhraseName) -> String {
let phrases = instructions["phrase"] as! [String: String]
return phrases["\(name)"]!
}
func laneConfig(intersection: Intersection) -> String? {
guard let approachLanes = intersection.approachLanes else {
return ""
}
guard let useableApproachLanes = intersection.usableApproachLanes else {
return ""
}
// find lane configuration
var config = Array(repeating: "x", count: approachLanes.count)
for index in useableApproachLanes {
config[index] = "o"
}
// reduce lane configurations to common cases
var current = ""
return config.reduce("", {
(result: String?, lane: String) -> String? in
if (lane != current) {
current = lane
return result! + lane
} else {
return result
}
})
}
func directionFromDegree(degree: Int?) -> String {
guard let degree = degree else {
// step had no bearing_after degree, ignoring
return ""
}
// fetch locatized compass directions strings
let directions = constants["direction"] as! [String: String]
// Transform degrees to their translated compass direction
switch degree {
case 340...360, 0...20:
return directions["north"]!
case 20..<70:
return directions["northeast"]!
case 70...110:
return directions["east"]!
case 110..<160:
return directions["southeast"]!
case 160...200:
return directions["south"]!
case 200..<250:
return directions["southwest"]!
case 250...290:
return directions["west"]!
case 290..<340:
return directions["northwest"]!
default:
return "";
}
}
typealias InstructionsByToken = [String: String]
typealias InstructionsByModifier = [String: InstructionsByToken]
override public func string(for obj: Any?) -> String? {
return string(for: obj, legIndex: nil, numberOfLegs: nil, roadClasses: nil, modifyValueByKey: nil)
}
/**
Creates an instruction given a step and options.
- parameter step: The step to format.
- parameter legIndex: Current leg index the user is currently on.
- parameter numberOfLegs: Total number of `RouteLeg` for the given `Route`.
- parameter roadClasses: Option set representing the classes of road for the `RouteStep`.
- parameter modifyValueByKey: Allows for mutating the instruction at given parts of the instruction.
- returns: An instruction as a `String`.
*/
public func string(for obj: Any?, legIndex: Int?, numberOfLegs: Int?, roadClasses: RoadClasses? = RoadClasses([]), modifyValueByKey: ((TokenType, String) -> String)?) -> String? {
guard let obj = obj else {
return nil
}
var modifyAttributedValueByKey: ((TokenType, NSAttributedString) -> NSAttributedString)?
if let modifyValueByKey = modifyValueByKey {
modifyAttributedValueByKey = { (key: TokenType, value: NSAttributedString) -> NSAttributedString in
return NSAttributedString(string: modifyValueByKey(key, value.string))
}
}
return attributedString(for: obj, legIndex: legIndex, numberOfLegs: numberOfLegs, roadClasses: roadClasses, modifyValueByKey: modifyAttributedValueByKey)?.string
}
/**
Creates an instruction as an attributed string given a step and options.
- parameter obj: The step to format.
- parameter attrs: The default attributes to use for the returned attributed string.
- parameter legIndex: Current leg index the user is currently on.
- parameter numberOfLegs: Total number of `RouteLeg` for the given `Route`.
- parameter roadClasses: Option set representing the classes of road for the `RouteStep`.
- parameter modifyValueByKey: Allows for mutating the instruction at given parts of the instruction.
- returns: An instruction as an `NSAttributedString`.
*/
public func attributedString(for obj: Any, withDefaultAttributes attrs: [String : Any]? = nil, legIndex: Int?, numberOfLegs: Int?, roadClasses: RoadClasses? = RoadClasses([]), modifyValueByKey: ((TokenType, NSAttributedString) -> NSAttributedString)?) -> NSAttributedString? {
guard let step = obj as? RouteStep else {
return nil
}
var type = step.maneuverType ?? .turn
let modifier = step.maneuverDirection?.description
let mode = step.transportType
if type != .depart && type != .arrive && modifier == nil {
return nil
}
if instructions[type.description] == nil {
// OSRM specification assumes turn types can be added without
// major version changes. Unknown types are to be treated as
// type `turn` by clients
type = .turn
}
var instructionObject: InstructionsByToken
var rotaryName = ""
var wayName: NSAttributedString
switch type {
case .takeRotary, .takeRoundabout:
// Special instruction types have an intermediate level keyed to “default”.
let instructionsByModifier = instructions[type.description] as! [String: InstructionsByModifier]
let defaultInstructions = instructionsByModifier["default"]!
wayName = NSAttributedString(string: step.exitNames?.first ?? "", attributes: attrs)
if let _rotaryName = step.names?.first, let _ = step.exitIndex, let obj = defaultInstructions["name_exit"] {
instructionObject = obj
rotaryName = _rotaryName
} else if let _rotaryName = step.names?.first, let obj = defaultInstructions["name"] {
instructionObject = obj
rotaryName = _rotaryName
} else if let _ = step.exitIndex, let obj = defaultInstructions["exit"] {
instructionObject = obj
} else {
instructionObject = defaultInstructions["default"]!
}
default:
var typeInstructions = instructions[type.description] as! InstructionsByModifier
let modesInstructions = instructions["modes"] as? InstructionsByModifier
if let mode = mode, let modesInstructions = modesInstructions, let modesInstruction = modesInstructions[mode.description] {
instructionObject = modesInstruction
} else if let modifier = modifier, let typeInstruction = typeInstructions[modifier] {
instructionObject = typeInstruction
} else {
instructionObject = typeInstructions["default"]!
}
// Set wayName
let name = step.names?.first
let ref = step.codes?.first
let isMotorway = roadClasses?.contains(.motorway) ?? false
if let name = name, let ref = ref, name != ref, !isMotorway {
let attributedName = NSAttributedString(string: name, attributes: attrs)
let attributedRef = NSAttributedString(string: ref, attributes: attrs)
let phrase = NSAttributedString(string: self.phrase(named: .nameWithCode), attributes: attrs)
wayName = phrase.replacingTokens(using: { (tokenType, variant) -> NSAttributedString in
var replacement: NSAttributedString
switch tokenType {
case .wayName:
replacement = attributedName
case .code:
replacement = attributedRef
default:
fatalError("Unexpected token type \(tokenType) in name-and-ref phrase")
}
if let variant = variant {
replacement = replacement.inflected(into: variant, version: version)
}
return modifyValueByKey?(tokenType, replacement) ?? replacement
})
} else if let ref = ref, isMotorway, let decimalRange = ref.rangeOfCharacter(from: .decimalDigits), !decimalRange.isEmpty {
let attributedRef = NSAttributedString(string: ref, attributes: attrs)
if let modifyValueByKey = modifyValueByKey {
wayName = modifyValueByKey(.code, attributedRef)
} else {
wayName = attributedRef
}
} else if name == nil, let ref = ref {
let attributedRef = NSAttributedString(string: ref, attributes: attrs)
if let modifyValueByKey = modifyValueByKey {
wayName = modifyValueByKey(.code, attributedRef)
} else {
wayName = attributedRef
}
} else if let name = name {
let attributedName = NSAttributedString(string: name, attributes: attrs)
if let modifyValueByKey = modifyValueByKey {
wayName = modifyValueByKey(.wayName, attributedName)
} else {
wayName = attributedName
}
} else {
wayName = NSAttributedString()
}
}
// Special case handling
var laneInstruction: String?
switch type {
case .useLane:
var laneConfig: String?
if let intersection = step.intersections?.first {
laneConfig = self.laneConfig(intersection: intersection)
}
let laneInstructions = constants["lanes"] as! [String: String]
laneInstruction = laneInstructions[laneConfig ?? ""]
if laneInstruction == nil {
// Lane configuration is not found, default to continue
let useLaneConfiguration = instructions["use lane"] as! InstructionsByModifier
instructionObject = useLaneConfiguration["no_lanes"]!
}
default:
break
}
// Decide which instruction string to use
// Destination takes precedence over name
var instruction: String
if let _ = step.destinations ?? step.destinationCodes, let _ = step.exitCodes?.first, let obj = instructionObject["exit_destination"] {
instruction = obj
} else if let _ = step.destinations ?? step.destinationCodes, let obj = instructionObject["destination"] {
instruction = obj
} else if let _ = step.exitCodes?.first, let obj = instructionObject["exit"] {
instruction = obj
} else if !wayName.string.isEmpty, let obj = instructionObject["name"] {
instruction = obj
} else {
instruction = instructionObject["default"]!
}
// Prepare token replacements
var nthWaypoint: String? = nil
if let legIndex = legIndex, let numberOfLegs = numberOfLegs, legIndex != numberOfLegs - 1 {
nthWaypoint = ordinalFormatter.string(from: (legIndex + 1) as NSNumber)
}
let exitCode = step.exitCodes?.first ?? ""
let destination = [step.destinationCodes, step.destinations].flatMap { $0?.first }.joined(separator: ": ")
var exitOrdinal: String = ""
if let exitIndex = step.exitIndex, exitIndex <= 10 {
exitOrdinal = ordinalFormatter.string(from: exitIndex as NSNumber)!
}
let modifierConstants = constants["modifier"] as! [String: String]
let modifierConstant = modifierConstants[modifier ?? "straight"]!
var bearing: Int? = nil
if step.finalHeading != nil { bearing = Int(step.finalHeading! as Double) }
// Replace tokens
let result = NSAttributedString(string: instruction, attributes: attrs).replacingTokens { (tokenType, variant) -> NSAttributedString in
var replacement: String
switch tokenType {
case .code: replacement = step.codes?.first ?? ""
case .wayName: replacement = "" // ignored
case .destination: replacement = destination
case .exitCode: replacement = exitCode
case .exitIndex: replacement = exitOrdinal
case .rotaryName: replacement = rotaryName
case .laneInstruction: replacement = laneInstruction ?? ""
case .modifier: replacement = modifierConstant
case .direction: replacement = directionFromDegree(degree: bearing)
case .wayPoint: replacement = nthWaypoint ?? ""
case .firstInstruction, .secondInstruction, .distance:
fatalError("Unexpected token type \(tokenType) in individual instruction")
}
if tokenType == .wayName {
return wayName // already modified above
} else {
if let variant = variant {
replacement = replacement.inflected(into: variant, version: version)
}
let attributedReplacement = NSAttributedString(string: replacement, attributes: attrs)
return modifyValueByKey?(tokenType, attributedReplacement) ?? attributedReplacement
}
}
return result
}
override public func getObjectValue(_ obj: AutoreleasingUnsafeMutablePointer<AnyObject?>?, for string: String, errorDescription error: AutoreleasingUnsafeMutablePointer<NSString?>?) -> Bool {
return false
}
}