alpm_buildinfo

Enum BuildInfo

Source
pub enum BuildInfo {
    V1(BuildInfoV1),
    V2(BuildInfoV2),
}
Expand description

A representation of the BUILDINFO file format.

Tracks all available variants of the file format.

Variants§

Trait Implementations§

Source§

impl Clone for BuildInfo

Source§

fn clone(&self) -> BuildInfo

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 BuildInfo

Source§

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

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

impl Display for BuildInfo

Source§

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

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

impl FromStr for BuildInfo

Source§

fn from_str(s: &str) -> Result<Self, Self::Err>

Creates a BuildInfo from string slice s.

Calls BuildInfo::from_str_with_schema with schema set to None.

§Errors

Returns an error if

Source§

type Err = Error

The associated error which can be returned from parsing.
Source§

impl MetadataFile<BuildInfoSchema> for BuildInfo

Source§

fn from_file_with_schema( file: impl AsRef<Path>, schema: Option<BuildInfoSchema>, ) -> Result<Self, Error>

Creates a BuildInfo from file, optionally validated using a BuildInfoSchema.

Opens the file and defers to BuildInfo::from_reader_with_schema.

§Note

To automatically derive the BuildInfoSchema, use BuildInfo::from_file.

§Examples
use std::{fs::File, io::Write};

use alpm_buildinfo::{BuildInfo, BuildInfoSchema};
use alpm_common::{FileFormatSchema, MetadataFile};
use alpm_types::{SchemaVersion, semver_version::Version};

// Prepare a file with BUILDINFO data
let (file, buildinfo_data) = {
    let buildinfo_data = r#"format = 2
pkgname = foo
pkgbase = foo
pkgver = 1:1.0.0-1
pkgarch = any
pkgbuild_sha256sum = b5bb9d8014a0f9b1d61e21e796d78dccdf1352f23cd32812f4850b878ae4944c
packager = Foobar McFooface <foobar@mcfooface.org>
builddate = 1
builddir = /build
startdir = /startdir/
buildtool = devtools
buildtoolver = 1:1.2.1-1-any
buildenv = envfoo
options = some_option
installed = bar-1.2.3-1-any
"#;
    let file = tempfile::NamedTempFile::new()?;
    let mut output = File::create(&file)?;
    write!(output, "{}", buildinfo_data)?;
    (file, buildinfo_data)
};

let buildinfo = BuildInfo::from_file_with_schema(
    file.path(),
    Some(BuildInfoSchema::V2(SchemaVersion::new(Version::new(
        2, 0, 0,
    )))),
)?;
assert_eq!(buildinfo.to_string(), buildinfo_data);
§Errors

Returns an error if

  • the file cannot be opened for reading,
  • no variant of BuildInfo can be constructed from the contents of file,
  • or schema is Some and the BuildInfoSchema does not match the contents of file.
Source§

fn from_reader_with_schema( reader: impl Read, schema: Option<BuildInfoSchema>, ) -> Result<Self, Error>

Creates a BuildInfo from a reader, optionally validated using a BuildInfoSchema.

Reads the reader to string and defers to BuildInfo::from_str_with_schema.

§Note

To automatically derive the BuildInfoSchema, use BuildInfo::from_reader.

§Examples
use std::{fs::File, io::Write};

use alpm_buildinfo::{BuildInfo, BuildInfoSchema};
use alpm_common::MetadataFile;
use alpm_types::{SchemaVersion, semver_version::Version};

// Prepare a reader with BUILDINFO data
let (reader, buildinfo_data) = {
    let buildinfo_data = r#"format = 2
pkgname = foo
pkgbase = foo
pkgver = 1:1.0.0-1
pkgarch = any
pkgbuild_sha256sum = b5bb9d8014a0f9b1d61e21e796d78dccdf1352f23cd32812f4850b878ae4944c
packager = Foobar McFooface <foobar@mcfooface.org>
builddate = 1
builddir = /build
startdir = /startdir/
buildtool = devtools
buildtoolver = 1:1.2.1-1-any
buildenv = envfoo
options = some_option
installed = bar-1.2.3-1-any
"#;
    let buildinfo_file = tempfile::NamedTempFile::new()?;
    let mut output = File::create(&buildinfo_file)?;
    write!(output, "{}", buildinfo_data)?;
    (File::open(&buildinfo_file.path())?, buildinfo_data)
};

