pub struct DirectoryBundle { /* private fields */ }
Expand description

An Apple bundle backed by a filesystem/directory.

Instances represent a type-agnostic bundle (macOS application bundle, iOS application bundle, framework bundles, etc).

Implementations§

source§

impl DirectoryBundle

source

pub fn new_from_path(directory: &Path) -> Result<Self>

Open an existing bundle from a filesystem path.

The specified path should be the root directory of the bundle.

This will validate that the directory is a bundle and error if not. Validation is limited to locating an Info.plist file, which is required for all bundle types.

source

pub fn resolve_path(&self, path: impl AsRef<Path>) -> PathBuf

Resolve the absolute path to a file in the bundle.

source

pub fn root_dir(&self) -> &Path

The root directory of this bundle.

source

pub fn name(&self) -> &str

The on-disk name of this bundle.

This is effectively the directory name of the bundle. Contains the .app, .framework, etc suffix.

source

pub fn shallow(&self) -> bool

Whether this is a shallow bundle.

If false, content is likely in a Contents directory.

source

pub fn info_plist_path(&self) -> PathBuf

Obtain the path to the Info.plist file.

source

pub fn info_plist(&self) -> &Dictionary

Obtain the parsed Info.plist file.

source

pub fn info_plist_key_string(&self, key: &str) -> Result<Option<String>>

Obtain an Info.plist key as a String.

Will return None if the specified key doesn’t exist. Errors if the key value is not a string.

source

pub fn package_type(&self) -> BundlePackageType

Obtain the type of bundle.

source

pub fn display_name(&self) -> Result<Option<String>>

Obtain the bundle display name.

This retrieves the value of CFBundleDisplayName from the Info.plist.

source

pub fn identifier(&self) -> Result<Option<String>>

Obtain the bundle identifier.

This retrieves CFBundleIdentifier from the Info.plist.

source

pub fn version(&self) -> Result<Option<String>>

Obtain the bundle version string.

This retrieves CFBundleVersion from the Info.plist.

source

pub fn main_executable(&self) -> Result<Option<String>>

Obtain the name of the bundle’s main executable file.

This retrieves CFBundleExecutable from the Info.plist.

source

pub fn icon_files(&self) -> Result<Option<Vec<String>>>

Obtain filenames of bundle icon files.

This retrieves CFBundleIconFiles from the Info.plist.

source

pub fn files( &self, traverse_nested: bool ) -> Result<Vec<DirectoryBundleFile<'_>>>

Obtain all files within this bundle.

The iteration order is deterministic.

traverse_nested defines whether to traverse into nested bundles.

source

pub fn files_manifest(&self, traverse_nested: bool) -> Result<FileManifest>

Obtain all files in this bundle as a FileManifest.

source

pub fn nested_bundles(&self, descend: bool) -> Result<Vec<(String, Self)>>

Obtain all nested bundles within this one.

This walks the directory tree for directories that can be parsed as bundles.

If descend is true, we will descend into nested bundles and recursively emit nested bundles. Otherwise we stop traversal once a bundle is encountered.

source

pub fn framework_versions(&self) -> Result<Vec<String>>

Resolve the versions present within a framework.

Does not emit versions that are symlinks.

source

pub fn is_framework_version(&self) -> bool

Whether this bundle is a version within a framework bundle.

This is true if we are a framework bundle under a Versions directory.

Trait Implementations§

source§

impl Clone for DirectoryBundle

source§

fn clone(&self) -> DirectoryBundle

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 DirectoryBundle

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