# HG changeset patch # User Simon Sapin # Date 1644490684 -3600 # Node ID 99b1dfc06571e24d52cbd7abf7f3e59b5abbe827 # Parent 3199b575375d265b7106c9edcbbee85494f782ef rhg: Add support for HGPLAINEXPECT Differential Revision: https://phab.mercurial-scm.org/D12163 diff -r 3199b575375d -r 99b1dfc06571 rust/rhg/src/commands/status.rs --- a/rust/rhg/src/commands/status.rs Thu Feb 10 13:24:38 2022 -0500 +++ b/rust/rhg/src/commands/status.rs Thu Feb 10 11:58:04 2022 +0100 @@ -183,7 +183,7 @@ let config = invocation.config; let args = invocation.subcommand_args; - let verbose = !ui.plain() + let verbose = !ui.plain(None) && !args.is_present("print0") && (config.get_bool(b"ui", b"verbose")? || config.get_bool(b"commands", b"status.verbose")?); @@ -312,7 +312,7 @@ } } } - let relative_paths = (!ui.plain()) + let relative_paths = (!ui.plain(None)) && config .get_option(b"commands", b"status.relative")? .unwrap_or(config.get_bool(b"ui", b"relative-paths")?); diff -r 3199b575375d -r 99b1dfc06571 rust/rhg/src/main.rs --- a/rust/rhg/src/main.rs Thu Feb 10 13:24:38 2022 -0500 +++ b/rust/rhg/src/main.rs Thu Feb 10 11:58:04 2022 +0100 @@ -669,7 +669,9 @@ } if let Some(color) = config.get(b"ui", b"color") { - if (color == b"always" || color == b"debug") && !ui.plain() { + if (color == b"always" || color == b"debug") + && !ui.plain(Some("color")) + { Err(CommandError::unsupported("colored output"))? } } diff -r 3199b575375d -r 99b1dfc06571 rust/rhg/src/ui.rs --- a/rust/rhg/src/ui.rs Thu Feb 10 13:24:38 2022 -0500 +++ b/rust/rhg/src/ui.rs Thu Feb 10 11:58:04 2022 +0100 @@ -1,4 +1,5 @@ use format_bytes::format_bytes; +use hg::utils::files::get_bytes_from_os_string; use std::borrow::Cow; use std::env; use std::io; @@ -65,8 +66,19 @@ /// - False if HGPLAIN is not set, or feature is in HGPLAINEXCEPT /// - False if feature is disabled by default and not included in HGPLAIN /// - True otherwise - pub fn plain(&self) -> bool { - // TODO: add support for HGPLAINEXCEPT + pub fn plain(&self, feature: Option<&str>) -> bool { + plain(feature) + } +} + +fn plain(opt_feature: Option<&str>) -> bool { + if let Some(except) = env::var_os("HGPLAINEXCEPT") { + opt_feature.map_or(true, |feature| { + get_bytes_from_os_string(except) + .split(|&byte| byte == b',') + .all(|exception| exception != feature.as_bytes()) + }) + } else { env::var_os("HGPLAIN").is_some() } }