forked from intitni/CopilotForXcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathXcodeInspector.swift
More file actions
267 lines (236 loc) · 11 KB
/
XcodeInspector.swift
File metadata and controls
267 lines (236 loc) · 11 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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
import AppKit
import AsyncAlgorithms
import AXExtension
import AXNotificationStream
import Combine
import Foundation
import Logger
import Preferences
import SuggestionModel
public final class XcodeInspector: ObservableObject {
public static let shared = XcodeInspector()
private var cancellable = Set<AnyCancellable>()
private var activeXcodeObservations = Set<Task<Void, Error>>()
private var appChangeObservations = Set<Task<Void, Never>>()
private var activeXcodeCancellable = Set<AnyCancellable>()
@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?
public var focusedEditorContent: EditorInformation? {
guard let documentURL = XcodeInspector.shared.realtimeActiveDocumentURL,
let workspaceURL = XcodeInspector.shared.realtimeActiveWorkspaceURL,
let projectURL = XcodeInspector.shared.activeProjectRootURL
else { return nil }
let editorContent = XcodeInspector.shared.focusedEditor?.content
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() {
restart()
}
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 { [weak self] in
guard let self else { return }
if let activeXcode {
await 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.runningApplication.processIdentifier == app.processIdentifier
}) {
await MainActor.run {
self.setActiveXcode(existed)
}
} else {
let new = XcodeAppInstanceInspector(runningApplication: app)
await MainActor.run {
self.xcodes.append(new)
self.setActiveXcode(new)
}
}
} else {
let appInspector = AppInstanceInspector(runningApplication: app)
await MainActor.run {
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
await MainActor.run {
self.xcodes.removeAll {
$0.runningApplication.processIdentifier == processIdentifier
}
if self.latestActiveXcode?.runningApplication
.processIdentifier == processIdentifier
{
self.latestActiveXcode = nil
}
if let activeXcode = self.xcodes.first(where: \.isActive) {
self.setActiveXcode(activeXcode)
}
}
}
}
}
}
}
appChangeObservations.insert(appChangeTask)
}
@MainActor
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 = { [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 { @MainActor in
let notification = AXNotificationStream(
app: xcode.runningApplication,
notificationNames: kAXFocusedUIElementChangedNotification
)
for await _ in notification {
try Task.checkCancellation()
setFocusedElement()
}
}
activeXcodeObservations.insert(focusedElementChanged)
xcode.$completionPanel.receive(on: DispatchQueue.main).sink { [weak self] element in
self?.completionPanel = element
}.store(in: &activeXcodeCancellable)
xcode.$documentURL.receive(on: DispatchQueue.main).sink { [weak self] url in
self?.activeDocumentURL = url
}.store(in: &activeXcodeCancellable)
xcode.$workspaceURL.receive(on: DispatchQueue.main).sink { [weak self] url in
self?.activeWorkspaceURL = url
}.store(in: &activeXcodeCancellable)
xcode.$projectRootURL.receive(on: DispatchQueue.main).sink { [weak self] url in
self?.activeProjectRootURL = url
}.store(in: &activeXcodeCancellable)
xcode.$focusedWindow.receive(on: DispatchQueue.main).sink { [weak self] window in
self?.focusedWindow = window
}.store(in: &activeXcodeCancellable)
}
}