Struct determinator::Utf8Paths0[][src]

pub struct Utf8Paths0 { /* fields omitted */ }

A store for null-separated paths.

This manages paths on Unix and Windows platforms, including converting / on Windows to \.

Null-separated paths

Paths as produced by tools like git diff --name-only are typically separated by newline characters (\n). However, on Unix platforms filenames can themselves have newlines embedded in them, so source control systems often end up quoting newlines and other “unusual” characters.

A robust, lossless way to retrieve a list of paths is by separating them with null characters. Both Unix and Windows platforms guarantee that a path can never have embedded null characters.

Examples

Most source control systems can provide null-separated paths. These examples are expected to be run from the Cargo workspace root (which is assumed to be the same as the repository root).

In most cases, you’ll want to compare the current working directory against the merge base, or nearest/greatest/lowest common ancestor, of the current commit with a specified upstream revision, such as origin/main. To do so, run:

  • Git: git diff -z --name-only $(git merge-base <upstream rev> HEAD)
  • Mercurial: hg status --print0 -mard --no-status --rev 'ancestor(<upstream rev>,.)'

NOTE:

  • The $() syntax in Bash and other shells means “run the command and insert its contents here”.
  • Git provides a syntax <upstream rev>... which purports to use the merge base, but it ignores uncommitted changes. Executing git merge-base as a separate command is the only way to include uncommitted changes.
  • The -mard flag to hg status means that untracked files are not included. git diff does not have an option to display untracked files. For more discussion, see the documentation for add_changed_paths.

In general, to obtain a list of changed paths between two revisions (omit <new rev> if comparing against the working directory):

  • Git: git diff -z --name-only <old rev> <new rev>
  • Mercurial: hg status --print0 -mard --no-status <old rev> <new rev>

To obtain a list of all files in the working directory that are tracked by the source control system:

  • Git: git ls-files -z
  • Mercurial: hg files --print0

Null-separated paths are produced through the -z option to Git commands, or the --print0 option to Mercurial. If you’re using a different system, check its help for instructions.

Implementations

&'a Utf8Paths0 implements IntoIterator<Item = &'a Utf8Path>.

Implementations

impl Utf8Paths0[src]

pub fn new(buf: impl Into<String>) -> Self[src]

Creates a new instance of Utf8Paths0 from a string with embedded nulls.

The string may, but does not need to, have a trailing null byte.

pub fn from_bytes(buf: impl Into<Vec<u8>>) -> Result<Self, (Vec<u8>, Utf8Error)>[src]

Creates a new instance of Utf8Paths0 from a Vec<u8>, performing a UTF-8 validation check on the buffer.

The buffer may, but does not need to, have a trailing null byte.

Errors

If any paths inside the string weren’t valid UTF-8, this returns the first path that failed to parse and the error returned.

pub fn new_forward_slashes(buf: impl Into<String>) -> Self[src]

Creates a new instance of Utf8Paths0, converting / to \ on platforms like Windows.

Some tools like Git (but not Mercurial) return paths with / on Windows, even though the canonical separator on the platform is \. This constructor changes all instances of / to \.

pub fn iter<'a>(&'a self) -> Box<dyn Iterator<Item = &'a Utf8Path> + 'a>[src]

Iterates over the paths in this buffer.

Trait Implementations

impl Clone for Utf8Paths0[src]

impl Debug for Utf8Paths0[src]

impl Eq for Utf8Paths0[src]

impl<'a> IntoIterator for &'a Utf8Paths0[src]

type Item = &'a Utf8Path

The type of the elements being iterated over.

type IntoIter = Box<dyn Iterator<Item = &'a Utf8Path> + 'a>

Which kind of iterator are we turning this into?

impl Ord for Utf8Paths0[src]

impl PartialEq<Utf8Paths0> for Utf8Paths0[src]

impl PartialOrd<Utf8Paths0> for Utf8Paths0[src]

impl StructuralEq for Utf8Paths0[src]

impl StructuralPartialEq for Utf8Paths0[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<'a, T> DefaultFeatures<'a> for T where
    T: 'a + Clone + Send + Sync

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<'a, T> NonSyncFeatures<'a> for T where
    T: 'a + Clone

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> SafeBorrow<T> for T where
    T: ?Sized

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.