Skip to main content

RouteDecision

Struct RouteDecision 

Source
pub struct RouteDecision {
    pub target: Target,
    pub upstream_protocol: Protocol,
    pub header_ops: Vec<HeaderOp>,
    pub body_transform: BodyTransform,
    pub epoch: Epoch,
}
Expand description

The routing decision: the single destination plus the transforms to apply.

In v1 exactly one Target is resolved, no synchronous fan-out (ADR-002). The Epoch is the placement-table generation the decision was derived from; it is stamped onto the write so the sink can reject a stale-epoch write during a migration (docs/06 §2).

Read-path concerns are derived, not separate fields: the mandatory partition query filter and the response field-strip are both computed from BodyTransform (the injected PartitionId field is the isolation key, see osproxy-engine’s read module), and cursor (scroll/PIT) affinity is handled by the engine’s cursor signer on those endpoints. Deriving them from the same body_transform that drives the write-path inject is what keeps the two provably inverse (docs/02, round-trip property test in docs/09).

§Examples

use osproxy_spi::{RouteDecision, BodyTransform, Protocol};
use osproxy_spi::core::{Target, ClusterId, IndexName, Epoch};

let target = Target::new(ClusterId::from("eu-1"), IndexName::from("orders"));
let decision = RouteDecision::passthrough(target, Protocol::Http1, Epoch::new(1));
assert!(decision.body_transform.is_none());
assert_eq!(decision.epoch, Epoch::new(1));

Fields§

§target: Target

The single physical destination.

§upstream_protocol: Protocol

The protocol to use upstream (may differ from ingress).

§header_ops: Vec<HeaderOp>

Header mutations to apply before forwarding.

§body_transform: BodyTransform

The body transform to apply.

§epoch: Epoch

The placement epoch this decision was derived from.

Implementations§

Source§

impl RouteDecision

Source

pub fn passthrough( target: Target, upstream_protocol: Protocol, epoch: Epoch, ) -> Self

Constructs a decision with no header ops and no body transform.

Source

pub fn with_body_transform(self, transform: BodyTransform) -> Self

Sets the body transform (builder style).

Trait Implementations§

Source§

impl Clone for RouteDecision

Source§

fn clone(&self) -> RouteDecision

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
Source§

impl Debug for RouteDecision

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Eq for RouteDecision

Source§

impl PartialEq for RouteDecision

Source§

fn eq(&self, other: &RouteDecision) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for RouteDecision

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<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> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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> 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 = Infallible

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

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

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.