mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-02 21:07:24 +00:00
59b4d6511f
* Implement PVF validation host * WIP: Diener * Increase the alloted compilation time * Add more comments * Minor clean up * Apply suggestions from code review Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Fix pruning artifact removal * Fix formatting and newlines * Fix the thread pool * Update node/core/pvf/src/executor_intf.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Remove redundant test declaration * Don't convert the path into an intermediate string * Try to workaround the test failure * Use the puppet_worker trick again * Fix a blip * Move `ensure_wasmtime_version` under the tests mod * Add a macro for puppet_workers * fix build for not real-overseer * Rename the puppet worker for adder collator * play it safe with the name of adder puppet worker * Typo: triggered * Add more comments * Do not kill exec worker on every error * Plumb Duration for timeouts * typo: critical * Add proofs * Clean unused imports * Revert "WIP: Diener" This reverts commit b9f54e513366c7a6dfdd117ac19fbdc46b900b4d. * Sync version of wasmtime * Update cargo.lock * Update Substrate * Merge fixes still * Update wasmtime version in test * bastifmt Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Squash spaces * Trailing new line for testing.rs * Remove controversial code * comment about biasing * Fix suggestion * Add comments * make it more clear why unwrap_err * tmpfile retry * proper proofs for claim_idle * Remove mutex from ValidationHost * Add some more logging * Extract exec timeout into a constant * Add some clarifying logging * Use blake2_256 * Clean up the merge Specifically the leftovers after removing real-overseer * Update parachain/test-parachains/adder/collator/Cargo.toml Co-authored-by: Andronik Ordian <write@reusable.software> Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> Co-authored-by: Andronik Ordian <write@reusable.software>
57 lines
1.8 KiB
Rust
57 lines
1.8 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 polkadot_core_primitives::Hash;
|
|
use sp_core::blake2_256;
|
|
use std::{fmt, sync::Arc};
|
|
|
|
/// A struct that carries code of a parachain validation function and it's hash.
|
|
///
|
|
/// Should be cheap to clone.
|
|
#[derive(Clone)]
|
|
pub struct Pvf {
|
|
pub(crate) code: Arc<Vec<u8>>,
|
|
pub(crate) code_hash: Hash,
|
|
}
|
|
|
|
impl fmt::Debug for Pvf {
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
write!(f, "Pvf {{ code, code_hash: {:?} }}", self.code_hash)
|
|
}
|
|
}
|
|
|
|
impl Pvf {
|
|
/// Returns an instance of the PVF out of the given PVF code.
|
|
pub fn from_code(code: Vec<u8>) -> Self {
|
|
let code = Arc::new(code);
|
|
let code_hash = blake2_256(&code).into();
|
|
Self { code, code_hash }
|
|
}
|
|
|
|
/// Creates a new pvf which artifact id can be uniquely identified by the given number.
|
|
#[cfg(test)]
|
|
pub(crate) fn from_discriminator(num: u32) -> Self {
|
|
let descriminator_buf = num.to_le_bytes().to_vec();
|
|
Pvf::from_code(descriminator_buf)
|
|
}
|
|
|
|
/// Returns the artifact ID that corresponds to this PVF.
|
|
pub(crate) fn as_artifact_id(&self) -> ArtifactId {
|
|
ArtifactId::new(self.code_hash)
|
|
}
|
|
}
|