let buildinfo = BuildInfo::from_reader_with_schema(
    reader,
    Some(BuildInfoSchema::V2(SchemaVersion::new(Version::new(
        2, 0, 0,
    )))),
)?;
assert_eq!(buildinfo.to_string(), buildinfo_data);
§Errors

Returns an error if

  • the reader cannot be read to string,
  • no variant of BuildInfo can be constructed from the contents of the reader,
  • or schema is Some and the BuildInfoSchema does not match the contents of the reader.
Source§

fn from_str_with_schema( s: &str, schema: Option<BuildInfoSchema>, ) -> Result<Self, Error>

Creates a BuildInfo from string slice, optionally validated using a BuildInfoSchema.

If schema is None attempts to detect the BuildInfoSchema from s. Attempts to create a BuildInfo variant that corresponds to the BuildInfoSchema.

§Note

To automatically derive the BuildInfoSchema, use BuildInfo::from_str.

§Examples
use std::{fs::File, io::Write};

use alpm_buildinfo::{BuildInfo, BuildInfoSchema};
use alpm_common::MetadataFile;
use alpm_types::{SchemaVersion, semver_version::Version};

let buildinfo_v2_data = r#"format = 2
pkgname = foo
pkgbase = foo
pkgver = 1:1.0.0-1
pkgarch = any
pkgbuild_sha256sum = b5bb9d8014a0f9b1d61e21e796d78dccdf1352f23cd32812f4850b878ae4944c
packager = Foobar McFooface <foobar@mcfooface.org>
builddate = 1
builddir = /build
startdir = /startdir/
buildtool = devtools
buildtoolver = 1:1.2.1-1-any
buildenv = envfoo
options = some_option
installed = bar-1.2.3-1-any
"#;

let buildinfo_v2 = BuildInfo::from_str_with_schema(
    buildinfo_v2_data,
    Some(BuildInfoSchema::V2(SchemaVersion::new(Version::new(
        2, 0, 0,
    )))),
)?;
assert_eq!(buildinfo_v2.to_string(), buildinfo_v2_data);

let buildinfo_v1_data = r#"format = 1
pkgname = foo
pkgbase = foo
pkgver = 1:1.0.0-1
pkgarch = any
pkgbuild_sha256sum = b5bb9d8014a0f9b1d61e21e796d78dccdf1352f23cd32812f4850b878ae4944c
packager = Foobar McFooface <foobar@mcfooface.org>
builddate = 1
builddir = /build
buildenv = envfoo
options = some_option
installed = bar-1.2.3-1-any
"#;

let buildinfo_v1 = BuildInfo::from_str_with_schema(
    buildinfo_v1_data,
    Some(BuildInfoSchema::V1(SchemaVersion::new(Version::new(
        1, 0, 0,
    )))),
)?;
assert_eq!(buildinfo_v1.to_string(), buildinfo_v1_data);
§Errors

Returns an error if

  • schema is Some and the specified variant of BuildInfo cannot be constructed from s,
  • schema is None and
Source§

type Err = Error

The Error type to use.
Source§

fn from_file(file: impl AsRef<Path>) -> Result<Self, Self::Err>
where Self: Sized,

Creates Self from file. Read more
Source§

fn from_stdin() -> Result<Self, Self::Err>
where Self: Sized,

Creates Self from stdin. Read more
Source§

fn from_stdin_with_schema(schema: Option<T>) -> Result<Self, Self::Err>
where Self: Sized,

Creates Self from stdin, optionally validated by a schema. Read more
Source§

fn from_reader(reader: impl Read) -> Result<Self, Self::Err>
where Self: Sized,

Creates Self from a Read implementer. Read more
Source§

impl Serialize for BuildInfo

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. 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, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

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

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

impl<T> ErasedDestructor for T
where T: 'static,

§

impl<T> MaybeSendSync for T