Struct cargo::sources::path::PathSource
source · pub struct PathSource<'cfg> {
source_id: SourceId,
path: PathBuf,
updated: bool,
packages: Vec<Package>,
recursive: bool,
config: &'cfg Config,
}
Expand description
A source represents one or multiple packages gathering from a given root path on the filesystem.
It’s the cornerstone of every other source — other implementations
eventually need to call PathSource
to read local packages somewhere on
the filesystem.
It also provides convenient methods like PathSource::list_files
to
list all files in a package, given its ability to walk the filesystem.
Fields§
§source_id: SourceId
The unique identifier of this source.
path: PathBuf
The root path of this source.
updated: bool
Whether this source has updated all package information it may contain.
packages: Vec<Package>
Packages that this sources has discovered.
recursive: bool
Whether this source should discover nested packages recursively.
See PathSource::new_recursive
for more.
config: &'cfg Config
Implementations§
source§impl<'cfg> PathSource<'cfg>
impl<'cfg> PathSource<'cfg>
sourcepub fn new(
path: &Path,
source_id: SourceId,
config: &'cfg Config
) -> PathSource<'cfg>
pub fn new( path: &Path, source_id: SourceId, config: &'cfg Config ) -> PathSource<'cfg>
Invoked with an absolute path to a directory that contains a Cargo.toml
.
This source will only return the package at precisely the path
specified, and it will be an error if there’s not a package at path
.
sourcepub fn new_recursive(
root: &Path,
id: SourceId,
config: &'cfg Config
) -> PathSource<'cfg>
pub fn new_recursive( root: &Path, id: SourceId, config: &'cfg Config ) -> PathSource<'cfg>
Creates a new source which is walked recursively to discover packages.
This is similar to the PathSource::new
method except that instead
of requiring a valid package to be present at root
the folder is
walked entirely to crawl for packages.
Note that this should be used with care and likely shouldn’t be chosen by default!
sourcepub fn preload_with(&mut self, pkg: Package)
pub fn preload_with(&mut self, pkg: Package)
Preloads a package for this source. The source is assumed that it has yet loaded any other packages.
sourcepub fn root_package(&mut self) -> CargoResult<Package>
pub fn root_package(&mut self) -> CargoResult<Package>
Gets the package on the root path.
sourcepub fn read_packages(&self) -> CargoResult<Vec<Package>>
pub fn read_packages(&self) -> CargoResult<Vec<Package>>
Returns the packages discovered by this source. It may walk the filesystem if package information haven’t yet updated.
sourcepub fn list_files(&self, pkg: &Package) -> CargoResult<Vec<PathBuf>>
pub fn list_files(&self, pkg: &Package) -> CargoResult<Vec<PathBuf>>
List all files relevant to building this package inside this source.
This function will use the appropriate methods to determine the
set of files underneath this source’s directory which are relevant for
building pkg
.
The basic assumption of this method is that all files in the directory
are relevant for building this package, but it also contains logic to
use other methods like .gitignore
, package.include
, or
package.exclude
to filter the list of files.
sourcefn _list_files(&self, pkg: &Package) -> CargoResult<Vec<PathBuf>>
fn _list_files(&self, pkg: &Package) -> CargoResult<Vec<PathBuf>>
sourcefn discover_git_repo(&self, root: &Path) -> CargoResult<Option<Repository>>
fn discover_git_repo(&self, root: &Path) -> CargoResult<Option<Repository>>
Returns Some(git2::Repository)
if found sibling Cargo.toml
and .git
directory; otherwise, caller should fall back on full file list.
sourcefn list_files_git(
&self,
pkg: &Package,
repo: &Repository,
filter: &dyn Fn(&Path, bool) -> bool
) -> CargoResult<Vec<PathBuf>>
fn list_files_git( &self, pkg: &Package, repo: &Repository, filter: &dyn Fn(&Path, bool) -> bool ) -> CargoResult<Vec<PathBuf>>
Lists files relevant to building this package inside this source by consulting both Git index (tracked) or status (untracked) under a given Git repository.
This looks into Git submodules as well.
sourcefn list_files_walk(
&self,
pkg: &Package,
filter: &dyn Fn(&Path, bool) -> bool
) -> CargoResult<Vec<PathBuf>>
fn list_files_walk( &self, pkg: &Package, filter: &dyn Fn(&Path, bool) -> bool ) -> CargoResult<Vec<PathBuf>>
Lists files relevant to building this package inside this source by walking the filesystem from the package root path.
This is a fallback for PathSource::list_files_git
when the package
is not tracked under a Git repository.
sourcefn walk(
&self,
path: &Path,
ret: &mut Vec<PathBuf>,
is_root: bool,
filter: &dyn Fn(&Path, bool) -> bool
) -> CargoResult<()>
fn walk( &self, path: &Path, ret: &mut Vec<PathBuf>, is_root: bool, filter: &dyn Fn(&Path, bool) -> bool ) -> CargoResult<()>
Helper recursive function for PathSource::list_files_walk
.
sourcepub fn last_modified_file(
&self,
pkg: &Package
) -> CargoResult<(FileTime, PathBuf)>
pub fn last_modified_file( &self, pkg: &Package ) -> CargoResult<(FileTime, PathBuf)>
Gets the last modified file in a package.
sourcepub fn update(&mut self) -> CargoResult<()>
pub fn update(&mut self) -> CargoResult<()>
Discovers packages inside this source if it hasn’t yet done.
Trait Implementations§
source§impl<'cfg> Debug for PathSource<'cfg>
impl<'cfg> Debug for PathSource<'cfg>
source§impl<'cfg> Source for PathSource<'cfg>
impl<'cfg> Source for PathSource<'cfg>
source§fn query(
&mut self,
dep: &Dependency,
kind: QueryKind,
f: &mut dyn FnMut(Summary)
) -> Poll<CargoResult<()>>
fn query( &mut self, dep: &Dependency, kind: QueryKind, f: &mut dyn FnMut(Summary) ) -> Poll<CargoResult<()>>
source§fn supports_checksums(&self) -> bool
fn supports_checksums(&self) -> bool
Summary
items with
checksums listed.source§fn requires_precise(&self) -> bool
fn requires_precise(&self) -> bool
source§fn download(&mut self, id: PackageId) -> CargoResult<MaybePackage>
fn download(&mut self, id: PackageId) -> CargoResult<MaybePackage>
source§fn finish_download(
&mut self,
_id: PackageId,
_data: Vec<u8>
) -> CargoResult<Package>
fn finish_download( &mut self, _id: PackageId, _data: Vec<u8> ) -> CargoResult<Package>
.crate
file. Read moresource§fn fingerprint(&self, pkg: &Package) -> CargoResult<String>
fn fingerprint(&self, pkg: &Package) -> CargoResult<String>
source§fn describe(&self) -> String
fn describe(&self) -> String
source§fn add_to_yanked_whitelist(&mut self, _pkgs: &[PackageId])
fn add_to_yanked_whitelist(&mut self, _pkgs: &[PackageId])
source§fn is_yanked(&mut self, _pkg: PackageId) -> Poll<CargoResult<bool>>
fn is_yanked(&mut self, _pkg: PackageId) -> Poll<CargoResult<bool>>
source§fn block_until_ready(&mut self) -> CargoResult<()>
fn block_until_ready(&mut self) -> CargoResult<()>
source§fn invalidate_cache(&mut self)
fn invalidate_cache(&mut self)
source§fn set_quiet(&mut self, _quiet: bool)
fn set_quiet(&mut self, _quiet: bool)
source§fn replaced_source_id(&self) -> SourceId
fn replaced_source_id(&self) -> SourceId
SourceId
corresponding to this source.source§fn query_vec(
&mut self,
dep: &Dependency,
kind: QueryKind
) -> Poll<CargoResult<Vec<Summary>>>
fn query_vec( &mut self, dep: &Dependency, kind: QueryKind ) -> Poll<CargoResult<Vec<Summary>>>
Source::query
as a list of Summary
items
when they become available.source§fn download_now(
self: Box<Self>,
package: PackageId,
config: &Config
) -> CargoResult<Package>where
Self: Sized,
fn download_now( self: Box<Self>, package: PackageId, config: &Config ) -> CargoResult<Package>where Self: Sized,
source§fn verify(&self, _pkg: PackageId) -> CargoResult<()>
fn verify(&self, _pkg: PackageId) -> CargoResult<()>
source§fn is_replaced(&self) -> bool
fn is_replaced(&self) -> bool
Auto Trait Implementations§
impl<'cfg> !RefUnwindSafe for PathSource<'cfg>
impl<'cfg> !Send for PathSource<'cfg>
impl<'cfg> !Sync for PathSource<'cfg>
impl<'cfg> Unpin for PathSource<'cfg>
impl<'cfg> !UnwindSafe for PathSource<'cfg>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,
source§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 72 bytes