rust/clippy_lints/src/missing_doc.rs

203 lines
6.7 KiB
Rust
Raw Normal View History

2017-08-09 02:30:56 -05:00
// Note: More specifically this lint is largely inspired (aka copied) from
// *rustc*'s
2016-12-20 11:21:30 -06:00
// [`missing_doc`].
//
// [`missing_doc`]: https://github.com/rust-lang/rust/blob/cf9cf7c923eb01146971429044f216a3ca905e06/compiler/rustc_lint/src/builtin.rs#L415
2016-12-20 11:21:30 -06:00
//
use clippy_utils::diagnostics::span_lint;
use if_chain::if_chain;
2020-02-29 21:23:33 -06:00
use rustc_ast::ast::{self, MetaItem, MetaItemKind};
use rustc_ast::attr;
2020-01-06 10:39:50 -06:00
use rustc_hir as hir;
2020-01-12 00:08:41 -06:00
use rustc_lint::{LateContext, LateLintPass, LintContext};
use rustc_middle::ty;
2020-01-11 05:37:08 -06:00
use rustc_session::{declare_tool_lint, impl_lint_pass};
use rustc_span::source_map::Span;
use rustc_span::sym;
2018-03-28 08:24:26 -05:00
declare_clippy_lint! {
/// **What it does:** Warns if there is missing doc for any documentable item
/// (public or private).
///
/// **Why is this bad?** Doc is good. *rustc* has a `MISSING_DOCS`
/// allowed-by-default lint for
/// public members, but has no way to enforce documentation of private items.
/// This lint fixes that.
///
/// **Known problems:** None.
pub MISSING_DOCS_IN_PRIVATE_ITEMS,
2018-03-28 08:24:26 -05:00
restriction,
"detects missing documentation for public and private members"
}
pub struct MissingDoc {
/// Stack of whether #[doc(hidden)] is set
/// at each level which has lint attributes.
doc_hidden_stack: Vec<bool>,
}
impl Default for MissingDoc {
#[must_use]
2017-08-21 06:32:12 -05:00
fn default() -> Self {
Self::new()
}
}
impl MissingDoc {
#[must_use]
2017-08-21 06:32:12 -05:00
pub fn new() -> Self {
2017-09-05 04:33:04 -05:00
Self {
doc_hidden_stack: vec![false],
}
}
fn doc_hidden(&self) -> bool {
2018-11-27 14:14:15 -06:00
*self.doc_hidden_stack.last().expect("empty doc_hidden_stack")
}
fn has_include(meta: Option<MetaItem>) -> bool {
if_chain! {
if let Some(meta) = meta;
2019-09-27 10:16:06 -05:00
if let MetaItemKind::List(list) = meta.kind;
if let Some(meta) = list.get(0);
2019-03-26 04:55:03 -05:00
if let Some(name) = meta.ident();
then {
name.name == sym::include
} else {
false
}
}
}
fn check_missing_docs_attrs(
&self,
cx: &LateContext<'_>,
attrs: &[ast::Attribute],
sp: Span,
article: &'static str,
desc: &'static str,
) {
// If we're building a test harness, then warning about
// documentation is probably not really relevant right now.
if cx.sess().opts.test {
return;
}
// `#[doc(hidden)]` disables missing_docs check.
if self.doc_hidden() {
return;
}
2019-08-19 11:30:32 -05:00
if sp.from_expansion() {
return;
}
let has_doc = attrs
.iter()
.any(|a| a.is_doc_comment() || a.doc_str().is_some() || a.value_str().is_some() || Self::has_include(a.meta()));
if !has_doc {
2018-08-28 06:13:42 -05:00
span_lint(
cx,
2017-08-09 02:30:56 -05:00
MISSING_DOCS_IN_PRIVATE_ITEMS,
sp,
&format!("missing documentation for {} {}", article, desc),
2017-08-09 02:30:56 -05:00
);
}
}
}
2019-04-08 15:43:55 -05:00
impl_lint_pass!(MissingDoc => [MISSING_DOCS_IN_PRIVATE_ITEMS]);
impl<'tcx> LateLintPass<'tcx> for MissingDoc {
fn enter_lint_attrs(&mut self, _: &LateContext<'tcx>, attrs: &'tcx [ast::Attribute]) {
2018-11-27 14:14:15 -06:00
let doc_hidden = self.doc_hidden()
|| attrs.iter().any(|attr| {
attr.has_name(sym::doc)
2018-11-27 14:14:15 -06:00
&& match attr.meta_item_list() {
None => false,
Some(l) => attr::list_contains_name(&l[..], sym::hidden),
2018-11-27 14:14:15 -06:00
}
});
self.doc_hidden_stack.push(doc_hidden);
}
fn exit_lint_attrs(&mut self, _: &LateContext<'tcx>, _: &'tcx [ast::Attribute]) {
self.doc_hidden_stack.pop().expect("empty doc_hidden_stack");
}
fn check_crate(&mut self, cx: &LateContext<'tcx>, krate: &'tcx hir::Crate<'_>) {
2020-11-26 16:38:53 -06:00
let attrs = cx.tcx.hir().attrs(hir::CRATE_HIR_ID);
2021-03-30 13:31:06 -05:00
self.check_missing_docs_attrs(cx, attrs, krate.item.inner, "the", "crate");
}
fn check_item(&mut self, cx: &LateContext<'tcx>, it: &'tcx hir::Item<'_>) {
match it.kind {
2018-07-16 08:07:39 -05:00
hir::ItemKind::Fn(..) => {
// ignore main()
if it.ident.name == sym::main {
let def_key = cx.tcx.hir().def_key(it.def_id);
if def_key.parent == Some(hir::def_id::CRATE_DEF_INDEX) {
return;
}
}
},
hir::ItemKind::Const(..)
| hir::ItemKind::Enum(..)
| hir::ItemKind::Mod(..)
| hir::ItemKind::Static(..)
| hir::ItemKind::Struct(..)
| hir::ItemKind::Trait(..)
| hir::ItemKind::TraitAlias(..)
| hir::ItemKind::TyAlias(..)
| hir::ItemKind::Union(..)
| hir::ItemKind::OpaqueTy(..) => {},
2018-11-27 14:14:15 -06:00
hir::ItemKind::ExternCrate(..)
2020-11-11 15:40:09 -06:00
| hir::ItemKind::ForeignMod { .. }
| hir::ItemKind::GlobalAsm(..)
2020-01-17 23:14:36 -06:00
| hir::ItemKind::Impl { .. }
2018-11-27 14:14:15 -06:00
| hir::ItemKind::Use(..) => return,
};
let (article, desc) = cx.tcx.article_and_description(it.def_id.to_def_id());
2021-01-24 06:17:54 -06:00
let attrs = cx.tcx.hir().attrs(it.hir_id());
self.check_missing_docs_attrs(cx, attrs, it.span, article, desc);
}
fn check_trait_item(&mut self, cx: &LateContext<'tcx>, trait_item: &'tcx hir::TraitItem<'_>) {
let (article, desc) = cx.tcx.article_and_description(trait_item.def_id.to_def_id());
2020-11-27 02:41:53 -06:00
let attrs = cx.tcx.hir().attrs(trait_item.hir_id());
self.check_missing_docs_attrs(cx, attrs, trait_item.span, article, desc);
}
fn check_impl_item(&mut self, cx: &LateContext<'tcx>, impl_item: &'tcx hir::ImplItem<'_>) {
// If the method is an impl for a trait, don't doc.
match cx.tcx.associated_item(impl_item.def_id).container {
ty::TraitContainer(_) => return,
2018-11-27 14:14:15 -06:00
ty::ImplContainer(cid) => {
if cx.tcx.impl_trait_ref(cid).is_some() {
return;
}
2016-12-20 11:21:30 -06:00
},
}
let (article, desc) = cx.tcx.article_and_description(impl_item.def_id.to_def_id());
2020-11-27 02:55:10 -06:00
let attrs = cx.tcx.hir().attrs(impl_item.hir_id());
self.check_missing_docs_attrs(cx, attrs, impl_item.span, article, desc);
}
fn check_field_def(&mut self, cx: &LateContext<'tcx>, sf: &'tcx hir::FieldDef<'_>) {
if !sf.is_positional() {
2020-11-26 17:27:34 -06:00
let attrs = cx.tcx.hir().attrs(sf.hir_id);
self.check_missing_docs_attrs(cx, attrs, sf.span, "a", "struct field");
}
}
fn check_variant(&mut self, cx: &LateContext<'tcx>, v: &'tcx hir::Variant<'_>) {
2020-11-26 17:07:36 -06:00
let attrs = cx.tcx.hir().attrs(v.id);
self.check_missing_docs_attrs(cx, attrs, v.span, "a", "variant");
}
}