]> git.lizzy.rs Git - rust.git/blob - clippy_utils/src/source.rs
Add examples to better explain `walk_span_to_context`
[rust.git] / clippy_utils / src / source.rs
1 //! Utils for extracting, inspecting or transforming source code
2
3 #![allow(clippy::module_name_repetitions)]
4
5 use crate::line_span;
6 use rustc_errors::Applicability;
7 use rustc_hir::{Expr, ExprKind};
8 use rustc_lint::{LateContext, LintContext};
9 use rustc_span::hygiene;
10 use rustc_span::{BytePos, Pos, Span, SyntaxContext};
11 use std::borrow::Cow;
12
13 /// Like `snippet_block`, but add braces if the expr is not an `ExprKind::Block`.
14 /// Also takes an `Option<String>` which can be put inside the braces.
15 pub fn expr_block<'a, T: LintContext>(
16     cx: &T,
17     expr: &Expr<'_>,
18     option: Option<String>,
19     default: &'a str,
20     indent_relative_to: Option<Span>,
21 ) -> Cow<'a, str> {
22     let code = snippet_block(cx, expr.span, default, indent_relative_to);
23     let string = option.unwrap_or_default();
24     if expr.span.from_expansion() {
25         Cow::Owned(format!("{{ {} }}", snippet_with_macro_callsite(cx, expr.span, default)))
26     } else if let ExprKind::Block(_, _) = expr.kind {
27         Cow::Owned(format!("{}{}", code, string))
28     } else if string.is_empty() {
29         Cow::Owned(format!("{{ {} }}", code))
30     } else {
31         Cow::Owned(format!("{{\n{};\n{}\n}}", code, string))
32     }
33 }
34
35 /// Returns a new Span that extends the original Span to the first non-whitespace char of the first
36 /// line.
37 ///
38 /// ```rust,ignore
39 ///     let x = ();
40 /// //          ^^
41 /// // will be converted to
42 ///     let x = ();
43 /// //  ^^^^^^^^^^
44 /// ```
45 pub fn first_line_of_span<T: LintContext>(cx: &T, span: Span) -> Span {
46     first_char_in_first_line(cx, span).map_or(span, |first_char_pos| span.with_lo(first_char_pos))
47 }
48
49 fn first_char_in_first_line<T: LintContext>(cx: &T, span: Span) -> Option<BytePos> {
50     let line_span = line_span(cx, span);
51     snippet_opt(cx, line_span).and_then(|snip| {
52         snip.find(|c: char| !c.is_whitespace())
53             .map(|pos| line_span.lo() + BytePos::from_usize(pos))
54     })
55 }
56
57 /// Returns the indentation of the line of a span
58 ///
59 /// ```rust,ignore
60 /// let x = ();
61 /// //      ^^ -- will return 0
62 ///     let x = ();
63 /// //          ^^ -- will return 4
64 /// ```
65 pub fn indent_of<T: LintContext>(cx: &T, span: Span) -> Option<usize> {
66     snippet_opt(cx, line_span(cx, span)).and_then(|snip| snip.find(|c: char| !c.is_whitespace()))
67 }
68
69 /// Gets a snippet of the indentation of the line of a span
70 pub fn snippet_indent<T: LintContext>(cx: &T, span: Span) -> Option<String> {
71     snippet_opt(cx, line_span(cx, span)).map(|mut s| {
72         let len = s.len() - s.trim_start().len();
73         s.truncate(len);
74         s
75     })
76 }
77
78 // If the snippet is empty, it's an attribute that was inserted during macro
79 // expansion and we want to ignore those, because they could come from external
80 // sources that the user has no control over.
81 // For some reason these attributes don't have any expansion info on them, so
82 // we have to check it this way until there is a better way.
83 pub fn is_present_in_source<T: LintContext>(cx: &T, span: Span) -> bool {
84     if let Some(snippet) = snippet_opt(cx, span) {
85         if snippet.is_empty() {
86             return false;
87         }
88     }
89     true
90 }
91
92 /// Returns the positon just before rarrow
93 ///
94 /// ```rust,ignore
95 /// fn into(self) -> () {}
96 ///              ^
97 /// // in case of unformatted code
98 /// fn into2(self)-> () {}
99 ///               ^
100 /// fn into3(self)   -> () {}
101 ///               ^
102 /// ```
103 pub fn position_before_rarrow(s: &str) -> Option<usize> {
104     s.rfind("->").map(|rpos| {
105         let mut rpos = rpos;
106         let chars: Vec<char> = s.chars().collect();
107         while rpos > 1 {
108             if let Some(c) = chars.get(rpos - 1) {
109                 if c.is_whitespace() {
110                     rpos -= 1;
111                     continue;
112                 }
113             }
114             break;
115         }
116         rpos
117     })
118 }
119
120 /// Reindent a multiline string with possibility of ignoring the first line.
121 #[allow(clippy::needless_pass_by_value)]
122 pub fn reindent_multiline(s: Cow<'_, str>, ignore_first: bool, indent: Option<usize>) -> Cow<'_, str> {
123     let s_space = reindent_multiline_inner(&s, ignore_first, indent, ' ');
124     let s_tab = reindent_multiline_inner(&s_space, ignore_first, indent, '\t');
125     reindent_multiline_inner(&s_tab, ignore_first, indent, ' ').into()
126 }
127
128 fn reindent_multiline_inner(s: &str, ignore_first: bool, indent: Option<usize>, ch: char) -> String {
129     let x = s
130         .lines()
131         .skip(ignore_first as usize)
132         .filter_map(|l| {
133             if l.is_empty() {
134                 None
135             } else {
136                 // ignore empty lines
137                 Some(l.char_indices().find(|&(_, x)| x != ch).unwrap_or((l.len(), ch)).0)
138             }
139         })
140         .min()
141         .unwrap_or(0);
142     let indent = indent.unwrap_or(0);
143     s.lines()
144         .enumerate()
145         .map(|(i, l)| {
146             if (ignore_first && i == 0) || l.is_empty() {
147                 l.to_owned()
148             } else if x > indent {
149                 l.split_at(x - indent).1.to_owned()
150             } else {
151                 " ".repeat(indent - x) + l
152             }
153         })
154         .collect::<Vec<String>>()
155         .join("\n")
156 }
157
158 /// Converts a span to a code snippet if available, otherwise use default.
159 ///
160 /// This is useful if you want to provide suggestions for your lint or more generally, if you want
161 /// to convert a given `Span` to a `str`.
162 ///
163 /// # Example
164 /// ```rust,ignore
165 /// snippet(cx, expr.span, "..")
166 /// ```
167 pub fn snippet<'a, T: LintContext>(cx: &T, span: Span, default: &'a str) -> Cow<'a, str> {
168     snippet_opt(cx, span).map_or_else(|| Cow::Borrowed(default), From::from)
169 }
170
171 /// Same as `snippet`, but it adapts the applicability level by following rules:
172 ///
173 /// - Applicability level `Unspecified` will never be changed.
174 /// - If the span is inside a macro, change the applicability level to `MaybeIncorrect`.
175 /// - If the default value is used and the applicability level is `MachineApplicable`, change it to
176 /// `HasPlaceholders`
177 pub fn snippet_with_applicability<'a, T: LintContext>(
178     cx: &T,
179     span: Span,
180     default: &'a str,
181     applicability: &mut Applicability,
182 ) -> Cow<'a, str> {
183     if *applicability != Applicability::Unspecified && span.from_expansion() {
184         *applicability = Applicability::MaybeIncorrect;
185     }
186     snippet_opt(cx, span).map_or_else(
187         || {
188             if *applicability == Applicability::MachineApplicable {
189                 *applicability = Applicability::HasPlaceholders;
190             }
191             Cow::Borrowed(default)
192         },
193         From::from,
194     )
195 }
196
197 /// Same as `snippet`, but should only be used when it's clear that the input span is
198 /// not a macro argument.
199 pub fn snippet_with_macro_callsite<'a, T: LintContext>(cx: &T, span: Span, default: &'a str) -> Cow<'a, str> {
200     snippet(cx, span.source_callsite(), default)
201 }
202
203 /// Converts a span to a code snippet. Returns `None` if not available.
204 pub fn snippet_opt<T: LintContext>(cx: &T, span: Span) -> Option<String> {
205     cx.sess().source_map().span_to_snippet(span).ok()
206 }
207
208 /// Converts a span (from a block) to a code snippet if available, otherwise use default.
209 ///
210 /// This trims the code of indentation, except for the first line. Use it for blocks or block-like
211 /// things which need to be printed as such.
212 ///
213 /// The `indent_relative_to` arg can be used, to provide a span, where the indentation of the
214 /// resulting snippet of the given span.
215 ///
216 /// # Example
217 ///
218 /// ```rust,ignore
219 /// snippet_block(cx, block.span, "..", None)
220 /// // where, `block` is the block of the if expr
221 ///     if x {
222 ///         y;
223 ///     }
224 /// // will return the snippet
225 /// {
226 ///     y;
227 /// }
228 /// ```
229 ///
230 /// ```rust,ignore
231 /// snippet_block(cx, block.span, "..", Some(if_expr.span))
232 /// // where, `block` is the block of the if expr
233 ///     if x {
234 ///         y;
235 ///     }
236 /// // will return the snippet
237 /// {
238 ///         y;
239 ///     } // aligned with `if`
240 /// ```
241 /// Note that the first line of the snippet always has 0 indentation.
242 pub fn snippet_block<'a, T: LintContext>(
243     cx: &T,
244     span: Span,
245     default: &'a str,
246     indent_relative_to: Option<Span>,
247 ) -> Cow<'a, str> {
248     let snip = snippet(cx, span, default);
249     let indent = indent_relative_to.and_then(|s| indent_of(cx, s));
250     reindent_multiline(snip, true, indent)
251 }
252
253 /// Same as `snippet_block`, but adapts the applicability level by the rules of
254 /// `snippet_with_applicability`.
255 pub fn snippet_block_with_applicability<'a, T: LintContext>(
256     cx: &T,
257     span: Span,
258     default: &'a str,
259     indent_relative_to: Option<Span>,
260     applicability: &mut Applicability,
261 ) -> Cow<'a, str> {
262     let snip = snippet_with_applicability(cx, span, default, applicability);
263     let indent = indent_relative_to.and_then(|s| indent_of(cx, s));
264     reindent_multiline(snip, true, indent)
265 }
266
267 /// Same as `snippet_with_applicability`, but first walks the span up to the given context. This
268 /// will result in the macro call, rather then the expansion, if the span is from a child context.
269 /// If the span is not from a child context, it will be used directly instead.
270 ///
271 /// e.g. Given the expression `&vec![]`, getting a snippet from the span for `vec![]` as a HIR node
272 /// would result in `box []`. If given the context of the address of expression, this function will
273 /// correctly get a snippet of `vec![]`.
274 ///
275 /// This will also return whether or not the snippet is a macro call.
276 pub fn snippet_with_context(
277     cx: &LateContext<'_>,
278     span: Span,
279     outer: SyntaxContext,
280     default: &'a str,
281     applicability: &mut Applicability,
282 ) -> (Cow<'a, str>, bool) {
283     let (span, is_macro_call) = walk_span_to_context(span, outer).map_or_else(
284         || {
285             // The span is from a macro argument, and the outer context is the macro using the argument
286             if *applicability != Applicability::Unspecified {
287                 *applicability = Applicability::MaybeIncorrect;
288             }
289             // TODO: get the argument span.
290             (span, false)
291         },
292         |outer_span| (outer_span, span.ctxt() != outer),
293     );
294
295     (
296         snippet_with_applicability(cx, span, default, applicability),
297         is_macro_call,
298     )
299 }
300
301 /// Walks the span up to the target context, thereby returning the macro call site if the span is
302 /// inside a macro expansion, or the original span if it is not. Note this will return `None` in the
303 /// case of the span being in a macro expansion, but the target context is from expanding a macro
304 /// argument.
305 ///
306 /// Given the following
307 ///
308 /// ```rust,ignore
309 /// macro_rules! m { ($e:expr) => { f($e) }; }
310 /// g(m!(0))
311 /// ```
312 ///
313 /// If called with a span of the call to `f` and a context of the call to `g` this will return a
314 /// span containing `m!(0)`. However, if called with a span of the literal `0` this will give a span
315 /// containing `0` as the context is the same as the outer context.
316 ///
317 /// This will traverse through multiple macro calls. Given the following:
318 ///
319 /// ```rust,ignore
320 /// macro_rules! m { ($e:expr) => { n!($e, 0) }; }
321 /// macro_rules! n { ($e:expr, $f:expr) => { f($e, $f) }; }
322 /// g(m!(0))
323 /// ```
324 ///
325 /// If called with a span of the call to `f` and a context of the call to `g` this will return a
326 /// span containing `m!(0)`.
327 pub fn walk_span_to_context(span: Span, outer: SyntaxContext) -> Option<Span> {
328     let outer_span = hygiene::walk_chain(span, outer);
329     (outer_span.ctxt() == outer).then(|| outer_span)
330 }
331
332 /// Removes block comments from the given `Vec` of lines.
333 ///
334 /// # Examples
335 ///
336 /// ```rust,ignore
337 /// without_block_comments(vec!["/*", "foo", "*/"]);
338 /// // => vec![]
339 ///
340 /// without_block_comments(vec!["bar", "/*", "foo", "*/"]);
341 /// // => vec!["bar"]
342 /// ```
343 pub fn without_block_comments(lines: Vec<&str>) -> Vec<&str> {
344     let mut without = vec![];
345
346     let mut nest_level = 0;
347
348     for line in lines {
349         if line.contains("/*") {
350             nest_level += 1;
351             continue;
352         } else if line.contains("*/") {
353             nest_level -= 1;
354             continue;
355         }
356
357         if nest_level == 0 {
358             without.push(line);
359         }
360     }
361
362     without
363 }
364
365 #[cfg(test)]
366 mod test {
367     use super::{reindent_multiline, without_block_comments};
368
369     #[test]
370     fn test_reindent_multiline_single_line() {
371         assert_eq!("", reindent_multiline("".into(), false, None));
372         assert_eq!("...", reindent_multiline("...".into(), false, None));
373         assert_eq!("...", reindent_multiline("    ...".into(), false, None));
374         assert_eq!("...", reindent_multiline("\t...".into(), false, None));
375         assert_eq!("...", reindent_multiline("\t\t...".into(), false, None));
376     }
377
378     #[test]
379     #[rustfmt::skip]
380     fn test_reindent_multiline_block() {
381         assert_eq!("\
382     if x {
383         y
384     } else {
385         z
386     }", reindent_multiline("    if x {
387             y
388         } else {
389             z
390         }".into(), false, None));
391         assert_eq!("\
392     if x {
393     \ty
394     } else {
395     \tz
396     }", reindent_multiline("    if x {
397         \ty
398         } else {
399         \tz
400         }".into(), false, None));
401     }
402
403     #[test]
404     #[rustfmt::skip]
405     fn test_reindent_multiline_empty_line() {
406         assert_eq!("\
407     if x {
408         y
409
410     } else {
411         z
412     }", reindent_multiline("    if x {
413             y
414
415         } else {
416             z
417         }".into(), false, None));
418     }
419
420     #[test]
421     #[rustfmt::skip]
422     fn test_reindent_multiline_lines_deeper() {
423         assert_eq!("\
424         if x {
425             y
426         } else {
427             z
428         }", reindent_multiline("\
429     if x {
430         y
431     } else {
432         z
433     }".into(), true, Some(8)));
434     }
435
436     #[test]
437     fn test_without_block_comments_lines_without_block_comments() {
438         let result = without_block_comments(vec!["/*", "", "*/"]);
439         println!("result: {:?}", result);
440         assert!(result.is_empty());
441
442         let result = without_block_comments(vec!["", "/*", "", "*/", "#[crate_type = \"lib\"]", "/*", "", "*/", ""]);
443         assert_eq!(result, vec!["", "#[crate_type = \"lib\"]", ""]);
444
445         let result = without_block_comments(vec!["/* rust", "", "*/"]);
446         assert!(result.is_empty());
447
448         let result = without_block_comments(vec!["/* one-line comment */"]);
449         assert!(result.is_empty());
450
451         let result = without_block_comments(vec!["/* nested", "/* multi-line", "comment", "*/", "test", "*/"]);
452         assert!(result.is_empty());
453
454         let result = without_block_comments(vec!["/* nested /* inline /* comment */ test */ */"]);
455         assert!(result.is_empty());
456
457         let result = without_block_comments(vec!["foo", "bar", "baz"]);
458         assert_eq!(result, vec!["foo", "bar", "baz"]);
459     }
460 }