rust/crates/hir-def/src/per_ns.rs

136 lines
4.1 KiB
Rust
Raw Normal View History

2019-11-24 12:00:50 -06:00
//! In rust, it is possible to have a value, a type and a macro with the same
//! name without conflicts.
//!
//! `PerNs` (per namespace) captures this.
use crate::{
item_scope::{ImportId, ImportOrExternCrate, ItemInNs},
visibility::Visibility,
MacroId, ModuleDefId,
};
2023-08-18 04:46:35 -05:00
#[derive(PartialEq, Eq, Hash, Copy, Clone, Debug)]
pub enum Namespace {
Types,
Values,
Macros,
}
2024-01-21 18:50:51 -06:00
#[derive(Clone, Copy, Debug, Default, Eq, Hash, PartialEq)]
2019-09-13 08:38:59 -05:00
pub struct PerNs {
pub types: Option<(ModuleDefId, Visibility, Option<ImportOrExternCrate>)>,
pub values: Option<(ModuleDefId, Visibility, Option<ImportId>)>,
pub macros: Option<(MacroId, Visibility, Option<ImportId>)>,
2019-03-16 09:17:50 -05:00
}
2019-09-13 08:38:59 -05:00
impl PerNs {
pub fn none() -> PerNs {
PerNs { types: None, values: None, macros: None }
2019-03-16 09:17:50 -05:00
}
2023-08-17 03:52:13 -05:00
pub fn values(t: ModuleDefId, v: Visibility, i: Option<ImportId>) -> PerNs {
PerNs { types: None, values: Some((t, v, i)), macros: None }
2019-03-16 09:17:50 -05:00
}
2023-08-17 03:52:13 -05:00
pub fn types(t: ModuleDefId, v: Visibility, i: Option<ImportOrExternCrate>) -> PerNs {
PerNs { types: Some((t, v, i)), values: None, macros: None }
2019-03-16 09:17:50 -05:00
}
2023-08-17 03:52:13 -05:00
pub fn both(
types: ModuleDefId,
values: ModuleDefId,
v: Visibility,
i: Option<ImportOrExternCrate>,
) -> PerNs {
PerNs {
types: Some((types, v, i)),
values: Some((values, v, i.and_then(ImportOrExternCrate::into_import))),
macros: None,
}
2019-03-16 09:17:50 -05:00
}
2023-08-17 03:52:13 -05:00
pub fn macros(macro_: MacroId, v: Visibility, i: Option<ImportId>) -> PerNs {
PerNs { types: None, values: None, macros: Some((macro_, v, i)) }
2019-03-16 09:17:50 -05:00
}
pub fn is_none(&self) -> bool {
self.types.is_none() && self.values.is_none() && self.macros.is_none()
2019-03-16 09:17:50 -05:00
}
pub fn is_full(&self) -> bool {
self.types.is_some() && self.values.is_some() && self.macros.is_some()
}
2019-10-31 10:45:10 -05:00
pub fn take_types(self) -> Option<ModuleDefId> {
self.types.map(|it| it.0)
}
2023-08-17 03:52:13 -05:00
pub fn take_types_full(self) -> Option<(ModuleDefId, Visibility, Option<ImportOrExternCrate>)> {
self.types
2019-03-16 09:17:50 -05:00
}
2019-10-31 10:45:10 -05:00
pub fn take_values(self) -> Option<ModuleDefId> {
self.values.map(|it| it.0)
2019-03-16 09:17:50 -05:00
}
2023-08-17 03:52:13 -05:00
pub fn take_values_import(self) -> Option<(ModuleDefId, Option<ImportId>)> {
self.values.map(|it| (it.0, it.2))
}
pub fn take_macros(self) -> Option<MacroId> {
self.macros.map(|it| it.0)
}
2023-08-17 03:52:13 -05:00
pub fn take_macros_import(self) -> Option<(MacroId, Option<ImportId>)> {
self.macros.map(|it| (it.0, it.2))
}
pub fn filter_visibility(self, mut f: impl FnMut(Visibility) -> bool) -> PerNs {
let _p = tracing::span!(tracing::Level::INFO, "PerNs::filter_visibility").entered();
PerNs {
types: self.types.filter(|&(_, v, _)| f(v)),
values: self.values.filter(|&(_, v, _)| f(v)),
macros: self.macros.filter(|&(_, v, _)| f(v)),
}
}
pub fn with_visibility(self, vis: Visibility) -> PerNs {
PerNs {
types: self.types.map(|(it, _, c)| (it, vis, c)),
values: self.values.map(|(it, _, c)| (it, vis, c)),
macros: self.macros.map(|(it, _, import)| (it, vis, import)),
}
}
2019-09-13 08:38:59 -05:00
pub fn or(self, other: PerNs) -> PerNs {
PerNs {
types: self.types.or(other.types),
values: self.values.or(other.values),
macros: self.macros.or(other.macros),
}
2019-03-16 09:17:50 -05:00
}
2020-05-20 16:51:20 -05:00
pub fn or_else(self, f: impl FnOnce() -> PerNs) -> PerNs {
if self.is_full() {
self
} else {
self.or(f())
}
}
pub fn iter_items(self) -> impl Iterator<Item = (ItemInNs, Option<ImportOrExternCrate>)> {
let _p = tracing::span!(tracing::Level::INFO, "PerNs::iter_items").entered();
2020-05-20 16:51:20 -05:00
self.types
.map(|it| (ItemInNs::Types(it.0), it.2))
2020-05-20 16:51:20 -05:00
.into_iter()
.chain(
self.values
2024-01-21 18:31:50 -06:00
.map(|it| (ItemInNs::Values(it.0), it.2.map(ImportOrExternCrate::Import))),
)
.chain(
self.macros
2024-01-21 18:31:50 -06:00
.map(|it| (ItemInNs::Macros(it.0), it.2.map(ImportOrExternCrate::Import))),
)
2020-05-20 16:51:20 -05:00
}
2019-03-16 09:17:50 -05:00
}