exa/src/column.rs

58 lines
1.4 KiB
Rust
Raw Normal View History

pub enum Column {
Permissions,
FileName,
FileSize(bool),
2014-06-22 07:09:16 +00:00
Blocks,
User,
Group,
HardLinks,
2014-06-22 06:44:00 +00:00
Inode,
}
// Each column can pick its own alignment. Usually, numbers are
// right-aligned, and text is left-aligned.
pub enum Alignment {
Left, Right,
}
impl Column {
pub fn alignment(&self) -> Alignment {
match *self {
FileSize(_) => Right,
HardLinks => Right,
2014-06-22 06:44:00 +00:00
Inode => Right,
2014-06-22 07:09:16 +00:00
Blocks => Right,
_ => Left,
}
}
2014-06-23 17:26:35 +00:00
pub fn header(&self) -> &'static str {
match *self {
Permissions => "Permissions",
FileName => "Name",
FileSize(_) => "Size",
Blocks => "Blocks",
User => "User",
2014-06-23 17:26:35 +00:00
Group => "Group",
HardLinks => "Links",
Inode => "inode",
}
}
}
// An Alignment is used to pad a string to a certain length, letting
2014-06-28 14:40:12 +00:00
// it pick which end it puts the text on. It takes the amount of
// padding to apply, rather than the width the text should end up,
// because these strings are usually full of control characters.
impl Alignment {
2014-06-28 14:40:12 +00:00
pub fn pad_string(&self, string: &String, padding: uint) -> String {
match *self {
2014-06-30 08:59:54 +00:00
Left => string.clone().append(" ".to_string().repeat(padding).as_slice()),
Right => " ".to_string().repeat(padding).append(string.as_slice()),
}
}
}