struct PipeTo {
reader: Dom<ReadableStreamDefaultReader>,
writer: Dom<WritableStreamDefaultWriter>,
pending_writes: Rc<RefCell<VecDeque<Rc<Promise>>>>,
state: Rc<RefCell<PipeToState>>,
prevent_abort: bool,
prevent_cancel: bool,
prevent_close: bool,
shutting_down: Rc<Cell<bool>>,
shutdown_error: Rc<Heap<JSVal>>,
shutdown_action_promise: Rc<RefCell<Option<Rc<Promise>>>>,
result_promise: Rc<Promise>,
}
Expand description
The “in parallel, but not really” part of https://streams.spec.whatwg.org/#readable-stream-pipe-to
Note: the spec is flexible about how this is done, but requires the following constraints to apply:
- Public API must not be used: we’ll only use Rust.
- Backpressure must be enforced: we’ll only read from source when dest is ready.
- Shutdown must stop activity: we’ll do this together with the below.
- Error and close states must be propagated: we’ll do this by checking these states at every step.
Fields§
§reader: Dom<ReadableStreamDefaultReader>
§writer: Dom<WritableStreamDefaultWriter>
§pending_writes: Rc<RefCell<VecDeque<Rc<Promise>>>>
Pending writes are needed when shutting down(with an action), because we can only finalize when all writes are finished.
state: Rc<RefCell<PipeToState>>
The state machine.
prevent_abort: bool
§prevent_cancel: bool
§prevent_close: bool
§shutting_down: Rc<Cell<bool>>
The shuttingDown
variable of
https://streams.spec.whatwg.org/#readable-stream-pipe-to
shutdown_error: Rc<Heap<JSVal>>
The error potentially passed to shutdown, stored here because we must keep it across a microtask.
shutdown_action_promise: Rc<RefCell<Option<Rc<Promise>>>>
The promise returned by a shutdown action. We keep it to only continue when it is not pending anymore.
result_promise: Rc<Promise>
The promise resolved or rejected at https://streams.spec.whatwg.org/#rs-pipeTo-finalize
Implementations§
Source§impl PipeTo
impl PipeTo
Sourcefn wait_for_writer_ready(
&self,
global: &GlobalScope,
realm: InRealm<'_>,
can_gc: CanGc,
)
fn wait_for_writer_ready( &self, global: &GlobalScope, realm: InRealm<'_>, can_gc: CanGc, )
Wait for the writer to be ready, which implements the constraint that backpressure must be enforced.
Sourcefn read_chunk(&self, global: &GlobalScope, realm: InRealm<'_>, can_gc: CanGc)
fn read_chunk(&self, global: &GlobalScope, realm: InRealm<'_>, can_gc: CanGc)
Read a chunk
Sourcefn write_chunk(
&self,
cx: SafeJSContext,
global: &GlobalScope,
chunk: SafeHandleValue<'_>,
can_gc: CanGc,
) -> bool
fn write_chunk( &self, cx: SafeJSContext, global: &GlobalScope, chunk: SafeHandleValue<'_>, can_gc: CanGc, ) -> bool
Try to write a chunk using the jsval, and returns wether it succeeded
Sourcefn wait_on_pending_write(
&self,
global: &GlobalScope,
promise: Rc<Promise>,
realm: InRealm<'_>,
can_gc: CanGc,
)
fn wait_on_pending_write( &self, global: &GlobalScope, promise: Rc<Promise>, realm: InRealm<'_>, can_gc: CanGc, )
Only as part of shutting-down do we wait on pending writes (backpressure is communicated not through pending writes but through the readiness of the writer).
Sourcefn check_and_propagate_errors_forward(
&self,
cx: SafeJSContext,
global: &GlobalScope,
realm: InRealm<'_>,
can_gc: CanGc,
)
fn check_and_propagate_errors_forward( &self, cx: SafeJSContext, global: &GlobalScope, realm: InRealm<'_>, can_gc: CanGc, )
Errors must be propagated forward part of https://streams.spec.whatwg.org/#readable-stream-pipe-to
Sourcefn check_and_propagate_errors_backward(
&self,
cx: SafeJSContext,
global: &GlobalScope,
realm: InRealm<'_>,
can_gc: CanGc,
)
fn check_and_propagate_errors_backward( &self, cx: SafeJSContext, global: &GlobalScope, realm: InRealm<'_>, can_gc: CanGc, )
Errors must be propagated backward part of https://streams.spec.whatwg.org/#readable-stream-pipe-to
Sourcefn check_and_propagate_closing_forward(
&self,
cx: SafeJSContext,
global: &GlobalScope,
realm: InRealm<'_>,
can_gc: CanGc,
)
fn check_and_propagate_closing_forward( &self, cx: SafeJSContext, global: &GlobalScope, realm: InRealm<'_>, can_gc: CanGc, )
Closing must be propagated forward part of https://streams.spec.whatwg.org/#readable-stream-pipe-to
Sourcefn check_and_propagate_closing_backward(
&self,
cx: SafeJSContext,
global: &GlobalScope,
realm: InRealm<'_>,
can_gc: CanGc,
)
fn check_and_propagate_closing_backward( &self, cx: SafeJSContext, global: &GlobalScope, realm: InRealm<'_>, can_gc: CanGc, )
Closing must be propagated backward part of https://streams.spec.whatwg.org/#readable-stream-pipe-to
Sourcefn shutdown(
&self,
cx: SafeJSContext,
global: &GlobalScope,
action: Option<ShutdownAction>,
realm: InRealm<'_>,
can_gc: CanGc,
)
fn shutdown( &self, cx: SafeJSContext, global: &GlobalScope, action: Option<ShutdownAction>, realm: InRealm<'_>, can_gc: CanGc, )
https://streams.spec.whatwg.org/#rs-pipeTo-shutdown-with-action https://streams.spec.whatwg.org/#rs-pipeTo-shutdown Combined into one method with an optional action.
Sourcefn perform_action(
&self,
cx: SafeJSContext,
global: &GlobalScope,
action: ShutdownAction,
realm: InRealm<'_>,
can_gc: CanGc,
)
fn perform_action( &self, cx: SafeJSContext, global: &GlobalScope, action: ShutdownAction, realm: InRealm<'_>, can_gc: CanGc, )
The perform action part of https://streams.spec.whatwg.org/#rs-pipeTo-shutdown-with-action
Sourcefn finalize(&self, cx: SafeJSContext, global: &GlobalScope, can_gc: CanGc)
fn finalize(&self, cx: SafeJSContext, global: &GlobalScope, can_gc: CanGc)
Trait Implementations§
Source§impl Callback for PipeTo
impl Callback for PipeTo
Source§fn callback(
&self,
cx: SafeJSContext,
result: SafeHandleValue<'_>,
realm: InRealm<'_>,
can_gc: CanGc,
)
fn callback( &self, cx: SafeJSContext, result: SafeHandleValue<'_>, realm: InRealm<'_>, can_gc: CanGc, )
The pipe makes progress one microtask at a time. Note: we use one struct as the callback for all promises, and for both of their reactions.
The context of the callback is determined from:
- the current state.
- the type of
result
. - the state of a stored promise(in some cases).
Source§impl MallocSizeOf for PipeTo
impl MallocSizeOf for PipeTo
Source§fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize
fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize
Auto Trait Implementations§
impl Freeze for PipeTo
impl !RefUnwindSafe for PipeTo
impl !Send for PipeTo
impl !Sync for PipeTo
impl Unpin for PipeTo
impl !UnwindSafe for PipeTo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Filterable for T
impl<T> Filterable for T
Source§fn filterable(
self,
filter_name: &'static str,
) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>
fn filterable( self, filter_name: &'static str, ) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more