mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-14 04:01:10 +00:00
94 lines
2.9 KiB
Rust
94 lines
2.9 KiB
Rust
// Copyright 2021 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 crate::artifacts::ArtifactId;
|
|
use parity_scale_codec::{Decode, Encode};
|
|
use polkadot_parachain::primitives::ValidationCodeHash;
|
|
use polkadot_primitives::vstaging::ExecutorParams;
|
|
use sp_core::blake2_256;
|
|
use std::{
|
|
cmp::{Eq, PartialEq},
|
|
fmt,
|
|
sync::Arc,
|
|
};
|
|
|
|
/// A struct that carries code of a parachain validation function, its hash, and a corresponding
|
|
/// set of executor parameters.
|
|
///
|
|
/// Should be cheap to clone.
|
|
#[derive(Clone, Encode, Decode)]
|
|
pub struct PvfWithExecutorParams {
|
|
pub(crate) code: Arc<Vec<u8>>,
|
|
pub(crate) code_hash: ValidationCodeHash,
|
|
pub(crate) executor_params: Arc<ExecutorParams>,
|
|
}
|
|
|
|
impl PvfWithExecutorParams {
|
|
/// Returns an instance of the PVF out of the given PVF code and executor params.
|
|
pub fn from_code(code: Vec<u8>, executor_params: ExecutorParams) -> Self {
|
|
let code = Arc::new(code);
|
|
let code_hash = blake2_256(&code).into();
|
|
let executor_params = Arc::new(executor_params);
|
|
Self { code, code_hash, executor_params }
|
|
}
|
|
|
|
/// Returns artifact ID that corresponds to the PVF with given executor params
|
|
pub(crate) fn as_artifact_id(&self) -> ArtifactId {
|
|
ArtifactId::new(self.code_hash, self.executor_params.hash())
|
|
}
|
|
|
|
/// Returns validation code hash for the PVF
|
|
pub(crate) fn code_hash(&self) -> ValidationCodeHash {
|
|
self.code_hash
|
|
}
|
|
|
|
/// Returns PVF code
|
|
pub(crate) fn code(&self) -> Arc<Vec<u8>> {
|
|
self.code.clone()
|
|
}
|
|
|
|
/// Returns executor params
|
|
pub(crate) fn executor_params(&self) -> Arc<ExecutorParams> {
|
|
self.executor_params.clone()
|
|
}
|
|
|
|
/// Creates a structure for tests
|
|
#[cfg(test)]
|
|
pub(crate) fn from_discriminator(num: u32) -> Self {
|
|
let descriminator_buf = num.to_le_bytes().to_vec();
|
|
Self::from_code(descriminator_buf, ExecutorParams::default())
|
|
}
|
|
}
|
|
|
|
impl fmt::Debug for PvfWithExecutorParams {
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
write!(
|
|
f,
|
|
"Pvf {{ code, code_hash: {:?}, executor_params: {:?} }}",
|
|
self.code_hash, self.executor_params
|
|
)
|
|
}
|
|
}
|
|
|
|
impl PartialEq for PvfWithExecutorParams {
|
|
fn eq(&self, other: &Self) -> bool {
|
|
self.code_hash == other.code_hash &&
|
|
self.executor_params.hash() == other.executor_params.hash()
|
|
}
|
|
}
|
|
|
|
impl Eq for PvfWithExecutorParams {}
|