##// END OF EJS Templates
wireprotopeer: clarify some variable names now that we allow snake_case...
wireprotopeer: clarify some variable names now that we allow snake_case "encargsorres" is hard to parse ("encarg sorres" sounds like it might be Spanish to me, and indeed Google Translate tells me that it's Catalan for "order sands"). Let's clarify with some added underscores and longer names. Differential Revision: https://phab.mercurial-scm.org/D9973

File last commit:

r47175:1dcd9c99 default
r47209:05dd091d default
Show More
files.rs
61 lines | 1.7 KiB | application/rls-services+xml | RustLexer
Antoine Cezar
rhg: add a `Files` `Command` to prepare the `rhg files` subcommand...
r45923 use crate::commands::Command;
Simon Sapin
rust: remove `FooError` structs with only `kind: FooErrorKind` enum field...
r47163 use crate::error::CommandError;
Antoine Cezar
rhg: add a `Files` `Command` to prepare the `rhg files` subcommand...
r45923 use crate::ui::Ui;
Simon Sapin
rhg: replace `map_*_error` functions with `From` impls...
r47165 use hg::operations::list_rev_tracked_files;
use hg::operations::Dirstate;
Simon Sapin
rust: introduce Repo and Vfs types for filesystem abstraction...
r46782 use hg::repo::Repo;
Raphaël Gomès
rhg: make output of `files` relative to the current directory and the root...
r46007 use hg::utils::files::{get_bytes_from_path, relativize_path};
Antoine Cezar
rhg: add `--revision` argument to `rhg files`...
r46108 use hg::utils::hg_path::{HgPath, HgPathBuf};
Antoine Cezar
rhg: add a `Files` `Command` to prepare the `rhg files` subcommand...
r45923
pub const HELP_TEXT: &str = "
List tracked files.
Returns 0 on success.
";
Antoine Cezar
rhg: add `--revision` argument to `rhg files`...
r46108 pub struct FilesCommand<'a> {
rev: Option<&'a str>,
Antoine Cezar
rhg: add a `Files` `Command` to prepare the `rhg files` subcommand...
r45923 }
Antoine Cezar
rhg: add `--revision` argument to `rhg files`...
r46108 impl<'a> FilesCommand<'a> {
pub fn new(rev: Option<&'a str>) -> Self {
FilesCommand { rev }
}
Antoine Cezar
rhg: add a `Files` `Command` to prepare the `rhg files` subcommand...
r45923
Antoine Cezar
rhg: add `--revision` argument to `rhg files`...
r46108 fn display_files(
&self,
ui: &Ui,
Simon Sapin
rust: introduce Repo and Vfs types for filesystem abstraction...
r46782 repo: &Repo,
Antoine Cezar
rhg: add `--revision` argument to `rhg files`...
r46108 files: impl IntoIterator<Item = &'a HgPath>,
) -> Result<(), CommandError> {
Simon Sapin
rhg: Simplify CommandError based on its use...
r47174 let cwd = hg::utils::current_dir()?;
Raphaël Gomès
rhg: make output of `files` relative to the current directory and the root...
r46007 let rooted_cwd = cwd
Simon Sapin
rust: introduce Repo and Vfs types for filesystem abstraction...
r46782 .strip_prefix(repo.working_directory_path())
Raphaël Gomès
rhg: make output of `files` relative to the current directory and the root...
r46007 .expect("cwd was already checked within the repository");
let rooted_cwd = HgPathBuf::from(get_bytes_from_path(rooted_cwd));
Antoine Cezar
rhg: pass `ui` to `Command` `run`...
r46009 let mut stdout = ui.stdout_buffer();
Raphaël Gomès
rhg: make output of `files` relative to the current directory and the root...
r46007
Antoine Cezar
rhg: add a `Files` `Command` to prepare the `rhg files` subcommand...
r45923 for file in files {
Raphaël Gomès
rhg: make output of `files` relative to the current directory and the root...
r46007 stdout.write_all(relativize_path(file, &rooted_cwd).as_ref())?;
Antoine Cezar
rhg: add a `Files` `Command` to prepare the `rhg files` subcommand...
r45923 stdout.write_all(b"\n")?;
}
stdout.flush()?;
Ok(())
}
}
Antoine Cezar
hg-core: simplify `list_tracked_files` operation...
r46106
Antoine Cezar
rhg: add `--revision` argument to `rhg files`...
r46108 impl<'a> Command for FilesCommand<'a> {
fn run(&self, ui: &Ui) -> Result<(), CommandError> {
Simon Sapin
rust: introduce Repo and Vfs types for filesystem abstraction...
r46782 let repo = Repo::find()?;
Antoine Cezar
rhg: add `--revision` argument to `rhg files`...
r46108 if let Some(rev) = self.rev {
Simon Sapin
rhg: replace `map_*_error` functions with `From` impls...
r47165 let files =
list_rev_tracked_files(&repo, rev).map_err(|e| (e, rev))?;
Simon Sapin
rust: introduce Repo and Vfs types for filesystem abstraction...
r46782 self.display_files(ui, &repo, files.iter())
Antoine Cezar
rhg: add `--revision` argument to `rhg files`...
r46108 } else {
Simon Sapin
rhg: replace `map_*_error` functions with `From` impls...
r47165 let distate = Dirstate::new(&repo)?;
let files = distate.tracked_files()?;
Simon Sapin
rust: introduce Repo and Vfs types for filesystem abstraction...
r46782 self.display_files(ui, &repo, files)
Antoine Cezar
rhg: add `--revision` argument to `rhg files`...
r46108 }
}
}