2019-12-24 15:11:50 -06:00
|
|
|
//! Defines hir-level representation of visibility (e.g. `pub` and `pub(crate)`).
|
|
|
|
|
2019-12-24 13:32:42 -06:00
|
|
|
use std::sync::Arc;
|
|
|
|
|
2019-12-24 16:45:14 -06:00
|
|
|
use hir_expand::{hygiene::Hygiene, InFile};
|
2019-12-26 09:22:15 -06:00
|
|
|
use ra_syntax::ast;
|
2019-12-24 13:32:42 -06:00
|
|
|
|
|
|
|
use crate::{
|
|
|
|
db::DefDatabase,
|
|
|
|
path::{ModPath, PathKind},
|
2019-12-26 09:22:15 -06:00
|
|
|
ModuleId,
|
2019-12-24 13:32:42 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
/// Visibility of an item, not yet resolved.
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
2019-12-26 08:57:14 -06:00
|
|
|
pub enum RawVisibility {
|
2019-12-24 13:32:42 -06:00
|
|
|
// FIXME: We could avoid the allocation in many cases by special-casing
|
|
|
|
// pub(crate), pub(super) and private. Alternatively, `ModPath` could be
|
|
|
|
// made to contain an Arc<[Segment]> instead of a Vec?
|
|
|
|
/// `pub(in module)`, `pub(crate)` or `pub(super)`. Also private, which is
|
|
|
|
/// equivalent to `pub(self)`.
|
|
|
|
Module(Arc<ModPath>),
|
|
|
|
/// `pub`.
|
|
|
|
Public,
|
|
|
|
}
|
|
|
|
|
2019-12-26 08:57:14 -06:00
|
|
|
impl RawVisibility {
|
|
|
|
fn private() -> RawVisibility {
|
2019-12-24 13:32:42 -06:00
|
|
|
let path = ModPath { kind: PathKind::Super(0), segments: Vec::new() };
|
2019-12-26 08:57:14 -06:00
|
|
|
RawVisibility::Module(Arc::new(path))
|
2019-12-24 13:32:42 -06:00
|
|
|
}
|
|
|
|
|
2019-12-26 09:22:15 -06:00
|
|
|
pub(crate) fn from_ast(
|
|
|
|
db: &impl DefDatabase,
|
|
|
|
node: InFile<Option<ast::Visibility>>,
|
|
|
|
) -> RawVisibility {
|
2019-12-24 16:45:14 -06:00
|
|
|
Self::from_ast_with_hygiene(node.value, &Hygiene::new(db, node.file_id))
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn from_ast_with_hygiene(
|
|
|
|
node: Option<ast::Visibility>,
|
|
|
|
hygiene: &Hygiene,
|
2019-12-26 08:57:14 -06:00
|
|
|
) -> RawVisibility {
|
2019-12-24 16:45:14 -06:00
|
|
|
let node = match node {
|
2019-12-26 08:57:14 -06:00
|
|
|
None => return RawVisibility::private(),
|
2019-12-24 13:32:42 -06:00
|
|
|
Some(node) => node,
|
|
|
|
};
|
|
|
|
match node.kind() {
|
|
|
|
ast::VisibilityKind::In(path) => {
|
2019-12-24 16:45:14 -06:00
|
|
|
let path = ModPath::from_src(path, hygiene);
|
2019-12-24 13:32:42 -06:00
|
|
|
let path = match path {
|
2019-12-26 08:57:14 -06:00
|
|
|
None => return RawVisibility::private(),
|
2019-12-24 13:32:42 -06:00
|
|
|
Some(path) => path,
|
|
|
|
};
|
2019-12-26 08:57:14 -06:00
|
|
|
RawVisibility::Module(Arc::new(path))
|
2019-12-24 13:32:42 -06:00
|
|
|
}
|
|
|
|
ast::VisibilityKind::PubCrate => {
|
|
|
|
let path = ModPath { kind: PathKind::Crate, segments: Vec::new() };
|
2019-12-26 08:57:14 -06:00
|
|
|
RawVisibility::Module(Arc::new(path))
|
2019-12-24 13:32:42 -06:00
|
|
|
}
|
|
|
|
ast::VisibilityKind::PubSuper => {
|
|
|
|
let path = ModPath { kind: PathKind::Super(1), segments: Vec::new() };
|
2019-12-26 08:57:14 -06:00
|
|
|
RawVisibility::Module(Arc::new(path))
|
2019-12-24 13:32:42 -06:00
|
|
|
}
|
2019-12-26 08:57:14 -06:00
|
|
|
ast::VisibilityKind::Pub => RawVisibility::Public,
|
2019-12-24 13:32:42 -06:00
|
|
|
}
|
|
|
|
}
|
2019-12-24 14:23:22 -06:00
|
|
|
|
|
|
|
pub fn resolve(
|
|
|
|
&self,
|
|
|
|
db: &impl DefDatabase,
|
|
|
|
resolver: &crate::resolver::Resolver,
|
2019-12-26 09:00:10 -06:00
|
|
|
) -> Visibility {
|
2019-12-24 14:23:22 -06:00
|
|
|
// we fall back to public visibility (i.e. fail open) if the path can't be resolved
|
2019-12-26 09:00:10 -06:00
|
|
|
resolver.resolve_visibility(db, self).unwrap_or(Visibility::Public)
|
2019-12-24 14:23:22 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Visibility of an item, with the path resolved.
|
|
|
|
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
|
2019-12-26 09:00:10 -06:00
|
|
|
pub enum Visibility {
|
2019-12-24 14:23:22 -06:00
|
|
|
/// Visibility is restricted to a certain module.
|
|
|
|
Module(ModuleId),
|
|
|
|
/// Visibility is unrestricted.
|
|
|
|
Public,
|
|
|
|
}
|
|
|
|
|
2019-12-26 09:00:10 -06:00
|
|
|
impl Visibility {
|
2019-12-24 14:23:22 -06:00
|
|
|
pub fn visible_from(self, db: &impl DefDatabase, from_module: ModuleId) -> bool {
|
|
|
|
let to_module = match self {
|
2019-12-26 09:00:10 -06:00
|
|
|
Visibility::Module(m) => m,
|
|
|
|
Visibility::Public => return true,
|
2019-12-24 14:23:22 -06:00
|
|
|
};
|
|
|
|
// if they're not in the same crate, it can't be visible
|
|
|
|
if from_module.krate != to_module.krate {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
let def_map = db.crate_def_map(from_module.krate);
|
2019-12-25 11:05:16 -06:00
|
|
|
self.visible_from_def_map(&def_map, from_module.local_id)
|
|
|
|
}
|
|
|
|
|
2019-12-26 09:31:38 -06:00
|
|
|
pub(crate) fn visible_from_other_crate(self) -> bool {
|
|
|
|
match self {
|
|
|
|
Visibility::Module(_) => false,
|
|
|
|
Visibility::Public => true,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-25 11:05:16 -06:00
|
|
|
pub(crate) fn visible_from_def_map(
|
|
|
|
self,
|
|
|
|
def_map: &crate::nameres::CrateDefMap,
|
|
|
|
from_module: crate::LocalModuleId,
|
|
|
|
) -> bool {
|
|
|
|
let to_module = match self {
|
2019-12-26 09:00:10 -06:00
|
|
|
Visibility::Module(m) => m,
|
|
|
|
Visibility::Public => return true,
|
2019-12-25 11:05:16 -06:00
|
|
|
};
|
|
|
|
// from_module needs to be a descendant of to_module
|
2019-12-24 14:23:22 -06:00
|
|
|
let mut ancestors = std::iter::successors(Some(from_module), |m| {
|
2019-12-25 11:05:16 -06:00
|
|
|
let parent_id = def_map[*m].parent?;
|
|
|
|
Some(parent_id)
|
2019-12-24 14:23:22 -06:00
|
|
|
});
|
2019-12-25 11:05:16 -06:00
|
|
|
ancestors.any(|m| m == to_module.local_id)
|
2019-12-24 14:23:22 -06:00
|
|
|
}
|
2019-12-24 13:32:42 -06:00
|
|
|
}
|