Skip to main content

Downloader

Struct Downloader 

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

A reusable HTTP downloader.

Implementations§

Source§

impl Downloader

Source

pub fn new() -> VtaResult<Downloader>

Build a secure downloader (TLS via rustls, connect timeout). Plaintext http:// to non-loopback hosts is rejected and https→http downgrade redirects are refused.

Source

pub fn insecure() -> VtaResult<Downloader>

Build a downloader that additionally permits plaintext http:// to any host. This is the dangerous insecure opt-in (audit M6/C1): callers must surface it to the operator. https→http downgrade redirects are still refused.

Source

pub fn with_retries(self, retries: u32) -> Self

Override the per-URL retry count (default 3).

Source

pub fn download(&self, url: &str, dest: &Path) -> VtaResult<()>

Download url into dest, resuming a partial <dest>.part if present and retrying transient failures with backoff. No size ceiling.

Source

pub fn download_capped( &self, url: &str, dest: &Path, max: Option<u64>, ) -> VtaResult<()>

Like Downloader::download but aborts with an error if more than max bytes would be written (audit M8). None means no ceiling.

Source

pub fn download_capped_with_progress( &self, url: &str, dest: &Path, max: Option<u64>, progress: Option<&ProgressFn<'_>>, ) -> VtaResult<()>

Like Downloader::download_capped, but reports streamed bytes through progress (e.g. to advance a progress bar). Used for the registry index download where the total length is not known in advance.

Source

pub fn download_any( &self, urls: &[String], dest: &Path, max: Option<u64>, ) -> VtaResult<()>

Try a primary URL then mirrors/alternates in order, returning on the first success. A mirror that serves wrong bytes is caught by the caller’s hash verification, so falling through mirrors is safe (docs/13-offline.md). max, when set, caps the bytes accepted from any single URL (M8).

Source

pub fn download_any_with_progress( &self, urls: &[String], dest: &Path, max: Option<u64>, progress: Option<&ProgressFn<'_>>, ) -> VtaResult<()>

Like Downloader::download_any, but reports streamed bytes through progress so the caller can render a download bar (bytes/total/ETA).

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.

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

Source§

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