Struct cargo::util::Filesystem

source ·
pub struct Filesystem { /* private fields */ }
Expand description

A “filesystem” is intended to be a globally shared, hence locked, resource in Cargo.

The Path of a filesystem cannot be learned unless it’s done in a locked fashion, and otherwise functions on this structure are prepared to handle concurrent invocations across multiple instances of Cargo.

The methods on Filesystem that open files return a FileLock which holds the lock, and that type provides methods for accessing the underlying file.

If the blocking methods (like Filesystem::open_ro_shared) detect that they will block, then they will display a message to the user letting them know it is blocked. There are non-blocking variants starting with the try_ prefix like Filesystem::try_open_ro_shared_create.

The behavior of locks acquired by the Filesystem depend on the operating system. On unix-like system, they are advisory using flock, and thus not enforced against processes which do not try to acquire the lock. On Windows, they are mandatory using LockFileEx, enforced against all processes.

This does not guarantee that a lock is acquired. In some cases, for example on filesystems that don’t support locking, it will return a FileLock even though the filesystem lock was not acquired. This is intended to provide a graceful fallback instead of refusing to work. Usually there aren’t multiple processes accessing the same resource. In that case, it is the user’s responsibility to not run concurrent processes.

Implementations§

source§

impl Filesystem

source

pub fn new(path: PathBuf) -> Filesystem

Creates a new filesystem to be rooted at the given path.

source

pub fn join<T: AsRef<Path>>(&self, other: T) -> Filesystem

Like Path::join, creates a new filesystem rooted at this filesystem joined with the given path.

source

pub fn push<T: AsRef<Path>>(&mut self, other: T)

Like Path::push, pushes a new path component onto this filesystem.

source

pub fn into_path_unlocked(self) -> PathBuf

Consumes this filesystem and returns the underlying PathBuf.

Note that this is a relatively dangerous operation and should be used with great caution!.

source

pub fn as_path_unlocked(&self) -> &Path

Returns the underlying Path.

Note that this is a relatively dangerous operation and should be used with great caution!.

source

pub fn create_dir(&self) -> CargoResult<()>

Creates the directory pointed to by this filesystem.

Handles errors where other Cargo processes are also attempting to concurrently create this directory.

source

pub fn display(&self) -> Display<'_>

Returns an adaptor that can be used to print the path of this filesystem.

source

pub fn open_rw_exclusive_create<P>( &self, path: P, config: &Config, msg: &str ) -> CargoResult<FileLock>
where P: AsRef<Path>,

Opens read-write exclusive access to a file, returning the locked version of a file.

This function will create a file at path if it doesn’t already exist (including intermediate directories), and then it will acquire an exclusive lock on path. If the process must block waiting for the lock, the msg is printed to Config.

The returned file can be accessed to look at the path and also has read/write access to the underlying file.

source

pub fn try_open_rw_exclusive_create<P: AsRef<Path>>( &self, path: P ) -> CargoResult<Option<FileLock>>

A non-blocking version of Filesystem::open_rw_exclusive_create.

Returns None if the operation would block due to another process holding the lock.

source

pub fn open_ro_shared<P>( &self, path: P, config: &Config, msg: &str ) -> CargoResult<FileLock>
where P: AsRef<Path>,

Opens read-only shared access to a file, returning the locked version of a file.

This function will fail if path doesn’t already exist, but if it does then it will acquire a shared lock on path. If the process must block waiting for the lock, the msg is printed to Config.

The returned file can be accessed to look at the path and also has read access to the underlying file. Any writes to the file will return an error.

source

pub fn open_ro_shared_create<P: AsRef<Path>>( &self, path: P, config: &Config, msg: &str ) -> CargoResult<FileLock>

Opens read-only shared access to a file, returning the locked version of a file.

Compared to Filesystem::open_ro_shared, this will create the file (and any directories in the parent) if the file does not already exist.

source

pub fn try_open_ro_shared_create<P: AsRef<Path>>( &self, path: P ) -> CargoResult<Option<FileLock>>

A non-blocking version of Filesystem::open_ro_shared_create.

Returns None if the operation would block due to another process holding the lock.

Trait Implementations§

source§

impl Clone for Filesystem

source§

fn clone(&self) -> Filesystem

Returns a copy 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 Debug for Filesystem

source§

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

Formats the value using the given formatter. Read more
source§

impl PartialEq<Filesystem> for Path

source§

fn eq(&self, other: &Filesystem) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq<Path> for Filesystem

source§

fn eq(&self, other: &Path) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

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

source§

const ALIGN: usize = _

The alignment of pointer.
§

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

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

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>,

§

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>,

§

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