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
//! Common implementation help for [`PartialOrd`] and [`Ord`].

use proc_macro2::TokenStream;
use quote::quote;

use crate::{Data, DeriveTrait, Item};

/// Build signature for [`PartialOrd`] and [`Ord`].
pub fn build_ord_signature(item: &Item, trait_: &DeriveTrait, body: &TokenStream) -> TokenStream {
	use DeriveTrait::*;

	let mut equal = quote! { ::core::cmp::Ordering::Equal };

	// Add `Option` to `Ordering` if we are implementing `PartialOrd`.
	if let PartialOrd = trait_ {
		equal = quote! { ::core::option::Option::Some(#equal) };
	}

	match item {
		// If there is more than one variant, check for the discriminant.
		Item::Enum { variants, .. } if variants.len() > 1 => {
			// If all variants are empty, return `Equal`.
			let body = if item.is_empty(trait_) {
				quote! { #equal }
			}
			// Compare variant data and return `Equal` in the rest pattern if there are any empty
			// variants.
			else if variants.iter().any(|variant| variant.is_empty(trait_)) {
				quote! {
					match (self, __other) {
						#body
						_ => #equal,
					}
				}
			}
			// Insert `unreachable!` in the rest pattern if no variants are empty.
			else {
				#[cfg(not(feature = "safe"))]
				// This follows the standard implementation.
				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,
					}
				}
			};

			// Nightly or unsafe (default) implementation.
			#[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`"),
				};

				// Nightly implementation.
				#[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)
					}
				}
				// Unsafe (default) implementation.
				#[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) },
						)
					}
				}
			}
			// Safe implementation when not on nightly.
			#[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 };

				// Add `Option` to `Ordering` if we are implementing `PartialOrd`.
				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());

				// Build separate `match` arms to compare different variants to each
				// other. The index for these variants is used to determine which
				// `Ordering` to return.
				for (index, variant) in variants.iter().enumerate() {
					let pattern = &variant.self_pattern();

					// The first variant is always `Less` then everything.
					if index == 0 {
						different.push(quote! {
							#pattern => #less,
						})
					}
					// The last variant is always `Greater` then everything.
					else if index == variants.len() - 1 {
						different.push(quote! {
							#pattern => #greater,
						})
					}
					// Any variant between the first and last.
					else {
						// Collect all variants that are `Less`.
						let cases = variants
							.iter()
							.enumerate()
							.filter(|(index_other, _)| *index_other < index)
							.map(|(_, variant_other)| variant_other.other_pattern_skip().clone())
							.collect();

						// Build one match arm pattern with all variants that are `Greater`.
						let pattern_less = PatOr {
							attrs: Vec::new(),
							leading_vert: None,
							cases,
						};

						// All other variants are `Less`.
						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)*
						}
					}
				}
			}
		}
		// If there is only one variant and it's empty or if the struct is empty, simple
		// return `Equal`.
		item if item.is_empty(trait_) => {
			quote! { #equal }
		}
		_ => {
			quote! {
				match (self, __other) {
					#body
				}
			}
		}
	}
}

/// Build `match` arms for [`PartialOrd`] and [`Ord`].
pub fn build_ord_body(trait_: &DeriveTrait, data: &Data) -> TokenStream {
	use DeriveTrait::*;

	let path = trait_.path();
	let mut equal = quote! { ::core::cmp::Ordering::Equal };

	// Add `Option` to `Ordering` if we are implementing `PartialOrd`.
	let method = match trait_ {
		PartialOrd => {
			equal = quote! { ::core::option::Option::Some(#equal) };
			quote! { partial_cmp }
		}
		Ord => quote! { cmp },
		_ => unreachable!("unsupported trait in `build_ord`"),
	};

	// The match arm starts with `Ordering::Equal`. This will become the
	// whole `match` arm if no fields are present.
	let mut body = quote! { #equal };

	// Builds `match` arms backwards, using the `match` arm of the field coming
	// afterwards. `rev` has to be called twice separately because it can't be
	// called on `zip`
	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
}