498549b35c
Torrent metainfo can be read from standard input by passing `-`: cat a.torrent | imdl torrent verify --input - cat a.torrent | imdl torrent link --input - cat a.torrent | imdl torrent show --input - type: added
30 lines
563 B
Rust
30 lines
563 B
Rust
use crate::common::*;
|
|
|
|
pub(crate) struct Input {
|
|
source: InputTarget,
|
|
data: Vec<u8>,
|
|
}
|
|
|
|
impl Input {
|
|
pub(crate) fn new(source: InputTarget, data: Vec<u8>) -> Input {
|
|
Self { source, data }
|
|
}
|
|
|
|
pub(crate) fn data(&self) -> &[u8] {
|
|
&self.data
|
|
}
|
|
|
|
pub(crate) fn source(&self) -> &InputTarget {
|
|
&self.source
|
|
}
|
|
|
|
#[cfg(test)]
|
|
pub(crate) fn from_path(path: &Path) -> Result<Input> {
|
|
let data = fs::read(path).context(error::Filesystem { path })?;
|
|
Ok(Input {
|
|
source: InputTarget::File(path.to_owned()),
|
|
data,
|
|
})
|
|
}
|
|
}
|