1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
mod ion_eq;
mod ion_ord;

use std::cmp::Ordering;
use std::fmt::{Display, Formatter};
use std::ops::Deref;

pub(crate) use ion_eq::{ion_eq_bool, ion_eq_f64, IonEq};
pub(crate) use ion_ord::{ion_cmp_bool, ion_cmp_f64, IonOrd};

/// A wrapper for lifting Ion compatible data into using Ion-oriented comparisons (versus the Rust
/// value semantics). This enables the default semantics to be what a Rust user expects for native
/// values, but allows a user to opt-in to Ion's structural equivalence/order.
///
/// Equivalence with respect to Ion values means that if two Ion values, `X` and `Y`, are equivalent,
/// they represent the same data and can be substituted for the other without loss of information.
///
/// Some types, such as [`Element`](crate::Element) and [`Value`](crate::element::Value) cannot be
/// used as the key of a map because they adhere to Rust value semantics—these types cannot implement
/// [`Eq`] because they include `NaN` as a possible value.
///
/// For use cases that are concerned with preserving the original Ion data, it is necessary to use
/// Ion value equivalence. Many common use cases, such as writing unit tests for code that produces
/// Ion, can be handled with [`IonData::eq()`].
///
/// For other use cases, such as using Ion data as the key of a map or passing Ion data to an
/// algorithm that depends on [`Eq`], you can lift values using [`IonData::from()`].
///
/// Generally, anything that is treated as Ion data (e.g., [`Element`](crate::Element) and
/// [`Value`](crate::element::Value)), can be converted to [`IonData`].
///
/// [`Hash`] and [`Ord`] are not guaranteed to be implemented for all [`IonData`], but when they are,
/// they are required to be consistent with Ion structural equality (and [`Eq`]).
///
/// __WARNING__—The Ion specification does _not_ define a total ordering over all Ion values. Do
/// not depend on getting any particular result from [Ord]. Use it only as an opaque total ordering
/// over all [IonData]. _The algorithm used for [Ord] may change between versions._
#[derive(Debug, Clone)]
pub struct IonData<T>(T);

impl<T: IonEq> IonData<T> {
    /// Checks if two values are equal according to Ion's structural equivalence.
    pub fn eq<R: Deref<Target = T>>(a: R, b: R) -> bool {
        T::ion_eq(a.deref(), b.deref())
    }

    /// Unwraps the value.
    pub fn into_inner(self) -> T {
        self.0
    }
}

impl<T: IonEq> PartialEq for IonData<T> {
    fn eq(&self, other: &Self) -> bool {
        self.0.ion_eq(&other.0)
    }
}

impl<T: IonEq> Eq for IonData<T> {}

impl<T: IonEq> From<T> for IonData<T> {
    fn from(value: T) -> Self {
        IonData(value)
    }
}

impl<T: IonEq> AsRef<T> for IonData<T> {
    fn as_ref(&self) -> &T {
        &self.0
    }
}

impl<T: Display> Display for IonData<T> {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        Display::fmt(&self.0, f)
    }
}

impl<T: IonEq + IonOrd> PartialOrd for IonData<T> {
    fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
        Some(IonOrd::ion_cmp(&self.0, &other.0))
    }
}

impl<T: IonEq + IonOrd> Ord for IonData<T> {
    fn cmp(&self, other: &Self) -> Ordering {
        IonOrd::ion_cmp(&self.0, &other.0)
    }
}

#[cfg(test)]
mod tests {
    use crate::ion_data::{IonEq, IonOrd};
    use crate::{Element, IonData, Symbol};
    use rstest::*;
    use std::boxed::Box;
    use std::fmt::Debug;
    use std::pin::Pin;
    use std::rc::Rc;
    use std::sync::Arc;

    /// These tests exist primarily to ensure that we don't break any trait implementations
    /// needed to make this all work.
    #[rstest]
    #[case::value(|s| Element::read_one(s).unwrap().value().clone().into())]
    #[case::symbol(|s| Symbol::from(s).into())]
    #[case::element(|s| Element::read_one(s).unwrap().into() )]
    #[case::rc_element(|s| Rc::new(Element::read_one(s).unwrap()).into() )]
    #[case::vec_element(|s| Element::read_all(s).unwrap().into() )]
    #[case::rc_vec_element(|s| Rc::new(Element::read_all(s).unwrap()).into() )]
    #[case::box_pin_rc_vec_box_arc_element(|s| Box::new(Pin::new(Rc::new(vec![Box::new(Arc::new(Element::read_one(s).unwrap()))]))).into() )]
    fn can_wrap_data<T: IonEq + IonOrd + Debug>(
        #[case] the_fn: impl Fn(&'static str) -> IonData<T>,
    ) {
        let id1: IonData<_> = the_fn("nan");
        let id2: IonData<_> = the_fn("nan");
        assert_eq!(id1, id2);

        let id1: IonData<_> = the_fn("1.00");
        let id2: IonData<_> = the_fn("1.0");
        assert_ne!(id1, id2); // Checks `Eq`
        assert!(id1 > id2); // Checks `Ord`
    }
}