-
Notifications
You must be signed in to change notification settings - Fork 745
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for visiting floating point values #1507
Changes from 1 commit
f1774e4
373a77f
0724604
7c6b83b
8ded0f1
b144620
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -36,14 +36,23 @@ pub(crate) struct MatchVisitor<'a> { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
inner: &'a SpanMatch, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
#[derive(Debug, Clone, PartialOrd, Ord, Eq, PartialEq)] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
#[derive(Debug, Clone, PartialOrd, PartialEq)] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the manual implementation of I think we need to add a manual There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
pub(crate) enum ValueMatch { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bool(bool), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
F64(f64), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
U64(u64), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
I64(i64), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Pat(Box<MatchPattern>), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
impl Eq for ValueMatch {} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Similarly to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
impl Ord for ValueMatch { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
fn cmp(&self, other: &Self) -> Ordering { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
self.partial_cmp(other).unwrap() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This isn't really correct, because there's nothing stopping the The total ordering is required because I would expect the implementation to look something like this:
Suggested change
or similar. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
#[derive(Debug, Clone)] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
pub(crate) struct MatchPattern { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
pub(crate) matcher: Pattern, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -134,6 +143,7 @@ impl FromStr for ValueMatch { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.map(ValueMatch::Bool) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.or_else(|_| s.parse::<u64>().map(ValueMatch::U64)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.or_else(|_| s.parse::<i64>().map(ValueMatch::I64)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.or_else(|_| s.parse::<f64>().map(ValueMatch::F64)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.or_else(|_| { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
s.parse::<MatchPattern>() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.map(|p| ValueMatch::Pat(Box::new(p))) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -145,6 +155,7 @@ impl fmt::Display for ValueMatch { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
match self { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ValueMatch::Bool(ref inner) => fmt::Display::fmt(inner, f), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ValueMatch::F64(ref inner) => fmt::Display::fmt(inner, f), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ValueMatch::I64(ref inner) => fmt::Display::fmt(inner, f), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ValueMatch::U64(ref inner) => fmt::Display::fmt(inner, f), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ValueMatch::Pat(ref inner) => fmt::Display::fmt(inner, f), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -275,6 +286,15 @@ impl SpanMatch { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
impl<'a> Visit for MatchVisitor<'a> { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
fn record_f64(&mut self, field: &Field, value: f64) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
match self.inner.fields.get(field) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Some((ValueMatch::F64(ref e), ref matched)) if value == *e => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We probably need special behavior for I would probably change this by adding a separate Some((ValueMatch::NaN, ref matched)) if value.is_nan() => {
matched.store(true, Release);
} This way, users can match any This also avoids the problem of NaNs in the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @hawkw I had a question for this particular code location, unrelated to the NaN support. Should this method here perform an equality compare against the matching value, or should it do an epsilon compare? Clippy warns against doing an equality compare but I'm not sure it feels right to be doing an epsilon compare here. Thoughts? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's probably best to do an epsilon compare here. In most cases, I think the user will be looking for values that are logically "equal" to the provided decimal number, rather than looking for floating-point values whose bit patterns are exactly equal. Either way, it's probably worth documenting how floats are compared in the documentation for |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
matched.store(true, Release); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
_ => {} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
fn record_i64(&mut self, field: &Field, value: i64) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
use std::convert::TryInto; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,8 +19,9 @@ pub struct MockField { | |
value: MockValue, | ||
} | ||
|
||
#[derive(Debug, Eq, PartialEq)] | ||
#[derive(Debug, PartialEq)] | ||
pub enum MockValue { | ||
F64(f64), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. minor nit, but since the test support code now handles There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Where would be the best place to put these? I looked for example in the tracing-core/src/field.rs but most of the tests there were calling There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
I64(i64), | ||
U64(u64), | ||
Bool(bool), | ||
|
@@ -29,6 +30,8 @@ pub enum MockValue { | |
Any, | ||
} | ||
|
||
impl Eq for MockValue {} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is only correct if we ensure no There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 |
||
|
||
pub fn mock<K>(name: K) -> MockField | ||
where | ||
String: From<K>, | ||
|
@@ -120,6 +123,7 @@ impl Expect { | |
impl fmt::Display for MockValue { | ||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { | ||
match self { | ||
MockValue::F64(v) => write!(f, "f64 = {:?}", v), | ||
MockValue::I64(v) => write!(f, "i64 = {:?}", v), | ||
MockValue::U64(v) => write!(f, "u64 = {:?}", v), | ||
MockValue::Bool(v) => write!(f, "bool = {:?}", v), | ||
|
@@ -136,6 +140,11 @@ pub struct CheckVisitor<'a> { | |
} | ||
|
||
impl<'a> Visit for CheckVisitor<'a> { | ||
fn record_f64(&mut self, field: &Field, value: f64) { | ||
self.expect | ||
.compare_or_panic(field.name(), &value, &self.ctx[..]) | ||
} | ||
|
||
fn record_i64(&mut self, field: &Field, value: i64) { | ||
self.expect | ||
.compare_or_panic(field.name(), &value, &self.ctx[..]) | ||
|
@@ -180,6 +189,10 @@ impl<'a> From<&'a dyn Value> for MockValue { | |
} | ||
|
||
impl Visit for MockValueBuilder { | ||
fn record_f64(&mut self, _: &Field, value: f64) { | ||
self.value = Some(MockValue::F64(value)); | ||
} | ||
|
||
fn record_i64(&mut self, _: &Field, value: i64) { | ||
self.value = Some(MockValue::I64(value)); | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i think this should say