This repository was archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Typed chain state queries over rpc. #4059
Closed
Closed
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
951d911
Create typed client helpers for querying chain state storage items de…
bddap 79dba7f
Update substrate-rpc-custom functions to use async await syntax.
bddap d97988d
The implementation of substrate-rpc-custom was a bit verbose and repe…
bddap 250fff0
drop unused dependency
bddap 4727778
fmt
bddap 5fc0201
Remove unnecessary pub from Authorities field in test-runtime storage
bddap File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| [package] | ||
| name = "substrate-rpc-custom" | ||
| version = "0.1.0" | ||
| authors = ["Andrew Dirksen <[email protected]>"] | ||
| edition = "2018" | ||
|
|
||
| [dependencies] | ||
| srml-support = { path = "../../../srml/support" } | ||
| substrate-rpc-api = { path = "../../../core/rpc/api" } | ||
| substrate-primitives-storage = { path = "../../../core/primitives/storage" } | ||
| jsonrpc-client-transports = "14" | ||
| jsonrpc-core = "14" | ||
| parity-scale-codec = "1" | ||
| futures-preview = { version = "0.3.0-alpha.19", features = ["compat"] } | ||
| serde = "1" | ||
|
|
||
| [dev-dependencies] | ||
| srml-system = { path = "../../../srml/system" } | ||
| srml-support = { path = "../../../srml/support" } | ||
| jsonrpc-client-transports = { version = "14", features = ["http"] } | ||
| tokio = "0.1" | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,137 @@ | ||
| //! Combines [substrate_rpc_api::state::StateClient] with [srml_support::storage::generator] traits | ||
| //! to provide strongly typed chain state queries over rpc. | ||
|
|
||
| use core::marker::PhantomData; | ||
| use futures::compat::Future01CompatExt; | ||
| use jsonrpc_client_transports::RpcError; | ||
| use parity_scale_codec::{DecodeAll, FullCodec, FullEncode}; | ||
| use serde::{de::DeserializeOwned, Serialize}; | ||
| use srml_support::storage::generator::{ | ||
| StorageDoubleMap, StorageLinkedMap, StorageMap, StorageValue, | ||
| }; | ||
| use substrate_primitives_storage::{StorageData, StorageKey}; | ||
| use substrate_rpc_api::state::StateClient; | ||
|
|
||
| /// A typed query on chain state usable from an RPC client. | ||
| /// | ||
| /// ```no_run | ||
| /// # use srml_support::{decl_storage, decl_module}; | ||
| /// # use parity_scale_codec::Encode; | ||
| /// # use srml_system::Trait; | ||
| /// # use substrate_rpc_custom::StorageQuery; | ||
| /// # use substrate_rpc_api::state::StateClient; | ||
| /// # use jsonrpc_client_transports::transports::http; | ||
| /// # use jsonrpc_client_transports::RpcError; | ||
| /// # use futures::compat::Compat; | ||
| /// # use futures::future::FutureExt; | ||
| /// # use futures::compat::Future01CompatExt; | ||
| /// # | ||
| /// # // Hash would normally be <TestRuntime as srml_system::Trait>::Hash, but we don't have | ||
| /// # // srml_system::Trait implemented for TestRuntime. Here we just pretend. | ||
| /// # type Hash = (); | ||
| /// # | ||
| /// # fn main() -> Result<(), RpcError> { | ||
| /// # tokio::runtime::Runtime::new().unwrap().block_on(Compat::new(test().boxed())) | ||
| /// # } | ||
| /// # | ||
| /// # struct TestRuntime; | ||
| /// # | ||
| /// # decl_module! { | ||
| /// # pub struct Module<T: Trait> for enum Call where origin: T::Origin {} | ||
| /// # } | ||
| /// # | ||
| /// pub type Loc = (i64, i64, i64); | ||
| /// pub type Block = u8; | ||
| /// | ||
| /// // Note that all fields are marked pub. | ||
| /// decl_storage! { | ||
| /// trait Store for Module<T: Trait> as TestRuntime { | ||
| /// pub LastActionId: u64; | ||
| /// pub Voxels: map Loc => Block; | ||
| /// pub Actions: linked_map u64 => Loc; | ||
| /// pub Prefab: double_map u128, blake2_256((i8, i8, i8)) => Block; | ||
| /// } | ||
| /// } | ||
| /// | ||
| /// # async fn test() -> Result<(), RpcError> { | ||
| /// let conn = http::connect("http://[::1]:9933").compat().await?; | ||
| /// let cl = StateClient::<Hash>::new(conn); | ||
| /// | ||
| /// let q = StorageQuery::value::<LastActionId>(); | ||
| /// let _: Option<u64> = q.get(&cl, None).await?; | ||
| /// | ||
| /// let q = StorageQuery::map::<Voxels, _>((0, 0, 0)); | ||
| /// let _: Option<Block> = q.get(&cl, None).await?; | ||
| /// | ||
| /// let q = StorageQuery::linked_map::<Actions, _>(12); | ||
| /// let _: Option<Loc> = q.get(&cl, None).await?; | ||
| /// | ||
| /// let q = StorageQuery::double_map::<Prefab, _, _>(3, (0, 0, 0)); | ||
| /// let _: Option<Block> = q.get(&cl, None).await?; | ||
| /// # | ||
| /// # Ok(()) | ||
| /// # } | ||
| /// ``` | ||
| #[derive(Clone, Eq, PartialEq, Ord, PartialOrd, Hash, Debug)] | ||
| pub struct StorageQuery<V> { | ||
| key: StorageKey, | ||
| _spook: PhantomData<V>, | ||
| } | ||
|
|
||
| impl<V: FullCodec> StorageQuery<V> { | ||
| /// Create a storage query for a StorageValue. | ||
| pub fn value<St: StorageValue<V>>() -> Self { | ||
| Self { | ||
| key: StorageKey(St::storage_value_final_key().to_vec()), | ||
| _spook: PhantomData, | ||
| } | ||
| } | ||
|
|
||
| /// Create a storage query for a value in a StorageMap. | ||
| pub fn map<St: StorageMap<K, V>, K: FullEncode>(key: K) -> Self { | ||
| Self { | ||
| key: StorageKey(St::storage_map_final_key(key).as_ref().to_vec()), | ||
| _spook: PhantomData, | ||
| } | ||
| } | ||
|
|
||
| /// Create a storage query for a value in a StorageLinkedMap. | ||
| pub fn linked_map<St: StorageLinkedMap<K, V>, K: FullCodec>(key: K) -> Self { | ||
| Self { | ||
| key: StorageKey(St::storage_linked_map_final_key(key).as_ref().to_vec()), | ||
| _spook: PhantomData, | ||
| } | ||
| } | ||
|
|
||
| /// Create a storage query for a value in a StorageDoubleMap. | ||
| pub fn double_map<St: StorageDoubleMap<K1, K2, V>, K1: FullEncode, K2: FullEncode>( | ||
| key1: K1, | ||
| key2: K2, | ||
| ) -> Self { | ||
| Self { | ||
| key: StorageKey(St::storage_double_map_final_key(key1, key2)), | ||
| _spook: PhantomData, | ||
| } | ||
| } | ||
|
|
||
| /// Send this query over RPC, await the typed result. | ||
| /// | ||
| /// Hash should be <YourRuntime as srml::Trait>::Hash. | ||
| /// | ||
| /// # Arguments | ||
| /// | ||
| /// state_client represents a connection to the RPC server. | ||
| /// | ||
| /// block_index indicates the block for which state will be queried. A value of None indicates the | ||
| /// latest block. | ||
| pub async fn get<Hash: Send + Sync + 'static + DeserializeOwned + Serialize>( | ||
| self, | ||
| state_client: &StateClient<Hash>, | ||
| block_index: Option<Hash>, | ||
| ) -> Result<Option<V>, RpcError> { | ||
| let opt: Option<StorageData> = state_client.storage(self.key, block_index).compat().await?; | ||
| opt.map(|encoded| V::decode_all(&encoded.0)) | ||
| .transpose() | ||
| .map_err(|decode_err| RpcError::Other(decode_err.into())) | ||
| } | ||
| } |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should include ParityTech I suppose?