mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-27 04:41:07 +00:00
9e2710246f
* Refactor decl_storage a bit to allow easier impl of linked map. * A bunch of refactorings for storage generation. - Rename StorageMap and ChildrenStorageMap to avoid confusion with generator::StorageMap. - Separate implementation from the procedural macro code to clean it up. - Make sure that genesis is initialised using the `StorageValue/StorageMap` generated implementations instead of going RAW. * WiP: Writing test. * Basic implementation. * Implement enumeration. * Fix non-std issues. * fix warning * Fix test-client. * Address review grumbles - part 1 * Avoid cloning the key, relax Storage requirements. * Rebuild runtime. * Remove dangling todo.
65 lines
2.2 KiB
Rust
65 lines
2.2 KiB
Rust
// Copyright 2017-2018 Parity Technologies (UK) Ltd.
|
|
// This file is part of Substrate.
|
|
|
|
// Substrate is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// Substrate is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Substrate. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
// tag::description[]
|
|
//! Proc macro of Support code for the runtime.
|
|
// end::description[]
|
|
|
|
#![recursion_limit="256"]
|
|
|
|
extern crate proc_macro;
|
|
|
|
mod storage;
|
|
|
|
use proc_macro::TokenStream;
|
|
|
|
/// Declares strongly-typed wrappers around codec-compatible types in storage.
|
|
///
|
|
/// ## Example
|
|
///
|
|
/// ```nocompile
|
|
/// decl_storage! {
|
|
/// trait Store for Module<T: Trait> as Example {
|
|
/// Dummy get(dummy) config(): Option<T::Balance>;
|
|
/// Foo get(foo) config(): T::Balance;
|
|
/// }
|
|
/// }
|
|
/// ```
|
|
///
|
|
/// For now we implement a convenience trait with pre-specialised associated types, one for each
|
|
/// storage item. This allows you to gain access to publicly visible storage items from a
|
|
/// module type. Currently you must disambiguate by using `<Module as Store>::Item` rather than
|
|
/// the simpler `Module::Item`. Hopefully the rust guys with fix this soon.
|
|
///
|
|
/// An optional `GenesisConfig` struct for storage initialization can be defined, either specifically as in :
|
|
/// ```nocompile
|
|
/// decl_storage! {
|
|
/// trait Store for Module<T: Trait> as Example {
|
|
/// }
|
|
/// add_extra_genesis {
|
|
/// config(genesis_field): GenesisFieldType;
|
|
/// build(|_: &mut StorageOverlay, _: &mut ChildrenStorageOverlay, _: &GenesisConfig<T>| {
|
|
/// })
|
|
/// }
|
|
/// }
|
|
/// ```
|
|
/// or when at least one storage field requires default initialization (both `get` and `config` or `build`).
|
|
/// This struct can be expose as `Config` by `decl_runtime` macro.
|
|
#[proc_macro]
|
|
pub fn decl_storage(input: TokenStream) -> TokenStream {
|
|
storage::transformation::decl_storage_impl(input)
|
|
}
|