2013-08-08 11:38:10 -07:00
|
|
|
//! A pass that checks to make sure private fields and methods aren't used
|
2013-08-07 00:11:34 -07:00
|
|
|
//! outside their scopes. This pass will also generate a set of exported items
|
|
|
|
|
//! which are available for use externally when compiled as a library.
|
2022-09-12 10:57:34 +03:00
|
|
|
use crate::ty::Visibility;
|
2019-12-24 05:02:53 +01:00
|
|
|
use rustc_data_structures::fx::FxHashMap;
|
2020-11-14 16:35:31 +01:00
|
|
|
use rustc_data_structures::stable_hasher::{HashStable, StableHasher};
|
2018-12-03 01:14:35 +01:00
|
|
|
use rustc_macros::HashStable;
|
2022-04-04 22:19:25 +02:00
|
|
|
use rustc_query_system::ich::StableHashingContext;
|
2021-07-28 18:23:40 +03:00
|
|
|
use rustc_span::def_id::LocalDefId;
|
2015-11-19 14:16:35 +03:00
|
|
|
use std::hash::Hash;
|
|
|
|
|
|
2020-12-21 20:00:18 -08:00
|
|
|
/// Represents the levels of accessibility an item can have.
|
|
|
|
|
///
|
|
|
|
|
/// The variants are sorted in ascending order of accessibility.
|
2018-12-03 01:14:35 +01:00
|
|
|
#[derive(Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Ord, HashStable)]
|
2015-11-19 14:16:35 +03:00
|
|
|
pub enum AccessLevel {
|
2019-01-26 20:30:52 +01:00
|
|
|
/// Superset of `AccessLevel::Reachable` used to mark impl Trait items.
|
2018-08-21 00:11:59 +01:00
|
|
|
ReachableFromImplTrait,
|
2019-01-26 20:30:52 +01:00
|
|
|
/// Exported items + items participating in various kinds of public interfaces,
|
|
|
|
|
/// but not directly nameable. For example, if function `fn f() -> T {...}` is
|
|
|
|
|
/// public, then type `T` is reachable. Its values can be obtained by other crates
|
|
|
|
|
/// even if the type itself is not nameable.
|
2015-11-19 14:16:35 +03:00
|
|
|
Reachable,
|
2020-12-21 20:00:18 -08:00
|
|
|
/// Public items + items accessible to other crates with the help of `pub use` re-exports.
|
2015-11-19 14:16:35 +03:00
|
|
|
Exported,
|
2020-12-21 20:00:18 -08:00
|
|
|
/// Items accessible to other crates directly, without the help of re-exports.
|
2015-11-19 14:16:35 +03:00
|
|
|
Public,
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-12 10:57:34 +03:00
|
|
|
#[derive(Clone, Copy, PartialEq, Eq, Debug, HashStable, Default)]
|
|
|
|
|
pub struct EffectiveVisibility {
|
|
|
|
|
public: Option<Visibility>,
|
|
|
|
|
exported: Option<Visibility>,
|
|
|
|
|
reachable: Option<Visibility>,
|
|
|
|
|
reachable_from_impl_trait: Option<Visibility>,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl EffectiveVisibility {
|
|
|
|
|
pub fn get(&self, tag: AccessLevel) -> Option<&Visibility> {
|
|
|
|
|
match tag {
|
|
|
|
|
AccessLevel::Public => &self.public,
|
|
|
|
|
AccessLevel::Exported => &self.exported,
|
|
|
|
|
AccessLevel::Reachable => &self.reachable,
|
|
|
|
|
AccessLevel::ReachableFromImplTrait => &self.reachable_from_impl_trait,
|
|
|
|
|
}
|
|
|
|
|
.as_ref()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn get_mut(&mut self, tag: AccessLevel) -> &mut Option<Visibility> {
|
|
|
|
|
match tag {
|
|
|
|
|
AccessLevel::Public => &mut self.public,
|
|
|
|
|
AccessLevel::Exported => &mut self.exported,
|
|
|
|
|
AccessLevel::Reachable => &mut self.reachable,
|
|
|
|
|
AccessLevel::ReachableFromImplTrait => &mut self.reachable_from_impl_trait,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn is_public_at_level(&self, tag: AccessLevel) -> bool {
|
|
|
|
|
self.get(tag).map_or(false, |vis| vis.is_public())
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-21 20:00:18 -08:00
|
|
|
/// Holds a map of accessibility levels for reachable HIR nodes.
|
2021-07-26 05:38:16 +02:00
|
|
|
#[derive(Debug, Clone)]
|
2021-07-28 18:23:40 +03:00
|
|
|
pub struct AccessLevels<Id = LocalDefId> {
|
2022-09-12 10:57:34 +03:00
|
|
|
map: FxHashMap<Id, EffectiveVisibility>,
|
2015-11-19 14:16:35 +03:00
|
|
|
}
|
|
|
|
|
|
2022-09-12 10:57:34 +03:00
|
|
|
impl<Id: Hash + Eq + Copy> AccessLevels<Id> {
|
|
|
|
|
pub fn is_public_at_level(&self, id: Id, tag: AccessLevel) -> bool {
|
|
|
|
|
self.get_effective_vis(id)
|
|
|
|
|
.map_or(false, |effective_vis| effective_vis.is_public_at_level(tag))
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-26 20:30:52 +01:00
|
|
|
/// See `AccessLevel::Reachable`.
|
2015-11-19 14:16:35 +03:00
|
|
|
pub fn is_reachable(&self, id: Id) -> bool {
|
2022-09-12 10:57:34 +03:00
|
|
|
self.is_public_at_level(id, AccessLevel::Reachable)
|
2015-11-19 14:16:35 +03:00
|
|
|
}
|
2019-01-26 20:30:52 +01:00
|
|
|
|
|
|
|
|
/// See `AccessLevel::Exported`.
|
2015-11-19 14:16:35 +03:00
|
|
|
pub fn is_exported(&self, id: Id) -> bool {
|
2022-09-12 10:57:34 +03:00
|
|
|
self.is_public_at_level(id, AccessLevel::Exported)
|
2015-11-19 14:16:35 +03:00
|
|
|
}
|
2019-01-26 20:30:52 +01:00
|
|
|
|
|
|
|
|
/// See `AccessLevel::Public`.
|
2015-11-19 14:16:35 +03:00
|
|
|
pub fn is_public(&self, id: Id) -> bool {
|
2022-09-12 10:57:34 +03:00
|
|
|
self.is_public_at_level(id, AccessLevel::Public)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn get_access_level(&self, id: Id) -> Option<AccessLevel> {
|
|
|
|
|
self.get_effective_vis(id).and_then(|effective_vis| {
|
|
|
|
|
for level in [
|
|
|
|
|
AccessLevel::Public,
|
|
|
|
|
AccessLevel::Exported,
|
|
|
|
|
AccessLevel::Reachable,
|
|
|
|
|
AccessLevel::ReachableFromImplTrait,
|
|
|
|
|
] {
|
|
|
|
|
if effective_vis.is_public_at_level(level) {
|
|
|
|
|
return Some(level);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
None
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_access_level(&mut self, id: Id, tag: AccessLevel) {
|
|
|
|
|
let mut effective_vis = self.get_effective_vis(id).copied().unwrap_or_default();
|
|
|
|
|
for level in [
|
|
|
|
|
AccessLevel::Public,
|
|
|
|
|
AccessLevel::Exported,
|
|
|
|
|
AccessLevel::Reachable,
|
|
|
|
|
AccessLevel::ReachableFromImplTrait,
|
|
|
|
|
] {
|
|
|
|
|
if level <= tag {
|
|
|
|
|
*effective_vis.get_mut(level) = Some(Visibility::Public);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
self.map.insert(id, effective_vis);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn get_effective_vis(&self, id: Id) -> Option<&EffectiveVisibility> {
|
|
|
|
|
self.map.get(&id)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn iter(&self) -> impl Iterator<Item = (&Id, &EffectiveVisibility)> {
|
|
|
|
|
self.map.iter()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn map_id<OutId: Hash + Eq + Copy>(&self, f: impl Fn(Id) -> OutId) -> AccessLevels<OutId> {
|
|
|
|
|
AccessLevels { map: self.map.iter().map(|(k, v)| (f(*k), *v)).collect() }
|
2015-11-19 14:16:35 +03:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-28 18:23:40 +03:00
|
|
|
impl<Id> Default for AccessLevels<Id> {
|
2015-11-19 14:16:35 +03:00
|
|
|
fn default() -> Self {
|
|
|
|
|
AccessLevels { map: Default::default() }
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-11-14 16:35:31 +01:00
|
|
|
|
|
|
|
|
impl<'a> HashStable<StableHashingContext<'a>> for AccessLevels {
|
|
|
|
|
fn hash_stable(&self, hcx: &mut StableHashingContext<'a>, hasher: &mut StableHasher) {
|
2022-04-04 22:19:25 +02:00
|
|
|
let AccessLevels { ref map } = *self;
|
|
|
|
|
map.hash_stable(hcx, hasher);
|
2020-11-14 16:35:31 +01:00
|
|
|
}
|
|
|
|
|
}
|