2017-08-09 07:30:56 +00:00
|
|
|
// Note: More specifically this lint is largely inspired (aka copied) from
|
|
|
|
// *rustc*'s
|
2016-12-20 17:21:30 +00:00
|
|
|
// [`missing_doc`].
|
|
|
|
//
|
2020-12-20 16:19:49 +00:00
|
|
|
// [`missing_doc`]: https://github.com/rust-lang/rust/blob/cf9cf7c923eb01146971429044f216a3ca905e06/compiler/rustc_lint/src/builtin.rs#L415
|
2016-12-20 17:21:30 +00:00
|
|
|
//
|
2016-08-23 17:00:56 +00:00
|
|
|
|
2021-04-08 15:50:13 +00:00
|
|
|
use clippy_utils::attrs::is_doc_hidden;
|
2021-03-25 18:29:11 +00:00
|
|
|
use clippy_utils::diagnostics::span_lint;
|
2021-05-19 01:46:41 +00:00
|
|
|
use rustc_ast::ast;
|
2020-01-06 16:39:50 +00:00
|
|
|
use rustc_hir as hir;
|
2020-01-12 06:08:41 +00:00
|
|
|
use rustc_lint::{LateContext, LateLintPass, LintContext};
|
2020-03-30 09:02:14 +00:00
|
|
|
use rustc_middle::ty;
|
2020-01-11 11:37:08 +00:00
|
|
|
use rustc_session::{declare_tool_lint, impl_lint_pass};
|
2020-01-04 10:00:00 +00:00
|
|
|
use rustc_span::source_map::Span;
|
2020-11-05 13:29:48 +00:00
|
|
|
use rustc_span::sym;
|
2016-08-23 16:09:37 +00:00
|
|
|
|
2018-03-28 13:24:26 +00:00
|
|
|
declare_clippy_lint! {
|
2019-03-05 16:50:33 +00:00
|
|
|
/// **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.
|
2016-08-23 16:09:37 +00:00
|
|
|
pub MISSING_DOCS_IN_PRIVATE_ITEMS,
|
2018-03-28 13:24:26 +00:00
|
|
|
restriction,
|
2016-08-23 16:09:37 +00:00
|
|
|
"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>,
|
|
|
|
}
|
|
|
|
|
2020-02-06 14:39:15 +00:00
|
|
|
impl Default for MissingDoc {
|
2019-09-18 06:37:41 +00:00
|
|
|
#[must_use]
|
2017-08-21 11:32:12 +00:00
|
|
|
fn default() -> Self {
|
|
|
|
Self::new()
|
2016-08-23 16:09:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl MissingDoc {
|
2019-09-18 06:37:41 +00:00
|
|
|
#[must_use]
|
2017-08-21 11:32:12 +00:00
|
|
|
pub fn new() -> Self {
|
2017-09-05 09:33:04 +00:00
|
|
|
Self {
|
|
|
|
doc_hidden_stack: vec![false],
|
|
|
|
}
|
2016-08-23 16:09:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn doc_hidden(&self) -> bool {
|
2018-11-27 20:14:15 +00:00
|
|
|
*self.doc_hidden_stack.last().expect("empty doc_hidden_stack")
|
2016-08-23 16:09:37 +00:00
|
|
|
}
|
|
|
|
|
2020-12-20 16:19:49 +00:00
|
|
|
fn check_missing_docs_attrs(
|
|
|
|
&self,
|
|
|
|
cx: &LateContext<'_>,
|
|
|
|
attrs: &[ast::Attribute],
|
|
|
|
sp: Span,
|
|
|
|
article: &'static str,
|
|
|
|
desc: &'static str,
|
|
|
|
) {
|
2016-08-23 16:09:37 +00:00
|
|
|
// 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 16:30:32 +00:00
|
|
|
if sp.from_expansion() {
|
2016-08-23 17:00:56 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-06-03 06:41:37 +00:00
|
|
|
let has_doc = attrs
|
|
|
|
.iter()
|
2021-05-19 01:46:41 +00:00
|
|
|
.any(|a| a.doc_str().is_some());
|
2016-08-23 16:09:37 +00:00
|
|
|
if !has_doc {
|
2018-08-28 11:13:42 +00:00
|
|
|
span_lint(
|
|
|
|
cx,
|
2017-08-09 07:30:56 +00:00
|
|
|
MISSING_DOCS_IN_PRIVATE_ITEMS,
|
|
|
|
sp,
|
2020-12-20 16:19:49 +00:00
|
|
|
&format!("missing documentation for {} {}", article, desc),
|
2017-08-09 07:30:56 +00:00
|
|
|
);
|
2016-08-23 16:09:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-08 20:43:55 +00:00
|
|
|
impl_lint_pass!(MissingDoc => [MISSING_DOCS_IN_PRIVATE_ITEMS]);
|
2016-08-23 16:09:37 +00:00
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
impl<'tcx> LateLintPass<'tcx> for MissingDoc {
|
|
|
|
fn enter_lint_attrs(&mut self, _: &LateContext<'tcx>, attrs: &'tcx [ast::Attribute]) {
|
2021-04-08 15:50:13 +00:00
|
|
|
let doc_hidden = self.doc_hidden() || is_doc_hidden(attrs);
|
2016-08-23 16:09:37 +00:00
|
|
|
self.doc_hidden_stack.push(doc_hidden);
|
|
|
|
}
|
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
fn exit_lint_attrs(&mut self, _: &LateContext<'tcx>, _: &'tcx [ast::Attribute]) {
|
2016-08-23 16:09:37 +00:00
|
|
|
self.doc_hidden_stack.pop().expect("empty doc_hidden_stack");
|
|
|
|
}
|
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
fn check_crate(&mut self, cx: &LateContext<'tcx>, krate: &'tcx hir::Crate<'_>) {
|
2020-11-26 22:38:53 +00:00
|
|
|
let attrs = cx.tcx.hir().attrs(hir::CRATE_HIR_ID);
|
2021-07-25 10:03:24 +00:00
|
|
|
self.check_missing_docs_attrs(cx, attrs, krate.module().inner, "the", "crate");
|
2016-08-23 16:09:37 +00:00
|
|
|
}
|
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
fn check_item(&mut self, cx: &LateContext<'tcx>, it: &'tcx hir::Item<'_>) {
|
2020-12-20 16:19:49 +00:00
|
|
|
match it.kind {
|
2018-07-16 13:07:39 +00:00
|
|
|
hir::ItemKind::Fn(..) => {
|
2018-01-14 06:05:07 +00:00
|
|
|
// ignore main()
|
2020-11-05 13:29:48 +00:00
|
|
|
if it.ident.name == sym::main {
|
2021-01-30 16:47:51 +00:00
|
|
|
let def_key = cx.tcx.hir().def_key(it.def_id);
|
2018-01-14 06:05:07 +00:00
|
|
|
if def_key.parent == Some(hir::def_id::CRATE_DEF_INDEX) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2020-12-20 16:19:49 +00:00
|
|
|
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 20:14:15 +00:00
|
|
|
hir::ItemKind::ExternCrate(..)
|
2020-11-11 21:40:09 +00:00
|
|
|
| hir::ItemKind::ForeignMod { .. }
|
2019-01-13 16:09:58 +00:00
|
|
|
| hir::ItemKind::GlobalAsm(..)
|
2020-01-18 05:14:36 +00:00
|
|
|
| hir::ItemKind::Impl { .. }
|
2018-11-27 20:14:15 +00:00
|
|
|
| hir::ItemKind::Use(..) => return,
|
2016-08-23 16:09:37 +00:00
|
|
|
};
|
|
|
|
|
2021-01-30 16:47:51 +00:00
|
|
|
let (article, desc) = cx.tcx.article_and_description(it.def_id.to_def_id());
|
2020-12-20 16:19:49 +00:00
|
|
|
|
2021-01-24 12:17:54 +00:00
|
|
|
let attrs = cx.tcx.hir().attrs(it.hir_id());
|
|
|
|
self.check_missing_docs_attrs(cx, attrs, it.span, article, desc);
|
2016-08-23 16:09:37 +00:00
|
|
|
}
|
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
fn check_trait_item(&mut self, cx: &LateContext<'tcx>, trait_item: &'tcx hir::TraitItem<'_>) {
|
2021-01-30 19:46:50 +00:00
|
|
|
let (article, desc) = cx.tcx.article_and_description(trait_item.def_id.to_def_id());
|
2016-08-23 16:09:37 +00:00
|
|
|
|
2020-11-27 08:41:53 +00:00
|
|
|
let attrs = cx.tcx.hir().attrs(trait_item.hir_id());
|
|
|
|
self.check_missing_docs_attrs(cx, attrs, trait_item.span, article, desc);
|
2016-08-23 16:09:37 +00:00
|
|
|
}
|
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
fn check_impl_item(&mut self, cx: &LateContext<'tcx>, impl_item: &'tcx hir::ImplItem<'_>) {
|
2016-08-23 16:09:37 +00:00
|
|
|
// If the method is an impl for a trait, don't doc.
|
2021-01-30 22:25:03 +00:00
|
|
|
match cx.tcx.associated_item(impl_item.def_id).container {
|
2016-08-23 16:09:37 +00:00
|
|
|
ty::TraitContainer(_) => return,
|
2018-11-27 20:14:15 +00:00
|
|
|
ty::ImplContainer(cid) => {
|
|
|
|
if cx.tcx.impl_trait_ref(cid).is_some() {
|
|
|
|
return;
|
|
|
|
}
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2016-08-23 16:09:37 +00:00
|
|
|
}
|
|
|
|
|
2021-01-30 22:25:03 +00:00
|
|
|
let (article, desc) = cx.tcx.article_and_description(impl_item.def_id.to_def_id());
|
2020-11-27 08:55:10 +00:00
|
|
|
let attrs = cx.tcx.hir().attrs(impl_item.hir_id());
|
|
|
|
self.check_missing_docs_attrs(cx, attrs, impl_item.span, article, desc);
|
2016-08-23 16:09:37 +00:00
|
|
|
}
|
|
|
|
|
2021-03-15 21:36:07 +00:00
|
|
|
fn check_field_def(&mut self, cx: &LateContext<'tcx>, sf: &'tcx hir::FieldDef<'_>) {
|
2016-08-23 16:09:37 +00:00
|
|
|
if !sf.is_positional() {
|
2020-11-26 23:27:34 +00:00
|
|
|
let attrs = cx.tcx.hir().attrs(sf.hir_id);
|
|
|
|
self.check_missing_docs_attrs(cx, attrs, sf.span, "a", "struct field");
|
2016-08-23 16:09:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
fn check_variant(&mut self, cx: &LateContext<'tcx>, v: &'tcx hir::Variant<'_>) {
|
2020-11-26 23:07:36 +00:00
|
|
|
let attrs = cx.tcx.hir().attrs(v.id);
|
|
|
|
self.check_missing_docs_attrs(cx, attrs, v.span, "a", "variant");
|
2016-08-23 16:09:37 +00:00
|
|
|
}
|
|
|
|
}
|