-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsession.cpp
More file actions
206 lines (173 loc) · 5.99 KB
/
session.cpp
File metadata and controls
206 lines (173 loc) · 5.99 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
// Copyright (c) 2025 Elias Bachaalany
// SPDX-License-Identifier: MIT
#include <copilot/client.hpp>
#include <copilot/session.hpp>
namespace copilot
{
// =============================================================================
// Constructor / Destructor
// =============================================================================
Session::Session(const std::string& session_id, Client* client,
const std::optional<std::string>& workspace_path)
: session_id_(session_id), client_(client), workspace_path_(workspace_path)
{
}
Session::~Session()
{
// Note: We don't automatically destroy the session on destruction
// because the user might want to resume it later.
// Call destroy() explicitly if you want to remove it from the server.
}
// =============================================================================
// Messaging
// =============================================================================
std::future<std::string> Session::send(MessageOptions options)
{
return std::async(
std::launch::async,
[this, options = std::move(options)]()
{
json params;
params["sessionId"] = session_id_;
params["prompt"] = options.prompt;
if (options.attachments.has_value())
params["attachments"] = *options.attachments;
if (options.mode.has_value())
params["mode"] = *options.mode;
auto response = client_->rpc_client()->invoke("session.send", params).get();
return response["messageId"].get<std::string>();
}
);
}
std::future<void> Session::abort()
{
return std::async(
std::launch::async,
[this]()
{
json params;
params["sessionId"] = session_id_;
client_->rpc_client()->invoke("session.abort", params).get();
}
);
}
std::future<std::vector<SessionEvent>> Session::get_messages()
{
return std::async(
std::launch::async,
[this]()
{
json params;
params["sessionId"] = session_id_;
auto response = client_->rpc_client()->invoke("session.getMessages", params).get();
std::vector<SessionEvent> events;
if (response.contains("events") && response["events"].is_array())
for (const auto& event_json : response["events"])
events.push_back(parse_session_event(event_json));
return events;
}
);
}
// =============================================================================
// Event Handling
// =============================================================================
Subscription Session::on(EventHandler handler)
{
std::lock_guard<std::mutex> lock(handlers_mutex_);
int id = next_handler_id_++;
event_handlers_.emplace_back(id, std::move(handler));
// Return subscription that removes this handler when destroyed
// Use weak_ptr to avoid UAF if Subscription outlives Session
std::weak_ptr<Session> weak_self = shared_from_this();
return Subscription(
[weak_self, id]()
{
if (auto self = weak_self.lock())
{
std::lock_guard<std::mutex> lock(self->handlers_mutex_);
self->event_handlers_.erase(
std::remove_if(
self->event_handlers_.begin(),
self->event_handlers_.end(),
[id](const auto& pair) { return pair.first == id; }
),
self->event_handlers_.end()
);
}
}
);
}
void Session::dispatch_event(const SessionEvent& event)
{
std::vector<EventHandler> handlers_copy;
{
std::lock_guard<std::mutex> lock(handlers_mutex_);
handlers_copy.reserve(event_handlers_.size());
for (const auto& [id, handler] : event_handlers_)
handlers_copy.push_back(handler);
}
for (const auto& handler : handlers_copy)
{
try
{
handler(event);
}
catch (...)
{
// Ignore handler exceptions to prevent one handler from
// breaking others
}
}
}
// =============================================================================
// Tool Management
// =============================================================================
void Session::register_tool(Tool tool)
{
std::lock_guard<std::mutex> lock(tools_mutex_);
tools_[tool.name] = std::move(tool);
}
void Session::register_tools(const std::vector<Tool>& tools)
{
std::lock_guard<std::mutex> lock(tools_mutex_);
for (const auto& tool : tools)
tools_[tool.name] = tool;
}
const Tool* Session::get_tool(const std::string& name) const
{
std::lock_guard<std::mutex> lock(tools_mutex_);
auto it = tools_.find(name);
return (it != tools_.end()) ? &it->second : nullptr;
}
// =============================================================================
// Permission Handling
// =============================================================================
void Session::register_permission_handler(PermissionHandler handler)
{
permission_handler_ = std::move(handler);
}
PermissionRequestResult Session::handle_permission_request(const PermissionRequest& request)
{
if (permission_handler_)
return permission_handler_(request);
// Default deny if no handler registered
PermissionRequestResult result;
result.kind = "denied-no-approval-rule-and-could-not-request-from-user";
return result;
}
// =============================================================================
// Lifecycle
// =============================================================================
std::future<void> Session::destroy()
{
return std::async(
std::launch::async,
[this]()
{
json params;
params["sessionId"] = session_id_;
client_->rpc_client()->invoke("session.destroy", params).get();
}
);
}
} // namespace copilot