|
|
@@ -14,15 +14,17 @@ use column::Column::*;
|
|
|
use dir::Dir;
|
|
|
use filetype::HasType;
|
|
|
|
|
|
+/// This grey value is directly in between white and black, so it's guaranteed
|
|
|
+/// to show up on either backgrounded terminal.
|
|
|
pub static GREY: Colour = Fixed(244);
|
|
|
|
|
|
-// Instead of working with Rust's Paths, we have our own File object
|
|
|
-// that holds the Path and various cached information. Each file is
|
|
|
-// definitely going to have its filename used at least once, its stat
|
|
|
-// information queried at least once, and its file extension extracted
|
|
|
-// at least once, so we may as well carry around that information with
|
|
|
-// the actual path.
|
|
|
-
|
|
|
+/// A **File** is a wrapper around one of Rust's Path objects, along with
|
|
|
+/// associated data about the file.
|
|
|
+///
|
|
|
+/// Each file is definitely going to have its filename displayed at least
|
|
|
+/// once, have its file extension extracted at least once, and have its stat
|
|
|
+/// information queried at least once, so it makes sense to do all this at the
|
|
|
+/// start and hold on to all the information.
|
|
|
pub struct File<'a> {
|
|
|
pub name: String,
|
|
|
pub dir: Option<&'a Dir>,
|
|
|
@@ -32,13 +34,15 @@ pub struct File<'a> {
|
|
|
}
|
|
|
|
|
|
impl<'a> File<'a> {
|
|
|
+ /// Create a new File object from the given Path, inside the given Dir, if
|
|
|
+ /// appropriate. Paths specified directly on the command-line have no Dirs.
|
|
|
+ ///
|
|
|
+ /// This uses lstat instead of stat, which doesn't follow symbolic links.
|
|
|
pub fn from_path(path: &Path, parent: Option<&'a Dir>) -> IoResult<File<'a>> {
|
|
|
- // Use lstat here instead of file.stat(), as it doesn't follow
|
|
|
- // symbolic links. Otherwise, the stat() call will fail if it
|
|
|
- // encounters a link that's target is non-existent.
|
|
|
fs::lstat(path).map(|stat| File::with_stat(stat, path, parent))
|
|
|
}
|
|
|
|
|
|
+ /// Create a new File object from the given Stat result, and other data.
|
|
|
pub fn with_stat(stat: io::FileStat, path: &Path, parent: Option<&'a Dir>) -> File<'a> {
|
|
|
let v = path.filename().unwrap(); // fails if / or . or ..
|
|
|
let filename = String::from_utf8_lossy(v);
|
|
|
@@ -48,132 +52,43 @@ impl<'a> File<'a> {
|
|
|
dir: parent,
|
|
|
stat: stat,
|
|
|
name: filename.to_string(),
|
|
|
- ext: File::ext(filename.as_slice()),
|
|
|
+ ext: ext(filename.as_slice()),
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- fn ext(name: &'a str) -> Option<String> {
|
|
|
- // The extension is the series of characters after a dot at
|
|
|
- // the end of a filename. This deliberately also counts
|
|
|
- // dotfiles - the ".git" folder has the extension "git".
|
|
|
- name.rfind('.').map(|p| name[p+1..].to_string())
|
|
|
- }
|
|
|
-
|
|
|
+ /// Whether this file is a dotfile or not.
|
|
|
pub fn is_dotfile(&self) -> bool {
|
|
|
self.name.as_slice().starts_with(".")
|
|
|
}
|
|
|
|
|
|
+ /// Whether this file is a temporary file or not.
|
|
|
pub fn is_tmpfile(&self) -> bool {
|
|
|
let name = self.name.as_slice();
|
|
|
name.ends_with("~") || (name.starts_with("#") && name.ends_with("#"))
|
|
|
}
|
|
|
|
|
|
- // Highlight the compiled versions of files. Some of them, like .o,
|
|
|
- // get special highlighting when they're alone because there's no
|
|
|
- // point in existing without their source. Others can be perfectly
|
|
|
- // content without their source files, such as how .js is valid
|
|
|
- // without a .coffee.
|
|
|
-
|
|
|
- pub fn get_source_files(&self) -> Vec<Path> {
|
|
|
- if let Some(ref ext) = self.ext {
|
|
|
- let ext = ext.as_slice();
|
|
|
- match ext {
|
|
|
- "class" => vec![self.path.with_extension("java")], // Java
|
|
|
- "css" => vec![self.path.with_extension("sass"), self.path.with_extension("less")], // SASS, Less
|
|
|
- "elc" => vec![self.path.with_extension("el")], // Emacs Lisp
|
|
|
- "hi" => vec![self.path.with_extension("hs")], // Haskell
|
|
|
- "js" => vec![self.path.with_extension("coffee"), self.path.with_extension("ts")], // CoffeeScript, TypeScript
|
|
|
- "o" => vec![self.path.with_extension("c"), self.path.with_extension("cpp")], // C, C++
|
|
|
- "pyc" => vec![self.path.with_extension("py")], // Python
|
|
|
-
|
|
|
- "aux" => vec![self.path.with_extension("tex")], // TeX: auxiliary file
|
|
|
- "bbl" => vec![self.path.with_extension("tex")], // BibTeX bibliography file
|
|
|
- "blg" => vec![self.path.with_extension("tex")], // BibTeX log file
|
|
|
- "lof" => vec![self.path.with_extension("tex")], // TeX list of figures
|
|
|
- "log" => vec![self.path.with_extension("tex")], // TeX log file
|
|
|
- "lot" => vec![self.path.with_extension("tex")], // TeX list of tables
|
|
|
- "toc" => vec![self.path.with_extension("tex")], // TeX table of contents
|
|
|
-
|
|
|
- _ => vec![], // No source files if none of the above
|
|
|
- }
|
|
|
- }
|
|
|
- else {
|
|
|
- vec![] // No source files if there's no extension, either!
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
+ /// Get the data for a column, formatted as a coloured string.
|
|
|
pub fn display<U: Users>(&self, column: &Column, users_cache: &mut U) -> String {
|
|
|
match *column {
|
|
|
- Permissions => {
|
|
|
- self.permissions_string()
|
|
|
- },
|
|
|
-
|
|
|
- FileName => {
|
|
|
- self.file_name()
|
|
|
- },
|
|
|
-
|
|
|
- FileSize(use_iec) => {
|
|
|
- self.file_size(use_iec)
|
|
|
- },
|
|
|
-
|
|
|
- // A file with multiple links is interesting, but
|
|
|
- // directories and suchlike can have multiple links all
|
|
|
- // the time.
|
|
|
- HardLinks => {
|
|
|
- let style = if self.has_multiple_links() { Red.on(Yellow) } else { Red.normal() };
|
|
|
- style.paint(self.stat.unstable.nlink.to_string().as_slice()).to_string()
|
|
|
- },
|
|
|
-
|
|
|
- Inode => {
|
|
|
- Purple.paint(self.stat.unstable.inode.to_string().as_slice()).to_string()
|
|
|
- },
|
|
|
-
|
|
|
- Blocks => {
|
|
|
- if self.stat.kind == io::FileType::RegularFile || self.stat.kind == io::FileType::Symlink {
|
|
|
- Cyan.paint(self.stat.unstable.blocks.to_string().as_slice()).to_string()
|
|
|
- }
|
|
|
- else {
|
|
|
- GREY.paint("-").to_string()
|
|
|
- }
|
|
|
- },
|
|
|
-
|
|
|
- // Display the ID if the user/group doesn't exist, which
|
|
|
- // usually means it was deleted but its files weren't.
|
|
|
- User => {
|
|
|
- let uid = self.stat.unstable.uid as i32;
|
|
|
-
|
|
|
- let user_name = match users_cache.get_user_by_uid(uid) {
|
|
|
- Some(user) => user.name,
|
|
|
- None => uid.to_string(),
|
|
|
- };
|
|
|
-
|
|
|
- let style = if users_cache.get_current_uid() == uid { Yellow.bold() } else { Plain };
|
|
|
- style.paint(user_name.as_slice()).to_string()
|
|
|
- },
|
|
|
-
|
|
|
- Group => {
|
|
|
- let gid = self.stat.unstable.gid as u32;
|
|
|
- let mut style = Plain;
|
|
|
-
|
|
|
- let group_name = match users_cache.get_group_by_gid(gid) {
|
|
|
- Some(group) => {
|
|
|
- let current_uid = users_cache.get_current_uid();
|
|
|
- if let Some(current_user) = users_cache.get_user_by_uid(current_uid) {
|
|
|
- if current_user.primary_group == group.gid || group.members.contains(¤t_user.name) {
|
|
|
- style = Yellow.bold();
|
|
|
- }
|
|
|
- }
|
|
|
- group.name
|
|
|
- },
|
|
|
- None => gid.to_string(),
|
|
|
- };
|
|
|
-
|
|
|
- style.paint(group_name.as_slice()).to_string()
|
|
|
- },
|
|
|
+ Permissions => self.permissions_string(),
|
|
|
+ FileName => self.file_name_view(),
|
|
|
+ FileSize(f) => self.file_size(f),
|
|
|
+ HardLinks => self.hard_links(),
|
|
|
+ Inode => self.inode(),
|
|
|
+ Blocks => self.blocks(),
|
|
|
+ User => self.user(users_cache),
|
|
|
+ Group => self.group(users_cache),
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- pub fn file_name(&self) -> String {
|
|
|
+ /// The "file name view" is what's displayed in the column and lines
|
|
|
+ /// views, but *not* in the grid view.
|
|
|
+ ///
|
|
|
+ /// It consists of the file name coloured in the appropriate style, and,
|
|
|
+ /// if it's a symlink, an arrow pointing to the file it links to, also
|
|
|
+ /// coloured in the appropriate style. Files that don't exist will be
|
|
|
+ /// coloured red.
|
|
|
+ pub fn file_name_view(&self) -> String {
|
|
|
let name = self.name.as_slice();
|
|
|
let displayed_name = self.file_colour().paint(name);
|
|
|
if self.stat.kind == io::FileType::Symlink {
|
|
|
@@ -193,6 +108,16 @@ impl<'a> File<'a> {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ /// The `ansi_term::Style` that this file's name should be painted.
|
|
|
+ pub fn file_colour(&self) -> Style {
|
|
|
+ self.get_type().style()
|
|
|
+ }
|
|
|
+
|
|
|
+ /// The Unicode 'display width' of the filename.
|
|
|
+ ///
|
|
|
+ /// This is related to the number of graphemes in the string: most
|
|
|
+ /// characters are 1 columns wide, but in some contexts, certain
|
|
|
+ /// characters are actually 2 columns wide.
|
|
|
pub fn file_name_width(&self) -> usize {
|
|
|
self.name.as_slice().width(false)
|
|
|
}
|
|
|
@@ -207,7 +132,7 @@ impl<'a> File<'a> {
|
|
|
dir: self.dir,
|
|
|
stat: stat,
|
|
|
name: filename.to_string(),
|
|
|
- ext: File::ext(filename.as_slice()),
|
|
|
+ ext: ext(filename.as_slice()),
|
|
|
});
|
|
|
|
|
|
// Statting a path usually fails because the file at the
|
|
|
@@ -223,9 +148,83 @@ impl<'a> File<'a> {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ /// This file's number of hard links as a coloured string.
|
|
|
+ fn hard_links(&self) -> String {
|
|
|
+ let style = if self.has_multiple_links() { Red.on(Yellow) } else { Red.normal() };
|
|
|
+ style.paint(self.stat.unstable.nlink.to_string().as_slice()).to_string()
|
|
|
+ }
|
|
|
+
|
|
|
+ /// Whether this is a regular file with more than one link.
|
|
|
+ ///
|
|
|
+ /// This is important, because a file with multiple links is uncommon,
|
|
|
+ /// while you can come across directories and other types with multiple
|
|
|
+ /// links much more often.
|
|
|
+ fn has_multiple_links(&self) -> bool {
|
|
|
+ self.stat.kind == io::FileType::RegularFile && self.stat.unstable.nlink > 1
|
|
|
+ }
|
|
|
+
|
|
|
+ /// This file's inode as a coloured string.
|
|
|
+ fn inode(&self) -> String {
|
|
|
+ Purple.paint(self.stat.unstable.inode.to_string().as_slice()).to_string()
|
|
|
+ }
|
|
|
+
|
|
|
+ /// This file's number of filesystem blocks (if available) as a coloured string.
|
|
|
+ fn blocks(&self) -> String {
|
|
|
+ if self.stat.kind == io::FileType::RegularFile || self.stat.kind == io::FileType::Symlink {
|
|
|
+ Cyan.paint(self.stat.unstable.blocks.to_string().as_slice()).to_string()
|
|
|
+ }
|
|
|
+ else {
|
|
|
+ GREY.paint("-").to_string()
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /// This file's owner's username as a coloured string.
|
|
|
+ ///
|
|
|
+ /// If the user is not present, then it formats the uid as a number
|
|
|
+ /// instead. This usually happens when a user is deleted, but still owns
|
|
|
+ /// files.
|
|
|
+ fn user<U: Users>(&self, users_cache: &mut U) -> String {
|
|
|
+ let uid = self.stat.unstable.uid as i32;
|
|
|
+
|
|
|
+ let user_name = match users_cache.get_user_by_uid(uid) {
|
|
|
+ Some(user) => user.name,
|
|
|
+ None => uid.to_string(),
|
|
|
+ };
|
|
|
+
|
|
|
+ let style = if users_cache.get_current_uid() == uid { Yellow.bold() } else { Plain };
|
|
|
+ style.paint(user_name.as_slice()).to_string()
|
|
|
+ }
|
|
|
+
|
|
|
+ /// This file's group name as a coloured string.
|
|
|
+ ///
|
|
|
+ /// As above, if not present, it formats the gid as a number instead.
|
|
|
+ fn group<U: Users>(&self, users_cache: &mut U) -> String {
|
|
|
+ let gid = self.stat.unstable.gid as u32;
|
|
|
+ let mut style = Plain;
|
|
|
+
|
|
|
+ let group_name = match users_cache.get_group_by_gid(gid) {
|
|
|
+ Some(group) => {
|
|
|
+ let current_uid = users_cache.get_current_uid();
|
|
|
+ if let Some(current_user) = users_cache.get_user_by_uid(current_uid) {
|
|
|
+ if current_user.primary_group == group.gid || group.members.contains(¤t_user.name) {
|
|
|
+ style = Yellow.bold();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ group.name
|
|
|
+ },
|
|
|
+ None => gid.to_string(),
|
|
|
+ };
|
|
|
+
|
|
|
+ style.paint(group_name.as_slice()).to_string()
|
|
|
+ }
|
|
|
+
|
|
|
+ /// This file's size, formatted using the given way, as a coloured string.
|
|
|
+ ///
|
|
|
+ /// For directories, no size is given. Although they do have a size on
|
|
|
+ /// some filesystems, I've never looked at one of those numbers and gained
|
|
|
+ /// any information from it, so by emitting "-" instead, the table is less
|
|
|
+ /// cluttered with numbers.
|
|
|
fn file_size(&self, size_format: SizeFormat) -> String {
|
|
|
- // Don't report file sizes for directories. I've never looked
|
|
|
- // at one of those numbers and gained any information from it.
|
|
|
if self.stat.kind == io::FileType::Directory {
|
|
|
GREY.paint("-").to_string()
|
|
|
}
|
|
|
@@ -246,25 +245,26 @@ impl<'a> File<'a> {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ /// This file's type, represented by a coloured character.
|
|
|
+ ///
|
|
|
+ /// Although the file type can usually be guessed from the colour of the
|
|
|
+ /// file, `ls` puts this character there, so people will expect it.
|
|
|
fn type_char(&self) -> ANSIString {
|
|
|
return match self.stat.kind {
|
|
|
- io::FileType::RegularFile => Plain.paint("."),
|
|
|
- io::FileType::Directory => Blue.paint("d"),
|
|
|
- io::FileType::NamedPipe => Yellow.paint("|"),
|
|
|
- io::FileType::BlockSpecial => Purple.paint("s"),
|
|
|
- io::FileType::Symlink => Cyan.paint("l"),
|
|
|
- io::FileType::Unknown => Plain.paint("?"),
|
|
|
+ io::FileType::RegularFile => Plain.paint("."),
|
|
|
+ io::FileType::Directory => Blue.paint("d"),
|
|
|
+ io::FileType::NamedPipe => Yellow.paint("|"),
|
|
|
+ io::FileType::BlockSpecial => Purple.paint("s"),
|
|
|
+ io::FileType::Symlink => Cyan.paint("l"),
|
|
|
+ io::FileType::Unknown => Plain.paint("?"),
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- pub fn file_colour(&self) -> Style {
|
|
|
- self.get_type().style()
|
|
|
- }
|
|
|
-
|
|
|
- fn has_multiple_links(&self) -> bool {
|
|
|
- self.stat.kind == io::FileType::RegularFile && self.stat.unstable.nlink > 1
|
|
|
- }
|
|
|
-
|
|
|
+ /// Generate the "rwxrwxrwx" permissions string, like how ls does it.
|
|
|
+ ///
|
|
|
+ /// Each character is given its own colour. The first three permission
|
|
|
+ /// bits are bold because they're the ones used most often, and executable
|
|
|
+ /// files are underlined to make them stand out more.
|
|
|
fn permissions_string(&self) -> String {
|
|
|
let bits = self.stat.perm;
|
|
|
let executable_colour = match self.stat.kind {
|
|
|
@@ -274,22 +274,20 @@ impl<'a> File<'a> {
|
|
|
|
|
|
return format!("{}{}{}{}{}{}{}{}{}{}",
|
|
|
self.type_char(),
|
|
|
-
|
|
|
- // The first three are bold because they're the ones used
|
|
|
- // most often.
|
|
|
- File::permission_bit(bits, io::USER_READ, "r", Yellow.bold()),
|
|
|
- File::permission_bit(bits, io::USER_WRITE, "w", Red.bold()),
|
|
|
- File::permission_bit(bits, io::USER_EXECUTE, "x", executable_colour),
|
|
|
- File::permission_bit(bits, io::GROUP_READ, "r", Yellow.normal()),
|
|
|
- File::permission_bit(bits, io::GROUP_WRITE, "w", Red.normal()),
|
|
|
- File::permission_bit(bits, io::GROUP_EXECUTE, "x", Green.normal()),
|
|
|
- File::permission_bit(bits, io::OTHER_READ, "r", Yellow.normal()),
|
|
|
- File::permission_bit(bits, io::OTHER_WRITE, "w", Red.normal()),
|
|
|
- File::permission_bit(bits, io::OTHER_EXECUTE, "x", Green.normal()),
|
|
|
+ File::permission_bit(&bits, io::USER_READ, "r", Yellow.bold()),
|
|
|
+ File::permission_bit(&bits, io::USER_WRITE, "w", Red.bold()),
|
|
|
+ File::permission_bit(&bits, io::USER_EXECUTE, "x", executable_colour),
|
|
|
+ File::permission_bit(&bits, io::GROUP_READ, "r", Yellow.normal()),
|
|
|
+ File::permission_bit(&bits, io::GROUP_WRITE, "w", Red.normal()),
|
|
|
+ File::permission_bit(&bits, io::GROUP_EXECUTE, "x", Green.normal()),
|
|
|
+ File::permission_bit(&bits, io::OTHER_READ, "r", Yellow.normal()),
|
|
|
+ File::permission_bit(&bits, io::OTHER_WRITE, "w", Red.normal()),
|
|
|
+ File::permission_bit(&bits, io::OTHER_EXECUTE, "x", Green.normal()),
|
|
|
);
|
|
|
}
|
|
|
|
|
|
- fn permission_bit(bits: io::FilePermission, bit: io::FilePermission, character: &'static str, style: Style) -> ANSIString {
|
|
|
+ /// Helper method for the permissions string.
|
|
|
+ fn permission_bit(bits: &io::FilePermission, bit: io::FilePermission, character: &'static str, style: Style) -> ANSIString<'static> {
|
|
|
if bits.contains(bit) {
|
|
|
style.paint(character)
|
|
|
}
|
|
|
@@ -297,4 +295,47 @@ impl<'a> File<'a> {
|
|
|
GREY.paint("-")
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ /// For this file, return a vector of alternate file paths that, if any of
|
|
|
+ /// them exist, mean that *this* file should be coloured as `Compiled`.
|
|
|
+ ///
|
|
|
+ /// The point of this is to highlight compiled files such as `foo.o` when
|
|
|
+ /// their source file `foo.c` exists in the same directory. It's too
|
|
|
+ /// dangerous to highlight *all* compiled, so the paths in this vector
|
|
|
+ /// are checked for existence first: for example, `foo.js` is perfectly
|
|
|
+ /// valid without `foo.coffee`.
|
|
|
+ pub fn get_source_files(&self) -> Vec<Path> {
|
|
|
+ if let Some(ref ext) = self.ext {
|
|
|
+ match ext.as_slice() {
|
|
|
+ "class" => vec![self.path.with_extension("java")], // Java
|
|
|
+ "css" => vec![self.path.with_extension("sass"), self.path.with_extension("less")], // SASS, Less
|
|
|
+ "elc" => vec![self.path.with_extension("el")], // Emacs Lisp
|
|
|
+ "hi" => vec![self.path.with_extension("hs")], // Haskell
|
|
|
+ "js" => vec![self.path.with_extension("coffee"), self.path.with_extension("ts")], // CoffeeScript, TypeScript
|
|
|
+ "o" => vec![self.path.with_extension("c"), self.path.with_extension("cpp")], // C, C++
|
|
|
+ "pyc" => vec![self.path.with_extension("py")], // Python
|
|
|
+
|
|
|
+ "aux" => vec![self.path.with_extension("tex")], // TeX: auxiliary file
|
|
|
+ "bbl" => vec![self.path.with_extension("tex")], // BibTeX bibliography file
|
|
|
+ "blg" => vec![self.path.with_extension("tex")], // BibTeX log file
|
|
|
+ "lof" => vec![self.path.with_extension("tex")], // TeX list of figures
|
|
|
+ "log" => vec![self.path.with_extension("tex")], // TeX log file
|
|
|
+ "lot" => vec![self.path.with_extension("tex")], // TeX list of tables
|
|
|
+ "toc" => vec![self.path.with_extension("tex")], // TeX table of contents
|
|
|
+
|
|
|
+ _ => vec![], // No source files if none of the above
|
|
|
+ }
|
|
|
+ }
|
|
|
+ else {
|
|
|
+ vec![] // No source files if there's no extension, either!
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+/// Extract an extension from a string, if one is present.
|
|
|
+///
|
|
|
+/// The extension is the series of characters after the last dot. This
|
|
|
+/// deliberately counts dotfiles, so the ".git" folder has the extension "git".
|
|
|
+fn ext<'a>(name: &'a str) -> Option<String> {
|
|
|
+ name.rfind('.').map(|p| name[p+1..].to_string())
|
|
|
}
|