Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.

Commit f4cb21c

Browse files
frame: GenesisBuild::build allowed in no_std (#14107)
* frame: GenesisBuild::build allowed in no_std i`GenesisBuild::build` function will be required for no_std in no native runtime world. `GenesisBuild::build` macro generated function allows to build the runtime GenesisConfig assembled from all pallets' GenesisConfigs. * fixes * GenesisBuild::build avaiable in no-std - #[cfg(feature = "std")] is not longer added to GenesisBuild implementation. * system: hash69 available for no-std * elections-phragmen: panic message fixed for no_std * frame::suport: doc updated * test-runtime: default for GenesisConfig * frame::test-pallet: serde/std added to std feature deps * Cargo.toml: deps sorted * Cargo.lock update cargo update -p frame-support-test-pallet -p frame-support-test * frame ui tests: cleanup --------- Co-authored-by: parity-processbot <>
1 parent 51d06cd commit f4cb21c

File tree

12 files changed

+20
-158
lines changed

12 files changed

+20
-158
lines changed

Cargo.lock

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frame/elections-phragmen/src/lib.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -743,7 +743,10 @@ pub mod pallet {
743743
Members::<T>::mutate(|members| {
744744
match members.binary_search_by(|m| m.who.cmp(member)) {
745745
Ok(_) => {
746-
panic!("Duplicate member in elections-phragmen genesis: {}", member)
746+
panic!(
747+
"Duplicate member in elections-phragmen genesis: {:?}",
748+
member
749+
)
747750
},
748751
Err(pos) => members.insert(
749752
pos,

frame/support/procedural/src/pallet/expand/genesis_build.rs

-11
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ use crate::pallet::Def;
1919

2020
///
2121
/// * implement the trait `sp_runtime::BuildModuleGenesisStorage`
22-
/// * add #[cfg(feature = "std")] to GenesisBuild implementation.
2322
pub fn expand_genesis_build(def: &mut Def) -> proc_macro2::TokenStream {
2423
let genesis_config = if let Some(genesis_config) = &def.genesis_config {
2524
genesis_config
@@ -41,16 +40,6 @@ pub fn expand_genesis_build(def: &mut Def) -> proc_macro2::TokenStream {
4140

4241
let gen_cfg_use_gen = genesis_config.gen_kind.type_use_gen(genesis_build.attr_span);
4342

44-
let genesis_build_item =
45-
&mut def.item.content.as_mut().expect("Checked by def parser").1[genesis_build.index];
46-
47-
let genesis_build_item_impl = if let syn::Item::Impl(impl_) = genesis_build_item {
48-
impl_
49-
} else {
50-
unreachable!("Checked by genesis_build parser")
51-
};
52-
53-
genesis_build_item_impl.attrs.push(syn::parse_quote!( #[cfg(feature = "std")] ));
5443
let where_clause = &genesis_build.where_clause;
5544

5645
quote::quote_spanned!(genesis_build.attr_span =>

frame/support/src/lib.rs

+2-4
Original file line numberDiff line numberDiff line change
@@ -1522,8 +1522,6 @@ pub mod tests {
15221522

15231523
/// Prelude to be used alongside pallet macro, for ease of use.
15241524
pub mod pallet_prelude {
1525-
#[cfg(feature = "std")]
1526-
pub use crate::traits::GenesisBuild;
15271525
pub use crate::{
15281526
dispatch::{
15291527
DispatchClass, DispatchError, DispatchResult, DispatchResultWithPostInfo, Parameter,
@@ -1540,8 +1538,8 @@ pub mod pallet_prelude {
15401538
},
15411539
},
15421540
traits::{
1543-
ConstU32, EnsureOrigin, Get, GetDefault, GetStorageVersion, Hooks, IsType,
1544-
PalletInfoAccess, StorageInfoTrait, StorageVersion, TypedGet,
1541+
ConstU32, EnsureOrigin, GenesisBuild, Get, GetDefault, GetStorageVersion, Hooks,
1542+
IsType, PalletInfoAccess, StorageInfoTrait, StorageVersion, TypedGet,
15451543
},
15461544
Blake2_128, Blake2_128Concat, Blake2_256, CloneNoBound, DebugNoBound, EqNoBound, Identity,
15471545
PartialEqNoBound, RuntimeDebug, RuntimeDebugNoBound, Twox128, Twox256, Twox64Concat,

frame/support/src/traits.rs

+2-4
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,9 @@ pub use metadata::{
8080
};
8181

8282
mod hooks;
83-
#[cfg(feature = "std")]
84-
pub use hooks::GenesisBuild;
8583
pub use hooks::{
86-
Hooks, IntegrityTest, OnFinalize, OnGenesis, OnIdle, OnInitialize, OnRuntimeUpgrade,
87-
OnTimestampSet,
84+
GenesisBuild, Hooks, IntegrityTest, OnFinalize, OnGenesis, OnIdle, OnInitialize,
85+
OnRuntimeUpgrade, OnTimestampSet,
8886
};
8987

9088
pub mod schedule;

frame/support/src/traits/hooks.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -361,20 +361,21 @@ pub trait Hooks<BlockNumber> {
361361

362362
/// A trait to define the build function of a genesis config, T and I are placeholder for pallet
363363
/// trait and pallet instance.
364-
#[cfg(feature = "std")]
365364
pub trait GenesisBuild<T, I = ()>: Default + sp_runtime::traits::MaybeSerializeDeserialize {
366365
/// The build function is called within an externalities allowing storage APIs.
367366
/// Thus one can write to storage using regular pallet storages.
368367
fn build(&self);
369368

370369
/// Build the storage using `build` inside default storage.
370+
#[cfg(feature = "std")]
371371
fn build_storage(&self) -> Result<sp_runtime::Storage, String> {
372372
let mut storage = Default::default();
373373
self.assimilate_storage(&mut storage)?;
374374
Ok(storage)
375375
}
376376

377377
/// Assimilate the storage for this module into pre-existing overlays.
378+
#[cfg(feature = "std")]
378379
fn assimilate_storage(&self, storage: &mut sp_runtime::Storage) -> Result<(), String> {
379380
sp_state_machine::BasicExternalities::execute_with_storage(storage, || {
380381
self.build();

frame/support/test/Cargo.toml

+6-5
Original file line numberDiff line numberDiff line change
@@ -36,21 +36,22 @@ test-pallet = { package = "frame-support-test-pallet", default-features = false,
3636
[features]
3737
default = ["std"]
3838
std = [
39-
"serde/std",
4039
"codec/std",
41-
"scale-info/std",
4240
"frame-benchmarking/std",
4341
"frame-executive/std",
4442
"frame-support/std",
4543
"frame-system/std",
44+
"scale-info/std",
45+
"serde/std",
46+
"sp-api/std",
47+
"sp-arithmetic/std",
4648
"sp-core/std",
47-
"sp-std/std",
4849
"sp-io/std",
4950
"sp-runtime/std",
5051
"sp-state-machine",
51-
"sp-arithmetic/std",
52+
"sp-std/std",
5253
"sp-version/std",
53-
"sp-api/std",
54+
"test-pallet/std",
5455
]
5556
try-runtime = [
5657
"frame-support/try-runtime",

frame/support/test/pallet/Cargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ targets = ["x86_64-unknown-linux-gnu"]
1414
[dependencies]
1515
codec = { package = "parity-scale-codec", version = "3.2.2", default-features = false, features = ["derive"] }
1616
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
17+
serde = { version = "1.0.136", default-features = false, features = ["derive"] }
1718
frame-support = { version = "4.0.0-dev", default-features = false, path = "../../" }
1819
frame-system = { version = "4.0.0-dev", default-features = false, path = "../../../system" }
1920

@@ -24,4 +25,5 @@ std = [
2425
"frame-support/std",
2526
"frame-system/std",
2627
"scale-info/std",
28+
"serde/std",
2729
]

frame/support/test/tests/construct_runtime_ui/no_std_genesis_config.stderr

-130
This file was deleted.

frame/system/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -707,7 +707,6 @@ pub struct EventRecord<E: Parameter + Member, T> {
707707

708708
// Create a Hash with 69 for each byte,
709709
// only used to build genesis config.
710-
#[cfg(feature = "std")]
711710
fn hash69<T: AsMut<[u8]> + Default>() -> T {
712711
let mut h = T::default();
713712
h.as_mut().iter_mut().for_each(|byte| *byte = 69);

test-utils/runtime/src/substrate_test_pallet.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ pub mod pallet {
5555
pub type Authorities<T> = StorageValue<_, Vec<Public>, ValueQuery>;
5656

5757
#[pallet::genesis_config]
58-
#[cfg_attr(feature = "std", derive(Default))]
58+
#[derive(Default)]
5959
pub struct GenesisConfig {
6060
pub authorities: Vec<Public>,
6161
}

0 commit comments

Comments
 (0)