Skip to main content

NodeTransport

Struct NodeTransport 

Source
pub struct NodeTransport { /* private fields */ }

Implementations§

Source§

impl NodeTransport

Source

pub fn start( child: Child, stdin: ChildStdin, stdout: ChildStdout, ) -> Result<(Self, Value), String>

Source

pub fn start_with_cleanup( child: Child, stdin: ChildStdin, stdout: ChildStdout, cleanup_path: Option<PathBuf>, ) -> Result<(Self, Value), String>

Start a transport and remove an optional host script when the child is dropped. Windows cannot carry the embedded Node source in node -e once the host grows beyond the CreateProcess command-line limit, so the caller may launch a temporary .mjs file and hand its path to us.

Source

pub fn start_with_cleanup_and_handlers( child: Child, stdin: ChildStdin, stdout: ChildStdout, cleanup_path: Option<PathBuf>, initial_handlers: Vec<RuntimeHandler>, ) -> Result<(Self, Value), String>

Start a transport with runtime handlers that are available while the Node host is loading extension factories and lifecycle hooks. The host may issue runtime_request messages before it publishes its id:0 initialization response, so the reader must be running before waiting for that response.

Source

pub fn start_pending_with_cleanup_and_handlers( child: Child, stdin: ChildStdin, stdout: ChildStdout, cleanup_path: Option<PathBuf>, initial_handlers: Vec<RuntimeHandler>, ) -> Result<NodeTransportStartup, String>

Spawn the transport and start its reader, returning before the Node host’s initialization response arrives. This is the primitive used by the lazy runtime so shutdown can kill a host whose extension factory is stuck before it emits id:0.

Source

pub fn shutdown(&self)

Stop the Node host and resolve all currently pending requests with an error. Safe to call repeatedly and while other transport clones exist.

Source

pub fn is_shutdown(&self) -> bool

Whether the reader or an explicit shutdown has made this transport unusable. Lazy owners use this to discard a stale slot and retry on the next request.

Source

pub fn same_instance(&self, other: &Self) -> bool

Whether two handles refer to the same child process. Lazy startup can briefly expose one handle through both its starting and transport slots; callers updating shared runtime handlers must avoid appending the same callback twice in that window.

Source

pub fn begin_request( &self, method: &str, payload: Value, ) -> Result<PendingRequest, String>

Source

pub fn request(&self, method: &str, payload: Value) -> Result<Value, String>

Source

pub fn send_event(&self, event: Value) -> Result<(), String>

Source

pub fn request_event(&self, event: Value) -> Result<Value, String>

Send a host event and wait for a normal id-correlated response. This is used for terminal input listeners, whose consume result must be known before the outer Rust TUI dispatches the same key.

Source

pub fn cancel(&self, id: u64) -> Result<(), String>

Source

pub fn register_tool_update_handler( &self, tool_call_id: impl Into<String>, handler: ToolUpdateHandler, ) -> Result<(), String>

Register a callback for partial updates emitted by one JS tool call.

The callback is intentionally keyed by the Pi tool-call id rather than the transport request id: the former is what Node receives and what remains stable when a request is cancelled or retried.

Source

pub fn unregister_tool_update_handler(&self, tool_call_id: &str)

Stop routing partial updates after a tool call settles. This also suppresses updates sent by a JS tool after its execute promise resolves, matching the agent loop’s late-update gate.

Source

pub fn replace_runtime_handlers( &self, handler: RuntimeHandler, ) -> Result<(), String>

Source

pub fn add_runtime_handler(&self, handler: RuntimeHandler) -> Result<(), String>

Trait Implementations§

Source§

impl Clone for NodeTransport

Source§

fn clone(&self) -> NodeTransport

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DynClone for T
where T: Clone,

Source§

fn __clone_box(&self, _: Private) -> *mut ()

Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> MaybeSendSync for T

Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more