forked from gnachman/iTerm2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRebaseLocalFile.swift
53 lines (49 loc) · 1.66 KB
/
RebaseLocalFile.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
//
// RebaseLocalFile.swift
// FileProvider
//
// Created by George Nachman on 6/11/22.
//
import Foundation
import FileProvider
func rebaseLocalFile(_ manager: NSFileProviderManager, path: String) async -> String {
return await logging("rebase local->remote \(path)") {
if !path.hasPrefix("/") {
log("path is relative, don't rebase")
return path
}
guard let root = try? await manager.getUserVisibleURL(for: NSFileProviderItemIdentifier.rootContainer) else {
log("can't get root, don't rebase")
return path
}
if !path.hasPrefix(root.path) {
log("path is not relative to root, don't rebase")
return path
}
let result = String(path.dropFirst(root.path.count))
log("root=\(root.path)")
log("result=\(result)")
return result
}
}
func rebaseRemoteFile(_ manager: NSFileProviderManager, path: String) async -> String {
return await logging("rebase remote->local \(path)") {
guard let root = try? await manager.getUserVisibleURL(for: NSFileProviderItemIdentifier.rootContainer) else {
log("can't get root, don't rebase")
return path
}
return rebaseRemoteFile(root, path: path)
}
}
func rebaseRemoteFile(_ root: URL, path: String) -> String {
return logging("rebaseRemoteFile(\(path))") {
if !path.hasPrefix("/") {
log("path is relative, don't rebase")
return path
}
let result = (root.path as NSString).appendingPathComponent(path)
log("root=\(root.path)")
log("result=\(result)")
return result
}
}