forked from 0xeb/copilot-sdk-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsession.cpp
More file actions
560 lines (486 loc) · 17 KB
/
Copy pathsession.cpp
File metadata and controls
560 lines (486 loc) · 17 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
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
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
// Copyright (c) 2025 Elias Bachaalany
// SPDX-License-Identifier: MIT
#include <copilot/client.hpp>
#include <copilot/rpc_methods.hpp>
#include <copilot/session.hpp>
#include <condition_variable>
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 = options;
params["sessionId"] = session_id_;
auto response = client_->rpc_client()->invoke(copilot::rpc::methods::kSessionSend, 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(copilot::rpc::methods::kSessionAbort, 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(copilot::rpc::methods::kSessionGetMessages, 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;
}
);
}
std::future<std::optional<SessionEvent>> Session::send_and_wait(
MessageOptions options,
std::chrono::seconds timeout)
{
return std::async(
std::launch::async,
[this, options = std::move(options), timeout]() -> std::optional<SessionEvent>
{
std::mutex mtx;
std::condition_variable cv;
bool done = false;
std::optional<SessionEvent> last_assistant_message;
std::optional<std::string> error_message;
// Subscribe to events
auto subscription = on(
[&](const SessionEvent& evt)
{
std::lock_guard<std::mutex> lock(mtx);
if (evt.type == SessionEventType::AssistantMessage)
{
last_assistant_message = evt;
}
else if (evt.type == SessionEventType::SessionIdle)
{
done = true;
cv.notify_one();
}
else if (evt.type == SessionEventType::SessionError)
{
if (auto* data = evt.try_as<SessionErrorData>())
error_message = data->message;
else
error_message = "Session error";
done = true;
cv.notify_one();
}
}
);
// Send the message
send(options).get();
// Wait for completion or timeout
{
std::unique_lock<std::mutex> lock(mtx);
if (!cv.wait_for(lock, timeout, [&] { return done; }))
{
throw std::runtime_error("Timeout waiting for session to become idle");
}
}
if (error_message.has_value())
{
throw std::runtime_error("Session error: " + *error_message);
}
return last_assistant_message;
}
);
}
// =============================================================================
// 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::register_persistent_event_handler(EventHandler handler)
{
auto subscription = on(std::move(handler));
std::lock_guard<std::mutex> lock(owned_event_subscriptions_mutex_);
owned_event_subscriptions_.push_back(std::move(subscription));
}
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;
}
// =============================================================================
// User Input Handling
// =============================================================================
void Session::register_user_input_handler(UserInputHandler handler)
{
std::lock_guard<std::mutex> lock(user_input_mutex_);
user_input_handler_ = std::move(handler);
}
UserInputResponse Session::handle_user_input_request(const UserInputRequest& request)
{
UserInputHandler handler;
{
std::lock_guard<std::mutex> lock(user_input_mutex_);
handler = user_input_handler_;
}
if (!handler)
throw std::runtime_error("No user input handler registered");
UserInputInvocation invocation;
invocation.session_id = session_id_;
return handler(request, invocation);
}
// =============================================================================
// Elicitation Handling
// =============================================================================
void Session::register_elicitation_handler(ElicitationHandler handler)
{
std::lock_guard<std::mutex> lock(elicitation_mutex_);
elicitation_handler_ = std::move(handler);
}
ElicitationResult Session::handle_elicitation_request(const ElicitationContext& context)
{
ElicitationHandler handler;
{
std::lock_guard<std::mutex> lock(elicitation_mutex_);
handler = elicitation_handler_;
}
if (!handler)
return ElicitationResult{ElicitationAction::Cancel};
return handler(context);
}
// =============================================================================
// Exit Plan Mode Handling
// =============================================================================
void Session::register_exit_plan_mode_handler(ExitPlanModeHandler handler)
{
std::lock_guard<std::mutex> lock(exit_plan_mode_mutex_);
exit_plan_mode_handler_ = std::move(handler);
}
ExitPlanModeResult Session::handle_exit_plan_mode_request(const ExitPlanModeRequest& request)
{
ExitPlanModeHandler handler;
{
std::lock_guard<std::mutex> lock(exit_plan_mode_mutex_);
handler = exit_plan_mode_handler_;
}
if (!handler)
return ExitPlanModeResult{};
ExitPlanModeInvocation invocation;
invocation.session_id = session_id_;
return handler(request, invocation);
}
// =============================================================================
// Auto Mode Switch Handling
// =============================================================================
void Session::register_auto_mode_switch_handler(AutoModeSwitchHandler handler)
{
std::lock_guard<std::mutex> lock(auto_mode_switch_mutex_);
auto_mode_switch_handler_ = std::move(handler);
}
AutoModeSwitchResponse Session::handle_auto_mode_switch_request(const AutoModeSwitchRequest& request)
{
AutoModeSwitchHandler handler;
{
std::lock_guard<std::mutex> lock(auto_mode_switch_mutex_);
handler = auto_mode_switch_handler_;
}
if (!handler)
return AutoModeSwitchResponse::No;
AutoModeSwitchInvocation invocation;
invocation.session_id = session_id_;
return handler(request, invocation);
}
// =============================================================================
// Hooks
// =============================================================================
void Session::register_hooks(SessionHooks hooks)
{
std::lock_guard<std::mutex> lock(hooks_mutex_);
hooks_ = std::move(hooks);
}
json Session::handle_hooks_invoke(const std::string& hook_type, const json& input)
{
std::optional<SessionHooks> hooks;
{
std::lock_guard<std::mutex> lock(hooks_mutex_);
hooks = hooks_;
}
if (!hooks)
return nullptr;
HookInvocation invocation;
invocation.session_id = session_id_;
if (hook_type == "preToolUse" && hooks->on_pre_tool_use)
{
auto result = (*hooks->on_pre_tool_use)(input.get<PreToolUseHookInput>(), invocation);
if (result)
{
json output;
to_json(output, *result);
return output;
}
return nullptr;
}
else if (hook_type == "postToolUse" && hooks->on_post_tool_use)
{
auto result = (*hooks->on_post_tool_use)(input.get<PostToolUseHookInput>(), invocation);
if (result)
{
json output;
to_json(output, *result);
return output;
}
return nullptr;
}
else if (hook_type == "userPromptSubmitted" && hooks->on_user_prompt_submitted)
{
auto result = (*hooks->on_user_prompt_submitted)(input.get<UserPromptSubmittedHookInput>(), invocation);
if (result)
{
json output;
to_json(output, *result);
return output;
}
return nullptr;
}
else if (hook_type == "sessionStart" && hooks->on_session_start)
{
auto result = (*hooks->on_session_start)(input.get<SessionStartHookInput>(), invocation);
if (result)
{
json output;
to_json(output, *result);
return output;
}
return nullptr;
}
else if (hook_type == "sessionEnd" && hooks->on_session_end)
{
auto result = (*hooks->on_session_end)(input.get<SessionEndHookInput>(), invocation);
if (result)
{
json output;
to_json(output, *result);
return output;
}
return nullptr;
}
else if (hook_type == "errorOccurred" && hooks->on_error_occurred)
{
auto result = (*hooks->on_error_occurred)(input.get<ErrorOccurredHookInput>(), invocation);
if (result)
{
json output;
to_json(output, *result);
return output;
}
return nullptr;
}
return nullptr;
}
// =============================================================================
// Lifecycle
// =============================================================================
std::future<void> Session::destroy()
{
return std::async(
std::launch::async,
[this]()
{
json params;
params["sessionId"] = session_id_;
client_->rpc_client()->invoke(copilot::rpc::methods::kSessionDestroy, params).get();
}
);
}
// =============================================================================
// Model & Mode (v0.1.49 additions)
// =============================================================================
std::future<void> Session::set_model(const std::string& model_id, SetModelOptions options)
{
return std::async(
std::launch::async,
[this, model_id, options]()
{
json params;
params["sessionId"] = session_id_;
params["modelId"] = model_id;
if (options.reasoning_effort.has_value())
params["reasoningEffort"] = *options.reasoning_effort;
client_->rpc_client()->invoke(copilot::rpc::methods::kSessionModelSwitchTo, params).get();
}
);
}
std::future<std::optional<std::string>> Session::get_current_model()
{
return std::async(
std::launch::async,
[this]() -> std::optional<std::string>
{
json params;
params["sessionId"] = session_id_;
auto response = client_->rpc_client()->invoke(copilot::rpc::methods::kSessionModelGetCurrent, params).get();
// Response: { modelId?: string } per nodejs CurrentModel shape.
if (response.contains("modelId") && !response["modelId"].is_null())
return response["modelId"].get<std::string>();
return std::nullopt;
}
);
}
namespace
{
const char* mode_to_wire(Session::Mode m)
{
switch (m)
{
case Session::Mode::Interactive: return "interactive";
case Session::Mode::Plan: return "plan";
case Session::Mode::Autopilot: return "autopilot";
}
return "interactive";
}
std::optional<Session::Mode> mode_from_wire(const std::string& s)
{
if (s == "interactive") return Session::Mode::Interactive;
if (s == "plan") return Session::Mode::Plan;
if (s == "autopilot") return Session::Mode::Autopilot;
return std::nullopt;
}
} // namespace
std::future<void> Session::set_mode(Mode mode)
{
return std::async(
std::launch::async,
[this, mode]()
{
json params;
params["sessionId"] = session_id_;
params["mode"] = mode_to_wire(mode);
client_->rpc_client()->invoke(copilot::rpc::methods::kSessionModeSet, params).get();
}
);
}
std::future<Session::Mode> Session::get_mode()
{
return std::async(
std::launch::async,
[this]() -> Mode
{
json params;
params["sessionId"] = session_id_;
auto response = client_->rpc_client()->invoke(copilot::rpc::methods::kSessionModeGet, params).get();
// Response shape: { mode: "interactive" | "plan" | "autopilot" }
std::string wire = response.contains("mode") && response["mode"].is_string()
? response["mode"].get<std::string>()
: std::string{"interactive"};
auto parsed = mode_from_wire(wire);
return parsed.value_or(Mode::Interactive);
}
);
}
} // namespace copilot