haggis-rs/src/filetype.rs

135 lines
3.9 KiB
Rust
Raw Normal View History

2023-07-04 00:51:47 -04:00
use {
crate::{Error, File, Special},
std::io::{Read, Write},
};
#[repr(u8)]
#[derive(Clone, Copy)]
pub(crate) enum Flag {
Normal = 0,
HardLink = 1,
SoftLink = 2,
Directory = 3,
Character = 4,
Block = 5,
Fifo = 6,
Eof = 7,
}
impl TryFrom<u8> for Flag {
type Error = Error;
fn try_from(value: u8) -> Result<Self, Self::Error> {
match value {
0 => Ok(Self::Normal),
1 => Ok(Self::HardLink),
2 => Ok(Self::SoftLink),
3 => Ok(Self::Directory),
4 => Ok(Self::Character),
5 => Ok(Self::Block),
6 => Ok(Self::Fifo),
7 => Ok(Self::Eof),
_ => Err(Error::UnknownFileType),
}
}
}
impl From<&FileType> for Flag {
fn from(value: &FileType) -> Self {
match value {
FileType::Normal(_) => Self::Normal,
FileType::HardLink(_) => Self::HardLink,
FileType::SoftLink(_) => Self::SoftLink,
FileType::Directory => Self::Directory,
FileType::Character(_) => Self::Character,
FileType::Block(_) => Self::Block,
FileType::Fifo => Self::Fifo,
FileType::Eof => Self::Eof,
}
}
}
impl Flag {
pub(crate) fn append_mode(&self, mode: u16) -> u16 {
let mask: u16 = u16::from(*self as u8) << 13;
mode & mask
}
}
/// An enum representing the type of file of an archive member
2023-07-04 00:51:47 -04:00
#[derive(Debug)]
pub enum FileType {
/// A normal file and it's contained data
2023-07-04 00:51:47 -04:00
Normal(File),
/// A hard link to another file in this archive
2023-07-04 00:51:47 -04:00
HardLink(String),
/// A soft link to another file
2023-07-04 00:51:47 -04:00
SoftLink(String),
/// A directory inode
2023-07-04 00:51:47 -04:00
Directory,
/// A character (buffered) device
2023-07-04 00:51:47 -04:00
Character(Special),
/// A block device
2023-07-04 00:51:47 -04:00
Block(Special),
/// A Unix named pipe (fifo)
2023-07-04 00:51:47 -04:00
Fifo,
/// End of archive
Eof,
2023-07-04 00:51:47 -04:00
}
impl FileType {
pub(crate) fn read<T: Read>(reader: &mut T, flag: Flag) -> Result<Self, Error> {
match flag {
Flag::Normal => {
2023-07-04 00:51:47 -04:00
let file = File::read(reader)?;
Ok(Self::Normal(file))
}
Flag::HardLink => {
let mut len = [0; 2];
2023-07-04 00:51:47 -04:00
reader.read_exact(&mut len)?;
let len = u16::from_le_bytes(len);
let mut buf = Vec::with_capacity(len.into());
let mut handle = reader.take(len.into());
2023-07-04 00:51:47 -04:00
handle.read_exact(&mut buf)?;
let s = String::from_utf8(buf)?;
Ok(Self::HardLink(s))
}
Flag::SoftLink => {
let mut len = [0; 2];
2023-07-04 00:51:47 -04:00
reader.read_exact(&mut len)?;
let len = u16::from_le_bytes(len);
let mut buf = Vec::with_capacity(len.into());
let mut handle = reader.take(len.into());
2023-07-04 00:51:47 -04:00
handle.read_exact(&mut buf)?;
let s = String::from_utf8(buf)?;
Ok(Self::SoftLink(s))
}
Flag::Directory => Ok(Self::Directory),
Flag::Character => {
2023-07-04 00:51:47 -04:00
let sp = Special::read(reader)?;
Ok(Self::Character(sp))
}
Flag::Block => {
2023-07-04 00:51:47 -04:00
let sp = Special::read(reader)?;
Ok(Self::Block(sp))
}
Flag::Fifo => Ok(Self::Fifo),
Flag::Eof => Ok(Self::Eof),
2023-07-04 00:51:47 -04:00
}
}
2023-07-05 13:35:37 -04:00
pub(crate) fn write<T: Write>(&self, writer: &mut T) -> Result<(), Error> {
2023-07-04 00:51:47 -04:00
match self {
Self::Normal(f) => f.write(writer)?,
Self::HardLink(s) | Self::SoftLink(s) => {
2023-07-04 00:51:47 -04:00
let len = s.len() as u64;
writer.write_all(&len.to_le_bytes())?;
writer.write_all(s.as_bytes())?;
}
Self::Character(s) | Self::Block(s) => s.write(writer)?,
_ => {}
2023-07-04 00:51:47 -04:00
}
Ok(())
}
}