rust/crates/ra_cfg/src/lib.rs

62 lines
2.0 KiB
Rust
Raw Normal View History

//! ra_cfg defines conditional compiling options, `cfg` attibute parser and evaluator
2019-10-02 13:02:53 -05:00
use std::iter::IntoIterator;
use ra_syntax::SmolStr;
2019-10-02 12:20:08 -05:00
use rustc_hash::FxHashSet;
mod cfg_expr;
pub use cfg_expr::{parse_cfg, CfgExpr};
2019-10-02 12:20:08 -05:00
/// Configuration options used for conditional compilition on items with `cfg` attributes.
/// We have two kind of options in different namespaces: atomic options like `unix`, and
/// key-value options like `target_arch="x86"`.
///
/// Note that for key-value options, one key can have multiple values (but not none).
/// `feature` is an example. We have both `feature="foo"` and `feature="bar"` if features
/// `foo` and `bar` are both enabled. And here, we store key-value options as a set of tuple
/// of key and value in `key_values`.
///
/// See: https://doc.rust-lang.org/reference/conditional-compilation.html#set-configuration-options
#[derive(Debug, Clone, PartialEq, Eq, Default)]
pub struct CfgOptions {
atoms: FxHashSet<SmolStr>,
2019-10-02 12:20:08 -05:00
key_values: FxHashSet<(SmolStr, SmolStr)>,
}
impl CfgOptions {
pub fn check(&self, cfg: &CfgExpr) -> Option<bool> {
cfg.fold(&|key, value| match value {
None => self.atoms.contains(key),
2019-10-02 12:20:08 -05:00
Some(value) => self.key_values.contains(&(key.clone(), value.clone())),
})
}
pub fn is_cfg_enabled(&self, attr: &tt::Subtree) -> Option<bool> {
self.check(&parse_cfg(attr))
}
pub fn atom(mut self, name: SmolStr) -> CfgOptions {
self.atoms.insert(name);
self
}
2019-10-02 12:20:08 -05:00
pub fn key_value(mut self, key: SmolStr, value: SmolStr) -> CfgOptions {
self.key_values.insert((key, value));
self
}
2019-10-02 13:02:53 -05:00
/// Shortcut to set features
pub fn features(mut self, iter: impl IntoIterator<Item = SmolStr>) -> CfgOptions {
for feat in iter {
self = self.key_value("feature".into(), feat);
}
self
}
2019-10-02 12:20:08 -05:00
pub fn remove_atom(mut self, name: &SmolStr) -> CfgOptions {
self.atoms.remove(name);
self
}
}