Skip to main content

PullStore

Struct PullStore 

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

The directory of pull jobs.

Implementations§

Source§

impl PullStore

Source

pub fn new(root: impl Into<PathBuf>) -> Self

A store over root, which is created when the first job is.

Source

pub fn root(&self) -> &Path

The directory the jobs live in.

Source

pub fn create( &self, plan: &InstallPlan, now: i64, ) -> Result<PullJobDir, PullError>

Create a job for plan at now, claiming its directory and writing the descriptor and a queued record.

Source

pub fn open(&self, id: &str) -> Result<PullJobDir, PullError>

The job with exactly this id.

Source

pub fn list(&self) -> Vec<PullJobDir>

Every readable job, oldest first. A directory without a readable descriptor is not a job and is skipped; so is a store that cannot be read at all, which PullStore::jobs reports instead of hiding.

Source

pub fn jobs(&self) -> Result<Vec<PullJobDir>, PullError>

Every readable job, oldest first, reporting a store that could not be read (a missing store is simply empty).

Source

pub fn resolve(&self, query: &str) -> Result<PullJobDir, PullError>

The one job query names: an exact id, then an unambiguous id prefix, then an exact reference (ignoring case).

Source

pub fn under_way( &self, provider: &InstallProviderId, reference: &str, now_ms: i64, ) -> Option<PullJobDir>

The newest job pulling reference from provider that a client could join: one still going, or one that stopped with bytes worth resuming.

The reference is matched the way PullStore::resolve matches one, so a tag the provider rewrote (ls into ls:latest) only joins the job it created once the caller passes the rewritten form. A job whose worker never arrived is past joining: nothing is coming for it, and preferring it because it is newest would hide the pull that is actually running.

Source

pub fn sweep(&self, keep: usize, before_ms: i64) -> usize

Remove ended jobs last touched before before_ms, keeping the newest keep of them however old they are. Returns how many were removed.

Each goes through forget, so a job whose worker still holds the lock is left, however its record reads.

Trait Implementations§

Source§

impl Clone for PullStore

Source§

fn clone(&self) -> Self

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 PullStore

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

Source§

type Output = T

Should always be Self
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 = !

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

fn try_from(value: U) -> Result<T, !>

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.