Mercurial > public > mercurial-scm > hg
view rust/rhg/src/commands/debugignorerhg.rs @ 52300:04b9a56c2d25
rust-lib: only export very common types to the top of the crate
This was done very early in the Rust project's lifecycle and I had very little
Rust experience. Let's keep the `DirstateParents` since they'll pop up in
all higher-level code and make the rest more explicit imports to make the
imports less confusing and the lib less cluttered.
author | Rapha?l Gom?s <rgomes@octobus.net> |
---|---|
date | Mon, 04 Nov 2024 11:13:05 +0100 |
parents | 58074252db3c |
children | e2e49069eeb6 |
line wrap: on
line source
use crate::error::CommandError; use hg::dirstate::status::StatusError; use hg::matchers::get_ignore_matcher; use log::warn; pub const HELP_TEXT: &str = " Show effective hgignore patterns used by rhg. This is a pure Rust version of `hg debugignore`. Some options might be missing, check the list below. "; pub fn args() -> clap::Command { clap::command!("debugignorerhg").about(HELP_TEXT) } pub fn run(invocation: &crate::CliInvocation) -> Result<(), CommandError> { let repo = invocation.repo?; let ignore_file = repo.working_directory_vfs().join(".hgignore"); // TODO hardcoded let (ignore_matcher, warnings) = get_ignore_matcher( vec![ignore_file], repo.working_directory_path(), &mut |_source, _pattern_bytes| (), ) .map_err(StatusError::from)?; if !warnings.is_empty() { warn!("Pattern warnings: {:?}", &warnings); } let patterns = ignore_matcher.debug_get_patterns(); invocation.ui.write_stdout(patterns)?; invocation.ui.write_stdout(b"\n")?; Ok(()) }