mirror of
https://github.com/openai/codex.git
synced 2026-04-30 03:12:20 +03:00
37 lines
1.1 KiB
Rust
37 lines
1.1 KiB
Rust
use crate::markdown_stream::AnimatedLineStreamer;
|
|
use crate::markdown_stream::MarkdownStreamCollector;
|
|
pub(crate) mod controller;
|
|
|
|
pub(crate) struct StreamState {
|
|
pub(crate) collector: MarkdownStreamCollector,
|
|
pub(crate) streamer: AnimatedLineStreamer,
|
|
pub(crate) has_seen_delta: bool,
|
|
}
|
|
|
|
impl StreamState {
|
|
pub(crate) fn new() -> Self {
|
|
Self {
|
|
collector: MarkdownStreamCollector::new(),
|
|
streamer: AnimatedLineStreamer::new(),
|
|
has_seen_delta: false,
|
|
}
|
|
}
|
|
pub(crate) fn clear(&mut self) {
|
|
self.collector.clear();
|
|
self.streamer.clear();
|
|
self.has_seen_delta = false;
|
|
}
|
|
pub(crate) fn step(&mut self) -> crate::markdown_stream::StepResult {
|
|
self.streamer.step()
|
|
}
|
|
pub(crate) fn drain_all(&mut self) -> crate::markdown_stream::StepResult {
|
|
self.streamer.drain_all()
|
|
}
|
|
pub(crate) fn is_idle(&self) -> bool {
|
|
self.streamer.is_idle()
|
|
}
|
|
pub(crate) fn enqueue(&mut self, lines: Vec<ratatui::text::Line<'static>>) {
|
|
self.streamer.enqueue(lines)
|
|
}
|
|
}
|