-
Notifications
You must be signed in to change notification settings - Fork 14k
[codex] consume pushed exec-server process events #30273
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
005450e
unified-exec: consume pushed process events
richardopenai 9fa6c12
unified-exec: add pushed event integration coverage
richardopenai 5f1454e
Merge remote-tracking branch 'origin/main' into codex/unified-exec-pr…
richardopenai 680f1cb
Fix thread history test initializer
richardopenai File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,6 +14,7 @@ use tokio_util::sync::CancellationToken; | |
|
|
||
| use crate::exec::is_likely_sandbox_denied; | ||
| use codex_exec_server::ExecProcess; | ||
| use codex_exec_server::ExecProcessEvent; | ||
| use codex_exec_server::ProcessSignal as ExecServerProcessSignal; | ||
| use codex_exec_server::ReadResponse as ExecReadResponse; | ||
| use codex_exec_server::StartedExecProcess; | ||
|
|
@@ -425,84 +426,151 @@ impl UnifiedExecProcess { | |
| cancellation_token, | ||
| } = output_handles; | ||
| let process = started.process; | ||
| let mut wake_rx = process.subscribe_wake(); | ||
| let mut events = process.subscribe_events(); | ||
| tokio::spawn(async move { | ||
| let mut after_seq = None; | ||
| let mut last_seq: u64 = 0; | ||
| loop { | ||
| match process | ||
| .read(after_seq, /*max_bytes*/ None, /*wait_ms*/ Some(0)) | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. After we get a wakeup, we call process.read which introduces an extra round trip |
||
| .await | ||
| let event = match events.recv().await { | ||
| Ok(event) => Some(event), | ||
| Err(broadcast::error::RecvError::Lagged(_)) => None, | ||
| Err(broadcast::error::RecvError::Closed) => { | ||
| let state = state_tx.borrow().clone(); | ||
| let _ = state_tx.send_replace( | ||
| state.failed("exec-server process event stream closed".to_string()), | ||
| ); | ||
| output_closed.store(true, Ordering::Release); | ||
| output_closed_notify.notify_waiters(); | ||
| cancellation_token.cancel(); | ||
| break; | ||
| } | ||
| }; | ||
| let event_seq = event.as_ref().and_then(|event| match event { | ||
| ExecProcessEvent::Output(chunk) => Some(chunk.seq), | ||
| ExecProcessEvent::Exited { seq, .. } | ExecProcessEvent::Closed { seq } => { | ||
| Some(*seq) | ||
| } | ||
| ExecProcessEvent::Failed(_) => None, | ||
| }); | ||
| let missing_sandbox_denial = matches!( | ||
| event.as_ref(), | ||
| Some(ExecProcessEvent::Exited { | ||
| sandbox_denied: None, | ||
| .. | ||
| }) | ||
| ); | ||
| if event.is_none() | ||
| || event_seq.is_some_and(|seq| seq > last_seq.saturating_add(1)) | ||
| || missing_sandbox_denial | ||
| { | ||
| Ok(response) => { | ||
| let ExecReadResponse { | ||
| chunks, | ||
| next_seq, | ||
| exited, | ||
| exit_code, | ||
| closed, | ||
| failure, | ||
| sandbox_denied, | ||
| } = response; | ||
|
|
||
| for chunk in chunks { | ||
| let bytes = chunk.chunk.into_inner(); | ||
| let mut guard = output_buffer.lock().await; | ||
| guard.push_chunk(bytes.clone()); | ||
| drop(guard); | ||
| let _ = output_tx.send(bytes); | ||
| output_notify.notify_waiters(); | ||
| } | ||
|
|
||
| if let Some(message) = failure { | ||
| let response = match process | ||
| .read( | ||
| Some(last_seq), | ||
| /*max_bytes*/ None, | ||
| /*wait_ms*/ Some(0), | ||
| ) | ||
| .await | ||
| { | ||
| Ok(response) => response, | ||
| Err(err) => { | ||
| let state = state_tx.borrow().clone(); | ||
| let _ = state_tx.send_replace(state.failed(message)); | ||
| let _ = state_tx.send_replace(state.failed(err.to_string())); | ||
| output_closed.store(true, Ordering::Release); | ||
| output_closed_notify.notify_waiters(); | ||
| cancellation_token.cancel(); | ||
| break; | ||
| } | ||
| }; | ||
| let ExecReadResponse { | ||
| chunks, | ||
| next_seq, | ||
| exited, | ||
| exit_code, | ||
| closed, | ||
| failure, | ||
| sandbox_denied, | ||
| } = response; | ||
| for chunk in chunks.into_iter().filter(|chunk| chunk.seq > last_seq) { | ||
| let bytes = chunk.chunk.into_inner(); | ||
| let mut guard = output_buffer.lock().await; | ||
| guard.push_chunk(bytes.clone()); | ||
| drop(guard); | ||
| let _ = output_tx.send(bytes); | ||
| output_notify.notify_waiters(); | ||
| } | ||
| last_seq = last_seq.max(next_seq.saturating_sub(1)); | ||
| if let Some(message) = failure { | ||
| let state = state_tx.borrow().clone(); | ||
| let _ = state_tx.send_replace(state.failed(message)); | ||
| output_closed.store(true, Ordering::Release); | ||
| output_closed_notify.notify_waiters(); | ||
| cancellation_token.cancel(); | ||
| break; | ||
| } | ||
| if sandbox_denied || exited { | ||
| let mut state = state_tx.borrow().clone(); | ||
| state.sandbox_denied |= sandbox_denied; | ||
| let _ = state_tx.send_replace(if exited { | ||
| state.exited(exit_code) | ||
| } else { | ||
| state | ||
| }); | ||
| } | ||
| if closed { | ||
| output_closed.store(true, Ordering::Release); | ||
| output_closed_notify.notify_waiters(); | ||
| cancellation_token.cancel(); | ||
| break; | ||
| } | ||
| continue; | ||
| } | ||
|
|
||
| if sandbox_denied { | ||
| let mut state = state_tx.borrow().clone(); | ||
| state.sandbox_denied = true; | ||
| let _ = state_tx.send_replace(state); | ||
| } | ||
|
|
||
| if exited { | ||
| let state = state_tx.borrow().clone(); | ||
| let _ = state_tx.send_replace(state.exited(exit_code)); | ||
| let Some(event) = event else { | ||
| continue; | ||
| }; | ||
| match event { | ||
| ExecProcessEvent::Output(chunk) => { | ||
| if chunk.seq <= last_seq { | ||
| continue; | ||
| } | ||
|
|
||
| if closed { | ||
| output_closed.store(true, Ordering::Release); | ||
| output_closed_notify.notify_waiters(); | ||
| cancellation_token.cancel(); | ||
| last_seq = chunk.seq; | ||
| let bytes = chunk.chunk.into_inner(); | ||
| let mut guard = output_buffer.lock().await; | ||
| guard.push_chunk(bytes.clone()); | ||
| drop(guard); | ||
| let _ = output_tx.send(bytes); | ||
| output_notify.notify_waiters(); | ||
| } | ||
| ExecProcessEvent::Exited { | ||
| seq, | ||
| exit_code, | ||
| sandbox_denied, | ||
| } => { | ||
| if seq <= last_seq { | ||
| continue; | ||
| } | ||
|
|
||
| after_seq = next_seq.checked_sub(1); | ||
| if output_closed.load(Ordering::Acquire) { | ||
| break; | ||
| last_seq = seq; | ||
| let mut state = state_tx.borrow().clone(); | ||
| state.sandbox_denied |= sandbox_denied.unwrap_or(false); | ||
| let _ = state_tx.send_replace(state.exited(Some(exit_code))); | ||
| } | ||
| ExecProcessEvent::Closed { seq } => { | ||
| if seq <= last_seq { | ||
| continue; | ||
| } | ||
| output_closed.store(true, Ordering::Release); | ||
| output_closed_notify.notify_waiters(); | ||
| cancellation_token.cancel(); | ||
| break; | ||
| } | ||
| Err(err) => { | ||
| ExecProcessEvent::Failed(message) => { | ||
| let state = state_tx.borrow().clone(); | ||
| let _ = state_tx.send_replace(state.failed(err.to_string())); | ||
| let _ = state_tx.send_replace(state.failed(message)); | ||
| output_closed.store(true, Ordering::Release); | ||
| output_closed_notify.notify_waiters(); | ||
| cancellation_token.cancel(); | ||
| break; | ||
| } | ||
| } | ||
|
|
||
| if wake_rx.changed().await.is_err() { | ||
| let state = state_tx.borrow().clone(); | ||
| let _ = state_tx | ||
| .send_replace(state.failed("exec-server wake channel closed".to_string())); | ||
| output_closed.store(true, Ordering::Release); | ||
| output_closed_notify.notify_waiters(); | ||
| cancellation_token.cancel(); | ||
| break; | ||
| } | ||
| } | ||
| }) | ||
| } | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This switches unified exec from wake/read polling to consuming pushed process events, including lag and legacy fallback behavior, but the diff only adds mock-based unit coverage in
process_tests.rs; nocore/suiteTestCodexintegration test exercises the real agent tool path. Please add integration coverage for the new completion path so the actual session wiring and user-facing exec behavior are protected.AGENTS.md reference: AGENTS.md:L114-L116
Useful? React with 👍 / 👎.