# HG changeset patch # User Raphaël Gomès # Date 1637935558 -3600 # Node ID 1d940d76571b57d3319ac88db765136aa4517e4f # Parent c6d00759dc2b6ddea55c7337d7211d53546f7cb2 rust: add function to check if an extension is enabled This will be used in the next patch Differential Revision: https://phab.mercurial-scm.org/D11812 diff -r c6d00759dc2b -r 1d940d76571b rust/hg-core/src/config/config.rs --- a/rust/hg-core/src/config/config.rs Fri Dec 03 15:06:40 2021 +0100 +++ b/rust/hg-core/src/config/config.rs Fri Nov 26 15:05:58 2021 +0100 @@ -362,6 +362,15 @@ Ok(self.get_option(section, item)?.unwrap_or(false)) } + /// Returns `true` if the extension is enabled, `false` otherwise + pub fn is_extension_enabled(&self, extension: &[u8]) -> bool { + let value = self.get(b"extensions", extension); + match value { + Some(c) => !c.starts_with(b"!"), + None => false, + } + } + /// If there is an `item` value in `section`, parse and return a list of /// byte strings. pub fn get_list(