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 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
use std::cmp::Ordering;
use std::ops::Deref;
/// Trait used for delegating [Ord] and [PartialOrd] in [IonData](crate::IonData).
/// Implementations of [IonOrd] must be consistent with [IonEq](crate::ion_data::IonEq).
/// Since there is no total ordering in the Ion specification, do not write any code that depends on
/// a specific order being preserved. Only depend on the fact that a total ordering does exist.
pub(crate) trait IonOrd {
// Intentionally not public—this trait is exposed via `impl Ord for IonData`.
// Called ion_cmp to avoid shadowing with Ord::cmp
fn ion_cmp(&self, other: &Self) -> Ordering;
}
impl<R: Deref> IonOrd for R
where
R::Target: IonOrd,
{
fn ion_cmp(&self, other: &Self) -> Ordering {
R::Target::ion_cmp(self, other)
}
}
impl<T: IonOrd> IonOrd for [T] {
fn ion_cmp(&self, other: &Self) -> Ordering {
let mut i0 = self.iter();
let mut i1 = other.iter();
loop {
match [i0.next(), i1.next()] {
[None, Some(_)] => return Ordering::Less,
[None, None] => return Ordering::Equal,
[Some(_), None] => return Ordering::Greater,
[Some(a), Some(b)] => {
let ord = a.ion_cmp(b);
if ord != Ordering::Equal {
return ord;
}
}
}
}
}
}
/// Checks Ion ordering for [`f64`].
///
/// We cannot implement [`IonOrd`] directly on [`f64`]. If [`IonOrd`] is implemented directly on
/// [`f64`], then _any_ blanket impl of [`IonOrd`] for a standard library trait will cause
/// `error[E0119]: conflicting implementations of trait` because [`f64`] is an external type (and
/// "upstream crates may add a new impl of trait `std::ops::Deref` for type `f64` in future versions").
pub(crate) fn ion_cmp_f64(this: &f64, that: &f64) -> Ordering {
this.total_cmp(that)
}
/// Checks Ion ordering for [`bool`].
///
/// See docs for [`ion_cmp_f64`] for general rationale. Even though the implementation is trivial,
/// this function exists to help convey the intention of using Ion equivalence at the call site.
pub(crate) fn ion_cmp_bool(this: &bool, that: &bool) -> Ordering {
this.cmp(that)
}
#[cfg(test)]
mod ord_tests {
use super::*;
use crate::element::{List, Sequence};
use crate::{Element, IonData};
use rstest::*;
#[rstest]
#[case::ion_type_is_first_precedence(
r#" null true 1 2e1 3d1 2023-01-02T Symbol "String" {{"Clob"}} {{ Blob }} [] () {} "#
)]
#[case::annotations_are_sorted("A $0::A bar::A foo::A foo::$0::A foo::bar::A")]
#[case::annotations_have_lower_precedence_than_type("foo::bar::null foo::true 3")]
#[case::annotations_have_higher_precedence_than_value("3 foo::2 foo::bar::1")]
#[case::nulls(
r"
null.null
null.bool
null.int
null.float
null.decimal
null.timestamp
null.symbol
null.string
null.clob
null.blob
null.list
null.sexp
null.struct
"
)]
#[case::bools("null.bool false true")]
#[case::ints("null.int -1 0 1")]
#[case::floats("null.float -inf -1e0 -0e0 0e0 1e0 +inf nan")]
#[case::decimals(
r"
null.decimal
-10.0
-1.0
-1.00
-0.0
-0.00
0.0
0.00
0.001
0.0010
1.0
1.00
10.00
1d3
10d2
100d1
1000d0
"
)]
#[case::timestamps_sorted_by_point_in_time_and_precision(
r"
null.timestamp
2020T
2020-01T
2020-01-01T
2020-01-01T00:00Z
2020-01-01T00:00:00Z
2020-01-01T00:00:00.000Z
2020-01-01T00:00:00.000000Z
2020-01-01T00:00:00.001Z
2020-01-01T00:00:00.001000Z
2020-01-01T00:00:01Z
2020-01-01T00:01Z
2020-01-02T
2020-02T
2021T
"
)]
#[case::timestamps_sorted_by_offset(
r"
2020-01-01T06:00:00-00:00
2020-01-01T05:00:00-01:00
2020-01-01T06:00:00+00:00
2020-01-01T07:00:00+01:00
2020-01-01T06:00:00.000-00:00
2020-01-01T05:00:00.000-01:00
2020-01-01T06:00:00.000+00:00
2020-01-01T07:00:00.000+01:00
"
)]
#[case::symbols(
r"
null.symbol
$0
''
'a'
'aa'
'aaa'
'ab'
'aba'
"
)]
#[case::strings(
r#"
null.string
""
"a"
"aa"
"aaa"
"ab"
"aba"
"#
)]
#[case::clobs(
r#"
null.clob
{{ "" }}
{{ "a" }}
{{ "aa" }}
{{ "aaa" }}
{{ "ab" }}
{{ "aba" }}
"#
)]
#[case::blobs(
r#"
null.blob
{{ }}
{{ AA== }} // 0x00
{{ AAA= }} // 0x00 0x00
{{ AAAA }} // 0x00 0x00 0x00
{{ AAE= }} // 0x00 0x01
{{ AAEA }} // 0x00 0x01 0x00
{{ AQ== }} // 0x01
{{ AQE= }} // 0x01 0x01
"#
)]
#[case::lists(
r"
null.list
[]
[a]
[a, a]
[a, a, a]
[a, b]
[a, b, a]
"
)]
#[case::sexps(
r"
null.sexp
()
(a)
(a a)
(a a a)
(a b)
(a b a)
"
)]
#[case::structs(
r"
null.struct
{}
{ $0: A }
{ $0: A, $0: A }
{ $0: A, $0: B }
{ a: A }
{ a: A, a: A }
{ a: A, b: A, a: A }
{ a: A, a: B }
{ a: A, b: A, a: B }
{ a: A, b: A }
{ a: B, b: A }
"
)]
fn test_order(#[case] ion: &str) {
let original = Element::read_all(ion)
.unwrap()
.into_iter()
.map(IonData::from)
.collect::<Vec<_>>();
let mut copy = original.clone();
copy.sort();
// Prints using display (i.e. as Ion text)
println!(
"original: {}",
List::from(Sequence::new(
original.iter().cloned().map(IonData::into_inner)
))
);
println!(
"copy: {}",
List::from(Sequence::new(copy.iter().cloned().map(IonData::into_inner)))
);
// Prints using debug
assert_eq!(original, copy);
let mut original_iter = original.iter();
let mut previous_element = original_iter.next().unwrap();
for element in original_iter {
if element == previous_element {
assert_eq!(Ordering::Equal, element.cmp(previous_element));
} else {
assert_eq!(
Ordering::Greater,
element.cmp(previous_element),
"\nLess: {previous_element:?}\n More: {element:?}"
);
assert_eq!(
Ordering::Less,
previous_element.cmp(element),
"\nLess: {previous_element:?}\n More: {element:?}"
)
}
previous_element = element;
}
}
}