[codex-analytics] feature plumbing and emittance

This commit is contained in:
rhan-oai
2026-04-06 12:26:33 -07:00
parent 6d273dd348
commit 031eb880e7
21 changed files with 1264 additions and 44 deletions

View File

@@ -2275,6 +2275,14 @@ pub enum InitialHistory {
}
impl InitialHistory {
pub fn scan_rollout_items(&self, mut predicate: impl FnMut(&RolloutItem) -> bool) -> bool {
match self {
InitialHistory::New => false,
InitialHistory::Resumed(resumed) => resumed.history.iter().any(&mut predicate),
InitialHistory::Forked(items) => items.iter().any(predicate),
}
}
pub fn forked_from_id(&self) -> Option<ThreadId> {
match self {
InitialHistory::New => None,