-
-
Notifications
You must be signed in to change notification settings - Fork 386
/
XcodeInspector.swift
404 lines (357 loc) · 16.2 KB
/
XcodeInspector.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
import AppKit
import AsyncAlgorithms
import AXExtension
import Combine
import Foundation
import Logger
import Preferences
import SuggestionBasic
import Toast
public extension Notification.Name {
static let accessibilityAPIMalfunctioning = Notification.Name("accessibilityAPIMalfunctioning")
}
@globalActor
public enum XcodeInspectorActor: GlobalActor {
public actor Actor {}
public static let shared = Actor()
}
#warning("TODO: Consider rewriting it with Swift Observation")
public final class XcodeInspector: ObservableObject {
public static let shared = XcodeInspector()
@XcodeInspectorActor
@dynamicMemberLookup
public class Safe {
var inspector: XcodeInspector { .shared }
nonisolated init() {}
public subscript<T>(dynamicMember member: KeyPath<XcodeInspector, T>) -> T {
inspector[keyPath: member]
}
}
private var toast: ToastController { ToastControllerDependencyKey.liveValue }
private var cancellable = Set<AnyCancellable>()
private var activeXcodeObservations = Set<Task<Void, Error>>()
private var appChangeObservations = Set<Task<Void, Never>>()
private var activeXcodeCancellable = Set<AnyCancellable>()
#warning("TODO: Find a good way to make XcodeInspector thread safe!")
public var safe = Safe()
@Published public fileprivate(set) var activeApplication: AppInstanceInspector?
@Published public fileprivate(set) var previousActiveApplication: AppInstanceInspector?
@Published public fileprivate(set) var activeXcode: XcodeAppInstanceInspector?
@Published public fileprivate(set) var latestActiveXcode: XcodeAppInstanceInspector?
@Published public fileprivate(set) var xcodes: [XcodeAppInstanceInspector] = []
@Published public fileprivate(set) var activeProjectRootURL: URL? = nil
@Published public fileprivate(set) var activeDocumentURL: URL? = nil
@Published public fileprivate(set) var activeWorkspaceURL: URL? = nil
@Published public fileprivate(set) var focusedWindow: XcodeWindowInspector?
@Published public fileprivate(set) var focusedEditor: SourceEditor?
@Published public fileprivate(set) var focusedElement: AXUIElement?
@Published public fileprivate(set) var completionPanel: AXUIElement?
/// Get the content of the source editor.
///
/// - note: This method is expensive. It needs to convert index based ranges to line based
/// ranges.
@XcodeInspectorActor
public func getFocusedEditorContent() async -> EditorInformation? {
guard let documentURL = realtimeActiveDocumentURL,
let workspaceURL = realtimeActiveWorkspaceURL,
let projectURL = activeProjectRootURL
else { return nil }
let editorContent = focusedEditor?.getContent()
let language = languageIdentifierFromFileURL(documentURL)
let relativePath = documentURL.path.replacingOccurrences(of: projectURL.path, with: "")
if let editorContent, let range = editorContent.selections.first {
let (selectedContent, selectedLines) = EditorInformation.code(
in: editorContent.lines,
inside: range
)
return .init(
editorContent: editorContent,
selectedContent: selectedContent,
selectedLines: selectedLines,
documentURL: documentURL,
workspaceURL: workspaceURL,
projectRootURL: projectURL,
relativePath: relativePath,
language: language
)
}
return .init(
editorContent: editorContent,
selectedContent: "",
selectedLines: [],
documentURL: documentURL,
workspaceURL: workspaceURL,
projectRootURL: projectURL,
relativePath: relativePath,
language: language
)
}
public var realtimeActiveDocumentURL: URL? {
latestActiveXcode?.realtimeDocumentURL ?? activeDocumentURL
}
public var realtimeActiveWorkspaceURL: URL? {
latestActiveXcode?.realtimeWorkspaceURL ?? activeWorkspaceURL
}
public var realtimeActiveProjectURL: URL? {
latestActiveXcode?.realtimeProjectURL ?? activeProjectRootURL
}
init() {
AXUIElement.setGlobalMessagingTimeout(3)
Task { @XcodeInspectorActor in
restart()
}
}
@XcodeInspectorActor
public func restart(cleanUp: Bool = false) {
if cleanUp {
activeXcodeObservations.forEach { $0.cancel() }
activeXcodeObservations.removeAll()
activeXcodeCancellable.forEach { $0.cancel() }
activeXcodeCancellable.removeAll()
activeXcode = nil
latestActiveXcode = nil
activeApplication = nil
activeProjectRootURL = nil
activeDocumentURL = nil
activeWorkspaceURL = nil
focusedWindow = nil
focusedEditor = nil
focusedElement = nil
completionPanel = nil
}
let runningApplications = NSWorkspace.shared.runningApplications
xcodes = runningApplications
.filter { $0.isXcode }
.map(XcodeAppInstanceInspector.init(runningApplication:))
let activeXcode = xcodes.first(where: \.isActive)
latestActiveXcode = activeXcode ?? xcodes.first
activeApplication = activeXcode ?? runningApplications
.first(where: \.isActive)
.map(AppInstanceInspector.init(runningApplication:))
appChangeObservations.forEach { $0.cancel() }
appChangeObservations.removeAll()
let appChangeTask = Task(priority: .utility) { [weak self] in
guard let self else { return }
if let activeXcode {
setActiveXcode(activeXcode)
}
await withThrowingTaskGroup(of: Void.self) { [weak self] group in
group.addTask { [weak self] in // Did activate app
let sequence = NSWorkspace.shared.notificationCenter
.notifications(named: NSWorkspace.didActivateApplicationNotification)
for await notification in sequence {
try Task.checkCancellation()
guard let self else { return }
guard let app = notification
.userInfo?[NSWorkspace.applicationUserInfoKey] as? NSRunningApplication
else { continue }
if app.isXcode {
if let existed = xcodes.first(where: {
$0.processIdentifier == app.processIdentifier && !$0.isTerminated
}) {
Task { @XcodeInspectorActor in
self.setActiveXcode(existed)
}
} else {
let new = XcodeAppInstanceInspector(runningApplication: app)
Task { @XcodeInspectorActor in
self.xcodes.append(new)
self.setActiveXcode(new)
}
}
} else {
let appInspector = AppInstanceInspector(runningApplication: app)
Task { @XcodeInspectorActor in
self.previousActiveApplication = self.activeApplication
self.activeApplication = appInspector
}
}
}
}
group.addTask { [weak self] in // Did terminate app
let sequence = NSWorkspace.shared.notificationCenter
.notifications(named: NSWorkspace.didTerminateApplicationNotification)
for await notification in sequence {
try Task.checkCancellation()
guard let self else { return }
guard let app = notification
.userInfo?[NSWorkspace.applicationUserInfoKey] as? NSRunningApplication
else { continue }
if app.isXcode {
let processIdentifier = app.processIdentifier
Task { @XcodeInspectorActor in
self.xcodes.removeAll {
$0.processIdentifier == processIdentifier || $0.isTerminated
}
if self.latestActiveXcode?.runningApplication
.processIdentifier == processIdentifier
{
self.latestActiveXcode = nil
}
if let activeXcode = self.xcodes.first(where: \.isActive) {
self.setActiveXcode(activeXcode)
}
}
}
}
}
if UserDefaults.shared
.value(for: \.restartXcodeInspectorIfAccessibilityAPIIsMalfunctioning)
{
group.addTask { [weak self] in
while true {
guard let self else { return }
if UserDefaults.shared.value(
for: \.restartXcodeInspectorIfAccessibilityAPIIsMalfunctioningNoTimer
) {
return
}
try await Task.sleep(nanoseconds: 10_000_000_000)
Task { @XcodeInspectorActor in
self.checkForAccessibilityMalfunction("Timer")
}
}
}
}
group.addTask { [weak self] in // malfunctioning
let sequence = NotificationCenter.default
.notifications(named: .accessibilityAPIMalfunctioning)
for await notification in sequence {
try Task.checkCancellation()
guard let self else { return }
await self
.recoverFromAccessibilityMalfunctioning(notification.object as? String)
}
}
}
}
appChangeObservations.insert(appChangeTask)
}
public func reactivateObservationsToXcode() {
Task { @XcodeInspectorActor in
if let activeXcode {
setActiveXcode(activeXcode)
activeXcode.observeAXNotifications()
}
}
}
@XcodeInspectorActor
private func setActiveXcode(_ xcode: XcodeAppInstanceInspector) {
previousActiveApplication = activeApplication
activeApplication = xcode
xcode.refresh()
for task in activeXcodeObservations { task.cancel() }
for cancellable in activeXcodeCancellable { cancellable.cancel() }
activeXcodeObservations.removeAll()
activeXcodeCancellable.removeAll()
activeXcode = xcode
latestActiveXcode = xcode
activeDocumentURL = xcode.documentURL
focusedWindow = xcode.focusedWindow
completionPanel = xcode.completionPanel
activeProjectRootURL = xcode.projectRootURL
activeWorkspaceURL = xcode.workspaceURL
focusedWindow = xcode.focusedWindow
let setFocusedElement = { @XcodeInspectorActor [weak self] in
guard let self else { return }
focusedElement = xcode.appElement.focusedElement
if let editorElement = focusedElement, editorElement.isSourceEditor {
focusedEditor = .init(
runningApplication: xcode.runningApplication,
element: editorElement
)
} else if let element = focusedElement,
let editorElement = element.firstParent(where: \.isSourceEditor)
{
focusedEditor = .init(
runningApplication: xcode.runningApplication,
element: editorElement
)
} else {
focusedEditor = nil
}
}
setFocusedElement()
let focusedElementChanged = Task { @XcodeInspectorActor in
for await notification in await xcode.axNotifications.notifications() {
if notification.kind == .focusedUIElementChanged {
try Task.checkCancellation()
setFocusedElement()
}
}
}
activeXcodeObservations.insert(focusedElementChanged)
if UserDefaults.shared
.value(for: \.restartXcodeInspectorIfAccessibilityAPIIsMalfunctioning)
{
let malfunctionCheck = Task { @XcodeInspectorActor [weak self] in
if #available(macOS 13.0, *) {
let notifications = await xcode.axNotifications.notifications().filter {
$0.kind == .uiElementDestroyed
}.debounce(for: .milliseconds(1000))
for await _ in notifications {
guard let self else { return }
try Task.checkCancellation()
self.checkForAccessibilityMalfunction("Element Destroyed")
}
}
}
activeXcodeObservations.insert(malfunctionCheck)
checkForAccessibilityMalfunction("Reactivate Xcode")
}
xcode.$completionPanel.sink { [weak self] element in
Task { @XcodeInspectorActor in self?.completionPanel = element }
}.store(in: &activeXcodeCancellable)
xcode.$documentURL.sink { [weak self] url in
Task { @XcodeInspectorActor in self?.activeDocumentURL = url }
}.store(in: &activeXcodeCancellable)
xcode.$workspaceURL.sink { [weak self] url in
Task { @XcodeInspectorActor in self?.activeWorkspaceURL = url }
}.store(in: &activeXcodeCancellable)
xcode.$projectRootURL.sink { [weak self] url in
Task { @XcodeInspectorActor in self?.activeProjectRootURL = url }
}.store(in: &activeXcodeCancellable)
xcode.$focusedWindow.sink { [weak self] window in
Task { @XcodeInspectorActor in self?.focusedWindow = window }
}.store(in: &activeXcodeCancellable)
}
private var lastRecoveryFromAccessibilityMalfunctioningTimeStamp = Date()
@XcodeInspectorActor
private func checkForAccessibilityMalfunction(_ source: String) {
guard Date().timeIntervalSince(lastRecoveryFromAccessibilityMalfunctioningTimeStamp) > 5
else { return }
if let editor = focusedEditor, !editor.element.isSourceEditor {
NotificationCenter.default.post(
name: .accessibilityAPIMalfunctioning,
object: "Source Editor Element Corrupted: \(source)"
)
} else if let element = activeXcode?.appElement.focusedElement {
if element.description != focusedElement?.description ||
element.role != focusedElement?.role
{
NotificationCenter.default.post(
name: .accessibilityAPIMalfunctioning,
object: "Element Inconsistency: \(source)"
)
}
}
}
@XcodeInspectorActor
private func recoverFromAccessibilityMalfunctioning(_ source: String?) {
let message = """
Accessibility API malfunction detected: \
\(source ?? "").
Resetting active Xcode.
"""
if UserDefaults.shared.value(for: \.toastForTheReasonWhyXcodeInspectorNeedsToBeRestarted) {
toast.toast(content: message, type: .warning)
} else {
Logger.service.info(message)
}
if let activeXcode {
lastRecoveryFromAccessibilityMalfunctioningTimeStamp = Date()
setActiveXcode(activeXcode)
activeXcode.observeAXNotifications()
}
}
}