-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathFilespace.swift
More file actions
243 lines (205 loc) · 6.59 KB
/
Filespace.swift
File metadata and controls
243 lines (205 loc) · 6.59 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
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
import Dependencies
import Foundation
import SuggestionBasic
public protocol FilespacePropertyKey {
associatedtype Value
static func createDefaultValue() -> Value
}
public final class FilespacePropertyValues {
private var storage: [ObjectIdentifier: Any] = [:]
@WorkspaceActor
public subscript<K: FilespacePropertyKey>(_ key: K.Type) -> K.Value {
get {
if let value = storage[ObjectIdentifier(key)] as? K.Value {
return value
}
let value = key.createDefaultValue()
storage[ObjectIdentifier(key)] = value
return value
}
set {
storage[ObjectIdentifier(key)] = newValue
}
}
}
public struct FilespaceCodeMetadata: Equatable {
/// Stands for `Uniform Type Identifier`
public var uti: String?
public var tabSize: Int?
public var indentSize: Int?
public var usesTabsForIndentation: Bool?
public var lineEnding: String = "\n"
init(
uti: String? = nil,
tabSize: Int? = nil,
indentSize: Int? = nil,
usesTabsForIndentation: Bool? = nil,
lineEnding: String = "\n"
) {
self.uti = uti
self.tabSize = tabSize
self.indentSize = indentSize
self.usesTabsForIndentation = usesTabsForIndentation
self.lineEnding = lineEnding
}
public mutating func guessLineEnding(from text: String?) {
lineEnding = if let proposedEnding = text?.last {
if proposedEnding.isNewline {
String(proposedEnding)
} else {
"\n"
}
} else {
"\n"
}
}
}
@dynamicMemberLookup
public final class Filespace {
// MARK: Metadata
public let fileURL: URL
public private(set) var fileContent: String? = nil
public private(set) lazy var language: CodeLanguage = languageIdentifierFromFileURL(fileURL)
public var codeMetadata: FilespaceCodeMetadata = .init()
public var isTextReadable: Bool {
fileURL.pathExtension != "mlmodel"
}
// MARK: Suggestions
public private(set) var suggestionIndex: Int = 0
public internal(set) var suggestions: [CodeSuggestion] = [] {
didSet{ refreshUpdateTime() }
}
// Use Array for potential extensibility
public internal(set) var nesSuggestions: [CodeSuggestion] = [] {
didSet { refreshNESUpdateTime() }
}
public var presentingSuggestion: CodeSuggestion? {
guard suggestions.endIndex > suggestionIndex, suggestionIndex >= 0 else { return nil }
return suggestions[suggestionIndex]
}
public var presentingNESSuggestion: CodeSuggestion? {
// Currently, only one nes suggestion will exist there
return nesSuggestions.first
}
public private(set) var errorMessage: String = "" {
didSet { refreshUpdateTime() }
}
// MARK: Life Cycle
public var isExpired: Bool {
Environment.now().timeIntervalSince(lastUpdateTime) > 60 * 3
}
public var isNESExpired: Bool {
Environment.now().timeIntervalSince(lastNESUpdateTime) > 60 * 3
}
public private(set) var lastUpdateTime: Date = Environment.now()
public private(set) var lastNESUpdateTime: Date = Environment.now()
private var additionalProperties = FilespacePropertyValues()
let fileSaveWatcher: FileSaveWatcher
let onClose: (URL) -> Void
@WorkspaceActor
public private(set) var version: Int = 0
// MARK: Methods
deinit {
onClose(fileURL)
}
init(
fileURL: URL,
content: String,
onSave: @escaping (Filespace) -> Void,
onClose: @escaping (URL) -> Void
) {
self.fileURL = fileURL
self.fileContent = content
self.onClose = onClose
fileSaveWatcher = .init(fileURL: fileURL)
fileSaveWatcher.changeHandler = { [weak self] in
guard let self else { return }
// TODO: should distinguish code completion and NES?
onSave(self)
self.fileContent = try? String(contentsOf: self.fileURL)
}
}
@WorkspaceActor
public subscript<K>(
dynamicMember dynamicMember: WritableKeyPath<FilespacePropertyValues, K>
) -> K {
get { additionalProperties[keyPath: dynamicMember] }
set { additionalProperties[keyPath: dynamicMember] = newValue }
}
@WorkspaceActor
public func reset() {
suggestions = []
suggestionIndex = 0
}
@WorkspaceActor
public func resetNESSuggestion() {
nesSuggestions = []
}
@WorkspaceActor
public func updateSuggestionsWithSameSelection(_ suggestions: [CodeSuggestion]) {
self.suggestions = suggestions
suggestionIndex = suggestionIndex < suggestions.count ? suggestionIndex : 0
}
public func refreshUpdateTime() {
lastUpdateTime = Environment.now()
}
public func refreshNESUpdateTime() {
lastNESUpdateTime = Date.now
}
@WorkspaceActor
public func setSuggestions(_ suggestions: [CodeSuggestion]) {
self.suggestions = suggestions
suggestionIndex = 0
if !self.suggestions.isEmpty {
self.resetNESSuggestion()
}
}
@WorkspaceActor
public func setNESSuggestions(_ nesSuggestions: [CodeSuggestion]) {
// Only when there is no code completion suggestion, NES suggestion can be set
guard self.suggestions.isEmpty else { return }
self.nesSuggestions = nesSuggestions
}
@WorkspaceActor
public func nextSuggestion() {
suggestionIndex += 1
if suggestionIndex >= suggestions.endIndex {
suggestionIndex = 0
}
}
@WorkspaceActor
public func previousSuggestion() {
suggestionIndex -= 1
if suggestionIndex < 0 {
suggestionIndex = suggestions.endIndex - 1
}
}
@WorkspaceActor
public func bumpVersion() {
version += 1
}
@WorkspaceActor
public func setError(_ message: String) {
errorMessage = message
}
@WorkspaceActor
public func dismissError() {
errorMessage = ""
}
@WorkspaceActor
public func updateCodeMetadata(
uti: String,
tabSize: Int,
indentSize: Int,
usesTabsForIndentation: Bool
) {
self.codeMetadata.uti = uti
self.codeMetadata.tabSize = tabSize
self.codeMetadata.indentSize = indentSize
self.codeMetadata.usesTabsForIndentation = usesTabsForIndentation
}
@WorkspaceActor
public func setFileContent(_ content: String) {
fileContent = content
}
}