Skip to main content

MockSuotarStore

Struct MockSuotarStore 

Source
pub struct MockSuotarStore {
    client: Client,
    connection: OnceCell<ConnectionManager>,
    generation: RwLock<Option<String>>,
    install_lock: Mutex<()>,
}

Fields§

§client: Client§connection: OnceCell<ConnectionManager>§generation: RwLock<Option<String>>

Cached because one server process owns the index; re-read only when a prefixed read comes back empty.

§install_lock: Mutex<()>

Implementations§

Source§

impl MockSuotarStore

Source

pub fn new(redis_url: &str, db_index: i64) -> Result<Self>

Swaps in the mock’s own database index so a flush touches nothing of the cache’s. Connects on first use, so an unreachable Redis is a per-request error rather than a cached success.

Source

async fn conn(&self) -> Result<ConnectionManager>

Source

fn cached_generation(&self) -> Option<String>

Source

fn cache_generation(&self, generation: Option<String>)

Source

pub async fn live_generation(&self) -> Result<Option<String>>

Source

pub async fn install_world( &self, world: &World, db_generation: Option<&str>, ) -> Result<String>

Flips the generation pointer last, so no request sees a half-installed world and a push needs nothing cleared before it.

Source

pub async fn install_if_absent( &self, world: &World, db_generation: Option<&str>, ) -> Result<String>

Serialised so a burst of first requests against an empty index does not each mint a generation.

Source

async fn has_world(&self, generation: &str) -> Result<bool>

Source

pub async fn flush(&self) -> Result<()>

Safe because the index is the mock’s alone; the next contract request builds the world lazily.

Source

pub async fn preamble(&self, generation: &str) -> Result<Preamble>

Source

pub async fn load_persons( &self, generation: &str, student_numbers: &[String], ) -> Result<BTreeMap<String, MockPerson>>

Source

pub async fn load_product_tokens( &self, generation: &str, product_ids: &[String], ) -> Result<BTreeMap<String, MockProductAccessToken>>

Source

pub async fn load_for_person_course( &self, generation: &str, student_numbers: &[String], course_codes: &[String], ) -> Result<WorkingSet>

Two pipelined round trips whatever the batch size: the keyed hashes, then the entities they point at.

Source

pub async fn load_for_verify( &self, generation: &str, submitted_attainment_ids: &[String], ) -> Result<WorkingSet>

Verify’s body carries only submitted attainment ids, so the persons behind them come second.

Source

pub async fn load_for_list_by_course( &self, generation: &str, course_codes: &[String], ) -> Result<WorkingSet>

Source

pub async fn commit( &self, generation: &str, working: &WorkingSet, call: &RecordedCall, call_log_capacity: usize, ) -> Result<()>

The one write of a request: changed entities plus its call-log entry, in one atomic pipeline.

Source

pub async fn next_call_seq(&self, generation: &str) -> Result<u64>

Source

pub async fn next_person_seq(&self, generation: &str) -> Result<i64>

Source

pub async fn next_fault_seq(&self, generation: &str) -> Result<u64>

Re-arming an id takes a fresh one, so the fault moves to the back of arm order.

Source

pub async fn draw( &self, generation: &str, fault_id: &str, delta: i64, ) -> Result<i64>

The caller acts on the returned value, never on a separate read.

Source

pub async fn upsert_json<T: Serialize>( &self, generation: &str, hash: EntityHash, entries: &BTreeMap<String, T>, ) -> Result<()>

Source

pub async fn get_json<T: DeserializeOwned>( &self, generation: &str, hash: EntityHash, field: &str, ) -> Result<Option<T>>

Source

pub async fn all_json<T: DeserializeOwned>( &self, generation: &str, hash: EntityHash, ) -> Result<BTreeMap<String, T>>

Source

pub async fn delete_fields( &self, generation: &str, hash: EntityHash, fields: &[String], ) -> Result<()>

Source

pub async fn owner_keys( &self, generation: &str, field: &str, ) -> Result<Option<OwnerKeys>>

Source

pub async fn known_owner_refs(&self, generation: &str) -> Result<Vec<String>>

Source

pub async fn faults(&self, generation: &str) -> Result<Vec<Fault>>

Source

pub async fn remaining_budgets( &self, generation: &str, ) -> Result<HashMap<String, i64>>

Source

pub async fn arm_fault(&self, generation: &str, fault: &Fault) -> Result<()>

Source

pub async fn disarm_faults( &self, generation: &str, ids: &[String], ) -> Result<()>

Source

pub async fn recent_calls( &self, generation: &str, limit: usize, ) -> Result<Vec<RecordedCall>>

Every read of the call log is bounded: a list has no index, so a filter is always a scan.

Source

pub async fn counts(&self, generation: &str) -> Result<WorldCounts>

Source

pub async fn set_defaults( &self, generation: &str, defaults: &WorldDefaults, ) -> Result<()>

Source

pub async fn clear_hash(&self, generation: &str, hash: EntityHash) -> Result<()>

Source

pub async fn clear_faults(&self, generation: &str) -> Result<()>

Source

pub async fn reindex(&self, generation: &str) -> Result<()>

Rebuilds every derived index from the stored entities, so an upsert cannot leave one behind.

Trait Implementations§

Source§

impl Debug for MockSuotarStore

Source§

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

Formats the value using the given formatter. 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<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> FutureExt for T

§

fn with_context(self, otel_cx: Context) -> WithContext<Self>

Attaches the provided Context to this type, returning a WithContext wrapper. Read more
§

fn with_current_context(self) -> WithContext<Self>

Attaches the current Context to this type, returning a WithContext wrapper. Read more
§

impl<T> Instrument for T

§

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

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

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

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

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

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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

impl<T> IntoRequest<T> for T

§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
§

impl<L> LayerExt<L> for L

§

fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>
where L: Layer<S>,

Applies the layer to a service and wraps it in [Layered].
§

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

§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: 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
§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: 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> Same for T

Source§

type Output = T

Should always be Self
§

impl<T> ServiceExt for T

§

fn map_response_body<F>(self, f: F) -> MapResponseBody<Self, F>
where Self: Sized,

Apply a transformation to the response body. Read more
§

fn decompression(self) -> Decompression<Self>
where Self: Sized,

Decompress response bodies. Read more
§

fn trace_for_http(self) -> Trace<Self, SharedClassifier<ServerErrorsAsFailures>>
where Self: Sized,

High level tracing that classifies responses using HTTP status codes. Read more
§

fn trace_for_grpc(self) -> Trace<Self, SharedClassifier<GrpcErrorsAsFailures>>
where Self: Sized,

High level tracing that classifies responses using gRPC headers. Read more
§

fn follow_redirects(self) -> FollowRedirect<Self>
where Self: Sized,

Follow redirect resposes using the Standard policy. 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.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

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
§

fn with_current_subscriber(self) -> WithDispatch<Self>

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

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

§

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

§

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

§

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