| use std::collections::HashMap; |
| use std::collections::VecDeque; |
| use std::sync::Arc; |
| use std::sync::Mutex as StdMutex; |
| use std::sync::PoisonError; |
| use std::sync::atomic::AtomicI64; |
| use std::sync::atomic::Ordering; |
| use std::time::Instant; |
|
|
| use codex_code_mode_protocol::CellId; |
| use codex_code_mode_protocol::StartedCell; |
| use codex_code_mode_protocol::host::DelegateRequest; |
| use codex_code_mode_protocol::host::DelegateRequestId; |
| use codex_code_mode_protocol::host::DelegateResponse; |
| use codex_code_mode_protocol::host::EncodedFrame; |
| use codex_code_mode_protocol::host::HostToClient; |
| use codex_code_mode_protocol::host::MAX_PENDING_DELEGATE_CALLS; |
| use codex_code_mode_protocol::host::RequestId; |
| use codex_code_mode_protocol::host::SessionId; |
| use codex_code_mode_protocol::host::WireResult; |
| use codex_code_mode_protocol::host::WireRuntimeResponse; |
| use tokio::sync::Mutex; |
| use tokio::sync::Notify; |
| use tokio::sync::OwnedSemaphorePermit; |
| use tokio::sync::Semaphore; |
| use tokio::sync::mpsc; |
| use tokio::sync::oneshot; |
| use tokio_util::sync::CancellationToken; |
|
|
| const CELL_MESSAGE_CAPACITY: usize = 128; |
|
|
| pub(super) struct HostPeer { |
| outgoing_tx: mpsc::Sender<EncodedFrame>, |
| pending: Mutex<HashMap<DelegateRequestId, PendingDelegate>>, |
| delegate_permits: Arc<Semaphore>, |
| cell_routes: StdMutex<HashMap<(SessionId, CellId), CellRoute>>, |
| cell_routes_changed: Notify, |
| next_request_id: AtomicI64, |
| disconnected: CancellationToken, |
| failure: StdMutex<Option<String>>, |
| } |
|
|
| struct PendingDelegate { |
| response_tx: oneshot::Sender<Result<DelegateResponse, String>>, |
| dispatched: bool, |
| _permit: OwnedSemaphorePermit, |
| } |
|
|
| enum CellRoute { |
| Pending(VecDeque<CellMessage>), |
| Active(mpsc::Sender<CellMessage>), |
| } |
|
|
| enum CellMessage { |
| Delegate { |
| id: DelegateRequestId, |
| request: DelegateRequest, |
| dispatched_tx: oneshot::Sender<Result<(), String>>, |
| }, |
| Closed, |
| } |
|
|
| struct InitialRequest { |
| id: RequestId, |
| received_at: Instant, |
| } |
|
|
| impl HostPeer { |
| pub(super) fn new(outgoing_tx: mpsc::Sender<EncodedFrame>) -> Self { |
| Self { |
| outgoing_tx, |
| pending: Mutex::new(HashMap::new()), |
| delegate_permits: Arc::new(Semaphore::new(MAX_PENDING_DELEGATE_CALLS)), |
| cell_routes: StdMutex::new(HashMap::new()), |
| cell_routes_changed: Notify::new(), |
| next_request_id: AtomicI64::new(1), |
| disconnected: CancellationToken::new(), |
| failure: StdMutex::new(None), |
| } |
| } |
|
|
| pub(super) fn send(&self, message: HostToClient) -> Result<(), PeerSendError> { |
| let frame = EncodedFrame::encode(&message) |
| .map_err(|err| PeerSendError::Payload(err.to_string()))?; |
| self.send_frame(frame) |
| } |
|
|
| pub(super) fn respond( |
| &self, |
| id: RequestId, |
| result: Result<codex_code_mode_protocol::host::HostResponse, String>, |
| ) { |
| let message = HostToClient::Response { |
| id, |
| result: WireResult::from_result(result), |
| }; |
| if let Err(PeerSendError::Payload(err)) = self.send(message) { |
| let _ = self.send(HostToClient::Response { |
| id, |
| result: WireResult::Err { |
| message: format!("code-mode host response exceeds the IPC frame limit: {err}"), |
| }, |
| }); |
| } |
| } |
|
|
| fn initial_response(&self, id: RequestId, result: Result<WireRuntimeResponse, String>) { |
| let message = HostToClient::InitialResponse { |
| id, |
| result: WireResult::from_result(result), |
| }; |
| if let Err(PeerSendError::Payload(err)) = self.send(message) { |
| let _ = self.send(HostToClient::InitialResponse { |
| id, |
| result: WireResult::Err { |
| message: format!( |
| "code-mode initial response exceeds the IPC frame limit: {err}" |
| ), |
| }, |
| }); |
| } |
| } |
|
|
| pub(super) async fn call( |
| self: &Arc<Self>, |
| session_id: SessionId, |
| request: DelegateRequest, |
| cancellation_token: CancellationToken, |
| ) -> Result<DelegateResponse, String> { |
| if self.disconnected.is_cancelled() { |
| return Err("code-mode client connection closed".to_string()); |
| } |
| let Ok(permit) = Arc::clone(&self.delegate_permits).try_acquire_owned() else { |
| return Err("code-mode host has too many pending delegate calls".to_string()); |
| }; |
| let id = DelegateRequestId::new(self.next_request_id.fetch_add(1, Ordering::Relaxed)); |
| let (response_tx, response_rx) = oneshot::channel(); |
| self.pending.lock().await.insert( |
| id, |
| PendingDelegate { |
| response_tx, |
| dispatched: false, |
| _permit: permit, |
| }, |
| ); |
| let mut pending = PendingDelegateRequest::new(Arc::clone(self), id); |
| let cell_id = match &request { |
| DelegateRequest::InvokeTool { invocation } => invocation.cell_id.clone().into(), |
| DelegateRequest::Notify { cell_id, .. } => cell_id.clone().into(), |
| }; |
| let (dispatched_tx, dispatched_rx) = oneshot::channel(); |
| if let Err(err) = self.route_cell_message( |
| (session_id, cell_id), |
| CellMessage::Delegate { |
| id, |
| request, |
| dispatched_tx, |
| }, |
| ) { |
| self.pending.lock().await.remove(&id); |
| pending.disarm(); |
| return Err(err); |
| } |
|
|
| let dispatched = tokio::select! { |
| dispatched = dispatched_rx => dispatched.map_err(|_| { |
| "code-mode cell route closed before dispatching delegate request".to_string() |
| })?, |
| _ = self.disconnected.cancelled() => { |
| self.pending.lock().await.remove(&id); |
| pending.disarm(); |
| return Err("code-mode client connection closed".to_string()); |
| } |
| }; |
| if let Err(err) = dispatched { |
| self.pending.lock().await.remove(&id); |
| pending.disarm(); |
| return Err(err); |
| } |
|
|
| tokio::select! { |
| response = response_rx => { |
| pending.disarm(); |
| response.map_err(|_| { |
| "code-mode client closed before returning delegate output".to_string() |
| })? |
| } |
| _ = cancellation_token.cancelled() => { |
| if self.remove_pending(id).await.is_some() { |
| let _ = self.send(HostToClient::CancelDelegateRequest { id }); |
| } |
| pending.disarm(); |
| Err("code mode delegate request cancelled".to_string()) |
| } |
| _ = self.disconnected.cancelled() => { |
| self.pending.lock().await.remove(&id); |
| pending.disarm(); |
| Err("code-mode client connection closed".to_string()) |
| } |
| } |
| } |
|
|
| pub(super) async fn complete( |
| &self, |
| id: DelegateRequestId, |
| response: Result<DelegateResponse, String>, |
| ) { |
| if let Some(pending) = self.remove_pending(id).await { |
| let _ = pending.response_tx.send(response); |
| } |
| } |
|
|
| pub(super) fn start_cell( |
| self: &Arc<Self>, |
| session_id: SessionId, |
| request_id: RequestId, |
| started: StartedCell, |
| active_cell_permit: OwnedSemaphorePermit, |
| received_at: Instant, |
| ) -> oneshot::Receiver<()> { |
| let (initial_response_sent_tx, initial_response_sent_rx) = oneshot::channel(); |
| let key = (session_id, started.cell_id.clone()); |
| let (messages_tx, messages_rx) = mpsc::channel(CELL_MESSAGE_CAPACITY); |
| let previous = self |
| .cell_routes |
| .lock() |
| .unwrap_or_else(PoisonError::into_inner) |
| .insert(key.clone(), CellRoute::Active(messages_tx.clone())); |
| match previous { |
| Some(CellRoute::Pending(messages)) => { |
| for message in messages { |
| if messages_tx.try_send(message).is_err() { |
| self.disconnect(); |
| return initial_response_sent_rx; |
| } |
| } |
| } |
| Some(CellRoute::Active(_)) => { |
| self.disconnect(); |
| return initial_response_sent_rx; |
| } |
| None => {} |
| } |
| let peer = Arc::clone(self); |
| self.spawn_critical("cell forwarding", async move { |
| drive_cell( |
| peer, |
| key, |
| InitialRequest { |
| id: request_id, |
| received_at, |
| }, |
| started, |
| messages_rx, |
| initial_response_sent_tx, |
| active_cell_permit, |
| ) |
| .await; |
| }); |
| initial_response_sent_rx |
| } |
|
|
| pub(super) fn close_cell(&self, session_id: SessionId, cell_id: CellId) { |
| let _ = self.route_cell_message((session_id, cell_id), CellMessage::Closed); |
| } |
|
|
| pub(super) fn disconnect(&self) { |
| self.disconnected.cancel(); |
| } |
|
|
| pub(super) fn fail(&self, reason: String) { |
| let mut failure = self.failure.lock().unwrap_or_else(PoisonError::into_inner); |
| if failure.is_none() { |
| *failure = Some(reason); |
| } |
| drop(failure); |
| self.disconnect(); |
| } |
|
|
| pub(super) fn failure(&self) -> Option<String> { |
| self.failure |
| .lock() |
| .unwrap_or_else(PoisonError::into_inner) |
| .clone() |
| } |
|
|
| pub(super) fn is_disconnected(&self) -> bool { |
| self.disconnected.is_cancelled() |
| } |
|
|
| pub(super) async fn disconnected(&self) { |
| self.disconnected.cancelled().await; |
| } |
|
|
| pub(super) fn disconnection_token(&self) -> CancellationToken { |
| self.disconnected.clone() |
| } |
|
|
| pub(super) async fn wait_for_session_cells(&self, session_id: &SessionId) { |
| loop { |
| let changed = self.cell_routes_changed.notified(); |
| if !self |
| .cell_routes |
| .lock() |
| .unwrap_or_else(PoisonError::into_inner) |
| .keys() |
| .any(|(route_session_id, _)| route_session_id == session_id) |
| { |
| return; |
| } |
| tokio::select! { |
| _ = changed => {} |
| _ = self.disconnected.cancelled() => return, |
| } |
| } |
| } |
|
|
| async fn send_delegate_if_pending( |
| &self, |
| id: DelegateRequestId, |
| session_id: SessionId, |
| request: DelegateRequest, |
| dispatched_tx: oneshot::Sender<Result<(), String>>, |
| ) { |
| let result = { |
| let mut pending = self.pending.lock().await; |
| let Some(pending) = pending.get_mut(&id) else { |
| let _ = dispatched_tx.send(Err( |
| "code-mode delegate request was cancelled before dispatch".to_string(), |
| )); |
| return; |
| }; |
| match self.send(HostToClient::DelegateRequest { |
| id, |
| session_id, |
| request, |
| }) { |
| Ok(()) => { |
| pending.dispatched = true; |
| Ok(()) |
| } |
| Err(err) => Err(err.to_string()), |
| } |
| }; |
| let _ = dispatched_tx.send(result); |
| } |
|
|
| fn route_cell_message( |
| &self, |
| key: (SessionId, CellId), |
| message: CellMessage, |
| ) -> Result<(), String> { |
| use std::collections::hash_map::Entry; |
|
|
| let result = match self |
| .cell_routes |
| .lock() |
| .unwrap_or_else(PoisonError::into_inner) |
| .entry(key) |
| { |
| Entry::Occupied(mut entry) => match entry.get_mut() { |
| CellRoute::Pending(messages) if messages.len() < CELL_MESSAGE_CAPACITY => { |
| messages.push_back(message); |
| Ok(()) |
| } |
| CellRoute::Pending(_) => Err("code-mode cell message queue is full".to_string()), |
| CellRoute::Active(sender) => sender |
| .try_send(message) |
| .map_err(|_| "code-mode cell message queue is unavailable".to_string()), |
| }, |
| Entry::Vacant(entry) => { |
| entry.insert(CellRoute::Pending(VecDeque::from([message]))); |
| Ok(()) |
| } |
| }; |
| if result.is_err() { |
| self.disconnect(); |
| } |
| result |
| } |
|
|
| async fn remove_pending(&self, id: DelegateRequestId) -> Option<PendingDelegate> { |
| self.pending.lock().await.remove(&id) |
| } |
|
|
| pub(super) fn spawn_critical<F>(self: &Arc<Self>, task_name: &'static str, future: F) |
| where |
| F: std::future::Future<Output = ()> + Send + 'static, |
| { |
| let task = tokio::spawn(future); |
| let peer = Arc::clone(self); |
| tokio::spawn(async move { |
| if let Err(err) = task.await { |
| peer.fail(format!("code-mode {task_name} task failed: {err}")); |
| } |
| }); |
| } |
|
|
| fn send_frame(&self, frame: EncodedFrame) -> Result<(), PeerSendError> { |
| match self.outgoing_tx.try_send(frame) { |
| Ok(()) => Ok(()), |
| Err(mpsc::error::TrySendError::Full(_)) => { |
| self.disconnect(); |
| Err(PeerSendError::Unavailable( |
| "code-mode host outgoing queue is full".to_string(), |
| )) |
| } |
| Err(mpsc::error::TrySendError::Closed(_)) => { |
| self.disconnect(); |
| Err(PeerSendError::Unavailable( |
| "code-mode client connection closed".to_string(), |
| )) |
| } |
| } |
| } |
| } |
|
|
| async fn drive_cell( |
| peer: Arc<HostPeer>, |
| key: (SessionId, CellId), |
| request: InitialRequest, |
| started: StartedCell, |
| mut messages_rx: mpsc::Receiver<CellMessage>, |
| initial_response_sent_tx: oneshot::Sender<()>, |
| _active_cell_permit: OwnedSemaphorePermit, |
| ) { |
| let mut initial_response_sent_tx = Some(initial_response_sent_tx); |
| let initial_response = started.initial_response(); |
| tokio::pin!(initial_response); |
| let closed = loop { |
| tokio::select! { |
| biased; |
| result = &mut initial_response => { |
| |
| let code_mode_host_duration = request.received_at.elapsed(); |
| peer.initial_response( |
| request.id, |
| result.and_then(|response| { |
| let response = response.with_code_mode_host_duration(code_mode_host_duration); |
| WireRuntimeResponse::try_from(response).map_err(|error| error.to_string()) |
| }), |
| ); |
| if let Some(initial_response_sent_tx) = initial_response_sent_tx.take() { |
| let _ = initial_response_sent_tx.send(()); |
| } |
| break false; |
| } |
| message = messages_rx.recv() => match message { |
| Some(CellMessage::Delegate { |
| id, |
| request, |
| dispatched_tx, |
| }) => { |
| peer.send_delegate_if_pending(id, key.0.clone(), request, dispatched_tx).await; |
| } |
| Some(CellMessage::Closed) | None => break true, |
| }, |
| _ = peer.disconnected.cancelled() => { |
| peer.remove_cell_route(&key); |
| return; |
| } |
| } |
| }; |
|
|
| if closed { |
| let result = initial_response.await; |
| let code_mode_host_duration = request.received_at.elapsed(); |
| peer.initial_response( |
| request.id, |
| result.and_then(|response| { |
| let response = response.with_code_mode_host_duration(code_mode_host_duration); |
| WireRuntimeResponse::try_from(response).map_err(|error| error.to_string()) |
| }), |
| ); |
| if let Some(initial_response_sent_tx) = initial_response_sent_tx.take() { |
| let _ = initial_response_sent_tx.send(()); |
| } |
| } else { |
| loop { |
| tokio::select! { |
| message = messages_rx.recv() => match message { |
| Some(CellMessage::Delegate { |
| id, |
| request, |
| dispatched_tx, |
| }) => { |
| peer.send_delegate_if_pending(id, key.0.clone(), request, dispatched_tx).await; |
| } |
| Some(CellMessage::Closed) | None => break, |
| }, |
| _ = peer.disconnected.cancelled() => { |
| peer.remove_cell_route(&key); |
| return; |
| } |
| } |
| } |
| } |
| let _ = peer.send(HostToClient::CellClosed { |
| session_id: key.0.clone(), |
| cell_id: (&key.1).into(), |
| }); |
| peer.remove_cell_route(&key); |
| } |
|
|
| impl HostPeer { |
| fn remove_cell_route(&self, key: &(SessionId, CellId)) { |
| let removed = self |
| .cell_routes |
| .lock() |
| .unwrap_or_else(PoisonError::into_inner) |
| .remove(key); |
| if removed.is_some() { |
| self.cell_routes_changed.notify_waiters(); |
| } |
| } |
| } |
|
|
| pub(super) enum PeerSendError { |
| Payload(String), |
| Unavailable(String), |
| } |
|
|
| impl std::fmt::Display for PeerSendError { |
| fn fmt(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
| match self { |
| Self::Payload(message) | Self::Unavailable(message) => formatter.write_str(message), |
| } |
| } |
| } |
|
|
| struct PendingDelegateRequest { |
| peer: Arc<HostPeer>, |
| id: Option<DelegateRequestId>, |
| } |
|
|
| impl PendingDelegateRequest { |
| fn new(peer: Arc<HostPeer>, id: DelegateRequestId) -> Self { |
| Self { peer, id: Some(id) } |
| } |
|
|
| fn disarm(&mut self) { |
| self.id = None; |
| } |
| } |
|
|
| impl Drop for PendingDelegateRequest { |
| fn drop(&mut self) { |
| let Some(id) = self.id.take() else { |
| return; |
| }; |
| let peer = Arc::clone(&self.peer); |
| tokio::spawn(async move { |
| if let Some(pending) = peer.remove_pending(id).await |
| && pending.dispatched |
| { |
| let _ = peer.send(HostToClient::CancelDelegateRequest { id }); |
| } |
| }); |
| } |
| } |
|
|
| #[cfg(test)] |
| #[path = "peer_tests.rs"] |
| mod tests; |
|
|