mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 19:51:02 +00:00
64660ee8d2
* Happy New Year! * Remove year entierly Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Remove years from copyright notice in the entire repo --------- Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
130 lines
4.4 KiB
Rust
130 lines
4.4 KiB
Rust
// Copyright (C) Parity Technologies (UK) Ltd.
|
|
// This file is part of Polkadot.
|
|
|
|
// Polkadot 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.
|
|
|
|
// Polkadot 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 Polkadot. If not, see <http://www.gnu.org/licenses/>.
|
|
use super::{
|
|
BackedCandidate, Config, DisputeStatementSet, UncheckedSignedAvailabilityBitfield, Weight,
|
|
};
|
|
|
|
pub trait WeightInfo {
|
|
/// Variant over `v`, the count of dispute statements in a dispute statement set. This gives the
|
|
/// weight of a single dispute statement set.
|
|
fn enter_variable_disputes(v: u32) -> Weight;
|
|
/// The weight of one bitfield.
|
|
fn enter_bitfields() -> Weight;
|
|
/// Variant over `v`, the count of validity votes for a backed candidate. This gives the weight
|
|
/// of a single backed candidate.
|
|
fn enter_backed_candidates_variable(v: u32) -> Weight;
|
|
/// The weight of a single backed candidate with a code upgrade.
|
|
fn enter_backed_candidate_code_upgrade() -> Weight;
|
|
}
|
|
|
|
pub struct TestWeightInfo;
|
|
// `WeightInfo` impl for unit and integration tests. Based off of the `max_block` weight for the
|
|
// mock.
|
|
#[cfg(not(feature = "runtime-benchmarks"))]
|
|
impl WeightInfo for TestWeightInfo {
|
|
fn enter_variable_disputes(v: u32) -> Weight {
|
|
// MAX Block Weight should fit 4 disputes
|
|
Weight::from_parts(80_000 * v as u64 + 80_000, 0)
|
|
}
|
|
fn enter_bitfields() -> Weight {
|
|
// MAX Block Weight should fit 4 backed candidates
|
|
Weight::from_parts(40_000u64, 0)
|
|
}
|
|
fn enter_backed_candidates_variable(v: u32) -> Weight {
|
|
// MAX Block Weight should fit 4 backed candidates
|
|
Weight::from_parts(40_000 * v as u64 + 40_000, 0)
|
|
}
|
|
fn enter_backed_candidate_code_upgrade() -> Weight {
|
|
Weight::zero()
|
|
}
|
|
}
|
|
// To simplify benchmarks running as tests, we set all the weights to 0. `enter` will exit early
|
|
// when if the data causes it to be over weight, but we don't want that to block a benchmark from
|
|
// running as a test.
|
|
#[cfg(feature = "runtime-benchmarks")]
|
|
impl WeightInfo for TestWeightInfo {
|
|
fn enter_variable_disputes(_v: u32) -> Weight {
|
|
Weight::zero()
|
|
}
|
|
fn enter_bitfields() -> Weight {
|
|
Weight::zero()
|
|
}
|
|
fn enter_backed_candidates_variable(_v: u32) -> Weight {
|
|
Weight::zero()
|
|
}
|
|
fn enter_backed_candidate_code_upgrade() -> Weight {
|
|
Weight::zero()
|
|
}
|
|
}
|
|
|
|
pub fn paras_inherent_total_weight<T: Config>(
|
|
backed_candidates: &[BackedCandidate<<T as frame_system::Config>::Hash>],
|
|
bitfields: &[UncheckedSignedAvailabilityBitfield],
|
|
disputes: &[DisputeStatementSet],
|
|
) -> Weight {
|
|
backed_candidates_weight::<T>(backed_candidates)
|
|
.saturating_add(signed_bitfields_weight::<T>(bitfields.len()))
|
|
.saturating_add(multi_dispute_statement_sets_weight::<T, _, _>(disputes))
|
|
}
|
|
|
|
pub fn dispute_statement_set_weight<T: Config, S: AsRef<DisputeStatementSet>>(
|
|
statement_set: S,
|
|
) -> Weight {
|
|
<<T as Config>::WeightInfo as WeightInfo>::enter_variable_disputes(
|
|
statement_set.as_ref().statements.len() as u32,
|
|
)
|
|
}
|
|
|
|
pub fn multi_dispute_statement_sets_weight<
|
|
T: Config,
|
|
D: AsRef<[S]>,
|
|
S: AsRef<DisputeStatementSet>,
|
|
>(
|
|
disputes: D,
|
|
) -> Weight {
|
|
disputes
|
|
.as_ref()
|
|
.iter()
|
|
.map(|d| dispute_statement_set_weight::<T, &S>(d))
|
|
.fold(Weight::zero(), |acc_weight, weight| acc_weight.saturating_add(weight))
|
|
}
|
|
|
|
pub fn signed_bitfields_weight<T: Config>(bitfields_len: usize) -> Weight {
|
|
<<T as Config>::WeightInfo as WeightInfo>::enter_bitfields()
|
|
.saturating_mul(bitfields_len as u64)
|
|
}
|
|
|
|
pub fn backed_candidate_weight<T: frame_system::Config + Config>(
|
|
candidate: &BackedCandidate<T::Hash>,
|
|
) -> Weight {
|
|
if candidate.candidate.commitments.new_validation_code.is_some() {
|
|
<<T as Config>::WeightInfo as WeightInfo>::enter_backed_candidate_code_upgrade()
|
|
} else {
|
|
<<T as Config>::WeightInfo as WeightInfo>::enter_backed_candidates_variable(
|
|
candidate.validity_votes.len() as u32,
|
|
)
|
|
}
|
|
}
|
|
|
|
pub fn backed_candidates_weight<T: frame_system::Config + Config>(
|
|
candidates: &[BackedCandidate<T::Hash>],
|
|
) -> Weight {
|
|
candidates
|
|
.iter()
|
|
.map(|c| backed_candidate_weight::<T>(c))
|
|
.fold(Weight::zero(), |acc, x| acc.saturating_add(x))
|
|
}
|