-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathXcodeWindowInspector.swift
More file actions
220 lines (197 loc) · 8.12 KB
/
XcodeWindowInspector.swift
File metadata and controls
220 lines (197 loc) · 8.12 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
import AppKit
import AsyncPassthroughSubject
import AXExtension
import Combine
import Foundation
import Logger
public class XcodeWindowInspector: ObservableObject {
public let uiElement: AXUIElement
init(uiElement: AXUIElement) {
self.uiElement = uiElement
uiElement.setMessagingTimeout(2)
}
}
public final class WorkspaceXcodeWindowInspector: XcodeWindowInspector {
let app: NSRunningApplication
@Published public internal(set) var documentURL: URL = .init(fileURLWithPath: "/")
@Published public internal(set) var workspaceURL: URL = .init(fileURLWithPath: "/")
@Published public internal(set) var projectRootURL: URL = .init(fileURLWithPath: "/")
private var focusedElementChangedTask: Task<Void, Error>?
public func refresh() {
Task { @XcodeInspectorActor in updateURLs() }
}
public init(
app: NSRunningApplication,
uiElement: AXUIElement,
axNotifications: AsyncPassthroughSubject<XcodeAppInstanceInspector.AXNotification>
) {
self.app = app
super.init(uiElement: uiElement)
focusedElementChangedTask = Task { [weak self, axNotifications] in
await self?.updateURLs()
await withThrowingTaskGroup(of: Void.self) { [weak self] group in
group.addTask { [weak self] in
// prevent that documentURL may not be available yet
try await Task.sleep(nanoseconds: 500_000_000)
if self?.documentURL == .init(fileURLWithPath: "/") {
await self?.updateURLs()
}
}
group.addTask { [weak self] in
for await notification in await axNotifications.notifications() {
guard notification.kind == .focusedUIElementChanged
|| notification.kind == .titleChanged
else { continue }
guard let self else { return }
try Task.checkCancellation()
await Task.yield()
await self.updateURLs()
}
}
}
}
}
@XcodeInspectorActor
func updateURLs() {
let documentURL = Self.extractDocumentURL(windowElement: uiElement)
if let documentURL {
Task { @MainActor in
self.documentURL = documentURL
}
}
let workspaceURL = Self.extractWorkspaceURL(windowElement: uiElement)
if let workspaceURL {
Task { @MainActor in
self.workspaceURL = workspaceURL
}
}
let projectURL = Self.extractProjectURL(
workspaceURL: workspaceURL,
documentURL: documentURL
)
if let projectURL {
Task { @MainActor in
self.projectRootURL = projectURL
}
}
}
static func extractDocumentURL(
windowElement: AXUIElement
) -> URL? {
// fetch file path of the frontmost window of Xcode through Accessibility API.
let path = windowElement.document
if let path = path?.removingPercentEncoding {
let url = URL(
fileURLWithPath: path
.replacingOccurrences(of: "file://", with: "")
)
return adjustFileURL(url)
}
return nil
}
static func extractWorkspaceURL(
windowElement: AXUIElement
) -> URL? {
for child in windowElement.children {
if child.description.starts(with: "/"), child.description.count > 1 {
let path = child.description
let trimmedNewLine = path.trimmingCharacters(in: .newlines)
let url = URL(fileURLWithPath: trimmedNewLine)
return url
}
}
// Fallback: If no child has the workspace path in description,
// try to derive it from the window's document URL
if let documentURL = extractDocumentURL(windowElement: windowElement) {
if let workspaceURL = deriveWorkspaceFromDocumentURL(documentURL) {
return workspaceURL
}
}
return nil
}
static func deriveWorkspaceFromDocumentURL(_ documentURL: URL) -> URL? {
// Check if documentURL itself is already a workspace/project/playground
if documentURL.pathExtension == "xcworkspace" ||
documentURL.pathExtension == "xcodeproj" ||
documentURL.pathExtension == "playground" {
return documentURL
}
// Try to find .xcodeproj or .xcworkspace in parent directories
var currentURL = documentURL
while currentURL.pathComponents.count > 1 {
currentURL.deleteLastPathComponent()
// Check if current directory is a playground
if currentURL.pathExtension == "playground" {
return currentURL
}
// Check if this directory contains .xcodeproj or .xcworkspace
guard let contents = try? FileManager.default.contentsOfDirectory(atPath: currentURL.path) else {
continue
}
// Check for .playground, .xcworkspace, and .xcodeproj in a single pass
var foundPlaygroundURL: URL?
var foundWorkspaceURL: URL?
var foundProjectURL: URL?
for item in contents {
if foundPlaygroundURL == nil, item.hasSuffix(".playground") {
foundPlaygroundURL = currentURL.appendingPathComponent(item)
}
if foundWorkspaceURL == nil, item.hasSuffix(".xcworkspace") {
foundWorkspaceURL = currentURL.appendingPathComponent(item)
}
if foundProjectURL == nil, item.hasSuffix(".xcodeproj") {
foundProjectURL = currentURL.appendingPathComponent(item)
}
}
if let playgroundURL = foundPlaygroundURL {
return playgroundURL
}
if let workspaceURL = foundWorkspaceURL {
return workspaceURL
}
if let projectURL = foundProjectURL {
return projectURL
}
// Stop at the user's home directory or root
if currentURL.path == "/" || currentURL.path == NSHomeDirectory() {
break
}
}
return nil
}
public static func extractProjectURL(
workspaceURL: URL?,
documentURL: URL?
) -> URL? {
guard var currentURL = workspaceURL ?? documentURL else { return nil }
var firstDirectoryURL: URL?
var lastGitDirectoryURL: URL?
while currentURL.pathComponents.count > 1 {
defer { currentURL.deleteLastPathComponent() }
guard FileManager.default.fileIsDirectory(atPath: currentURL.path) else { continue }
guard currentURL.pathExtension != "xcodeproj" else { continue }
guard currentURL.pathExtension != "xcworkspace" else { continue }
guard currentURL.pathExtension != "playground" else { continue }
if firstDirectoryURL == nil { firstDirectoryURL = currentURL }
let gitURL = currentURL.appendingPathComponent(".git")
if FileManager.default.fileIsDirectory(atPath: gitURL.path) {
lastGitDirectoryURL = currentURL
} else if let text = try? String(contentsOf: gitURL) {
if !text.hasPrefix("gitdir: ../"), // it's not a sub module
text.range(of: "/.git/worktrees/") != nil // it's a git worktree
{
lastGitDirectoryURL = currentURL
}
}
}
return lastGitDirectoryURL ?? firstDirectoryURL ?? workspaceURL
}
static func adjustFileURL(_ url: URL) -> URL {
if url.pathExtension == "playground",
FileManager.default.fileIsDirectory(atPath: url.path)
{
return url.appendingPathComponent("Contents.swift")
}
return url
}
}