mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-19 13:25:44 +00:00
df07421904
* Fix docs urls * Update bin/node-template/README.md * Update frame/aura/src/lib.rs * Run cargo +nightly fmt Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>
113 lines
3.2 KiB
Rust
113 lines
3.2 KiB
Rust
// This file is part of Substrate.
|
|
|
|
// Copyright (C) 2020-2022 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.
|
|
|
|
mod call;
|
|
mod config;
|
|
mod constants;
|
|
mod error;
|
|
mod event;
|
|
mod genesis_build;
|
|
mod genesis_config;
|
|
mod hooks;
|
|
mod inherent;
|
|
mod instances;
|
|
mod origin;
|
|
mod pallet_struct;
|
|
mod storage;
|
|
mod store_trait;
|
|
mod tt_default_parts;
|
|
mod type_value;
|
|
mod validate_unsigned;
|
|
|
|
use crate::pallet::Def;
|
|
use frame_support_procedural_tools::get_doc_literals;
|
|
use quote::ToTokens;
|
|
|
|
/// Merge where clause together, `where` token span is taken from the first not none one.
|
|
pub fn merge_where_clauses(clauses: &[&Option<syn::WhereClause>]) -> Option<syn::WhereClause> {
|
|
let mut clauses = clauses.iter().filter_map(|f| f.as_ref());
|
|
let mut res = clauses.next()?.clone();
|
|
for other in clauses {
|
|
res.predicates.extend(other.predicates.iter().cloned())
|
|
}
|
|
Some(res)
|
|
}
|
|
|
|
/// Expand definition, in particular:
|
|
/// * add some bounds and variants to type defined,
|
|
/// * create some new types,
|
|
/// * impl stuff on them.
|
|
pub fn expand(mut def: Def) -> proc_macro2::TokenStream {
|
|
let constants = constants::expand_constants(&mut def);
|
|
let pallet_struct = pallet_struct::expand_pallet_struct(&mut def);
|
|
let config = config::expand_config(&mut def);
|
|
let call = call::expand_call(&mut def);
|
|
let error = error::expand_error(&mut def);
|
|
let event = event::expand_event(&mut def);
|
|
let storages = storage::expand_storages(&mut def);
|
|
let inherents = inherent::expand_inherents(&mut def);
|
|
let instances = instances::expand_instances(&mut def);
|
|
let store_trait = store_trait::expand_store_trait(&mut def);
|
|
let hooks = hooks::expand_hooks(&mut def);
|
|
let genesis_build = genesis_build::expand_genesis_build(&mut def);
|
|
let genesis_config = genesis_config::expand_genesis_config(&mut def);
|
|
let type_values = type_value::expand_type_values(&mut def);
|
|
let origins = origin::expand_origins(&mut def);
|
|
let validate_unsigned = validate_unsigned::expand_validate_unsigned(&mut def);
|
|
let tt_default_parts = tt_default_parts::expand_tt_default_parts(&mut def);
|
|
|
|
if get_doc_literals(&def.item.attrs).is_empty() {
|
|
def.item.attrs.push(syn::parse_quote!(
|
|
#[doc = r"
|
|
The module that hosts all the
|
|
[FRAME](https://docs.substrate.io/main-docs/build/events-errors/)
|
|
types needed to add this pallet to a
|
|
runtime.
|
|
"]
|
|
));
|
|
}
|
|
|
|
let new_items = quote::quote!(
|
|
#constants
|
|
#pallet_struct
|
|
#config
|
|
#call
|
|
#error
|
|
#event
|
|
#storages
|
|
#inherents
|
|
#instances
|
|
#store_trait
|
|
#hooks
|
|
#genesis_build
|
|
#genesis_config
|
|
#type_values
|
|
#origins
|
|
#validate_unsigned
|
|
#tt_default_parts
|
|
);
|
|
|
|
def.item
|
|
.content
|
|
.as_mut()
|
|
.expect("This is checked by parsing")
|
|
.1
|
|
.push(syn::Item::Verbatim(new_items));
|
|
|
|
def.item.into_token_stream()
|
|
}
|