2015-05-04 05:01:34 -05:00
|
|
|
use rustc::lint::*;
|
2015-09-03 09:42:17 -05:00
|
|
|
use rustc_front::hir::*;
|
2015-10-23 23:30:57 -05:00
|
|
|
use std::f64::consts as f64;
|
2015-07-26 09:53:11 -05:00
|
|
|
use utils::span_lint;
|
2015-09-16 19:01:41 -05:00
|
|
|
use syntax::ast::Lit_::*;
|
|
|
|
use syntax::ast::Lit;
|
|
|
|
use syntax::ast::FloatTy::*;
|
2015-05-04 05:01:34 -05:00
|
|
|
|
|
|
|
declare_lint! {
|
|
|
|
pub APPROX_CONSTANT,
|
|
|
|
Warn,
|
2015-08-13 03:32:35 -05:00
|
|
|
"the approximate of a known float constant (in `std::f64::consts` or `std::f32::consts`) \
|
|
|
|
is found; suggests to use the constant"
|
2015-05-04 05:01:34 -05:00
|
|
|
}
|
|
|
|
|
2015-10-23 23:30:57 -05:00
|
|
|
// Tuples are of the form (constant, name, min_digits)
|
|
|
|
const KNOWN_CONSTS : &'static [(f64, &'static str, usize)] = &[
|
|
|
|
(f64::E, "E", 4),
|
|
|
|
(f64::FRAC_1_PI, "FRAC_1_PI", 4),
|
|
|
|
(f64::FRAC_1_SQRT_2, "FRAC_1_SQRT_2", 5),
|
|
|
|
(f64::FRAC_2_PI, "FRAC_2_PI", 5),
|
|
|
|
(f64::FRAC_2_SQRT_PI, "FRAC_2_SQRT_PI", 5),
|
|
|
|
(f64::FRAC_PI_2, "FRAC_PI_2", 5),
|
|
|
|
(f64::FRAC_PI_3, "FRAC_PI_3", 5),
|
|
|
|
(f64::FRAC_PI_4, "FRAC_PI_4", 5),
|
|
|
|
(f64::FRAC_PI_6, "FRAC_PI_6", 5),
|
|
|
|
(f64::FRAC_PI_8, "FRAC_PI_8", 5),
|
|
|
|
(f64::LN_10, "LN_10", 5),
|
|
|
|
(f64::LN_2, "LN_2", 5),
|
|
|
|
(f64::LOG10_E, "LOG10_E", 5),
|
|
|
|
(f64::LOG2_E, "LOG2_E", 5),
|
|
|
|
(f64::PI, "PI", 3),
|
|
|
|
(f64::SQRT_2, "SQRT_2", 5),
|
2015-10-22 17:19:03 -05:00
|
|
|
];
|
2015-05-04 05:01:34 -05:00
|
|
|
|
|
|
|
#[derive(Copy,Clone)]
|
|
|
|
pub struct ApproxConstant;
|
|
|
|
|
|
|
|
impl LintPass for ApproxConstant {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(APPROX_CONSTANT)
|
|
|
|
}
|
2015-09-18 21:53:04 -05:00
|
|
|
}
|
2015-08-11 13:22:20 -05:00
|
|
|
|
2015-09-18 21:53:04 -05:00
|
|
|
impl LateLintPass for ApproxConstant {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext, e: &Expr) {
|
2015-11-24 11:44:40 -06:00
|
|
|
if let ExprLit(ref lit) = e.node {
|
2015-09-11 08:59:19 -05:00
|
|
|
check_lit(cx, lit, e);
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
2015-05-04 05:01:34 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-18 21:53:04 -05:00
|
|
|
fn check_lit(cx: &LateContext, lit: &Lit, e: &Expr) {
|
2015-08-21 13:44:48 -05:00
|
|
|
match lit.node {
|
2015-10-23 23:30:57 -05:00
|
|
|
LitFloat(ref s, TyF32) => check_known_consts(cx, e, s, "f32"),
|
|
|
|
LitFloat(ref s, TyF64) => check_known_consts(cx, e, s, "f64"),
|
|
|
|
LitFloatUnsuffixed(ref s) =>
|
|
|
|
check_known_consts(cx, e, s, "f{32, 64}"),
|
2015-08-11 13:22:20 -05:00
|
|
|
_ => ()
|
|
|
|
}
|
2015-05-04 05:01:34 -05:00
|
|
|
}
|
|
|
|
|
2015-10-22 17:19:03 -05:00
|
|
|
fn check_known_consts(cx: &LateContext, e: &Expr, s: &str, module: &str) {
|
2015-10-23 23:30:57 -05:00
|
|
|
if let Ok(_) = s.parse::<f64>() {
|
|
|
|
for &(constant, name, min_digits) in KNOWN_CONSTS {
|
|
|
|
if is_approx_const(constant, s, min_digits) {
|
2015-10-22 17:19:03 -05:00
|
|
|
span_lint(cx, APPROX_CONSTANT, e.span, &format!(
|
|
|
|
"approximate value of `{}::{}` found. \
|
|
|
|
Consider using it directly", module, &name));
|
2015-10-23 23:30:57 -05:00
|
|
|
return;
|
2015-10-22 17:19:03 -05:00
|
|
|
}
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
|
|
|
}
|
2015-05-04 05:01:34 -05:00
|
|
|
}
|
2015-10-23 23:30:57 -05:00
|
|
|
|
|
|
|
/// Returns false if the number of significant figures in `value` are
|
|
|
|
/// less than `min_digits`; otherwise, returns true if `value` is equal
|
|
|
|
/// to `constant`, rounded to the number of digits present in `value`.
|
|
|
|
fn is_approx_const(constant: f64, value: &str, min_digits: usize) -> bool {
|
|
|
|
if value.len() <= min_digits {
|
|
|
|
false
|
|
|
|
} else {
|
|
|
|
let round_const = format!("{:.*}", value.len() - 2, constant);
|
|
|
|
|
|
|
|
let mut trunc_const = constant.to_string();
|
|
|
|
if trunc_const.len() > value.len() {
|
|
|
|
trunc_const.truncate(value.len());
|
|
|
|
}
|
|
|
|
|
|
|
|
(value == round_const) || (value == trunc_const)
|
|
|
|
}
|
|
|
|
}
|