mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 00:01:09 +00:00
fa3e274020
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
162 lines
5.0 KiB
Rust
162 lines
5.0 KiB
Rust
// Copyright (c) 2019-2022 Parity Technologies Limited
|
|
// This file is part of subxt.
|
|
//
|
|
// Permission is hereby granted, free of charge, to any
|
|
// person obtaining a copy of this software and associated
|
|
// documentation files (the "Software"), to deal in the
|
|
// Software without restriction, including without
|
|
// limitation the rights to use, copy, modify, merge,
|
|
// publish, distribute, sublicense, and/or sell copies of
|
|
// the Software, and to permit persons to whom the Software
|
|
// is furnished to do so, subject to the following
|
|
// conditions:
|
|
//
|
|
// The above copyright notice and this permission notice
|
|
// shall be included in all copies or substantial portions
|
|
// of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
|
// ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
// TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
// PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
|
// SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
// CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
// IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
// DEALINGS IN THE SOFTWARE.
|
|
|
|
use codec::Decode;
|
|
use criterion::*;
|
|
use frame_metadata::{
|
|
RuntimeMetadata::V14,
|
|
RuntimeMetadataPrefixed,
|
|
RuntimeMetadataV14,
|
|
};
|
|
use scale_info::{
|
|
form::PortableForm,
|
|
TypeDef,
|
|
TypeDefVariant,
|
|
};
|
|
use std::{
|
|
fs,
|
|
path::Path,
|
|
};
|
|
use subxt_metadata::{
|
|
get_call_hash,
|
|
get_constant_hash,
|
|
get_metadata_hash,
|
|
get_pallet_hash,
|
|
get_storage_hash,
|
|
};
|
|
|
|
fn load_metadata() -> RuntimeMetadataV14 {
|
|
let bytes = fs::read(Path::new("../artifacts/polkadot_metadata.scale"))
|
|
.expect("Cannot read metadata blob");
|
|
let meta: RuntimeMetadataPrefixed =
|
|
Decode::decode(&mut &*bytes).expect("Cannot decode scale metadata");
|
|
|
|
match meta.1 {
|
|
V14(v14) => v14,
|
|
_ => panic!("Unsupported metadata version {:?}", meta.1),
|
|
}
|
|
}
|
|
|
|
fn expect_variant(def: &TypeDef<PortableForm>) -> &TypeDefVariant<PortableForm> {
|
|
match def {
|
|
TypeDef::Variant(variant) => variant,
|
|
_ => panic!("Expected a variant type, got {def:?}"),
|
|
}
|
|
}
|
|
|
|
fn bench_get_metadata_hash(c: &mut Criterion) {
|
|
let metadata = load_metadata();
|
|
|
|
c.bench_function("get_metadata_hash", |b| {
|
|
b.iter(|| get_metadata_hash(&metadata))
|
|
});
|
|
}
|
|
|
|
fn bench_get_pallet_hash(c: &mut Criterion) {
|
|
let metadata = load_metadata();
|
|
let mut group = c.benchmark_group("get_pallet_hash");
|
|
|
|
for pallet in metadata.pallets.iter() {
|
|
let pallet_name = &pallet.name;
|
|
group.bench_function(pallet_name, |b| {
|
|
b.iter(|| get_pallet_hash(&metadata.types, pallet))
|
|
});
|
|
}
|
|
}
|
|
|
|
fn bench_get_call_hash(c: &mut Criterion) {
|
|
let metadata = load_metadata();
|
|
let mut group = c.benchmark_group("get_call_hash");
|
|
|
|
for pallet in metadata.pallets.iter() {
|
|
let pallet_name = &pallet.name;
|
|
let call_type_id = match &pallet.calls {
|
|
Some(calls) => calls.ty.id(),
|
|
None => continue,
|
|
};
|
|
let call_type = metadata.types.resolve(call_type_id).unwrap();
|
|
let variants = expect_variant(call_type.type_def());
|
|
|
|
for variant in variants.variants() {
|
|
let call_name = variant.name();
|
|
let bench_name = format!("{pallet_name}/{call_name}");
|
|
group.bench_function(&bench_name, |b| {
|
|
b.iter(|| get_call_hash(&metadata, &pallet.name, call_name))
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
fn bench_get_constant_hash(c: &mut Criterion) {
|
|
let metadata = load_metadata();
|
|
let mut group = c.benchmark_group("get_constant_hash");
|
|
|
|
for pallet in metadata.pallets.iter() {
|
|
let pallet_name = &pallet.name;
|
|
for constant in &pallet.constants {
|
|
let constant_name = &constant.name;
|
|
let bench_name = format!("{pallet_name}/{constant_name}");
|
|
group.bench_function(&bench_name, |b| {
|
|
b.iter(|| get_constant_hash(&metadata, &pallet.name, constant_name))
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
fn bench_get_storage_hash(c: &mut Criterion) {
|
|
let metadata = load_metadata();
|
|
let mut group = c.benchmark_group("get_storage_hash");
|
|
|
|
for pallet in metadata.pallets.iter() {
|
|
let pallet_name = &pallet.name;
|
|
let storage_entries = match &pallet.storage {
|
|
Some(storage) => &storage.entries,
|
|
None => continue,
|
|
};
|
|
|
|
for storage in storage_entries {
|
|
let storage_name = &storage.name;
|
|
let bench_name = format!("{pallet_name}/{storage_name}");
|
|
group.bench_function(&bench_name, |b| {
|
|
b.iter(|| get_storage_hash(&metadata, &pallet.name, storage_name))
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
criterion_group!(
|
|
name = benches;
|
|
config = Criterion::default();
|
|
targets =
|
|
bench_get_metadata_hash,
|
|
bench_get_pallet_hash,
|
|
bench_get_call_hash,
|
|
bench_get_constant_hash,
|
|
bench_get_storage_hash,
|
|
);
|
|
criterion_main!(benches);
|