exa/src/dir.rs

76 lines
2.5 KiB
Rust
Raw Normal View History

2015-05-10 16:57:21 +00:00
use colours::Colours;
use feature::Git;
use file::File;
use std::io;
use std::fs;
use std::path::{Path, PathBuf};
2015-01-24 12:38:05 +00:00
/// A **Dir** provides a cached list of the file paths in a directory that's
/// being listed.
///
/// This object gets passed to the Files themselves, in order for them to
/// check the existence of surrounding files, then highlight themselves
/// accordingly. (See `File#get_source_files`)
2014-11-26 07:40:52 +00:00
pub struct Dir {
contents: Vec<PathBuf>,
path: PathBuf,
git: Option<Git>,
}
2014-11-26 07:40:52 +00:00
impl Dir {
2015-01-24 12:38:05 +00:00
/// Create a new Dir object filled with all the files in the directory
/// pointed to by the given path. Fails if the directory can't be read, or
/// isn't actually a directory.
pub fn readdir(path: &Path) -> io::Result<Dir> {
fs::read_dir(path).map(|dir_obj| Dir {
contents: dir_obj.map(|entry| entry.unwrap().path()).collect(),
path: path.to_path_buf(),
2015-02-01 02:14:31 +00:00
git: Git::scan(path).ok(),
})
}
2015-01-24 12:38:05 +00:00
/// Produce a vector of File objects from an initialised directory,
/// printing out an error if any of the Files fail to be created.
///
/// Passing in `recurse` means that any directories will be scanned for
/// their contents, as well.
pub fn files(&self, recurse: bool) -> Vec<File> {
let mut files = vec![];
2014-12-12 12:08:14 +00:00
for path in self.contents.iter() {
match File::from_path(path, Some(self), recurse) {
2014-11-24 02:12:52 +00:00
Ok(file) => files.push(file),
Err(e) => println!("{}: {}", path.display(), e),
}
}
2014-12-12 12:08:14 +00:00
files
}
2015-01-24 12:38:05 +00:00
/// Whether this directory contains a file with the given path.
pub fn contains(&self, path: &Path) -> bool {
self.contents.iter().any(|ref p| p.as_path() == path)
}
2015-01-26 17:26:11 +00:00
/// Append a path onto the path specified by this directory.
pub fn join(&self, child: &Path) -> PathBuf {
2015-01-26 17:26:11 +00:00
self.path.join(child)
}
/// Return whether there's a Git repository on or above this directory.
pub fn has_git_repo(&self) -> bool {
self.git.is_some()
}
/// Get a string describing the Git status of the given file.
2015-05-10 16:57:21 +00:00
pub fn git_status(&self, path: &Path, colours: &Colours, prefix_lookup: bool) -> String {
2015-01-28 10:43:19 +00:00
match (&self.git, prefix_lookup) {
2015-05-10 16:57:21 +00:00
(&Some(ref git), false) => git.status(colours, path),
(&Some(ref git), true) => git.dir_status(colours, path),
(&None, _) => colours.punctuation.paint("--").to_string(),
}
}
}