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
use proc_macro2::TokenStream;
use quote::quote;
use crate::{Data, DeriveTrait, Item};
pub fn build_ord_signature(item: &Item, trait_: &DeriveTrait, body: &TokenStream) -> TokenStream {
use DeriveTrait::*;
let mut equal = quote! { ::core::cmp::Ordering::Equal };
if let PartialOrd = trait_ {
equal = quote! { ::core::option::Option::Some(#equal) };
}
match item {
Item::Enum { variants, .. } if variants.len() > 1 => {
let body = if item.is_empty(trait_) {
quote! { #equal }
}
else if variants.iter().any(|variant| variant.is_empty(trait_)) {
quote! {
match (self, __other) {
#body
_ => #equal,
}
}
}
else {
#[cfg(not(feature = "safe"))]
let rest = quote! { unsafe { ::core::hint::unreachable_unchecked() } };
#[cfg(feature = "safe")]
let rest = quote! { ::core::unreachable!("comparing variants yielded unexpected results") };
quote! {
match (self, __other) {
#body
_ => #rest,
}
}
};
#[cfg(any(feature = "nightly", not(feature = "safe")))]
{
let path = trait_.path();
let method = match trait_ {
PartialOrd => quote! { partial_cmp },
Ord => quote! { cmp },
_ => unreachable!("unsupported trait in `prepare_ord`"),
};
#[cfg(feature = "nightly")]
quote! {
let __self_disc = ::core::intrinsics::discriminant_value(self);
let __other_disc = ::core::intrinsics::discriminant_value(__other);
if __self_disc == __other_disc {
#body
} else {
#path::#method(&__self_disc, &__other_disc)
}
}
#[cfg(not(feature = "nightly"))]
quote! {
let __self_disc = ::core::mem::discriminant(self);
let __other_disc = ::core::mem::discriminant(__other);
if __self_disc == __other_disc {
#body
} else {
#path::#method(
&unsafe { ::core::mem::transmute::<_, isize>(__self_disc) },
&unsafe { ::core::mem::transmute::<_, isize>(__other_disc) },
)
}
}
}
#[cfg(all(not(feature = "nightly"), feature = "safe"))]
{
use syn::PatOr;
let mut less = quote! { ::core::cmp::Ordering::Less };
let mut greater = quote! { ::core::cmp::Ordering::Greater };
if let PartialOrd = trait_ {
less = quote! { ::core::option::Option::Some(#less) };
greater = quote! { ::core::option::Option::Some(#greater) };
}
let mut different = Vec::with_capacity(variants.len());
for (index, variant) in variants.iter().enumerate() {
let pattern = &variant.self_pattern();
if index == 0 {
different.push(quote! {
#pattern => #less,
})
}
else if index == variants.len() - 1 {
different.push(quote! {
#pattern => #greater,
})
}
else {
let cases = variants
.iter()
.enumerate()
.filter(|(index_other, _)| *index_other < index)
.map(|(_, variant_other)| variant_other.other_pattern_skip().clone())
.collect();
let pattern_less = PatOr {
attrs: Vec::new(),
leading_vert: None,
cases,
};
different.push(quote! {
#pattern => match __other {
#pattern_less => #greater,
_ => #less,
},
});
}
}
quote! {
let __self_disc = ::core::mem::discriminant(self);
let __other_disc = ::core::mem::discriminant(__other);
if __self_disc == __other_disc {
#body
} else {
match self {
#(#different)*
}
}
}
}
}
item if item.is_empty(trait_) => {
quote! { #equal }
}
_ => {
quote! {
match (self, __other) {
#body
}
}
}
}
}
pub fn build_ord_body(trait_: &DeriveTrait, data: &Data) -> TokenStream {
use DeriveTrait::*;
let path = trait_.path();
let mut equal = quote! { ::core::cmp::Ordering::Equal };
let method = match trait_ {
PartialOrd => {
equal = quote! { ::core::option::Option::Some(#equal) };
quote! { partial_cmp }
}
Ord => quote! { cmp },
_ => unreachable!("unsupported trait in `build_ord`"),
};
let mut body = quote! { #equal };
for (field_temp, field_other) in data
.iter_self_ident(trait_)
.rev()
.zip(data.iter_other_ident(trait_).rev())
{
body = quote! {
match #path::#method(#field_temp, #field_other) {
#equal => #body,
__cmp => __cmp,
}
};
}
body
}