vtcode 0.99.1

A Rust-based terminal coding agent with modular architecture supporting multiple LLM providers
use vtcode_core::core::agent::events::{EventSink, event_sink};
use vtcode_core::core::agent::runtime::StreamingLifecycleBridge as CoreStreamingLifecycleBridge;
use vtcode_core::exec::events::ThreadEvent;

use crate::agent::runloop::unified::inline_events::harness::HarnessEventEmitter;
use crate::agent::runloop::unified::ui_interaction::StreamProgressEvent;

pub(super) struct HarnessStreamingBridge {
    inner: CoreStreamingLifecycleBridge,
}

impl HarnessStreamingBridge {
    pub(super) fn new(
        emitter: Option<&HarnessEventEmitter>,
        turn_id: &str,
        step: usize,
        attempt: usize,
    ) -> Self {
        let event_sink = emitter.cloned().map(harness_event_sink);
        Self {
            inner: CoreStreamingLifecycleBridge::new(event_sink, turn_id, step, attempt),
        }
    }

    pub(super) fn on_progress(&mut self, event: StreamProgressEvent) {
        self.inner.on_progress(event);
    }

    pub(super) fn abort(&mut self) {
        self.inner.abort();
    }

    pub(super) fn complete_open_items(&mut self) {
        self.inner.complete_open_items();
    }

    pub(super) fn take_streamed_tool_call_items(&mut self) -> hashbrown::HashMap<String, String> {
        self.inner.take_streamed_tool_call_items()
    }
}

fn harness_event_sink(emitter: HarnessEventEmitter) -> EventSink {
    event_sink(move |event: &ThreadEvent| {
        let _ = emitter.emit(event.clone());
    })
}