mirror of
https://github.com/pchuan98/codex.git
synced 2026-07-01 00:31:56 +08:00
c0ea566bb5
## TL;DR When you press Esc or Ctrl+C after sending a prompt but before any output was rendering, it restores the last composer and the message. ## Summary Cancelling a prompt immediately after submission should behave like returning to edit that prompt, not like discarding the user's draft. Today, pressing `Esc` or `Ctrl+C` before Codex responds leaves the submitted prompt in the transcript and returns an empty composer, forcing the user to recall or retype it. When an interrupted turn has not produced substantive visible output, restore its submitted prompt directly into the composer and roll back that latest turn. This also covers the first prompt in a fresh thread, before the TUI has retained a local user-history cell. The restored draft keeps its text, image attachments, and active collaboration mode so it can be edited and resubmitted in place. Restoration is intentionally suppressed once the turn has produced user-visible activity such as assistant output, tool work, hooks, or patches. A transient thinking status does not make the prompt ineligible. Rollback also rebuilds terminal scrollback from the retained transcript cells so repeated cancellations and terminal resizes do not duplicate history. ## How to Test 1. Start the TUI with `cargo run -p codex-cli --bin codex`. 2. In a fresh thread, submit the first prompt and press `Esc` before Codex emits substantive output. Confirm that the prompt returns to the composer for editing and its submitted transcript row is removed. 3. Repeat with `Ctrl+C`, then repeat after at least one completed turn. Confirm the same behavior. 4. Submit a prompt, wait for assistant output or tool activity, then cancel. Confirm that the transcript remains intact and the prompt is not restored into the composer. 5. Cancel several output-free prompts and resize the terminal between attempts. Confirm that the startup banner, tip, and transcript history do not duplicate in scrollback. Targeted tests: - `just test -p codex-tui cancelled_turn_edit_restores_prompt` - `just test -p codex-tui output_free_interrupted_turn_requests_prompt_restore` - `just test -p codex-tui visible_output_prevents_cancelled_turn_prompt_restore` - `just test -p codex-tui thinking_status_keeps_cancelled_turn_prompt_restore_eligible` - `just test -p codex-tui patch_activity_prevents_cancelled_turn_prompt_restore` The full `just test -p codex-tui` run completed with `2746` passing tests and two unrelated existing guardian feature-flag failures. `just argument-comment-lint` remains blocked locally by the existing Bazel LLVM `compiler-rt` sanitizer-header glob failure; the touched Rust diff was manually audited for positional literal comments.
429 lines
18 KiB
Rust
429 lines
18 KiB
Rust
//! Input queue restore and thread-input snapshot behavior for `ChatWidget`.
|
|
|
|
use super::*;
|
|
|
|
impl ChatWidget {
|
|
pub(super) fn record_cancel_edit_candidate(&mut self, prompt: UserMessage) {
|
|
self.cancel_edit.prompt = Some(prompt);
|
|
self.cancel_edit.eligible = true;
|
|
self.cancel_edit.armed = false;
|
|
}
|
|
|
|
pub(super) fn record_visible_turn_activity(&mut self) {
|
|
self.cancel_edit.eligible = false;
|
|
self.cancel_edit.armed = false;
|
|
}
|
|
|
|
pub(super) fn arm_cancel_edit(&mut self) {
|
|
self.cancel_edit.armed = self.cancel_edit.eligible
|
|
&& self.cancel_edit.prompt.is_some()
|
|
&& self.bottom_pane.composer_is_empty()
|
|
&& self.input_queue.pending_steers.is_empty()
|
|
&& !self.has_queued_follow_up_messages()
|
|
&& !self.active_side_conversation;
|
|
}
|
|
|
|
fn take_armed_cancel_edit_prompt(&mut self, reason: TurnAbortReason) -> Option<UserMessage> {
|
|
(reason == TurnAbortReason::Interrupted
|
|
&& self.cancel_edit.armed
|
|
&& self.cancel_edit.eligible)
|
|
.then(|| self.cancel_edit.prompt.take())
|
|
.flatten()
|
|
}
|
|
|
|
pub(super) fn clear_cancel_edit(&mut self) {
|
|
self.cancel_edit = CancelEditState::default();
|
|
}
|
|
|
|
pub(crate) fn set_initial_user_message_submit_suppressed(&mut self, suppressed: bool) {
|
|
self.suppress_initial_user_message_submit = suppressed;
|
|
}
|
|
|
|
pub(crate) fn submit_initial_user_message_if_pending(&mut self) {
|
|
if self.suppress_initial_user_message_submit {
|
|
return;
|
|
}
|
|
#[cfg(any(target_os = "windows", test))]
|
|
if self.elevated_windows_sandbox_setup_required() {
|
|
return;
|
|
}
|
|
if let Some(user_message) = self.initial_user_message.take() {
|
|
self.submit_user_message(user_message);
|
|
}
|
|
}
|
|
|
|
pub(super) fn pop_next_queued_user_message(
|
|
&mut self,
|
|
) -> Option<(QueuedUserMessage, UserMessageHistoryRecord)> {
|
|
if self.input_queue.rejected_steers_queue.is_empty() {
|
|
self.input_queue
|
|
.queued_user_messages
|
|
.pop_front()
|
|
.map(|user_message| {
|
|
let history_record = self
|
|
.input_queue
|
|
.queued_user_message_history_records
|
|
.pop_front()
|
|
.unwrap_or(UserMessageHistoryRecord::UserMessageText);
|
|
(user_message, history_record)
|
|
})
|
|
} else {
|
|
let rejected_messages = self
|
|
.input_queue
|
|
.rejected_steers_queue
|
|
.drain(..)
|
|
.collect::<Vec<_>>();
|
|
let mut history_records = self
|
|
.input_queue
|
|
.rejected_steer_history_records
|
|
.drain(..)
|
|
.collect::<Vec<_>>();
|
|
history_records.resize(
|
|
rejected_messages.len(),
|
|
UserMessageHistoryRecord::UserMessageText,
|
|
);
|
|
let (message, history_record) = merge_user_messages_with_history_record(
|
|
rejected_messages
|
|
.into_iter()
|
|
.zip(history_records)
|
|
.collect::<Vec<_>>(),
|
|
);
|
|
Some((QueuedUserMessage::from(message), history_record))
|
|
}
|
|
}
|
|
|
|
pub(super) fn pop_latest_queued_user_message(&mut self) -> Option<UserMessage> {
|
|
if let Some(user_message) = self.input_queue.queued_user_messages.pop_back() {
|
|
let history_record = self
|
|
.input_queue
|
|
.queued_user_message_history_records
|
|
.pop_back()
|
|
.unwrap_or(UserMessageHistoryRecord::UserMessageText);
|
|
Some(user_message_for_restore(
|
|
user_message.into_user_message(),
|
|
&history_record,
|
|
))
|
|
} else {
|
|
let user_message = self.input_queue.rejected_steers_queue.pop_back()?;
|
|
let history_record = self
|
|
.input_queue
|
|
.rejected_steer_history_records
|
|
.pop_back()
|
|
.unwrap_or(UserMessageHistoryRecord::UserMessageText);
|
|
Some(user_message_for_restore(user_message, &history_record))
|
|
}
|
|
}
|
|
|
|
pub(crate) fn enqueue_rejected_steer(&mut self) -> bool {
|
|
let Some(pending_steer) = self.input_queue.pending_steers.pop_front() else {
|
|
tracing::warn!(
|
|
"received active-turn-not-steerable error without a matching pending steer"
|
|
);
|
|
return false;
|
|
};
|
|
self.input_queue
|
|
.rejected_steers_queue
|
|
.push_back(pending_steer.user_message);
|
|
self.input_queue
|
|
.rejected_steer_history_records
|
|
.push_back(pending_steer.history_record);
|
|
self.refresh_pending_input_preview();
|
|
true
|
|
}
|
|
|
|
/// Handle a turn aborted due to user interrupt (Esc), budget exhaustion,
|
|
/// or review completion.
|
|
/// When there are queued user messages, restore them into the composer
|
|
/// separated by newlines rather than auto-submitting the next one.
|
|
pub(super) fn on_interrupted_turn(&mut self, reason: TurnAbortReason) {
|
|
let cancelled_prompt = self.take_armed_cancel_edit_prompt(reason);
|
|
// Finalize, log a gentle prompt, and clear running state.
|
|
self.finalize_turn();
|
|
let send_pending_steers_immediately =
|
|
self.input_queue.submit_pending_steers_after_interrupt;
|
|
self.input_queue.submit_pending_steers_after_interrupt = false;
|
|
if cancelled_prompt.is_none()
|
|
&& self.interrupted_turn_notice_mode != InterruptedTurnNoticeMode::Suppress
|
|
{
|
|
if send_pending_steers_immediately {
|
|
self.add_to_history(history_cell::new_info_event(
|
|
"Model interrupted to submit steer instructions.".to_owned(),
|
|
/*hint*/ None,
|
|
));
|
|
} else {
|
|
self.add_to_history(history_cell::new_error_event(
|
|
self.interrupted_turn_message(reason),
|
|
));
|
|
}
|
|
}
|
|
|
|
// The server has already discarded pending input by the time the
|
|
// interrupted turn reaches the UI, so any unacknowledged steers still
|
|
// tracked here must be restored locally instead of waiting for a later commit.
|
|
if send_pending_steers_immediately {
|
|
let pending_steers = self
|
|
.input_queue
|
|
.pending_steers
|
|
.drain(..)
|
|
.map(|pending| (pending.user_message, pending.history_record))
|
|
.collect::<Vec<_>>();
|
|
if !pending_steers.is_empty() {
|
|
let (user_message, history_record) =
|
|
merge_user_messages_with_history_record(pending_steers);
|
|
self.submit_user_message_with_history_record(user_message, history_record);
|
|
} else if let Some(combined) = self.drain_pending_messages_for_restore() {
|
|
self.restore_user_message_to_composer(combined);
|
|
}
|
|
} else if let Some(combined) = self.drain_pending_messages_for_restore() {
|
|
self.restore_user_message_to_composer(combined);
|
|
}
|
|
self.refresh_pending_input_preview();
|
|
if let Some(prompt) = cancelled_prompt {
|
|
self.app_event_tx
|
|
.send(AppEvent::RestoreCancelledTurn(prompt));
|
|
}
|
|
|
|
self.request_redraw();
|
|
}
|
|
|
|
/// Merge pending steers, queued drafts, and the current composer state into a single message.
|
|
///
|
|
/// Each pending message numbers attachments from `[Image #1]` relative to its own remote
|
|
/// images. When we concatenate multiple messages after interrupt, we must renumber local-image
|
|
/// placeholders in a stable order and rebase text element byte ranges so the restored composer
|
|
/// state stays aligned with the merged attachment list. Returns `None` when there is nothing to
|
|
/// restore.
|
|
fn drain_pending_messages_for_restore(&mut self) -> Option<UserMessage> {
|
|
if self.input_queue.pending_steers.is_empty() && !self.has_queued_follow_up_messages() {
|
|
return None;
|
|
}
|
|
|
|
let composer = self.bottom_pane.composer_draft_snapshot();
|
|
let existing_message = UserMessage {
|
|
text: composer.text,
|
|
text_elements: composer.text_elements,
|
|
local_images: composer.local_images,
|
|
remote_image_urls: composer.remote_image_urls,
|
|
mention_bindings: composer.mention_bindings,
|
|
};
|
|
|
|
let rejected_messages = self
|
|
.input_queue
|
|
.rejected_steers_queue
|
|
.drain(..)
|
|
.collect::<Vec<_>>();
|
|
let mut rejected_history_records = self
|
|
.input_queue
|
|
.rejected_steer_history_records
|
|
.drain(..)
|
|
.collect::<Vec<_>>();
|
|
rejected_history_records.resize(
|
|
rejected_messages.len(),
|
|
UserMessageHistoryRecord::UserMessageText,
|
|
);
|
|
let mut to_merge: Vec<UserMessage> = rejected_messages
|
|
.into_iter()
|
|
.zip(rejected_history_records.iter())
|
|
.map(|(message, history_record)| user_message_for_restore(message, history_record))
|
|
.collect();
|
|
to_merge.extend(
|
|
self.input_queue
|
|
.pending_steers
|
|
.drain(..)
|
|
.map(|steer| user_message_for_restore(steer.user_message, &steer.history_record)),
|
|
);
|
|
let queued_messages = self
|
|
.input_queue
|
|
.queued_user_messages
|
|
.drain(..)
|
|
.collect::<Vec<_>>();
|
|
let mut queued_history_records = self
|
|
.input_queue
|
|
.queued_user_message_history_records
|
|
.drain(..)
|
|
.collect::<Vec<_>>();
|
|
queued_history_records.resize(
|
|
queued_messages.len(),
|
|
UserMessageHistoryRecord::UserMessageText,
|
|
);
|
|
to_merge.extend(
|
|
queued_messages
|
|
.into_iter()
|
|
.zip(queued_history_records.iter())
|
|
.map(|(message, history_record)| {
|
|
user_message_for_restore(message.into_user_message(), history_record)
|
|
}),
|
|
);
|
|
if !existing_message.text.is_empty()
|
|
|| !existing_message.local_images.is_empty()
|
|
|| !existing_message.remote_image_urls.is_empty()
|
|
{
|
|
to_merge.push(existing_message);
|
|
}
|
|
|
|
Some(merge_user_messages(to_merge))
|
|
}
|
|
|
|
pub(crate) fn restore_user_message_to_composer(&mut self, user_message: UserMessage) {
|
|
let UserMessage {
|
|
text,
|
|
local_images,
|
|
remote_image_urls,
|
|
text_elements,
|
|
mention_bindings,
|
|
} = user_message;
|
|
let local_image_paths = local_images.into_iter().map(|img| img.path).collect();
|
|
self.set_remote_image_urls(remote_image_urls);
|
|
self.bottom_pane.set_composer_text_with_mention_bindings(
|
|
text,
|
|
text_elements,
|
|
local_image_paths,
|
|
mention_bindings,
|
|
);
|
|
}
|
|
|
|
pub(crate) fn capture_thread_input_state(&self) -> Option<ThreadInputState> {
|
|
let draft = self.bottom_pane.composer_draft_snapshot();
|
|
let composer = ThreadComposerState {
|
|
text: draft.text,
|
|
text_elements: draft.text_elements,
|
|
local_images: draft.local_images,
|
|
remote_image_urls: draft.remote_image_urls,
|
|
mention_bindings: draft.mention_bindings,
|
|
pending_pastes: draft.pending_pastes,
|
|
};
|
|
Some(ThreadInputState {
|
|
composer: composer.has_content().then_some(composer),
|
|
pending_steers: self
|
|
.input_queue
|
|
.pending_steers
|
|
.iter()
|
|
.map(|pending| pending.user_message.clone())
|
|
.collect(),
|
|
pending_steer_history_records: self
|
|
.input_queue
|
|
.pending_steers
|
|
.iter()
|
|
.map(|pending| pending.history_record.clone())
|
|
.collect(),
|
|
pending_steer_compare_keys: self
|
|
.input_queue
|
|
.pending_steers
|
|
.iter()
|
|
.map(|pending| pending.compare_key.clone())
|
|
.collect(),
|
|
rejected_steers_queue: self.input_queue.rejected_steers_queue.clone(),
|
|
rejected_steer_history_records: self.input_queue.rejected_steer_history_records.clone(),
|
|
queued_user_messages: self.input_queue.queued_user_messages.clone(),
|
|
queued_user_message_history_records: self
|
|
.input_queue
|
|
.queued_user_message_history_records
|
|
.clone(),
|
|
user_turn_pending_start: self.input_queue.user_turn_pending_start,
|
|
current_collaboration_mode: self.current_collaboration_mode.clone(),
|
|
active_collaboration_mask: self.active_collaboration_mask.clone(),
|
|
task_running: self.bottom_pane.is_task_running(),
|
|
agent_turn_running: self.turn_lifecycle.agent_turn_running,
|
|
})
|
|
}
|
|
|
|
pub(crate) fn restore_thread_input_state(&mut self, input_state: Option<ThreadInputState>) {
|
|
let restored_task_running = input_state.as_ref().is_some_and(|state| state.task_running);
|
|
if let Some(input_state) = input_state {
|
|
self.current_collaboration_mode = input_state.current_collaboration_mode;
|
|
self.active_collaboration_mask = input_state.active_collaboration_mask;
|
|
self.turn_lifecycle
|
|
.restore_running(input_state.agent_turn_running, Instant::now());
|
|
self.input_queue.user_turn_pending_start = input_state.user_turn_pending_start;
|
|
self.update_collaboration_mode_indicator();
|
|
self.refresh_model_dependent_surfaces();
|
|
if let Some(composer) = input_state.composer {
|
|
let local_image_paths = composer
|
|
.local_images
|
|
.into_iter()
|
|
.map(|img| img.path)
|
|
.collect();
|
|
self.set_remote_image_urls(composer.remote_image_urls);
|
|
self.bottom_pane.set_composer_text_with_mention_bindings(
|
|
composer.text,
|
|
composer.text_elements,
|
|
local_image_paths,
|
|
composer.mention_bindings,
|
|
);
|
|
self.bottom_pane
|
|
.set_composer_pending_pastes(composer.pending_pastes);
|
|
} else {
|
|
self.set_remote_image_urls(Vec::new());
|
|
self.bottom_pane.set_composer_text_with_mention_bindings(
|
|
String::new(),
|
|
Vec::new(),
|
|
Vec::new(),
|
|
Vec::new(),
|
|
);
|
|
self.bottom_pane.set_composer_pending_pastes(Vec::new());
|
|
}
|
|
let mut pending_steer_history_records = input_state.pending_steer_history_records;
|
|
pending_steer_history_records.resize(
|
|
input_state.pending_steers.len(),
|
|
UserMessageHistoryRecord::UserMessageText,
|
|
);
|
|
let mut pending_steer_compare_keys = input_state.pending_steer_compare_keys;
|
|
self.input_queue.pending_steers = input_state
|
|
.pending_steers
|
|
.into_iter()
|
|
.zip(pending_steer_history_records)
|
|
.map(|(user_message, history_record)| PendingSteer {
|
|
compare_key: pending_steer_compare_keys.pop_front().unwrap_or_else(|| {
|
|
PendingSteerCompareKey {
|
|
message: user_message.text.clone(),
|
|
image_count: user_message.local_images.len()
|
|
+ user_message.remote_image_urls.len(),
|
|
}
|
|
}),
|
|
history_record,
|
|
user_message,
|
|
})
|
|
.collect();
|
|
self.input_queue.rejected_steers_queue = input_state.rejected_steers_queue;
|
|
self.input_queue.rejected_steer_history_records =
|
|
input_state.rejected_steer_history_records;
|
|
self.input_queue.rejected_steer_history_records.resize(
|
|
self.input_queue.rejected_steers_queue.len(),
|
|
UserMessageHistoryRecord::UserMessageText,
|
|
);
|
|
self.input_queue.queued_user_messages = input_state.queued_user_messages;
|
|
self.input_queue.queued_user_message_history_records =
|
|
input_state.queued_user_message_history_records;
|
|
self.input_queue.queued_user_message_history_records.resize(
|
|
self.input_queue.queued_user_messages.len(),
|
|
UserMessageHistoryRecord::UserMessageText,
|
|
);
|
|
} else {
|
|
self.turn_lifecycle
|
|
.restore_running(/*running*/ false, Instant::now());
|
|
self.input_queue.clear();
|
|
self.set_remote_image_urls(Vec::new());
|
|
self.bottom_pane.set_composer_text_with_mention_bindings(
|
|
String::new(),
|
|
Vec::new(),
|
|
Vec::new(),
|
|
Vec::new(),
|
|
);
|
|
self.bottom_pane.set_composer_pending_pastes(Vec::new());
|
|
}
|
|
self.turn_lifecycle
|
|
.restore_running(self.turn_lifecycle.agent_turn_running, Instant::now());
|
|
self.update_task_running_state();
|
|
if restored_task_running && !self.bottom_pane.is_task_running() {
|
|
self.bottom_pane.set_task_running(/*running*/ true);
|
|
self.refresh_status_surfaces();
|
|
}
|
|
self.refresh_pending_input_preview();
|
|
self.request_redraw();
|
|
}
|
|
|
|
pub(crate) fn set_queue_autosend_suppressed(&mut self, suppressed: bool) {
|
|
self.input_queue.suppress_queue_autosend = suppressed;
|
|
}
|
|
}
|