2015-01-28 16:55:34 +00:00
|
|
|
use std::old_io::{fs, IoResult};
|
2015-03-22 19:46:45 +00:00
|
|
|
use std::old_path::GenericPath;
|
|
|
|
use std::old_path::posix::Path;
|
2015-01-27 15:01:17 +00:00
|
|
|
use file::{File, GREY};
|
|
|
|
|
2015-02-13 21:24:10 +00:00
|
|
|
#[cfg(feature="git")] use ansi_term::{ANSIString, ANSIStrings};
|
2015-01-27 15:01:17 +00:00
|
|
|
#[cfg(feature="git")] use ansi_term::Colour::*;
|
|
|
|
#[cfg(feature="git")] use git2;
|
2014-06-16 23:27:05 +00:00
|
|
|
|
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 {
|
2015-01-26 17:26:11 +00:00
|
|
|
contents: Vec<Path>,
|
|
|
|
path: Path,
|
2015-01-27 15:01:17 +00:00
|
|
|
git: Option<Git>,
|
2014-06-16 23:27:05 +00:00
|
|
|
}
|
|
|
|
|
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.
|
2015-02-01 02:14:31 +00:00
|
|
|
pub fn readdir(path: &Path) -> IoResult<Dir> {
|
|
|
|
fs::readdir(path).map(|paths| Dir {
|
2014-06-20 20:07:53 +00:00
|
|
|
contents: paths,
|
2014-06-21 18:39:27 +00:00
|
|
|
path: path.clone(),
|
2015-02-01 02:14:31 +00:00
|
|
|
git: Git::scan(path).ok(),
|
2014-06-20 20:07:53 +00:00
|
|
|
})
|
2014-06-16 23:27:05 +00:00
|
|
|
}
|
|
|
|
|
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.
|
2015-02-03 13:27:23 +00:00
|
|
|
///
|
|
|
|
/// Passing in `recurse` means that any directories will be scanned for
|
|
|
|
/// their contents, as well.
|
|
|
|
pub fn files(&self, recurse: bool) -> Vec<File> {
|
2014-06-20 20:07:53 +00:00
|
|
|
let mut files = vec![];
|
2014-12-12 12:08:14 +00:00
|
|
|
|
2014-06-20 20:07:53 +00:00
|
|
|
for path in self.contents.iter() {
|
2015-02-03 13:27:23 +00:00
|
|
|
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-06-20 20:07:53 +00:00
|
|
|
}
|
|
|
|
}
|
2014-12-12 12:08:14 +00:00
|
|
|
|
2014-06-20 20:07:53 +00:00
|
|
|
files
|
2014-06-16 23:27:05 +00:00
|
|
|
}
|
|
|
|
|
2015-01-24 12:38:05 +00:00
|
|
|
/// Whether this directory contains a file with the given path.
|
2014-06-16 23:27:05 +00:00
|
|
|
pub fn contains(&self, path: &Path) -> bool {
|
|
|
|
self.contents.contains(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) -> Path {
|
|
|
|
self.path.join(child)
|
|
|
|
}
|
2015-01-27 15:01:17 +00:00
|
|
|
|
|
|
|
/// 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-01-28 10:43:19 +00:00
|
|
|
pub fn git_status(&self, path: &Path, prefix_lookup: bool) -> String {
|
|
|
|
match (&self.git, prefix_lookup) {
|
|
|
|
(&Some(ref git), false) => git.status(path),
|
|
|
|
(&Some(ref git), true) => git.dir_status(path),
|
|
|
|
(&None, _) => GREY.paint("--").to_string(),
|
2015-01-27 15:01:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-27 15:30:55 +00:00
|
|
|
/// Container of Git statuses for all the files in this folder's Git repository.
|
2015-01-27 15:01:17 +00:00
|
|
|
#[cfg(feature="git")]
|
|
|
|
struct Git {
|
2015-02-22 22:25:08 +00:00
|
|
|
statuses: Vec<(Path, git2::Status)>,
|
2015-01-27 15:01:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature="git")]
|
|
|
|
impl Git {
|
2015-01-27 15:30:55 +00:00
|
|
|
|
|
|
|
/// Discover a Git repository on or above this directory, scanning it for
|
|
|
|
/// the files' statuses if one is found.
|
|
|
|
fn scan(path: &Path) -> Result<Git, git2::Error> {
|
2015-03-22 07:48:05 +00:00
|
|
|
use std::os::unix::ffi::OsStrExt;
|
2015-03-02 03:18:26 +00:00
|
|
|
use std::ffi::AsOsStr;
|
|
|
|
|
|
|
|
// TODO: libgit2-rs uses the new Path module, but exa still uses the
|
|
|
|
// old_path one, and will have to continue to do so until the new IO
|
|
|
|
// module gets a bit more developed. So we have to turn Paths into
|
|
|
|
// old_path::Paths. Yes, this is hacky, but hopefully temporary.
|
2015-01-27 15:01:17 +00:00
|
|
|
let repo = try!(git2::Repository::discover(path));
|
2015-03-02 03:18:26 +00:00
|
|
|
let workdir = match repo.workdir() {
|
|
|
|
Some(w) => Path::new(w.as_os_str().as_bytes()),
|
|
|
|
None => return Ok(Git { statuses: vec![] }), // bare repo
|
|
|
|
};
|
|
|
|
|
2015-01-28 15:49:17 +00:00
|
|
|
let statuses = try!(repo.statuses(None)).iter()
|
2015-02-22 22:25:08 +00:00
|
|
|
.map(|e| (workdir.join(e.path_bytes()), e.status()))
|
2015-01-28 15:49:17 +00:00
|
|
|
.collect();
|
|
|
|
Ok(Git { statuses: statuses })
|
2015-01-27 15:01:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Get the status for the file at the given path, if present.
|
|
|
|
fn status(&self, path: &Path) -> String {
|
2015-01-28 10:43:19 +00:00
|
|
|
let status = self.statuses.iter()
|
2015-02-22 22:25:08 +00:00
|
|
|
.find(|p| &p.0 == path);
|
2015-01-28 10:43:19 +00:00
|
|
|
match status {
|
2015-02-13 21:24:10 +00:00
|
|
|
Some(&(_, s)) => ANSIStrings( &[Git::index_status(s), Git::working_tree_status(s) ]).to_string(),
|
2015-01-27 15:01:17 +00:00
|
|
|
None => GREY.paint("--").to_string(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-28 10:43:19 +00:00
|
|
|
/// Get the combined status for all the files whose paths begin with the
|
|
|
|
/// path that gets passed in. This is used for getting the status of
|
|
|
|
/// directories, which don't really have an 'official' status.
|
|
|
|
fn dir_status(&self, dir: &Path) -> String {
|
2015-02-01 09:39:30 +00:00
|
|
|
let s = self.statuses.iter()
|
2015-02-22 22:25:08 +00:00
|
|
|
.filter(|p| dir.is_ancestor_of(&p.0))
|
2015-02-01 09:39:30 +00:00
|
|
|
.fold(git2::Status::empty(), |a, b| a | b.1);
|
|
|
|
|
2015-02-13 21:24:10 +00:00
|
|
|
ANSIStrings( &[Git::index_status(s), Git::working_tree_status(s)] ).to_string()
|
2015-01-28 10:43:19 +00:00
|
|
|
}
|
|
|
|
|
2015-01-27 15:01:17 +00:00
|
|
|
/// The character to display if the file has been modified, but not staged.
|
|
|
|
fn working_tree_status(status: git2::Status) -> ANSIString<'static> {
|
|
|
|
match status {
|
|
|
|
s if s.contains(git2::STATUS_WT_NEW) => Green.paint("A"),
|
|
|
|
s if s.contains(git2::STATUS_WT_MODIFIED) => Blue.paint("M"),
|
|
|
|
s if s.contains(git2::STATUS_WT_DELETED) => Red.paint("D"),
|
|
|
|
s if s.contains(git2::STATUS_WT_RENAMED) => Yellow.paint("R"),
|
|
|
|
s if s.contains(git2::STATUS_WT_TYPECHANGE) => Purple.paint("T"),
|
|
|
|
_ => GREY.paint("-"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// The character to display if the file has been modified, and the change
|
|
|
|
/// has been staged.
|
|
|
|
fn index_status(status: git2::Status) -> ANSIString<'static> {
|
|
|
|
match status {
|
|
|
|
s if s.contains(git2::STATUS_INDEX_NEW) => Green.paint("A"),
|
|
|
|
s if s.contains(git2::STATUS_INDEX_MODIFIED) => Blue.paint("M"),
|
|
|
|
s if s.contains(git2::STATUS_INDEX_DELETED) => Red.paint("D"),
|
|
|
|
s if s.contains(git2::STATUS_INDEX_RENAMED) => Yellow.paint("R"),
|
|
|
|
s if s.contains(git2::STATUS_INDEX_TYPECHANGE) => Purple.paint("T"),
|
|
|
|
_ => GREY.paint("-"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(feature="git"))]
|
|
|
|
struct Git;
|
|
|
|
|
|
|
|
#[cfg(not(feature="git"))]
|
|
|
|
impl Git {
|
2015-01-27 15:30:55 +00:00
|
|
|
fn scan(_: &Path) -> Result<Git, ()> {
|
|
|
|
// Don't do anything without Git support
|
2015-01-27 15:01:17 +00:00
|
|
|
Err(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn status(&self, _: &Path) -> String {
|
2015-01-27 15:30:55 +00:00
|
|
|
// The Err above means that this should never happen
|
2015-01-27 15:01:17 +00:00
|
|
|
panic!("Tried to access a Git repo without Git support!");
|
|
|
|
}
|
2015-01-28 16:53:13 +00:00
|
|
|
|
|
|
|
fn dir_status(&self, path: &Path) -> String {
|
|
|
|
self.status(path)
|
|
|
|
}
|
2014-06-16 23:27:05 +00:00
|
|
|
}
|