]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/literal_representation.rs
Correctly align doc of mistyped literal suffixes
[rust.git] / clippy_lints / src / literal_representation.rs
1 //! Lints concerned with the grouping of digits with underscores in integral or
2 //! floating-point literal expressions.
3
4 use crate::utils::{in_macro, snippet_opt, span_lint_and_sugg};
5 use if_chain::if_chain;
6 use rustc::lint::{in_external_macro, EarlyContext, EarlyLintPass, LintArray, LintContext, LintPass};
7 use rustc::{declare_lint_pass, declare_tool_lint, impl_lint_pass};
8 use rustc_errors::Applicability;
9 use syntax::ast::*;
10 use syntax_pos;
11
12 declare_clippy_lint! {
13     /// **What it does:** Warns if a long integral or floating-point constant does
14     /// not contain underscores.
15     ///
16     /// **Why is this bad?** Reading long numbers is difficult without separators.
17     ///
18     /// **Known problems:** None.
19     ///
20     /// **Example:**
21     ///
22     /// ```rust
23     /// let x: u64 = 61864918973511;
24     /// ```
25     pub UNREADABLE_LITERAL,
26     style,
27     "long integer literal without underscores"
28 }
29
30 declare_clippy_lint! {
31     /// **What it does:** Warns for mistyped suffix in literals
32     ///
33     /// **Why is this bad?** This is most probably a typo
34     ///
35     /// **Known problems:**
36     /// - Recommends a signed suffix, even though the number might be too big and an unsigned
37     ///   suffix is required
38     /// - Does not match on `_128` since that is a valid grouping for decimal and octal numbers
39     ///
40     /// **Example:**
41     ///
42     /// ```rust
43     /// 2_32;
44     /// ```
45     pub MISTYPED_LITERAL_SUFFIXES,
46     correctness,
47     "mistyped literal suffix"
48 }
49
50 declare_clippy_lint! {
51     /// **What it does:** Warns if an integral or floating-point constant is
52     /// grouped inconsistently with underscores.
53     ///
54     /// **Why is this bad?** Readers may incorrectly interpret inconsistently
55     /// grouped digits.
56     ///
57     /// **Known problems:** None.
58     ///
59     /// **Example:**
60     ///
61     /// ```rust
62     /// let x: u64 = 618_64_9189_73_511;
63     /// ```
64     pub INCONSISTENT_DIGIT_GROUPING,
65     style,
66     "integer literals with digits grouped inconsistently"
67 }
68
69 declare_clippy_lint! {
70     /// **What it does:** Warns if the digits of an integral or floating-point
71     /// constant are grouped into groups that
72     /// are too large.
73     ///
74     /// **Why is this bad?** Negatively impacts readability.
75     ///
76     /// **Known problems:** None.
77     ///
78     /// **Example:**
79     ///
80     /// ```rust
81     /// let x: u64 = 6186491_8973511;
82     /// ```
83     pub LARGE_DIGIT_GROUPS,
84     pedantic,
85     "grouping digits into groups that are too large"
86 }
87
88 declare_clippy_lint! {
89     /// **What it does:** Warns if there is a better representation for a numeric literal.
90     ///
91     /// **Why is this bad?** Especially for big powers of 2 a hexadecimal representation is more
92     /// readable than a decimal representation.
93     ///
94     /// **Known problems:** None.
95     ///
96     /// **Example:**
97     ///
98     /// `255` => `0xFF`
99     /// `65_535` => `0xFFFF`
100     /// `4_042_322_160` => `0xF0F0_F0F0`
101     pub DECIMAL_LITERAL_REPRESENTATION,
102     restriction,
103     "using decimal representation when hexadecimal would be better"
104 }
105
106 #[derive(Debug, PartialEq)]
107 pub(super) enum Radix {
108     Binary,
109     Octal,
110     Decimal,
111     Hexadecimal,
112 }
113
114 impl Radix {
115     /// Returns a reasonable digit group size for this radix.
116     crate fn suggest_grouping(&self) -> usize {
117         match *self {
118             Self::Binary | Self::Hexadecimal => 4,
119             Self::Octal | Self::Decimal => 3,
120         }
121     }
122 }
123
124 #[derive(Debug)]
125 pub(super) struct DigitInfo<'a> {
126     /// Characters of a literal between the radix prefix and type suffix.
127     crate digits: &'a str,
128     /// Which radix the literal was represented in.
129     crate radix: Radix,
130     /// The radix prefix, if present.
131     crate prefix: Option<&'a str>,
132     /// The type suffix, including preceding underscore if present.
133     crate suffix: Option<&'a str>,
134     /// True for floating-point literals.
135     crate float: bool,
136 }
137
138 impl<'a> DigitInfo<'a> {
139     crate fn new(lit: &'a str, float: bool) -> Self {
140         // Determine delimiter for radix prefix, if present, and radix.
141         let radix = if lit.starts_with("0x") {
142             Radix::Hexadecimal
143         } else if lit.starts_with("0b") {
144             Radix::Binary
145         } else if lit.starts_with("0o") {
146             Radix::Octal
147         } else {
148             Radix::Decimal
149         };
150
151         // Grab part of the literal after prefix, if present.
152         let (prefix, sans_prefix) = if let Radix::Decimal = radix {
153             (None, lit)
154         } else {
155             let (p, s) = lit.split_at(2);
156             (Some(p), s)
157         };
158
159         let len = sans_prefix.len();
160         let mut last_d = '\0';
161         for (d_idx, d) in sans_prefix.char_indices() {
162             let suffix_start = if last_d == '_' { d_idx - 1 } else { d_idx };
163             if float
164                 && (d == 'f'
165                     || is_possible_float_suffix_index(&sans_prefix, suffix_start, len)
166                     || ((d == 'E' || d == 'e') && !has_possible_float_suffix(&sans_prefix)))
167                 || !float && (d == 'i' || d == 'u' || is_possible_suffix_index(&sans_prefix, suffix_start, len))
168             {
169                 let (digits, suffix) = sans_prefix.split_at(suffix_start);
170                 return Self {
171                     digits,
172                     radix,
173                     prefix,
174                     suffix: Some(suffix),
175                     float,
176                 };
177             }
178             last_d = d
179         }
180
181         // No suffix found
182         Self {
183             digits: sans_prefix,
184             radix,
185             prefix,
186             suffix: None,
187             float,
188         }
189     }
190
191     /// Returns literal formatted in a sensible way.
192     crate fn grouping_hint(&self) -> String {
193         let group_size = self.radix.suggest_grouping();
194         if self.digits.contains('.') {
195             let mut parts = self.digits.split('.');
196             let int_part_hint = parts
197                 .next()
198                 .expect("split always returns at least one element")
199                 .chars()
200                 .rev()
201                 .filter(|&c| c != '_')
202                 .collect::<Vec<_>>()
203                 .chunks(group_size)
204                 .map(|chunk| chunk.iter().rev().collect())
205                 .rev()
206                 .collect::<Vec<String>>()
207                 .join("_");
208             let frac_part_hint = parts
209                 .next()
210                 .expect("already checked that there is a `.`")
211                 .chars()
212                 .filter(|&c| c != '_')
213                 .collect::<Vec<_>>()
214                 .chunks(group_size)
215                 .map(|chunk| chunk.iter().collect())
216                 .collect::<Vec<String>>()
217                 .join("_");
218             let suffix_hint = match self.suffix {
219                 Some(suffix) if is_mistyped_float_suffix(suffix) => format!("_f{}", &suffix[1..]),
220                 Some(suffix) => suffix.to_string(),
221                 None => String::new(),
222             };
223             format!("{}.{}{}", int_part_hint, frac_part_hint, suffix_hint)
224         } else if self.float && (self.digits.contains('E') || self.digits.contains('e')) {
225             let which_e = if self.digits.contains('E') { 'E' } else { 'e' };
226             let parts: Vec<&str> = self.digits.split(which_e).collect();
227             let filtered_digits_vec_0 = parts[0].chars().filter(|&c| c != '_').rev().collect::<Vec<_>>();
228             let filtered_digits_vec_1 = parts[1].chars().filter(|&c| c != '_').rev().collect::<Vec<_>>();
229             let before_e_hint = filtered_digits_vec_0
230                 .chunks(group_size)
231                 .map(|chunk| chunk.iter().rev().collect())
232                 .rev()
233                 .collect::<Vec<String>>()
234                 .join("_");
235             let after_e_hint = filtered_digits_vec_1
236                 .chunks(group_size)
237                 .map(|chunk| chunk.iter().rev().collect())
238                 .rev()
239                 .collect::<Vec<String>>()
240                 .join("_");
241             let suffix_hint = match self.suffix {
242                 Some(suffix) if is_mistyped_float_suffix(suffix) => format!("_f{}", &suffix[1..]),
243                 Some(suffix) => suffix.to_string(),
244                 None => String::new(),
245             };
246             format!(
247                 "{}{}{}{}{}",
248                 self.prefix.unwrap_or(""),
249                 before_e_hint,
250                 which_e,
251                 after_e_hint,
252                 suffix_hint
253             )
254         } else {
255             let filtered_digits_vec = self.digits.chars().filter(|&c| c != '_').rev().collect::<Vec<_>>();
256             let mut hint = filtered_digits_vec
257                 .chunks(group_size)
258                 .map(|chunk| chunk.iter().rev().collect())
259                 .rev()
260                 .collect::<Vec<String>>()
261                 .join("_");
262             // Forces hexadecimal values to be grouped by 4 being filled with zeroes (e.g 0x00ab_cdef)
263             let nb_digits_to_fill = filtered_digits_vec.len() % 4;
264             if self.radix == Radix::Hexadecimal && nb_digits_to_fill != 0 {
265                 hint = format!("{:0>4}{}", &hint[..nb_digits_to_fill], &hint[nb_digits_to_fill..]);
266             }
267             let suffix_hint = match self.suffix {
268                 Some(suffix) if is_mistyped_suffix(suffix) => format!("_i{}", &suffix[1..]),
269                 Some(suffix) => suffix.to_string(),
270                 None => String::new(),
271             };
272             format!("{}{}{}", self.prefix.unwrap_or(""), hint, suffix_hint)
273         }
274     }
275 }
276
277 enum WarningType {
278     UnreadableLiteral,
279     InconsistentDigitGrouping,
280     LargeDigitGroups,
281     DecimalRepresentation,
282     MistypedLiteralSuffix,
283 }
284
285 impl WarningType {
286     crate fn display(&self, grouping_hint: &str, cx: &EarlyContext<'_>, span: syntax_pos::Span) {
287         match self {
288             Self::MistypedLiteralSuffix => span_lint_and_sugg(
289                 cx,
290                 MISTYPED_LITERAL_SUFFIXES,
291                 span,
292                 "mistyped literal suffix",
293                 "did you mean to write",
294                 grouping_hint.to_string(),
295                 Applicability::MaybeIncorrect,
296             ),
297             Self::UnreadableLiteral => span_lint_and_sugg(
298                 cx,
299                 UNREADABLE_LITERAL,
300                 span,
301                 "long literal lacking separators",
302                 "consider",
303                 grouping_hint.to_owned(),
304                 Applicability::MachineApplicable,
305             ),
306             Self::LargeDigitGroups => span_lint_and_sugg(
307                 cx,
308                 LARGE_DIGIT_GROUPS,
309                 span,
310                 "digit groups should be smaller",
311                 "consider",
312                 grouping_hint.to_owned(),
313                 Applicability::MachineApplicable,
314             ),
315             Self::InconsistentDigitGrouping => span_lint_and_sugg(
316                 cx,
317                 INCONSISTENT_DIGIT_GROUPING,
318                 span,
319                 "digits grouped inconsistently by underscores",
320                 "consider",
321                 grouping_hint.to_owned(),
322                 Applicability::MachineApplicable,
323             ),
324             Self::DecimalRepresentation => span_lint_and_sugg(
325                 cx,
326                 DECIMAL_LITERAL_REPRESENTATION,
327                 span,
328                 "integer literal has a better hexadecimal representation",
329                 "consider",
330                 grouping_hint.to_owned(),
331                 Applicability::MachineApplicable,
332             ),
333         };
334     }
335 }
336
337 declare_lint_pass!(LiteralDigitGrouping => [
338     UNREADABLE_LITERAL,
339     INCONSISTENT_DIGIT_GROUPING,
340     LARGE_DIGIT_GROUPS,
341     MISTYPED_LITERAL_SUFFIXES,
342 ]);
343
344 impl EarlyLintPass for LiteralDigitGrouping {
345     fn check_expr(&mut self, cx: &EarlyContext<'_>, expr: &Expr) {
346         if in_external_macro(cx.sess(), expr.span) {
347             return;
348         }
349
350         if let ExprKind::Lit(ref lit) = expr.kind {
351             self.check_lit(cx, lit)
352         }
353     }
354 }
355
356 impl LiteralDigitGrouping {
357     fn check_lit(self, cx: &EarlyContext<'_>, lit: &Lit) {
358         let in_macro = in_macro(lit.span);
359         match lit.kind {
360             LitKind::Int(..) => {
361                 // Lint integral literals.
362                 if_chain! {
363                     if let Some(src) = snippet_opt(cx, lit.span);
364                     if let Some(firstch) = src.chars().next();
365                     if char::to_digit(firstch, 10).is_some();
366                     then {
367                         let digit_info = DigitInfo::new(&src, false);
368                         let _ = Self::do_lint(digit_info.digits, digit_info.suffix, in_macro).map_err(|warning_type| {
369                             warning_type.display(&digit_info.grouping_hint(), cx, lit.span)
370                         });
371                     }
372                 }
373             },
374             LitKind::Float(..) | LitKind::FloatUnsuffixed(..) => {
375                 // Lint floating-point literals.
376                 if_chain! {
377                     if let Some(src) = snippet_opt(cx, lit.span);
378                     if let Some(firstch) = src.chars().next();
379                     if char::to_digit(firstch, 10).is_some();
380                     then {
381                         let digit_info = DigitInfo::new(&src, true);
382                         // Separate digits into integral and fractional parts.
383                         let parts: Vec<&str> = digit_info
384                             .digits
385                             .split_terminator('.')
386                             .collect();
387
388                         // Lint integral and fractional parts separately, and then check consistency of digit
389                         // groups if both pass.
390                         let _ = Self::do_lint(parts[0], digit_info.suffix, in_macro)
391                             .map(|integral_group_size| {
392                                 if parts.len() > 1 {
393                                     // Lint the fractional part of literal just like integral part, but reversed.
394                                     let fractional_part = &parts[1].chars().rev().collect::<String>();
395                                     let _ = Self::do_lint(fractional_part, None, in_macro)
396                                         .map(|fractional_group_size| {
397                                             let consistent = Self::parts_consistent(integral_group_size,
398                                                                                     fractional_group_size,
399                                                                                     parts[0].len(),
400                                                                                     parts[1].len());
401                                                 if !consistent {
402                                                     WarningType::InconsistentDigitGrouping.display(
403                                                         &digit_info.grouping_hint(),
404                                                         cx,
405                                                         lit.span,
406                                                     );
407                                                 }
408                                         })
409                                     .map_err(|warning_type| warning_type.display(&digit_info.grouping_hint(),
410                                     cx,
411                                     lit.span));
412                                 }
413                             })
414                         .map_err(|warning_type| warning_type.display(&digit_info.grouping_hint(), cx, lit.span));
415                     }
416                 }
417             },
418             _ => (),
419         }
420     }
421
422     /// Given the sizes of the digit groups of both integral and fractional
423     /// parts, and the length
424     /// of both parts, determine if the digits have been grouped consistently.
425     fn parts_consistent(int_group_size: usize, frac_group_size: usize, int_size: usize, frac_size: usize) -> bool {
426         match (int_group_size, frac_group_size) {
427             // No groups on either side of decimal point - trivially consistent.
428             (0, 0) => true,
429             // Integral part has grouped digits, fractional part does not.
430             (_, 0) => frac_size <= int_group_size,
431             // Fractional part has grouped digits, integral part does not.
432             (0, _) => int_size <= frac_group_size,
433             // Both parts have grouped digits. Groups should be the same size.
434             (_, _) => int_group_size == frac_group_size,
435         }
436     }
437
438     /// Performs lint on `digits` (no decimal point) and returns the group
439     /// size on success or `WarningType` when emitting a warning.
440     fn do_lint(digits: &str, suffix: Option<&str>, in_macro: bool) -> Result<usize, WarningType> {
441         if let Some(suffix) = suffix {
442             if is_mistyped_suffix(suffix) {
443                 return Err(WarningType::MistypedLiteralSuffix);
444             }
445         }
446         // Grab underscore indices with respect to the units digit.
447         let underscore_positions: Vec<usize> = digits
448             .chars()
449             .rev()
450             .enumerate()
451             .filter_map(|(idx, digit)| if digit == '_' { Some(idx) } else { None })
452             .collect();
453
454         if underscore_positions.is_empty() {
455             // Check if literal needs underscores.
456             if !in_macro && digits.len() > 5 {
457                 Err(WarningType::UnreadableLiteral)
458             } else {
459                 Ok(0)
460             }
461         } else {
462             // Check consistency and the sizes of the groups.
463             let group_size = underscore_positions[0];
464             let consistent = underscore_positions
465                 .windows(2)
466                 .all(|ps| ps[1] - ps[0] == group_size + 1)
467                 // number of digits to the left of the last group cannot be bigger than group size.
468                 && (digits.len() - underscore_positions.last()
469                                                        .expect("there's at least one element") <= group_size + 1);
470
471             if !consistent {
472                 return Err(WarningType::InconsistentDigitGrouping);
473             } else if group_size > 4 {
474                 return Err(WarningType::LargeDigitGroups);
475             }
476             Ok(group_size)
477         }
478     }
479 }
480
481 #[allow(clippy::module_name_repetitions)]
482 #[derive(Copy, Clone)]
483 pub struct DecimalLiteralRepresentation {
484     threshold: u64,
485 }
486
487 impl_lint_pass!(DecimalLiteralRepresentation => [DECIMAL_LITERAL_REPRESENTATION]);
488
489 impl EarlyLintPass for DecimalLiteralRepresentation {
490     fn check_expr(&mut self, cx: &EarlyContext<'_>, expr: &Expr) {
491         if in_external_macro(cx.sess(), expr.span) {
492             return;
493         }
494
495         if let ExprKind::Lit(ref lit) = expr.kind {
496             self.check_lit(cx, lit)
497         }
498     }
499 }
500
501 impl DecimalLiteralRepresentation {
502     pub fn new(threshold: u64) -> Self {
503         Self { threshold }
504     }
505     fn check_lit(self, cx: &EarlyContext<'_>, lit: &Lit) {
506         // Lint integral literals.
507         if_chain! {
508             if let LitKind::Int(..) = lit.kind;
509             if let Some(src) = snippet_opt(cx, lit.span);
510             if let Some(firstch) = src.chars().next();
511             if char::to_digit(firstch, 10).is_some();
512             let digit_info = DigitInfo::new(&src, false);
513             if digit_info.radix == Radix::Decimal;
514             if let Ok(val) = digit_info.digits
515                 .chars()
516                 .filter(|&c| c != '_')
517                 .collect::<String>()
518                 .parse::<u128>();
519             if val >= u128::from(self.threshold);
520             then {
521                 let hex = format!("{:#X}", val);
522                 let digit_info = DigitInfo::new(&hex, false);
523                 let _ = Self::do_lint(digit_info.digits).map_err(|warning_type| {
524                     warning_type.display(&digit_info.grouping_hint(), cx, lit.span)
525                 });
526             }
527         }
528     }
529
530     fn do_lint(digits: &str) -> Result<(), WarningType> {
531         if digits.len() == 1 {
532             // Lint for 1 digit literals, if someone really sets the threshold that low
533             if digits == "1"
534                 || digits == "2"
535                 || digits == "4"
536                 || digits == "8"
537                 || digits == "3"
538                 || digits == "7"
539                 || digits == "F"
540             {
541                 return Err(WarningType::DecimalRepresentation);
542             }
543         } else if digits.len() < 4 {
544             // Lint for Literals with a hex-representation of 2 or 3 digits
545             let f = &digits[0..1]; // first digit
546             let s = &digits[1..]; // suffix
547
548             // Powers of 2
549             if ((f.eq("1") || f.eq("2") || f.eq("4") || f.eq("8")) && s.chars().all(|c| c == '0'))
550                 // Powers of 2 minus 1
551                 || ((f.eq("1") || f.eq("3") || f.eq("7") || f.eq("F")) && s.chars().all(|c| c == 'F'))
552             {
553                 return Err(WarningType::DecimalRepresentation);
554             }
555         } else {
556             // Lint for Literals with a hex-representation of 4 digits or more
557             let f = &digits[0..1]; // first digit
558             let m = &digits[1..digits.len() - 1]; // middle digits, except last
559             let s = &digits[1..]; // suffix
560
561             // Powers of 2 with a margin of +15/-16
562             if ((f.eq("1") || f.eq("2") || f.eq("4") || f.eq("8")) && m.chars().all(|c| c == '0'))
563                 || ((f.eq("1") || f.eq("3") || f.eq("7") || f.eq("F")) && m.chars().all(|c| c == 'F'))
564                 // Lint for representations with only 0s and Fs, while allowing 7 as the first
565                 // digit
566                 || ((f.eq("7") || f.eq("F")) && s.chars().all(|c| c == '0' || c == 'F'))
567             {
568                 return Err(WarningType::DecimalRepresentation);
569             }
570         }
571
572         Ok(())
573     }
574 }
575
576 fn is_mistyped_suffix(suffix: &str) -> bool {
577     ["_8", "_16", "_32", "_64"].contains(&suffix)
578 }
579
580 fn is_possible_suffix_index(lit: &str, idx: usize, len: usize) -> bool {
581     ((len > 3 && idx == len - 3) || (len > 2 && idx == len - 2)) && is_mistyped_suffix(lit.split_at(idx).1)
582 }
583
584 fn is_mistyped_float_suffix(suffix: &str) -> bool {
585     ["_32", "_64"].contains(&suffix)
586 }
587
588 fn is_possible_float_suffix_index(lit: &str, idx: usize, len: usize) -> bool {
589     (len > 3 && idx == len - 3) && is_mistyped_float_suffix(lit.split_at(idx).1)
590 }
591
592 fn has_possible_float_suffix(lit: &str) -> bool {
593     lit.ends_with("_32") || lit.ends_with("_64")
594 }