feat: Rebrand Polkadot/Substrate references to PezkuwiChain
This commit systematically rebrands various references from Parity Technologies' Polkadot/Substrate ecosystem to PezkuwiChain within the kurdistan-sdk. Key changes include: - Updated external repository URLs (zombienet-sdk, parity-db, parity-scale-codec, wasm-instrument) to point to pezkuwichain forks. - Modified internal documentation and code comments to reflect PezkuwiChain naming and structure. - Replaced direct references to with or specific paths within the for XCM, Pezkuwi, and other modules. - Cleaned up deprecated issue and PR references in various and files, particularly in and modules. - Adjusted image and logo URLs in documentation to point to PezkuwiChain assets. - Removed or rephrased comments related to external Polkadot/Substrate PRs and issues. This is a significant step towards fully customizing the SDK for the PezkuwiChain ecosystem.
This commit is contained in:
@@ -0,0 +1,461 @@
|
||||
// This file is part of Bizinikiwi.
|
||||
|
||||
// Copyright (C) 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.
|
||||
|
||||
//! Basic implementation for Externalities.
|
||||
|
||||
use crate::{Backend, OverlayedChanges, StorageKey, StorageValue};
|
||||
use alloc::{boxed::Box, collections::BTreeMap, vec::Vec};
|
||||
use codec::Encode;
|
||||
use core::{
|
||||
any::{Any, TypeId},
|
||||
iter::FromIterator,
|
||||
};
|
||||
use hash_db::Hasher;
|
||||
use log::warn;
|
||||
use pezsp_core::{
|
||||
storage::{
|
||||
well_known_keys::is_child_storage_key, ChildInfo, StateVersion, Storage, TrackedStorageKey,
|
||||
},
|
||||
traits::Externalities,
|
||||
Blake2Hasher,
|
||||
};
|
||||
use pezsp_externalities::{Extension, Extensions, MultiRemovalResults};
|
||||
use pezsp_trie::{empty_child_trie_root, LayoutV0, LayoutV1, TrieConfiguration};
|
||||
|
||||
/// Simple Map-based Externalities impl.
|
||||
#[derive(Debug)]
|
||||
pub struct BasicExternalities {
|
||||
overlay: OverlayedChanges<Blake2Hasher>,
|
||||
extensions: Extensions,
|
||||
}
|
||||
|
||||
impl BasicExternalities {
|
||||
/// Create a new instance of `BasicExternalities`
|
||||
pub fn new(inner: Storage) -> Self {
|
||||
BasicExternalities { overlay: inner.into(), extensions: Default::default() }
|
||||
}
|
||||
|
||||
/// New basic externalities with empty storage.
|
||||
pub fn new_empty() -> Self {
|
||||
Self::new(Storage::default())
|
||||
}
|
||||
|
||||
/// Insert key/value
|
||||
pub fn insert(&mut self, k: StorageKey, v: StorageValue) {
|
||||
self.overlay.set_storage(k, Some(v));
|
||||
}
|
||||
|
||||
/// Consume self and returns inner storages
|
||||
#[cfg(feature = "std")]
|
||||
pub fn into_storages(mut self) -> Storage {
|
||||
Storage {
|
||||
top: self
|
||||
.overlay
|
||||
.changes_mut()
|
||||
.filter_map(|(k, v)| v.value().map(|v| (k.to_vec(), v.to_vec())))
|
||||
.collect(),
|
||||
children_default: self
|
||||
.overlay
|
||||
.children_mut()
|
||||
.map(|(iter, i)| {
|
||||
(
|
||||
i.storage_key().to_vec(),
|
||||
pezsp_core::storage::StorageChild {
|
||||
data: iter
|
||||
.filter_map(|(k, v)| v.value().map(|v| (k.to_vec(), v.to_vec())))
|
||||
.collect(),
|
||||
child_info: i.clone(),
|
||||
},
|
||||
)
|
||||
})
|
||||
.collect(),
|
||||
}
|
||||
}
|
||||
|
||||
/// Execute the given closure `f` with the externalities set and initialized with `storage`.
|
||||
///
|
||||
/// Returns the result of the closure and updates `storage` with all changes.
|
||||
#[cfg(feature = "std")]
|
||||
pub fn execute_with_storage<R>(
|
||||
storage: &mut pezsp_core::storage::Storage,
|
||||
f: impl FnOnce() -> R,
|
||||
) -> R {
|
||||
let mut ext = Self::new(core::mem::take(storage));
|
||||
|
||||
let r = ext.execute_with(f);
|
||||
|
||||
*storage = ext.into_storages();
|
||||
|
||||
r
|
||||
}
|
||||
|
||||
/// Execute the given closure while `self` is set as externalities.
|
||||
///
|
||||
/// Returns the result of the given closure.
|
||||
pub fn execute_with<R>(&mut self, f: impl FnOnce() -> R) -> R {
|
||||
pezsp_externalities::set_and_run_with_externalities(self, f)
|
||||
}
|
||||
|
||||
/// List of active extensions.
|
||||
pub fn extensions(&mut self) -> &mut Extensions {
|
||||
&mut self.extensions
|
||||
}
|
||||
|
||||
/// Register an extension.
|
||||
pub fn register_extension(&mut self, ext: impl Extension) {
|
||||
self.extensions.register(ext);
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
impl PartialEq for BasicExternalities {
|
||||
fn eq(&self, other: &Self) -> bool {
|
||||
self.overlay
|
||||
.changes()
|
||||
.map(|(k, v)| (k, v.value_ref().materialize()))
|
||||
.collect::<BTreeMap<_, _>>() ==
|
||||
other
|
||||
.overlay
|
||||
.changes()
|
||||
.map(|(k, v)| (k, v.value_ref().materialize()))
|
||||
.collect::<BTreeMap<_, _>>() &&
|
||||
self.overlay
|
||||
.children()
|
||||
.map(|(iter, i)| {
|
||||
(
|
||||
i,
|
||||
iter.map(|(k, v)| (k, v.value_ref().materialize()))
|
||||
.collect::<BTreeMap<_, _>>(),
|
||||
)
|
||||
})
|
||||
.collect::<BTreeMap<_, _>>() ==
|
||||
other
|
||||
.overlay
|
||||
.children()
|
||||
.map(|(iter, i)| {
|
||||
(
|
||||
i,
|
||||
iter.map(|(k, v)| (k, v.value_ref().materialize()))
|
||||
.collect::<BTreeMap<_, _>>(),
|
||||
)
|
||||
})
|
||||
.collect::<BTreeMap<_, _>>()
|
||||
}
|
||||
}
|
||||
|
||||
impl FromIterator<(StorageKey, StorageValue)> for BasicExternalities {
|
||||
fn from_iter<I: IntoIterator<Item = (StorageKey, StorageValue)>>(iter: I) -> Self {
|
||||
let mut t = Self::default();
|
||||
iter.into_iter().for_each(|(k, v)| t.insert(k, v));
|
||||
t
|
||||
}
|
||||
}
|
||||
|
||||
impl Default for BasicExternalities {
|
||||
fn default() -> Self {
|
||||
Self::new(Default::default())
|
||||
}
|
||||
}
|
||||
|
||||
impl From<BTreeMap<StorageKey, StorageValue>> for BasicExternalities {
|
||||
fn from(map: BTreeMap<StorageKey, StorageValue>) -> Self {
|
||||
Self::from_iter(map.into_iter())
|
||||
}
|
||||
}
|
||||
|
||||
impl Externalities for BasicExternalities {
|
||||
fn set_offchain_storage(&mut self, _key: &[u8], _value: Option<&[u8]>) {}
|
||||
|
||||
fn storage(&mut self, key: &[u8]) -> Option<StorageValue> {
|
||||
self.overlay.storage(key).and_then(|v| v.map(|v| v.to_vec()))
|
||||
}
|
||||
|
||||
fn storage_hash(&mut self, key: &[u8]) -> Option<Vec<u8>> {
|
||||
self.storage(key).map(|v| Blake2Hasher::hash(&v).encode())
|
||||
}
|
||||
|
||||
fn child_storage(&mut self, child_info: &ChildInfo, key: &[u8]) -> Option<StorageValue> {
|
||||
self.overlay.child_storage(child_info, key).and_then(|v| v.map(|v| v.to_vec()))
|
||||
}
|
||||
|
||||
fn child_storage_hash(&mut self, child_info: &ChildInfo, key: &[u8]) -> Option<Vec<u8>> {
|
||||
self.child_storage(child_info, key).map(|v| Blake2Hasher::hash(&v).encode())
|
||||
}
|
||||
|
||||
fn next_storage_key(&mut self, key: &[u8]) -> Option<StorageKey> {
|
||||
self.overlay.iter_after(key).find_map(|(k, v)| v.value().map(|_| k.to_vec()))
|
||||
}
|
||||
|
||||
fn next_child_storage_key(&mut self, child_info: &ChildInfo, key: &[u8]) -> Option<StorageKey> {
|
||||
self.overlay
|
||||
.child_iter_after(child_info.storage_key(), key)
|
||||
.find_map(|(k, v)| v.value().map(|_| k.to_vec()))
|
||||
}
|
||||
|
||||
fn place_storage(&mut self, key: StorageKey, maybe_value: Option<StorageValue>) {
|
||||
if is_child_storage_key(&key) {
|
||||
warn!(target: "trie", "Refuse to set child storage key via main storage");
|
||||
return;
|
||||
}
|
||||
|
||||
self.overlay.set_storage(key, maybe_value)
|
||||
}
|
||||
|
||||
fn place_child_storage(
|
||||
&mut self,
|
||||
child_info: &ChildInfo,
|
||||
key: StorageKey,
|
||||
value: Option<StorageValue>,
|
||||
) {
|
||||
self.overlay.set_child_storage(child_info, key, value);
|
||||
}
|
||||
|
||||
fn kill_child_storage(
|
||||
&mut self,
|
||||
child_info: &ChildInfo,
|
||||
_maybe_limit: Option<u32>,
|
||||
_maybe_cursor: Option<&[u8]>,
|
||||
) -> MultiRemovalResults {
|
||||
let count = self.overlay.clear_child_storage(child_info);
|
||||
MultiRemovalResults { maybe_cursor: None, backend: count, unique: count, loops: count }
|
||||
}
|
||||
|
||||
fn clear_prefix(
|
||||
&mut self,
|
||||
prefix: &[u8],
|
||||
_maybe_limit: Option<u32>,
|
||||
_maybe_cursor: Option<&[u8]>,
|
||||
) -> MultiRemovalResults {
|
||||
if is_child_storage_key(prefix) {
|
||||
warn!(
|
||||
target: "trie",
|
||||
"Refuse to clear prefix that is part of child storage key via main storage"
|
||||
);
|
||||
let maybe_cursor = Some(prefix.to_vec());
|
||||
return MultiRemovalResults { maybe_cursor, backend: 0, unique: 0, loops: 0 };
|
||||
}
|
||||
|
||||
let count = self.overlay.clear_prefix(prefix);
|
||||
MultiRemovalResults { maybe_cursor: None, backend: count, unique: count, loops: count }
|
||||
}
|
||||
|
||||
fn clear_child_prefix(
|
||||
&mut self,
|
||||
child_info: &ChildInfo,
|
||||
prefix: &[u8],
|
||||
_maybe_limit: Option<u32>,
|
||||
_maybe_cursor: Option<&[u8]>,
|
||||
) -> MultiRemovalResults {
|
||||
let count = self.overlay.clear_child_prefix(child_info, prefix);
|
||||
MultiRemovalResults { maybe_cursor: None, backend: count, unique: count, loops: count }
|
||||
}
|
||||
|
||||
fn storage_append(&mut self, key: Vec<u8>, element: Vec<u8>) {
|
||||
self.overlay.append_storage(key, element, Default::default);
|
||||
}
|
||||
|
||||
fn storage_root(&mut self, state_version: StateVersion) -> Vec<u8> {
|
||||
let mut top = self
|
||||
.overlay
|
||||
.changes_mut()
|
||||
.filter_map(|(k, v)| v.value().map(|v| (k.clone(), v.clone())))
|
||||
.collect::<BTreeMap<_, _>>();
|
||||
// Single child trie implementation currently allows using the same child
|
||||
// empty root for all child trie. Using null storage key until multiple
|
||||
// type of child trie support.
|
||||
let empty_hash = empty_child_trie_root::<LayoutV1<Blake2Hasher>>();
|
||||
for child_info in self.overlay.children().map(|d| d.1.clone()).collect::<Vec<_>>() {
|
||||
let child_root = self.child_storage_root(&child_info, state_version);
|
||||
if empty_hash[..] == child_root[..] {
|
||||
top.remove(child_info.prefixed_storage_key().as_slice());
|
||||
} else {
|
||||
top.insert(child_info.prefixed_storage_key().into_inner(), child_root);
|
||||
}
|
||||
}
|
||||
|
||||
match state_version {
|
||||
StateVersion::V0 => LayoutV0::<Blake2Hasher>::trie_root(top).as_ref().into(),
|
||||
StateVersion::V1 => LayoutV1::<Blake2Hasher>::trie_root(top).as_ref().into(),
|
||||
}
|
||||
}
|
||||
|
||||
fn child_storage_root(
|
||||
&mut self,
|
||||
child_info: &ChildInfo,
|
||||
state_version: StateVersion,
|
||||
) -> Vec<u8> {
|
||||
if let Some((data, child_info)) = self.overlay.child_changes_mut(child_info.storage_key()) {
|
||||
let delta =
|
||||
data.into_iter().map(|(k, v)| (k.as_ref(), v.value().map(|v| v.as_slice())));
|
||||
crate::in_memory_backend::new_in_mem::<Blake2Hasher>()
|
||||
.child_storage_root(&child_info, delta, state_version)
|
||||
.0
|
||||
} else {
|
||||
empty_child_trie_root::<LayoutV1<Blake2Hasher>>()
|
||||
}
|
||||
.encode()
|
||||
}
|
||||
|
||||
fn storage_start_transaction(&mut self) {
|
||||
self.overlay.start_transaction()
|
||||
}
|
||||
|
||||
fn storage_rollback_transaction(&mut self) -> Result<(), ()> {
|
||||
self.overlay.rollback_transaction().map_err(drop)
|
||||
}
|
||||
|
||||
fn storage_commit_transaction(&mut self) -> Result<(), ()> {
|
||||
self.overlay.commit_transaction().map_err(drop)
|
||||
}
|
||||
|
||||
fn wipe(&mut self) {}
|
||||
|
||||
fn commit(&mut self) {}
|
||||
|
||||
fn read_write_count(&self) -> (u32, u32, u32, u32) {
|
||||
unimplemented!("read_write_count is not supported in Basic")
|
||||
}
|
||||
|
||||
fn reset_read_write_count(&mut self) {
|
||||
unimplemented!("reset_read_write_count is not supported in Basic")
|
||||
}
|
||||
|
||||
fn get_whitelist(&self) -> Vec<TrackedStorageKey> {
|
||||
unimplemented!("get_whitelist is not supported in Basic")
|
||||
}
|
||||
|
||||
fn set_whitelist(&mut self, _: Vec<TrackedStorageKey>) {
|
||||
unimplemented!("set_whitelist is not supported in Basic")
|
||||
}
|
||||
|
||||
fn get_read_and_written_keys(&self) -> Vec<(Vec<u8>, u32, u32, bool)> {
|
||||
unimplemented!("get_read_and_written_keys is not supported in Basic")
|
||||
}
|
||||
}
|
||||
|
||||
impl pezsp_externalities::ExtensionStore for BasicExternalities {
|
||||
fn extension_by_type_id(&mut self, type_id: TypeId) -> Option<&mut dyn Any> {
|
||||
self.extensions.get_mut(type_id)
|
||||
}
|
||||
|
||||
fn register_extension_with_type_id(
|
||||
&mut self,
|
||||
type_id: TypeId,
|
||||
extension: Box<dyn pezsp_externalities::Extension>,
|
||||
) -> Result<(), pezsp_externalities::Error> {
|
||||
self.extensions.register_with_type_id(type_id, extension)
|
||||
}
|
||||
|
||||
fn deregister_extension_by_type_id(
|
||||
&mut self,
|
||||
type_id: TypeId,
|
||||
) -> Result<(), pezsp_externalities::Error> {
|
||||
if self.extensions.deregister(type_id) {
|
||||
Ok(())
|
||||
} else {
|
||||
Err(pezsp_externalities::Error::ExtensionIsNotRegistered(type_id))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::*;
|
||||
use pezsp_core::{
|
||||
map,
|
||||
storage::{well_known_keys::CODE, Storage, StorageChild},
|
||||
};
|
||||
|
||||
#[test]
|
||||
fn commit_should_work() {
|
||||
let mut ext = BasicExternalities::default();
|
||||
ext.set_storage(b"doe".to_vec(), b"reindeer".to_vec());
|
||||
ext.set_storage(b"dog".to_vec(), b"puppy".to_vec());
|
||||
ext.set_storage(b"dogglesworth".to_vec(), b"cat".to_vec());
|
||||
let root = array_bytes::hex2bytes_unchecked(
|
||||
"39245109cef3758c2eed2ccba8d9b370a917850af3824bc8348d505df2c298fa",
|
||||
);
|
||||
|
||||
assert_eq!(&ext.storage_root(StateVersion::default())[..], &root);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn set_and_retrieve_code() {
|
||||
let mut ext = BasicExternalities::default();
|
||||
|
||||
let code = vec![1, 2, 3];
|
||||
ext.set_storage(CODE.to_vec(), code.clone());
|
||||
|
||||
assert_eq!(&ext.storage(CODE).unwrap(), &code);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn children_works() {
|
||||
let child_info = ChildInfo::new_default(b"storage_key");
|
||||
let child_info = &child_info;
|
||||
let mut ext = BasicExternalities::new(Storage {
|
||||
top: Default::default(),
|
||||
children_default: map![
|
||||
child_info.storage_key().to_vec() => StorageChild {
|
||||
data: map![ b"doe".to_vec() => b"reindeer".to_vec() ],
|
||||
child_info: child_info.to_owned(),
|
||||
}
|
||||
],
|
||||
});
|
||||
|
||||
assert_eq!(ext.child_storage(child_info, b"doe"), Some(b"reindeer".to_vec()));
|
||||
|
||||
ext.set_child_storage(child_info, b"dog".to_vec(), b"puppy".to_vec());
|
||||
assert_eq!(ext.child_storage(child_info, b"dog"), Some(b"puppy".to_vec()));
|
||||
|
||||
ext.clear_child_storage(child_info, b"dog");
|
||||
assert_eq!(ext.child_storage(child_info, b"dog"), None);
|
||||
|
||||
let _ = ext.kill_child_storage(child_info, None, None);
|
||||
assert_eq!(ext.child_storage(child_info, b"doe"), None);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn kill_child_storage_returns_num_elements_removed() {
|
||||
let child_info = ChildInfo::new_default(b"storage_key");
|
||||
let child_info = &child_info;
|
||||
let mut ext = BasicExternalities::new(Storage {
|
||||
top: Default::default(),
|
||||
children_default: map![
|
||||
child_info.storage_key().to_vec() => StorageChild {
|
||||
data: map![
|
||||
b"doe".to_vec() => b"reindeer".to_vec(),
|
||||
b"dog".to_vec() => b"puppy".to_vec(),
|
||||
b"hello".to_vec() => b"world".to_vec(),
|
||||
],
|
||||
child_info: child_info.to_owned(),
|
||||
}
|
||||
],
|
||||
});
|
||||
|
||||
let res = ext.kill_child_storage(child_info, None, None);
|
||||
assert_eq!(res.deconstruct(), (None, 3, 3, 3));
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn basic_externalities_is_empty() {
|
||||
// Make sure no values are set by default in `BasicExternalities`.
|
||||
let storage = BasicExternalities::new_empty().into_storages();
|
||||
assert!(storage.top.is_empty());
|
||||
assert!(storage.children_default.is_empty());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user