2016-12-20 17:21:30 +00:00
|
|
|
// This file incorporates work covered by the following copyright and
|
|
|
|
// permission notice:
|
|
|
|
// Copyright 2012-2015 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
//
|
|
|
|
|
|
|
|
// Note: More specifically this lint is largely inspired (aka copied) from *rustc*'s
|
|
|
|
// [`missing_doc`].
|
|
|
|
//
|
2016-12-21 09:25:14 +00:00
|
|
|
// [`missing_doc`]:
|
|
|
|
// https://github.
|
|
|
|
// com/rust-lang/rust/blob/d6d05904697d89099b55da3331155392f1db9c00/src/librustc_lint/builtin.
|
|
|
|
// rs#L246
|
2016-12-20 17:21:30 +00:00
|
|
|
//
|
2016-08-23 17:00:56 +00:00
|
|
|
|
2016-08-23 16:09:37 +00:00
|
|
|
use rustc::hir;
|
|
|
|
use rustc::lint::*;
|
|
|
|
use rustc::ty;
|
|
|
|
use syntax::ast;
|
2016-08-28 15:54:32 +00:00
|
|
|
use syntax::attr;
|
2016-08-23 16:09:37 +00:00
|
|
|
use syntax::codemap::Span;
|
2016-08-23 17:00:56 +00:00
|
|
|
use utils::in_macro;
|
2016-08-23 16:09:37 +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.
|
|
|
|
declare_lint! {
|
|
|
|
pub MISSING_DOCS_IN_PRIVATE_ITEMS,
|
|
|
|
Allow,
|
|
|
|
"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 ::std::default::Default for MissingDoc {
|
|
|
|
fn default() -> MissingDoc {
|
|
|
|
MissingDoc::new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl MissingDoc {
|
|
|
|
pub fn new() -> MissingDoc {
|
2016-12-20 17:21:30 +00:00
|
|
|
MissingDoc { doc_hidden_stack: vec![false] }
|
2016-08-23 16:09:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn doc_hidden(&self) -> bool {
|
|
|
|
*self.doc_hidden_stack.last().expect("empty doc_hidden_stack")
|
|
|
|
}
|
|
|
|
|
2016-12-20 17:21:30 +00:00
|
|
|
fn check_missing_docs_attrs(&self, cx: &LateContext, attrs: &[ast::Attribute], sp: Span, 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;
|
|
|
|
}
|
|
|
|
|
2017-03-31 22:14:04 +00:00
|
|
|
if in_macro(sp) {
|
2016-08-23 17:00:56 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-03-20 22:51:14 +00:00
|
|
|
let has_doc = attrs.iter().any(|a| a.is_value_str() && a.name().map_or(false, |n| n == "doc"));
|
2016-08-23 16:09:37 +00:00
|
|
|
if !has_doc {
|
2016-12-20 17:21:30 +00:00
|
|
|
cx.span_lint(MISSING_DOCS_IN_PRIVATE_ITEMS,
|
|
|
|
sp,
|
2016-08-23 16:09:37 +00:00
|
|
|
&format!("missing documentation for {}", desc));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl LintPass for MissingDoc {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array![MISSING_DOCS_IN_PRIVATE_ITEMS]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-07 12:13:40 +00:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for MissingDoc {
|
|
|
|
fn enter_lint_attrs(&mut self, _: &LateContext<'a, 'tcx>, attrs: &'tcx [ast::Attribute]) {
|
2016-12-20 17:21:30 +00:00
|
|
|
let doc_hidden = self.doc_hidden() ||
|
|
|
|
attrs.iter().any(|attr| {
|
|
|
|
attr.check_name("doc") &&
|
|
|
|
match attr.meta_item_list() {
|
2016-08-23 16:09:37 +00:00
|
|
|
None => false,
|
2016-08-28 15:54:32 +00:00
|
|
|
Some(l) => attr::list_contains_name(&l[..], "hidden"),
|
2016-08-23 16:09:37 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
self.doc_hidden_stack.push(doc_hidden);
|
|
|
|
}
|
|
|
|
|
2016-12-07 12:13:40 +00:00
|
|
|
fn exit_lint_attrs(&mut self, _: &LateContext<'a, 'tcx>, _: &'tcx [ast::Attribute]) {
|
2016-08-23 16:09:37 +00:00
|
|
|
self.doc_hidden_stack.pop().expect("empty doc_hidden_stack");
|
|
|
|
}
|
|
|
|
|
2016-12-07 12:13:40 +00:00
|
|
|
fn check_crate(&mut self, cx: &LateContext<'a, 'tcx>, krate: &'tcx hir::Crate) {
|
2016-08-23 16:09:37 +00:00
|
|
|
self.check_missing_docs_attrs(cx, &krate.attrs, krate.span, "crate");
|
|
|
|
}
|
|
|
|
|
2016-12-07 12:13:40 +00:00
|
|
|
fn check_item(&mut self, cx: &LateContext<'a, 'tcx>, it: &'tcx hir::Item) {
|
2016-08-23 16:09:37 +00:00
|
|
|
let desc = match it.node {
|
|
|
|
hir::ItemConst(..) => "a constant",
|
|
|
|
hir::ItemEnum(..) => "an enum",
|
|
|
|
hir::ItemFn(..) => "a function",
|
|
|
|
hir::ItemMod(..) => "a module",
|
|
|
|
hir::ItemStatic(..) => "a static",
|
|
|
|
hir::ItemStruct(..) => "a struct",
|
|
|
|
hir::ItemTrait(..) => "a trait",
|
2017-04-16 16:38:17 +00:00
|
|
|
hir::ItemGlobalAsm(..) => "an assembly blob",
|
2016-08-23 16:09:37 +00:00
|
|
|
hir::ItemTy(..) => "a type alias",
|
2016-09-04 15:39:48 +00:00
|
|
|
hir::ItemUnion(..) => "a union",
|
2016-08-23 16:09:37 +00:00
|
|
|
hir::ItemDefaultImpl(..) |
|
|
|
|
hir::ItemExternCrate(..) |
|
|
|
|
hir::ItemForeignMod(..) |
|
|
|
|
hir::ItemImpl(..) |
|
|
|
|
hir::ItemUse(..) => return,
|
|
|
|
};
|
|
|
|
|
|
|
|
self.check_missing_docs_attrs(cx, &it.attrs, it.span, desc);
|
|
|
|
}
|
|
|
|
|
2016-12-07 12:13:40 +00:00
|
|
|
fn check_trait_item(&mut self, cx: &LateContext<'a, 'tcx>, trait_item: &'tcx hir::TraitItem) {
|
2016-08-23 16:09:37 +00:00
|
|
|
let desc = match trait_item.node {
|
2017-01-03 17:19:17 +00:00
|
|
|
hir::TraitItemKind::Const(..) => "an associated constant",
|
|
|
|
hir::TraitItemKind::Method(..) => "a trait method",
|
|
|
|
hir::TraitItemKind::Type(..) => "an associated type",
|
2016-08-23 16:09:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
self.check_missing_docs_attrs(cx, &trait_item.attrs, trait_item.span, desc);
|
|
|
|
}
|
|
|
|
|
2016-12-07 12:13:40 +00:00
|
|
|
fn check_impl_item(&mut self, cx: &LateContext<'a, '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.
|
2017-02-02 16:53:28 +00:00
|
|
|
let def_id = cx.tcx.hir.local_def_id(impl_item.id);
|
2016-11-16 20:57:56 +00:00
|
|
|
match cx.tcx.associated_item(def_id).container {
|
2016-08-23 16:09:37 +00:00
|
|
|
ty::TraitContainer(_) => return,
|
|
|
|
ty::ImplContainer(cid) => {
|
|
|
|
if cx.tcx.impl_trait_ref(cid).is_some() {
|
2016-12-20 17:21:30 +00:00
|
|
|
return;
|
2016-08-23 16:09:37 +00:00
|
|
|
}
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2016-08-23 16:09:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let desc = match impl_item.node {
|
|
|
|
hir::ImplItemKind::Const(..) => "an associated constant",
|
|
|
|
hir::ImplItemKind::Method(..) => "a method",
|
|
|
|
hir::ImplItemKind::Type(_) => "an associated type",
|
|
|
|
};
|
|
|
|
self.check_missing_docs_attrs(cx, &impl_item.attrs, impl_item.span, desc);
|
|
|
|
}
|
|
|
|
|
2016-12-07 12:13:40 +00:00
|
|
|
fn check_struct_field(&mut self, cx: &LateContext<'a, 'tcx>, sf: &'tcx hir::StructField) {
|
2016-08-23 16:09:37 +00:00
|
|
|
if !sf.is_positional() {
|
|
|
|
self.check_missing_docs_attrs(cx, &sf.attrs, sf.span, "a struct field");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-07 12:13:40 +00:00
|
|
|
fn check_variant(&mut self, cx: &LateContext<'a, 'tcx>, v: &'tcx hir::Variant, _: &hir::Generics) {
|
2016-08-23 16:09:37 +00:00
|
|
|
self.check_missing_docs_attrs(cx, &v.node.attrs, v.span, "a variant");
|
|
|
|
}
|
|
|
|
}
|