Skip to main content

NixHTTPPathInfoService

Struct NixHTTPPathInfoService 

Source
pub struct NixHTTPPathInfoService<BS: Clone, DS> {
    instance_name: String,
    base_url: Url,
    http_client: ClientWithMiddleware,
    blob_service: BS,
    directory_service: DS,
    layered_blob_service: Cache<BS, GRPCBlobService<Channel>>,
    layered_directory_service: Cache<DS, GRPCDirectoryService<Channel>>,
    trusted_public_keys: Vec<VerifyingKey>,
    force_download_nar: bool,
}
Expand description

NixHTTPPathInfoService acts as a bridge in between the Nix HTTP Binary cache protocol provided by Nix binary caches such as cache.nixos.org, and the Snix Store Model. It implements the PathInfoService trait in an interesting way: Every PathInfoService::get fetches the .narinfo and referred NAR file, inserting components into a BlobService and DirectoryService, then returning a PathInfo struct with the root.

Due to this being quite a costly operation, clients are expected to layer this service with store composition, so they’re only ingested once.

The client is expected to be (indirectly) using the same BlobService and DirectoryService, so able to fetch referred Directories and Blobs. PathInfoService::put is not implemented and returns an error if called. TODO: what about reading from nix-cache-info?

Fields§

§instance_name: String§base_url: Url§http_client: ClientWithMiddleware§blob_service: BS§directory_service: DS§layered_blob_service: Cache<BS, GRPCBlobService<Channel>>

A BlobService Cache with ‘far’ talking to the configured endpoint over gRPC. This is used when validating castore-infused NAR URLs in NARInfos. We rely on Cache to insert into ‘near’.

§layered_directory_service: Cache<DS, GRPCDirectoryService<Channel>>

A DirectoryService Cache with ‘far’ talking to the configured endpoint over gRPC. This is used when validating castore-infused NAR URLs in NARInfos. We rely on Cache to insert into ‘near’.

§trusted_public_keys: Vec<VerifyingKey>

An optional list of narinfo::VerifyingKey. If the list is not empty, the .narinfo files received need to have correct signature by at least one of these.

§force_download_nar: bool

Force the download of NAR files, even if there’s castore-infused NAR URLs.

Implementations§

Source§

impl<BS, DS> NixHTTPPathInfoService<BS, DS>
where BS: Clone, DS: DirectoryService + Clone,

Source

pub fn try_build( instance_name: String, config: NixHTTPPathInfoServiceConfig, blob_service: BS, directory_service: DS, ) -> Result<Self, Error>

Source

fn derive_narinfo_url(&self, digest: [u8; 20]) -> Result<Url, Error>

Trait Implementations§

Source§

impl<BS, DS> PathInfoService for NixHTTPPathInfoService<BS, DS>
where BS: BlobService + Send + Sync + Clone + 'static, DS: DirectoryService + Send + Sync + Clone + 'static,

Source§

fn get<'life0, 'async_trait>( &'life0 self, digest: [u8; 20], ) -> Pin<Box<dyn Future<Output = Result<Option<PathInfo>, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Retrieve a PathInfo by the output digest.
Source§

fn has<'life0, 'async_trait>( &'life0 self, digest: [u8; 20], ) -> Pin<Box<dyn Future<Output = Result<bool, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Check if a PathInfo exists. Has a naïve default impl, but store implementations may decide to implement their own.
Source§

fn put<'life0, 'async_trait>( &'life0 self, _path_info: PathInfo, ) -> Pin<Box<dyn Future<Output = Result<PathInfo, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Store a PathInfo.
Source§

fn list(&self) -> BoxStream<'static, Result<PathInfo, Error>>

Iterate over all PathInfo objects in the store. Implementations can decide to disallow listing. Read more
Source§

fn nar_calculation_service(&self) -> Option<Box<dyn NarCalculationService>>

Returns a (more) suitable NarCalculationService. This can be used to offload NAR calculation to the remote side.

Auto Trait Implementations§

§

impl<BS, DS> !Freeze for NixHTTPPathInfoService<BS, DS>

§

impl<BS, DS> !RefUnwindSafe for NixHTTPPathInfoService<BS, DS>

§

impl<BS, DS> Send for NixHTTPPathInfoService<BS, DS>
where BS: Send, DS: Send,

§

impl<BS, DS> Sync for NixHTTPPathInfoService<BS, DS>
where BS: Sync, DS: Sync,

§

impl<BS, DS> Unpin for NixHTTPPathInfoService<BS, DS>
where BS: Unpin, DS: Unpin,

§

impl<BS, DS> UnsafeUnpin for NixHTTPPathInfoService<BS, DS>
where BS: UnsafeUnpin, DS: UnsafeUnpin,

§

impl<BS, DS> !UnwindSafe for NixHTTPPathInfoService<BS, DS>

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.

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
§

impl<T> IntoRequest<T> for T

§

fn into_request(self) -> Request<T>

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

impl<Unshared, Shared> IntoShared<Shared> for Unshared
where Shared: FromUnshared<Unshared>,

Source§

fn into_shared(self) -> Shared

Creates a shared type from an unshared type.
§

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].
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> PolicyExt for T
where T: ?Sized,

Source§

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

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
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<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

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