forked from github/CopilotForXcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuiltinExtensionConversationServiceProvider.swift
More file actions
160 lines (136 loc) · 5.84 KB
/
BuiltinExtensionConversationServiceProvider.swift
File metadata and controls
160 lines (136 loc) · 5.84 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
import ConversationServiceProvider
import CopilotForXcodeKit
import Foundation
import Logger
import XcodeInspector
import Workspace
public final class BuiltinExtensionConversationServiceProvider<
T: BuiltinExtension
>: ConversationServiceProvider {
private let extensionManager: BuiltinExtensionManager
public init(
extension: T.Type,
extensionManager: BuiltinExtensionManager = .shared
) {
self.extensionManager = extensionManager
}
var conversationService: ConversationServiceType? {
extensionManager.extensions.first { $0 is T }?.conversationService
}
private func activeWorkspace(_ workspaceURL: URL? = nil) async -> WorkspaceInfo? {
if let workspaceURL = workspaceURL {
if let workspaceBinding = WorkspaceFile.getWorkspaceInfo(workspaceURL: workspaceURL) {
return workspaceBinding
}
}
guard let workspaceURL = await XcodeInspector.shared.safe.realtimeActiveWorkspaceURL,
let projectURL = await XcodeInspector.shared.safe.realtimeActiveProjectURL
else { return nil }
return WorkspaceInfo(workspaceURL: workspaceURL, projectURL: projectURL)
}
struct BuiltinExtensionChatServiceNotFoundError: Error, LocalizedError {
var errorDescription: String? {
"Builtin chat service not found."
}
}
public func createConversation(_ request: ConversationRequest, workspaceURL: URL?) async throws {
guard let conversationService else {
Logger.service.error("Builtin chat service not found.")
return
}
guard let workspaceInfo = await activeWorkspace(workspaceURL) else {
Logger.service.error("Could not get active workspace info")
return
}
try await conversationService.createConversation(request, workspace: workspaceInfo)
}
public func createTurn(with conversationId: String, request: ConversationRequest, workspaceURL: URL?) async throws {
guard let conversationService else {
Logger.service.error("Builtin chat service not found.")
return
}
guard let workspaceInfo = await activeWorkspace(workspaceURL) else {
Logger.service.error("Could not get active workspace info")
return
}
try await conversationService
.createTurn(
with: conversationId,
request: request,
workspace: workspaceInfo
)
}
public func stopReceivingMessage(_ workDoneToken: String, workspaceURL: URL?) async throws {
guard let conversationService else {
Logger.service.error("Builtin chat service not found.")
return
}
guard let workspaceInfo = await activeWorkspace(workspaceURL) else {
Logger.service.error("Could not get active workspace info")
return
}
try await conversationService.cancelProgress(workDoneToken, workspace: workspaceInfo)
}
public func rateConversation(turnId: String, rating: ConversationRating, workspaceURL: URL?) async throws {
guard let conversationService else {
Logger.service.error("Builtin chat service not found.")
return
}
guard let workspaceInfo = await activeWorkspace(workspaceURL) else {
Logger.service.error("Could not get active workspace info")
return
}
try? await conversationService.rateConversation(turnId: turnId, rating: rating, workspace: workspaceInfo)
}
public func copyCode(_ request: CopyCodeRequest, workspaceURL: URL?) async throws {
guard let conversationService else {
Logger.service.error("Builtin chat service not found.")
return
}
guard let workspaceInfo = await activeWorkspace(workspaceURL) else {
Logger.service.error("Could not get active workspace info")
return
}
try? await conversationService.copyCode(request: request, workspace: workspaceInfo)
}
public func templates() async throws -> [ChatTemplate]? {
guard let conversationService else {
Logger.service.error("Builtin chat service not found.")
return nil
}
guard let workspaceInfo = await activeWorkspace() else {
Logger.service.error("Could not get active workspace info")
return nil
}
return (try? await conversationService.templates(workspace: workspaceInfo))
}
public func models() async throws -> [CopilotModel]? {
guard let conversationService else {
Logger.service.error("Builtin chat service not found.")
return nil
}
guard let workspaceInfo = await activeWorkspace() else {
Logger.service.error("Could not get active workspace info")
return nil
}
return (try? await conversationService.models(workspace: workspaceInfo))
}
public func notifyDidChangeWatchedFiles(_ event: DidChangeWatchedFilesEvent, workspace: WorkspaceInfo) async throws {
guard let conversationService else {
Logger.service.error("Builtin chat service not found.")
return
}
try? await conversationService.notifyDidChangeWatchedFiles(event, workspace: workspace)
}
public func agents() async throws -> [ChatAgent]? {
guard let conversationService else {
Logger.service.error("Builtin chat service not found.")
return nil
}
guard let workspaceInfo = await activeWorkspace() else {
Logger.service.error("Could not get active workspace info")
return nil
}
return (try? await conversationService.agents(workspace: workspaceInfo))
}
}