SchemaRepository

Struct SchemaRepository 

Source
pub struct SchemaRepository { /* private fields */ }
Expand description

Thread-safe in-memory schema repository

Stores schema definitions with concurrent read/write access using DashMap. Suitable for production use with high-concurrency workloads.

§Design Philosophy

  • Lock-free concurrent access using sharded hash maps
  • Zero-copy schema retrieval using Arc
  • Type-safe schema identifiers
  • Simple CRUD operations

§Examples

let repo = SchemaRepository::new();
let schema_id = SchemaId::new("user-v1");
let schema = Schema::integer(Some(1), Some(100));

repo.store(schema_id.clone(), schema).unwrap();
let retrieved = repo.get(&schema_id).unwrap();

Implementations§

Source§

impl SchemaRepository

Source

pub fn new() -> Self

Create a new empty schema repository

Source

pub fn store(&self, id: SchemaId, schema: Schema) -> ApplicationResult<()>

Store a schema definition

§Arguments
  • id - Unique schema identifier
  • schema - Schema definition to store
§Returns

Ok(()) if stored successfully

§Errors

Returns error if schema with same ID already exists (use update instead)

Source

pub fn update( &self, id: SchemaId, schema: Schema, ) -> ApplicationResult<Arc<Schema>>

Update an existing schema definition

§Arguments
  • id - Schema identifier
  • schema - New schema definition
§Returns

Ok(previous_schema) with the replaced schema if it existed

§Errors

Returns error if schema does not exist (use store instead)

Source

pub fn store_or_update( &self, id: SchemaId, schema: Schema, ) -> ApplicationResult<Option<Arc<Schema>>>

Store or update a schema (upsert operation)

§Arguments
  • id - Schema identifier
  • schema - Schema definition
§Returns

Ok(Some(previous)) if schema was updated, Ok(None) if newly created

Source

pub fn get(&self, id: &SchemaId) -> ApplicationResult<Arc<Schema>>

Retrieve a schema by ID

§Arguments
  • id - Schema identifier
§Returns

Ok(Arc<Schema>) if schema exists

§Errors

Returns error if schema not found

Source

pub fn exists(&self, id: &SchemaId) -> bool

Check if a schema exists

§Arguments
  • id - Schema identifier
§Returns

true if schema exists, false otherwise

Source

pub fn delete(&self, id: &SchemaId) -> ApplicationResult<Arc<Schema>>

Delete a schema by ID

§Arguments
  • id - Schema identifier
§Returns

Ok(schema) with the deleted schema if it existed

§Errors

Returns error if schema not found

Source

pub fn list_ids(&self) -> Vec<SchemaId>

List all schema IDs

§Returns

Vector of all schema IDs in the repository

Source

pub fn count(&self) -> usize

Get number of schemas stored

§Returns

Count of schemas in repository

Source

pub fn clear(&self)

Clear all schemas

Removes all stored schemas from the repository.

Trait Implementations§

Source§

impl Clone for SchemaRepository

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Default for SchemaRepository

Source§

fn default() -> Self

Returns the “default value” for a type. 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> 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> 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> 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
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
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.
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