mirror of
https://github.com/pchuan98/codex.git
synced 2026-07-01 00:31:56 +08:00
576f603440
## Why Removes the realtime audio support from TUI. ## What Changed - Removed the TUI `/realtime` and realtime `/settings` command paths. - Deleted TUI voice capture/playback, WebRTC session handling, audio-device selection UI, and recording-meter code. - Removed TUI realtime tests and snapshots that covered the deleted surfaces. - Dropped the TUI-only `cpal` and `codex-realtime-webrtc` dependencies and refreshed the Rust/Bazel locks.
131 lines
4.0 KiB
Rust
131 lines
4.0 KiB
Rust
//! Convenience sender for app events and common outbound TUI commands.
|
|
//!
|
|
//! This wraps the raw channel so call sites can submit typed `AppCommand`s
|
|
//! without duplicating event construction or session logging behavior.
|
|
|
|
use std::path::PathBuf;
|
|
|
|
use crate::app_command::AppCommand;
|
|
use codex_app_server_protocol::CommandExecutionApprovalDecision;
|
|
use codex_app_server_protocol::FileChangeApprovalDecision;
|
|
use codex_app_server_protocol::McpServerElicitationAction;
|
|
use codex_app_server_protocol::RequestId as AppServerRequestId;
|
|
use codex_app_server_protocol::ReviewTarget;
|
|
use codex_app_server_protocol::ToolRequestUserInputResponse;
|
|
use codex_protocol::ThreadId;
|
|
use codex_protocol::request_permissions::RequestPermissionsResponse;
|
|
use tokio::sync::mpsc::UnboundedSender;
|
|
|
|
use crate::app_event::AppEvent;
|
|
use crate::session_log;
|
|
|
|
#[derive(Clone, Debug)]
|
|
pub(crate) struct AppEventSender {
|
|
pub app_event_tx: UnboundedSender<AppEvent>,
|
|
}
|
|
|
|
impl AppEventSender {
|
|
pub(crate) fn new(app_event_tx: UnboundedSender<AppEvent>) -> Self {
|
|
Self { app_event_tx }
|
|
}
|
|
|
|
/// Send an event to the app event channel. If it fails, we swallow the
|
|
/// error and log it.
|
|
pub(crate) fn send(&self, event: AppEvent) {
|
|
// Record inbound events for high-fidelity session replay.
|
|
// Avoid double-logging Ops; those are logged at the point of submission.
|
|
if !matches!(event, AppEvent::CodexOp(_)) {
|
|
session_log::log_inbound_app_event(&event);
|
|
}
|
|
if let Err(e) = self.app_event_tx.send(event) {
|
|
tracing::error!("failed to send event: {e}");
|
|
}
|
|
}
|
|
|
|
pub(crate) fn interrupt(&self) {
|
|
self.send(AppEvent::CodexOp(AppCommand::interrupt()));
|
|
}
|
|
|
|
pub(crate) fn interrupt_and_restore_prompt_if_no_output(&self) {
|
|
self.send(AppEvent::CodexOp(
|
|
AppCommand::interrupt_and_restore_prompt_if_no_output(),
|
|
));
|
|
}
|
|
|
|
pub(crate) fn compact(&self) {
|
|
self.send(AppEvent::CodexOp(AppCommand::compact()));
|
|
}
|
|
|
|
pub(crate) fn set_thread_name(&self, name: String) {
|
|
self.send(AppEvent::CodexOp(AppCommand::set_thread_name(name)));
|
|
}
|
|
|
|
pub(crate) fn review(&self, target: ReviewTarget) {
|
|
self.send(AppEvent::CodexOp(AppCommand::review(target)));
|
|
}
|
|
|
|
pub(crate) fn list_skills(&self, cwds: Vec<PathBuf>, force_reload: bool) {
|
|
self.send(AppEvent::CodexOp(AppCommand::list_skills(
|
|
cwds,
|
|
force_reload,
|
|
)));
|
|
}
|
|
|
|
pub(crate) fn user_input_answer(&self, id: String, response: ToolRequestUserInputResponse) {
|
|
self.send(AppEvent::CodexOp(AppCommand::user_input_answer(
|
|
id, response,
|
|
)));
|
|
}
|
|
|
|
pub(crate) fn exec_approval(
|
|
&self,
|
|
thread_id: ThreadId,
|
|
id: String,
|
|
decision: CommandExecutionApprovalDecision,
|
|
) {
|
|
self.send(AppEvent::SubmitThreadOp {
|
|
thread_id,
|
|
op: AppCommand::exec_approval(id, /*turn_id*/ None, decision),
|
|
});
|
|
}
|
|
|
|
pub(crate) fn request_permissions_response(
|
|
&self,
|
|
thread_id: ThreadId,
|
|
id: String,
|
|
response: RequestPermissionsResponse,
|
|
) {
|
|
self.send(AppEvent::SubmitThreadOp {
|
|
thread_id,
|
|
op: AppCommand::request_permissions_response(id, response),
|
|
});
|
|
}
|
|
|
|
pub(crate) fn patch_approval(
|
|
&self,
|
|
thread_id: ThreadId,
|
|
id: String,
|
|
decision: FileChangeApprovalDecision,
|
|
) {
|
|
self.send(AppEvent::SubmitThreadOp {
|
|
thread_id,
|
|
op: AppCommand::patch_approval(id, decision),
|
|
});
|
|
}
|
|
|
|
pub(crate) fn resolve_elicitation(
|
|
&self,
|
|
thread_id: ThreadId,
|
|
server_name: String,
|
|
request_id: AppServerRequestId,
|
|
decision: McpServerElicitationAction,
|
|
content: Option<serde_json::Value>,
|
|
meta: Option<serde_json::Value>,
|
|
) {
|
|
self.send(AppEvent::SubmitThreadOp {
|
|
thread_id,
|
|
op: AppCommand::resolve_elicitation(server_name, request_id, decision, content, meta),
|
|
});
|
|
}
|
|
}
|