2017-05-28 17:12:43 -05:00
|
|
|
|
use itertools::Itertools;
|
|
|
|
|
use pulldown_cmark;
|
2016-03-19 11:59:12 -05:00
|
|
|
|
use rustc::lint::*;
|
2018-07-19 02:53:23 -05:00
|
|
|
|
use rustc::{declare_lint, lint_array};
|
2016-03-19 11:59:12 -05:00
|
|
|
|
use syntax::ast;
|
2017-09-05 04:33:04 -05:00
|
|
|
|
use syntax::codemap::{BytePos, Span};
|
2017-05-29 17:11:08 -05:00
|
|
|
|
use syntax_pos::Pos;
|
2018-05-30 03:15:50 -05:00
|
|
|
|
use crate::utils::span_lint;
|
2017-06-19 14:23:50 -05:00
|
|
|
|
use url::Url;
|
2016-03-19 11:59:12 -05:00
|
|
|
|
|
2016-08-06 02:55:04 -05:00
|
|
|
|
/// **What it does:** Checks for the presence of `_`, `::` or camel-case words
|
|
|
|
|
/// outside ticks in documentation.
|
2016-03-19 11:59:12 -05:00
|
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
|
/// **Why is this bad?** *Rustdoc* supports markdown formatting, `_`, `::` and
|
|
|
|
|
/// camel-case probably indicates some code which should be included between
|
2018-04-08 23:07:47 -05:00
|
|
|
|
/// ticks. `_` can also be used for emphasis in markdown, this lint tries to
|
2016-08-06 02:55:04 -05:00
|
|
|
|
/// consider that.
|
2016-03-19 11:59:12 -05:00
|
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
|
/// **Known problems:** Lots of bad docs won’t be fixed, what the lint checks
|
|
|
|
|
/// for is limited, and there are still false positives.
|
2016-03-19 11:59:12 -05:00
|
|
|
|
///
|
|
|
|
|
/// **Examples:**
|
|
|
|
|
/// ```rust
|
2017-08-09 02:30:56 -05:00
|
|
|
|
/// /// Do something with the foo_bar parameter. See also
|
2018-04-27 01:31:36 -05:00
|
|
|
|
/// /// that::other::module::foo.
|
2016-03-28 11:00:24 -05:00
|
|
|
|
/// // ^ `foo_bar` and `that::other::module::foo` should be ticked.
|
2016-03-19 11:59:12 -05:00
|
|
|
|
/// fn doit(foo_bar) { .. }
|
|
|
|
|
/// ```
|
2018-03-28 08:24:26 -05:00
|
|
|
|
declare_clippy_lint! {
|
2016-08-06 03:18:36 -05:00
|
|
|
|
pub DOC_MARKDOWN,
|
2018-03-28 08:24:26 -05:00
|
|
|
|
pedantic,
|
2016-08-06 03:18:36 -05:00
|
|
|
|
"presence of `_`, `::` or camel-case outside backticks in documentation"
|
2016-03-19 11:59:12 -05:00
|
|
|
|
}
|
|
|
|
|
|
2016-04-04 13:18:17 -05:00
|
|
|
|
#[derive(Clone)]
|
|
|
|
|
pub struct Doc {
|
|
|
|
|
valid_idents: Vec<String>,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Doc {
|
|
|
|
|
pub fn new(valid_idents: Vec<String>) -> Self {
|
2017-09-05 04:33:04 -05:00
|
|
|
|
Self {
|
2018-03-15 10:07:15 -05:00
|
|
|
|
valid_idents,
|
2017-09-05 04:33:04 -05:00
|
|
|
|
}
|
2016-04-04 13:18:17 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-03-19 11:59:12 -05:00
|
|
|
|
|
|
|
|
|
impl LintPass for Doc {
|
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
|
lint_array![DOC_MARKDOWN]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl EarlyLintPass for Doc {
|
2018-07-23 06:01:12 -05:00
|
|
|
|
fn check_crate(&mut self, cx: &EarlyContext<'_>, krate: &ast::Crate) {
|
2016-05-02 07:36:33 -05:00
|
|
|
|
check_attrs(cx, &self.valid_idents, &krate.attrs);
|
2016-03-19 11:59:12 -05:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-23 06:01:12 -05:00
|
|
|
|
fn check_item(&mut self, cx: &EarlyContext<'_>, item: &ast::Item) {
|
2016-05-02 07:36:33 -05:00
|
|
|
|
check_attrs(cx, &self.valid_idents, &item.attrs);
|
2016-03-19 11:59:12 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-28 17:12:43 -05:00
|
|
|
|
struct Parser<'a> {
|
|
|
|
|
parser: pulldown_cmark::Parser<'a>,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<'a> Parser<'a> {
|
2017-08-21 06:32:12 -05:00
|
|
|
|
fn new(parser: pulldown_cmark::Parser<'a>) -> Self {
|
2018-03-15 10:07:15 -05:00
|
|
|
|
Self { parser }
|
2017-05-28 17:12:43 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<'a> Iterator for Parser<'a> {
|
|
|
|
|
type Item = (usize, pulldown_cmark::Event<'a>);
|
|
|
|
|
|
|
|
|
|
fn next(&mut self) -> Option<Self::Item> {
|
|
|
|
|
let offset = self.parser.get_offset();
|
|
|
|
|
self.parser.next().map(|event| (offset, event))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-08 11:18:45 -05:00
|
|
|
|
/// Cleanup documentation decoration (`///` and such).
|
|
|
|
|
///
|
|
|
|
|
/// We can't use `syntax::attr::AttributeMethods::with_desugared_doc` or
|
2017-08-09 02:30:56 -05:00
|
|
|
|
/// `syntax::parse::lexer::comments::strip_doc_comment_decoration` because we
|
|
|
|
|
/// need to keep track of
|
2017-05-28 17:12:43 -05:00
|
|
|
|
/// the spans but this function is inspired from the later.
|
2016-07-08 11:18:45 -05:00
|
|
|
|
#[allow(cast_possible_truncation)]
|
2017-05-30 12:28:44 -05:00
|
|
|
|
pub fn strip_doc_comment_decoration(comment: &str, span: Span) -> (String, Vec<(usize, Span)>) {
|
2016-07-08 11:18:45 -05:00
|
|
|
|
// one-line comments lose their prefix
|
2017-10-20 07:41:24 -05:00
|
|
|
|
const ONELINERS: &[&str] = &["///!", "///", "//!", "//"];
|
2016-07-08 11:18:45 -05:00
|
|
|
|
for prefix in ONELINERS {
|
|
|
|
|
if comment.starts_with(*prefix) {
|
2017-05-28 17:12:43 -05:00
|
|
|
|
let doc = &comment[prefix.len()..];
|
|
|
|
|
let mut doc = doc.to_owned();
|
|
|
|
|
doc.push('\n');
|
2017-08-09 02:30:56 -05:00
|
|
|
|
return (
|
|
|
|
|
doc.to_owned(),
|
|
|
|
|
vec![
|
2017-09-03 16:15:15 -05:00
|
|
|
|
(doc.len(), span.with_lo(span.lo() + BytePos(prefix.len() as u32))),
|
2017-08-09 02:30:56 -05:00
|
|
|
|
],
|
|
|
|
|
);
|
2016-07-08 11:18:45 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if comment.starts_with("/*") {
|
2017-05-28 17:12:43 -05:00
|
|
|
|
let doc = &comment[3..comment.len() - 2];
|
|
|
|
|
let mut sizes = vec![];
|
2017-08-19 15:52:49 -05:00
|
|
|
|
let mut contains_initial_stars = false;
|
2017-05-28 17:12:43 -05:00
|
|
|
|
for line in doc.lines() {
|
|
|
|
|
let offset = line.as_ptr() as usize - comment.as_ptr() as usize;
|
|
|
|
|
debug_assert_eq!(offset as u32 as usize, offset);
|
2017-08-19 15:52:49 -05:00
|
|
|
|
contains_initial_stars |= line.trim_left().starts_with('*');
|
2017-05-30 12:28:44 -05:00
|
|
|
|
// +1 for the newline
|
2017-09-03 16:15:15 -05:00
|
|
|
|
sizes.push((line.len() + 1, span.with_lo(span.lo() + BytePos(offset as u32))));
|
2017-05-28 17:12:43 -05:00
|
|
|
|
}
|
2017-08-19 15:52:49 -05:00
|
|
|
|
if !contains_initial_stars {
|
|
|
|
|
return (doc.to_string(), sizes);
|
|
|
|
|
}
|
|
|
|
|
// remove the initial '*'s if any
|
|
|
|
|
let mut no_stars = String::with_capacity(doc.len());
|
|
|
|
|
for line in doc.lines() {
|
|
|
|
|
let mut chars = line.chars();
|
|
|
|
|
while let Some(c) = chars.next() {
|
|
|
|
|
if c.is_whitespace() {
|
|
|
|
|
no_stars.push(c);
|
|
|
|
|
} else {
|
|
|
|
|
no_stars.push(if c == '*' { ' ' } else { c });
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
no_stars.push_str(chars.as_str());
|
|
|
|
|
no_stars.push('\n');
|
|
|
|
|
}
|
|
|
|
|
return (no_stars, sizes);
|
2016-07-08 11:18:45 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
panic!("not a doc-comment: {}", comment);
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-23 06:01:12 -05:00
|
|
|
|
pub fn check_attrs<'a>(cx: &EarlyContext<'_>, valid_idents: &[String], attrs: &'a [ast::Attribute]) {
|
2017-05-28 17:12:43 -05:00
|
|
|
|
let mut doc = String::new();
|
|
|
|
|
let mut spans = vec![];
|
2016-05-26 15:53:38 -05:00
|
|
|
|
|
2016-05-02 07:36:33 -05:00
|
|
|
|
for attr in attrs {
|
2016-11-23 14:19:03 -06:00
|
|
|
|
if attr.is_sugared_doc {
|
2017-05-28 17:12:43 -05:00
|
|
|
|
if let Some(ref current) = attr.value_str() {
|
|
|
|
|
let current = current.to_string();
|
2017-05-30 12:28:44 -05:00
|
|
|
|
let (current, current_spans) = strip_doc_comment_decoration(¤t, attr.span);
|
2017-05-28 17:12:43 -05:00
|
|
|
|
spans.extend_from_slice(¤t_spans);
|
|
|
|
|
doc.push_str(¤t);
|
2016-03-19 11:59:12 -05:00
|
|
|
|
}
|
2018-05-04 05:59:45 -05:00
|
|
|
|
} else if attr.name() == "doc" {
|
2017-05-30 12:50:07 -05:00
|
|
|
|
// ignore mix of sugared and non-sugared doc
|
2018-05-04 05:59:45 -05:00
|
|
|
|
return;
|
2016-03-19 11:59:12 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-04-11 16:22:30 -05:00
|
|
|
|
|
2017-05-28 17:12:43 -05:00
|
|
|
|
let mut current = 0;
|
|
|
|
|
for &mut (ref mut offset, _) in &mut spans {
|
|
|
|
|
let offset_copy = *offset;
|
|
|
|
|
*offset = current;
|
|
|
|
|
current += offset_copy;
|
2016-05-26 15:53:38 -05:00
|
|
|
|
}
|
|
|
|
|
|
2017-05-28 17:12:43 -05:00
|
|
|
|
if !doc.is_empty() {
|
|
|
|
|
let parser = Parser::new(pulldown_cmark::Parser::new(&doc));
|
|
|
|
|
let parser = parser.coalesce(|x, y| {
|
|
|
|
|
use pulldown_cmark::Event::*;
|
2016-05-27 20:18:52 -05:00
|
|
|
|
|
2017-05-28 17:12:43 -05:00
|
|
|
|
let x_offset = x.0;
|
|
|
|
|
let y_offset = y.0;
|
2016-05-26 15:53:38 -05:00
|
|
|
|
|
2017-05-28 17:12:43 -05:00
|
|
|
|
match (x.1, y.1) {
|
2017-05-30 12:28:44 -05:00
|
|
|
|
(Text(x), Text(y)) => {
|
|
|
|
|
let mut x = x.into_owned();
|
|
|
|
|
x.push_str(&y);
|
|
|
|
|
Ok((x_offset, Text(x.into())))
|
2017-06-29 09:07:43 -05:00
|
|
|
|
},
|
2017-05-28 17:12:43 -05:00
|
|
|
|
(x, y) => Err(((x_offset, x), (y_offset, y))),
|
2016-05-26 15:53:38 -05:00
|
|
|
|
}
|
2017-05-28 17:12:43 -05:00
|
|
|
|
});
|
|
|
|
|
check_doc(cx, valid_idents, parser, &spans);
|
2016-05-26 15:53:38 -05:00
|
|
|
|
}
|
2017-05-28 17:12:43 -05:00
|
|
|
|
}
|
2016-05-26 15:53:38 -05:00
|
|
|
|
|
2017-06-29 09:07:43 -05:00
|
|
|
|
fn check_doc<'a, Events: Iterator<Item = (usize, pulldown_cmark::Event<'a>)>>(
|
2018-07-23 06:01:12 -05:00
|
|
|
|
cx: &EarlyContext<'_>,
|
2017-05-28 17:12:43 -05:00
|
|
|
|
valid_idents: &[String],
|
|
|
|
|
docs: Events,
|
2017-08-09 02:30:56 -05:00
|
|
|
|
spans: &[(usize, Span)],
|
2017-05-28 17:12:43 -05:00
|
|
|
|
) {
|
|
|
|
|
use pulldown_cmark::Event::*;
|
|
|
|
|
use pulldown_cmark::Tag::*;
|
|
|
|
|
|
|
|
|
|
let mut in_code = false;
|
2017-06-18 16:00:14 -05:00
|
|
|
|
let mut in_link = None;
|
2017-05-28 17:12:43 -05:00
|
|
|
|
|
|
|
|
|
for (offset, event) in docs {
|
|
|
|
|
match event {
|
2017-09-05 04:33:04 -05:00
|
|
|
|
Start(CodeBlock(_)) | Start(Code) => in_code = true,
|
|
|
|
|
End(CodeBlock(_)) | End(Code) => in_code = false,
|
2017-06-18 16:00:14 -05:00
|
|
|
|
Start(Link(link, _)) => in_link = Some(link),
|
|
|
|
|
End(Link(_, _)) => in_link = None,
|
2017-11-04 14:55:56 -05:00
|
|
|
|
Start(_tag) | End(_tag) => (), // We don't care about other tags
|
2017-09-05 04:33:04 -05:00
|
|
|
|
Html(_html) | InlineHtml(_html) => (), // HTML is weird, just ignore it
|
2017-11-29 15:42:58 -06:00
|
|
|
|
SoftBreak | HardBreak => (),
|
2017-09-05 04:33:04 -05:00
|
|
|
|
FootnoteReference(text) | Text(text) => {
|
2017-06-18 16:00:14 -05:00
|
|
|
|
if Some(&text) == in_link.as_ref() {
|
|
|
|
|
// Probably a link of the form `<http://example.com>`
|
|
|
|
|
// Which are represented as a link to "http://example.com" with
|
|
|
|
|
// text "http://example.com" by pulldown-cmark
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-28 17:12:43 -05:00
|
|
|
|
if !in_code {
|
|
|
|
|
let index = match spans.binary_search_by(|c| c.0.cmp(&offset)) {
|
|
|
|
|
Ok(o) => o,
|
2017-06-29 09:07:43 -05:00
|
|
|
|
Err(e) => e - 1,
|
2017-05-28 17:12:43 -05:00
|
|
|
|
};
|
|
|
|
|
|
2017-05-29 17:11:08 -05:00
|
|
|
|
let (begin, span) = spans[index];
|
|
|
|
|
|
2017-10-31 02:34:27 -05:00
|
|
|
|
// Adjust for the beginning of the current `Event`
|
2017-08-31 07:47:45 -05:00
|
|
|
|
let span = span.with_lo(span.lo() + BytePos::from_usize(offset - begin));
|
2017-05-29 17:11:08 -05:00
|
|
|
|
|
2017-05-28 17:12:43 -05:00
|
|
|
|
check_text(cx, valid_idents, &text, span);
|
2016-05-27 20:18:52 -05:00
|
|
|
|
}
|
2017-05-28 17:12:43 -05:00
|
|
|
|
},
|
2016-05-26 15:53:38 -05:00
|
|
|
|
}
|
2016-05-02 07:36:48 -05:00
|
|
|
|
}
|
2017-05-28 17:12:43 -05:00
|
|
|
|
}
|
2016-05-02 07:36:48 -05:00
|
|
|
|
|
2018-07-23 06:01:12 -05:00
|
|
|
|
fn check_text(cx: &EarlyContext<'_>, valid_idents: &[String], text: &str, span: Span) {
|
2017-05-28 17:12:43 -05:00
|
|
|
|
for word in text.split_whitespace() {
|
|
|
|
|
// Trim punctuation as in `some comment (see foo::bar).`
|
|
|
|
|
// ^^
|
|
|
|
|
// Or even as in `_foo bar_` which is emphasized.
|
|
|
|
|
let word = word.trim_matches(|c: char| !c.is_alphanumeric());
|
2016-05-05 14:42:59 -05:00
|
|
|
|
|
2017-05-28 17:12:43 -05:00
|
|
|
|
if valid_idents.iter().any(|i| i == word) {
|
|
|
|
|
continue;
|
2016-03-19 11:59:12 -05:00
|
|
|
|
}
|
2016-05-26 15:53:38 -05:00
|
|
|
|
|
2017-05-29 17:11:08 -05:00
|
|
|
|
// Adjust for the current word
|
|
|
|
|
let offset = word.as_ptr() as usize - text.as_ptr() as usize;
|
2017-08-31 07:47:45 -05:00
|
|
|
|
let span = Span::new(
|
|
|
|
|
span.lo() + BytePos::from_usize(offset),
|
|
|
|
|
span.lo() + BytePos::from_usize(offset + word.len()),
|
|
|
|
|
span.ctxt(),
|
|
|
|
|
);
|
2017-05-29 17:11:08 -05:00
|
|
|
|
|
2017-05-28 17:12:43 -05:00
|
|
|
|
check_word(cx, word, span);
|
|
|
|
|
}
|
2016-03-19 11:59:12 -05:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-23 06:01:12 -05:00
|
|
|
|
fn check_word(cx: &EarlyContext<'_>, word: &str, span: Span) {
|
2017-08-09 02:30:56 -05:00
|
|
|
|
/// Checks if a string is camel-case, ie. contains at least two uppercase
|
|
|
|
|
/// letter (`Clippy` is
|
|
|
|
|
/// ok) and one lower-case letter (`NASA` is ok). Plural are also excluded
|
|
|
|
|
/// (`IDs` is ok).
|
2016-03-19 11:59:12 -05:00
|
|
|
|
fn is_camel_case(s: &str) -> bool {
|
2016-04-04 13:18:17 -05:00
|
|
|
|
if s.starts_with(|c: char| c.is_digit(10)) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-19 11:59:12 -05:00
|
|
|
|
let s = if s.ends_with('s') {
|
2016-04-14 13:14:03 -05:00
|
|
|
|
&s[..s.len() - 1]
|
2016-03-19 11:59:12 -05:00
|
|
|
|
} else {
|
|
|
|
|
s
|
|
|
|
|
};
|
|
|
|
|
|
2017-11-04 14:55:56 -05:00
|
|
|
|
s.chars().all(char::is_alphanumeric) && s.chars().filter(|&c| c.is_uppercase()).take(2).count() > 1
|
|
|
|
|
&& s.chars().filter(|&c| c.is_lowercase()).take(1).count() > 0
|
2016-03-19 11:59:12 -05:00
|
|
|
|
}
|
|
|
|
|
|
2016-03-28 11:00:24 -05:00
|
|
|
|
fn has_underscore(s: &str) -> bool {
|
|
|
|
|
s != "_" && !s.contains("\\_") && s.contains('_')
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-19 14:23:50 -05:00
|
|
|
|
if let Ok(url) = Url::parse(word) {
|
|
|
|
|
// try to get around the fact that `foo::bar` parses as a valid URL
|
|
|
|
|
if !url.cannot_be_a_base() {
|
2017-11-04 14:55:56 -05:00
|
|
|
|
span_lint(
|
|
|
|
|
cx,
|
|
|
|
|
DOC_MARKDOWN,
|
|
|
|
|
span,
|
|
|
|
|
"you should put bare URLs between `<`/`>` or make a proper Markdown link",
|
|
|
|
|
);
|
2017-06-19 14:23:50 -05:00
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-28 11:00:24 -05:00
|
|
|
|
if has_underscore(word) || word.contains("::") || is_camel_case(word) {
|
2017-08-09 02:30:56 -05:00
|
|
|
|
span_lint(
|
|
|
|
|
cx,
|
|
|
|
|
DOC_MARKDOWN,
|
|
|
|
|
span,
|
|
|
|
|
&format!("you should put `{}` between ticks in the documentation", word),
|
|
|
|
|
);
|
2016-03-19 11:59:12 -05:00
|
|
|
|
}
|
|
|
|
|
}
|