-
Notifications
You must be signed in to change notification settings - Fork 700
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add
(Partial)OrdNoBound
derive macros (#2256)
This PR is related to [this](#154) issue. The idea is to add `OrdNoBound` and `PartialOrdNoBound` macros to the substrate `*NoBound` macros. closes #2198 ✄ ----------------------------------------------------------------------------- Thank you for your Pull Request! 🙏 Please make sure it follows the contribution guidelines outlined in [this document](https://github.com/paritytech/polkadot-sdk/blob/master/docs/CONTRIBUTING.md) and fill out the sections below. Once you're ready to submit your PR for review, please delete this section and leave only the text under the "Description" heading. # Description *Please include a summary of the changes and the related issue. Please also include relevant motivation and context, including:* - What does this PR do? - Why are these changes needed? - How were these changes implemented and what do they affect? *Use [Github semantic linking](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword) to address any open issues this PR relates to or closes.* Fixes # (issue number, *if applicable*) Closes # (issue number, *if applicable*) # Checklist - [ ] My PR includes a detailed description as outlined in the "Description" section above - [ ] My PR follows the [labeling requirements](CONTRIBUTING.md#Process) of this project (at minimum one label for `T` required) - [ ] I have made corresponding changes to the documentation (if applicable) - [ ] I have added tests that prove my fix is effective or that my feature works (if applicable) You can remove the "Checklist" section once all have been checked. Thank you for your contribution! ✄ ----------------------------------------------------------------------------- --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Co-authored-by: command-bot <>
- Loading branch information
Showing
13 changed files
with
412 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,4 +20,6 @@ | |
pub mod clone; | ||
pub mod debug; | ||
pub mod default; | ||
pub mod ord; | ||
pub mod partial_eq; | ||
pub mod partial_ord; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
// This file is part of Substrate. | ||
|
||
// Copyright (C) Parity Technologies (UK) Ltd. | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
use syn::spanned::Spanned; | ||
|
||
/// Derive Ord but do not bound any generic. | ||
pub fn derive_ord_no_bound(input: proc_macro::TokenStream) -> proc_macro::TokenStream { | ||
let input: syn::DeriveInput = match syn::parse(input) { | ||
Ok(input) => input, | ||
Err(e) => return e.to_compile_error().into(), | ||
}; | ||
|
||
let name = &input.ident; | ||
let (impl_generics, ty_generics, where_clause) = input.generics.split_for_impl(); | ||
|
||
let impl_ = match input.data { | ||
syn::Data::Struct(struct_) => match struct_.fields { | ||
syn::Fields::Named(named) => { | ||
let fields = named | ||
.named | ||
.iter() | ||
.map(|i| &i.ident) | ||
.map(|i| quote::quote_spanned!(i.span() => self.#i.cmp(&other.#i) )); | ||
|
||
quote::quote!( core::cmp::Ordering::Equal #( .then_with(|| #fields) )* ) | ||
}, | ||
syn::Fields::Unnamed(unnamed) => { | ||
let fields = unnamed | ||
.unnamed | ||
.iter() | ||
.enumerate() | ||
.map(|(i, _)| syn::Index::from(i)) | ||
.map(|i| quote::quote_spanned!(i.span() => self.#i.cmp(&other.#i) )); | ||
|
||
quote::quote!( core::cmp::Ordering::Equal #( .then_with(|| #fields) )* ) | ||
}, | ||
syn::Fields::Unit => { | ||
quote::quote!(core::cmp::Ordering::Equal) | ||
}, | ||
}, | ||
syn::Data::Enum(_) => { | ||
let msg = "Enum type not supported by `derive(OrdNoBound)`"; | ||
return syn::Error::new(input.span(), msg).to_compile_error().into() | ||
}, | ||
syn::Data::Union(_) => { | ||
let msg = "Union type not supported by `derive(OrdNoBound)`"; | ||
return syn::Error::new(input.span(), msg).to_compile_error().into() | ||
}, | ||
}; | ||
|
||
quote::quote!( | ||
const _: () = { | ||
impl #impl_generics core::cmp::Ord for #name #ty_generics #where_clause { | ||
fn cmp(&self, other: &Self) -> core::cmp::Ordering { | ||
#impl_ | ||
} | ||
} | ||
}; | ||
) | ||
.into() | ||
} |
89 changes: 89 additions & 0 deletions
89
substrate/frame/support/procedural/src/no_bound/partial_ord.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
// This file is part of Substrate. | ||
|
||
// Copyright (C) Parity Technologies (UK) Ltd. | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
use syn::spanned::Spanned; | ||
|
||
/// Derive PartialOrd but do not bound any generic. | ||
pub fn derive_partial_ord_no_bound(input: proc_macro::TokenStream) -> proc_macro::TokenStream { | ||
let input: syn::DeriveInput = match syn::parse(input) { | ||
Ok(input) => input, | ||
Err(e) => return e.to_compile_error().into(), | ||
}; | ||
|
||
let name = &input.ident; | ||
let (impl_generics, ty_generics, where_clause) = input.generics.split_for_impl(); | ||
|
||
let impl_ = match input.data { | ||
syn::Data::Struct(struct_) => | ||
match struct_.fields { | ||
syn::Fields::Named(named) => { | ||
let fields = | ||
named.named.iter().map(|i| &i.ident).map( | ||
|i| quote::quote_spanned!(i.span() => self.#i.partial_cmp(&other.#i)), | ||
); | ||
|
||
quote::quote!( | ||
Some(core::cmp::Ordering::Equal) | ||
#( | ||
.and_then(|order| { | ||
let next_order = #fields?; | ||
Some(order.then(next_order)) | ||
}) | ||
)* | ||
) | ||
}, | ||
syn::Fields::Unnamed(unnamed) => { | ||
let fields = | ||
unnamed.unnamed.iter().enumerate().map(|(i, _)| syn::Index::from(i)).map( | ||
|i| quote::quote_spanned!(i.span() => self.#i.partial_cmp(&other.#i)), | ||
); | ||
|
||
quote::quote!( | ||
Some(core::cmp::Ordering::Equal) | ||
#( | ||
.and_then(|order| { | ||
let next_order = #fields?; | ||
Some(order.then(next_order)) | ||
}) | ||
)* | ||
) | ||
}, | ||
syn::Fields::Unit => { | ||
quote::quote!(Some(core::cmp::Ordering::Equal)) | ||
}, | ||
}, | ||
syn::Data::Enum(_) => { | ||
let msg = "Enum type not supported by `derive(PartialOrdNoBound)`"; | ||
return syn::Error::new(input.span(), msg).to_compile_error().into() | ||
}, | ||
syn::Data::Union(_) => { | ||
let msg = "Union type not supported by `derive(PartialOrdNoBound)`"; | ||
return syn::Error::new(input.span(), msg).to_compile_error().into() | ||
}, | ||
}; | ||
|
||
quote::quote!( | ||
const _: () = { | ||
impl #impl_generics core::cmp::PartialOrd for #name #ty_generics #where_clause { | ||
fn partial_cmp(&self, other: &Self) -> Option<core::cmp::Ordering> { | ||
#impl_ | ||
} | ||
} | ||
}; | ||
) | ||
.into() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.