]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/literal_representation.rs
literal representation restructure 12
[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     #[must_use]
117     fn suggest_grouping(&self) -> usize {
118         match *self {
119             Self::Binary | Self::Hexadecimal => 4,
120             Self::Octal | Self::Decimal => 3,
121         }
122     }
123 }
124
125 /// A helper method to format numeric literals with digit grouping.
126 /// `lit` must be a valid numeric literal without suffix.
127 pub fn format_numeric_literal(lit: &str, type_suffix: Option<&str>, float: bool) -> String {
128     NumericLiteral::new(lit, type_suffix, float).format()
129 }
130
131 #[derive(Debug)]
132 pub(super) struct NumericLiteral<'a> {
133     /// Which radix the literal was represented in.
134     radix: Radix,
135     /// The radix prefix, if present.
136     prefix: Option<&'a str>,
137
138     /// The integer part of the number.
139     integer: &'a str,
140     /// The fraction part of the number.
141     fraction: Option<&'a str>,
142     /// The character used as exponent seperator (b'e' or b'E') and the exponent part.
143     exponent: Option<(char, &'a str)>,
144
145     /// The type suffix, including preceding underscore if present.
146     suffix: Option<&'a str>,
147 }
148
149 impl<'a> NumericLiteral<'a> {
150     fn from_lit(src: &'a str, lit: &Lit) -> Option<NumericLiteral<'a>> {
151         if lit.kind.is_numeric() && src.chars().next().map_or(false, |c| c.is_digit(10)) {
152             let (unsuffixed, suffix) = split_suffix(&src, &lit.kind);
153             let float = if let LitKind::Float(..) = lit.kind { true } else { false };
154             Some(NumericLiteral::new(unsuffixed, suffix, float))
155         } else {
156             None
157         }
158     }
159
160     #[must_use]
161     fn new(lit: &'a str, suffix: Option<&'a str>, float: bool) -> Self {
162         // Determine delimiter for radix prefix, if present, and radix.
163         let radix = if lit.starts_with("0x") {
164             Radix::Hexadecimal
165         } else if lit.starts_with("0b") {
166             Radix::Binary
167         } else if lit.starts_with("0o") {
168             Radix::Octal
169         } else {
170             Radix::Decimal
171         };
172
173         // Grab part of the literal after prefix, if present.
174         let (prefix, mut sans_prefix) = if let Radix::Decimal = radix {
175             (None, lit)
176         } else {
177             let (p, s) = lit.split_at(2);
178             (Some(p), s)
179         };
180
181         if suffix.is_some() && sans_prefix.ends_with('_') {
182             // The '_' before the suffix isn't part of the digits
183             sans_prefix = &sans_prefix[..sans_prefix.len() - 1];
184         }
185
186         let (integer, fraction, exponent) = Self::split_digit_parts(sans_prefix, float);
187
188         Self {
189             radix,
190             prefix,
191             integer,
192             fraction,
193             exponent,
194             suffix,
195         }
196     }
197
198     fn split_digit_parts(digits: &str, float: bool) -> (&str, Option<&str>, Option<(char, &str)>) {
199         let mut integer = digits;
200         let mut fraction = None;
201         let mut exponent = None;
202
203         if float {
204             for (i, c) in digits.char_indices() {
205                 match c {
206                     '.' => {
207                         integer = &digits[..i];
208                         fraction = Some(&digits[i + 1..]);
209                     },
210                     'e' | 'E' => {
211                         if integer.len() > i {
212                             integer = &digits[..i];
213                         } else {
214                             fraction = Some(&digits[integer.len() + 1..i]);
215                         };
216                         exponent = Some((c, &digits[i + 1..]));
217                         break;
218                     },
219                     _ => {},
220                 }
221             }
222         }
223
224         (integer, fraction, exponent)
225     }
226
227     /// Returns literal formatted in a sensible way.
228     fn format(&self) -> String {
229         let mut output = String::new();
230
231         if let Some(prefix) = self.prefix {
232             output.push_str(prefix);
233         }
234
235         let group_size = self.radix.suggest_grouping();
236
237         Self::group_digits(
238             &mut output,
239             self.integer,
240             group_size,
241             true,
242             self.radix == Radix::Hexadecimal,
243         );
244
245         if let Some(fraction) = self.fraction {
246             output.push('.');
247             Self::group_digits(&mut output, fraction, group_size, false, false);
248         }
249
250         if let Some((separator, exponent)) = self.exponent {
251             output.push(separator);
252             Self::group_digits(&mut output, exponent, group_size, true, false);
253         }
254
255         if let Some(suffix) = self.suffix {
256             output.push('_');
257             output.push_str(suffix);
258         }
259
260         output
261     }
262
263     fn group_digits(output: &mut String, input: &str, group_size: usize, partial_group_first: bool, pad: bool) {
264         debug_assert!(group_size > 0);
265
266         let mut digits = input.chars().filter(|&c| c != '_');
267
268         let first_group_size;
269
270         if partial_group_first {
271             first_group_size = (digits.clone().count() + group_size - 1) % group_size + 1;
272             if pad {
273                 for _ in 0..group_size - first_group_size {
274                     output.push('0');
275                 }
276             }
277         } else {
278             first_group_size = group_size;
279         }
280
281         for _ in 0..first_group_size {
282             if let Some(digit) = digits.next() {
283                 output.push(digit);
284             }
285         }
286
287         for (c, i) in digits.zip((0..group_size).cycle()) {
288             if i == 0 {
289                 output.push('_');
290             }
291             output.push(c);
292         }
293     }
294 }
295
296 fn split_suffix<'a>(src: &'a str, lit_kind: &LitKind) -> (&'a str, Option<&'a str>) {
297     debug_assert!(lit_kind.is_numeric());
298     if let Some(suffix_length) = lit_suffix_length(lit_kind) {
299         let (unsuffixed, suffix) = src.split_at(src.len() - suffix_length);
300         (unsuffixed, Some(suffix))
301     } else {
302         (src, None)
303     }
304 }
305
306 fn lit_suffix_length(lit_kind: &LitKind) -> Option<usize> {
307     debug_assert!(lit_kind.is_numeric());
308     let suffix = match lit_kind {
309         LitKind::Int(_, int_lit_kind) => match int_lit_kind {
310             LitIntType::Signed(int_ty) => Some(int_ty.name_str()),
311             LitIntType::Unsigned(uint_ty) => Some(uint_ty.name_str()),
312             LitIntType::Unsuffixed => None,
313         },
314         LitKind::Float(_, float_lit_kind) => match float_lit_kind {
315             LitFloatType::Suffixed(float_ty) => Some(float_ty.name_str()),
316             LitFloatType::Unsuffixed => None,
317         },
318         _ => None,
319     };
320
321     suffix.map(str::len)
322 }
323
324 enum WarningType {
325     UnreadableLiteral,
326     InconsistentDigitGrouping,
327     LargeDigitGroups,
328     DecimalRepresentation,
329     MistypedLiteralSuffix,
330 }
331
332 impl WarningType {
333     fn display(&self, suggested_format: String, cx: &EarlyContext<'_>, span: syntax_pos::Span) {
334         match self {
335             Self::MistypedLiteralSuffix => span_lint_and_sugg(
336                 cx,
337                 MISTYPED_LITERAL_SUFFIXES,
338                 span,
339                 "mistyped literal suffix",
340                 "did you mean to write",
341                 suggested_format,
342                 Applicability::MaybeIncorrect,
343             ),
344             Self::UnreadableLiteral => span_lint_and_sugg(
345                 cx,
346                 UNREADABLE_LITERAL,
347                 span,
348                 "long literal lacking separators",
349                 "consider",
350                 suggested_format,
351                 Applicability::MachineApplicable,
352             ),
353             Self::LargeDigitGroups => span_lint_and_sugg(
354                 cx,
355                 LARGE_DIGIT_GROUPS,
356                 span,
357                 "digit groups should be smaller",
358                 "consider",
359                 suggested_format,
360                 Applicability::MachineApplicable,
361             ),
362             Self::InconsistentDigitGrouping => span_lint_and_sugg(
363                 cx,
364                 INCONSISTENT_DIGIT_GROUPING,
365                 span,
366                 "digits grouped inconsistently by underscores",
367                 "consider",
368                 suggested_format,
369                 Applicability::MachineApplicable,
370             ),
371             Self::DecimalRepresentation => span_lint_and_sugg(
372                 cx,
373                 DECIMAL_LITERAL_REPRESENTATION,
374                 span,
375                 "integer literal has a better hexadecimal representation",
376                 "consider",
377                 suggested_format,
378                 Applicability::MachineApplicable,
379             ),
380         };
381     }
382 }
383
384 declare_lint_pass!(LiteralDigitGrouping => [
385     UNREADABLE_LITERAL,
386     INCONSISTENT_DIGIT_GROUPING,
387     LARGE_DIGIT_GROUPS,
388     MISTYPED_LITERAL_SUFFIXES,
389 ]);
390
391 impl EarlyLintPass for LiteralDigitGrouping {
392     fn check_expr(&mut self, cx: &EarlyContext<'_>, expr: &Expr) {
393         if in_external_macro(cx.sess(), expr.span) {
394             return;
395         }
396
397         if let ExprKind::Lit(ref lit) = expr.kind {
398             Self::check_lit(cx, lit)
399         }
400     }
401 }
402
403 impl LiteralDigitGrouping {
404     fn check_lit(cx: &EarlyContext<'_>, lit: &Lit) {
405         let in_macro = in_macro(lit.span);
406
407         if_chain! {
408             if let Some(src) = snippet_opt(cx, lit.span);
409             if let Some(mut num_lit) = NumericLiteral::from_lit(&src, &lit);
410             then {
411                 if !Self::check_for_mistyped_suffix(cx, lit.span, &mut num_lit) {
412                     return;
413                 }
414
415                 let result = (|| {
416
417                     let integral_group_size = Self::get_group_size(num_lit.integer.split('_'), in_macro)?;
418                     if let Some(fraction) = num_lit.fraction {
419                         let fractional_group_size = Self::get_group_size(fraction.rsplit('_'), in_macro)?;
420
421                         let consistent = Self::parts_consistent(integral_group_size,
422                                                                 fractional_group_size,
423                                                                 num_lit.integer.len(),
424                                                                 fraction.len());
425                         if !consistent {
426                             return Err(WarningType::InconsistentDigitGrouping);
427                         };
428                     }
429                     Ok(())
430                 })();
431
432
433                 if let Err(warning_type) = result {
434                     warning_type.display(num_lit.format(), cx, lit.span)
435                 }
436             }
437         }
438     }
439
440     // Returns `false` if the check fails
441     fn check_for_mistyped_suffix(
442         cx: &EarlyContext<'_>,
443         span: syntax_pos::Span,
444         num_lit: &mut NumericLiteral<'_>,
445     ) -> bool {
446         if num_lit.suffix.is_some() {
447             return true;
448         }
449
450         let (part, mistyped_suffixes, missing_char) = if let Some((_, exponent)) = &mut num_lit.exponent {
451             (exponent, &["32", "64"][..], 'f')
452         } else if let Some(fraction) = &mut num_lit.fraction {
453             (fraction, &["32", "64"][..], 'f')
454         } else {
455             (&mut num_lit.integer, &["8", "16", "32", "64"][..], 'i')
456         };
457
458         let mut split = part.rsplit('_');
459         let last_group = split.next().expect("At least one group");
460         if split.next().is_some() && mistyped_suffixes.contains(&last_group) {
461             *part = &part[..part.len() - last_group.len()];
462             let mut sugg = num_lit.format();
463             sugg.push('_');
464             sugg.push(missing_char);
465             sugg.push_str(last_group);
466             WarningType::MistypedLiteralSuffix.display(sugg, cx, span);
467             false
468         } else {
469             true
470         }
471     }
472
473     /// Given the sizes of the digit groups of both integral and fractional
474     /// parts, and the length
475     /// of both parts, determine if the digits have been grouped consistently.
476     #[must_use]
477     fn parts_consistent(
478         int_group_size: Option<usize>,
479         frac_group_size: Option<usize>,
480         int_size: usize,
481         frac_size: usize,
482     ) -> bool {
483         match (int_group_size, frac_group_size) {
484             // No groups on either side of decimal point - trivially consistent.
485             (None, None) => true,
486             // Integral part has grouped digits, fractional part does not.
487             (Some(int_group_size), None) => frac_size <= int_group_size,
488             // Fractional part has grouped digits, integral part does not.
489             (None, Some(frac_group_size)) => int_size <= frac_group_size,
490             // Both parts have grouped digits. Groups should be the same size.
491             (Some(int_group_size), Some(frac_group_size)) => int_group_size == frac_group_size,
492         }
493     }
494
495     /// Returns the size of the digit groups (or None if ungrouped) if successful,
496     /// otherwise returns a `WarningType` for linting.
497     fn get_group_size<'a>(groups: impl Iterator<Item = &'a str>, in_macro: bool) -> Result<Option<usize>, WarningType> {
498         let mut groups = groups.map(str::len);
499
500         let first = groups.next().expect("At least one group");
501
502         if let Some(second) = groups.next() {
503             if !groups.all(|x| x == second) || first > second {
504                 Err(WarningType::InconsistentDigitGrouping)
505             } else if second > 4 {
506                 Err(WarningType::LargeDigitGroups)
507             } else {
508                 Ok(Some(second))
509             }
510         } else if first > 5 && !in_macro {
511             Err(WarningType::UnreadableLiteral)
512         } else {
513             Ok(None)
514         }
515     }
516 }
517
518 #[allow(clippy::module_name_repetitions)]
519 #[derive(Copy, Clone)]
520 pub struct DecimalLiteralRepresentation {
521     threshold: u64,
522 }
523
524 impl_lint_pass!(DecimalLiteralRepresentation => [DECIMAL_LITERAL_REPRESENTATION]);
525
526 impl EarlyLintPass for DecimalLiteralRepresentation {
527     fn check_expr(&mut self, cx: &EarlyContext<'_>, expr: &Expr) {
528         if in_external_macro(cx.sess(), expr.span) {
529             return;
530         }
531
532         if let ExprKind::Lit(ref lit) = expr.kind {
533             self.check_lit(cx, lit)
534         }
535     }
536 }
537
538 impl DecimalLiteralRepresentation {
539     #[must_use]
540     pub fn new(threshold: u64) -> Self {
541         Self { threshold }
542     }
543     fn check_lit(self, cx: &EarlyContext<'_>, lit: &Lit) {
544         // Lint integral literals.
545         if_chain! {
546             if let LitKind::Int(val, _) = lit.kind;
547             if let Some(src) = snippet_opt(cx, lit.span);
548             if let Some(num_lit) = NumericLiteral::from_lit(&src, &lit);
549             if num_lit.radix == Radix::Decimal;
550             if val >= u128::from(self.threshold);
551             then {
552                 let hex = format!("{:#X}", val);
553                 let num_lit = NumericLiteral::new(&hex, None, false);
554                 let _ = Self::do_lint(num_lit.integer).map_err(|warning_type| {
555                     warning_type.display(num_lit.format(), cx, lit.span)
556                 });
557             }
558         }
559     }
560
561     fn do_lint(digits: &str) -> Result<(), WarningType> {
562         if digits.len() == 1 {
563             // Lint for 1 digit literals, if someone really sets the threshold that low
564             if digits == "1"
565                 || digits == "2"
566                 || digits == "4"
567                 || digits == "8"
568                 || digits == "3"
569                 || digits == "7"
570                 || digits == "F"
571             {
572                 return Err(WarningType::DecimalRepresentation);
573             }
574         } else if digits.len() < 4 {
575             // Lint for Literals with a hex-representation of 2 or 3 digits
576             let f = &digits[0..1]; // first digit
577             let s = &digits[1..]; // suffix
578
579             // Powers of 2
580             if ((f.eq("1") || f.eq("2") || f.eq("4") || f.eq("8")) && s.chars().all(|c| c == '0'))
581                 // Powers of 2 minus 1
582                 || ((f.eq("1") || f.eq("3") || f.eq("7") || f.eq("F")) && s.chars().all(|c| c == 'F'))
583             {
584                 return Err(WarningType::DecimalRepresentation);
585             }
586         } else {
587             // Lint for Literals with a hex-representation of 4 digits or more
588             let f = &digits[0..1]; // first digit
589             let m = &digits[1..digits.len() - 1]; // middle digits, except last
590             let s = &digits[1..]; // suffix
591
592             // Powers of 2 with a margin of +15/-16
593             if ((f.eq("1") || f.eq("2") || f.eq("4") || f.eq("8")) && m.chars().all(|c| c == '0'))
594                 || ((f.eq("1") || f.eq("3") || f.eq("7") || f.eq("F")) && m.chars().all(|c| c == 'F'))
595                 // Lint for representations with only 0s and Fs, while allowing 7 as the first
596                 // digit
597                 || ((f.eq("7") || f.eq("F")) && s.chars().all(|c| c == '0' || c == 'F'))
598             {
599                 return Err(WarningType::DecimalRepresentation);
600             }
601         }
602
603         Ok(())
604     }
605 }