-
Notifications
You must be signed in to change notification settings - Fork 800
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add hooks for utility batch #6517
base: master
Are you sure you want to change the base?
Changes from all commits
ce484ba
1cfce6c
e804ec5
187fb9e
0ad2f2b
7e2c42c
9b62779
755753e
9182ec8
dc6e5f7
be3c07f
ec40a07
2ac1fab
a1ae1e0
6db7778
d3dd6fe
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||
---|---|---|---|---|
@@ -1,4 +1,4 @@ | ||||
FROM docker.io/parity/base-bin | ||||
FROM ubuntu:22.04 | ||||
|
||||
# metadata | ||||
ARG VCS_REF | ||||
|
@@ -22,6 +22,8 @@ ENV RUST_BACKTRACE 1 | |||
USER root | ||||
WORKDIR /app | ||||
|
||||
RUN useradd -ms /bin/sh parity | ||||
|
||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What is this? |
||||
# add polkadot and polkadot-*-worker binaries to the docker image | ||||
Comment on lines
+25
to
+26
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||
COPY bin/* /usr/local/bin/ | ||||
COPY entrypoint.sh . | ||||
|
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -39,6 +39,10 @@ | |||||||||||||||||||||||||||||||||||||||||||
//! Since proxy filters are respected in all dispatches of this pallet, it should never need to be | ||||||||||||||||||||||||||||||||||||||||||||
//! filtered by any proxy. | ||||||||||||||||||||||||||||||||||||||||||||
//! | ||||||||||||||||||||||||||||||||||||||||||||
//! Pre- and post-hooks can be configured via `BatchHook` associated type. | ||||||||||||||||||||||||||||||||||||||||||||
//! They are triggered for each batch call: `batch`, `batch_all`, and `force_batch`. | ||||||||||||||||||||||||||||||||||||||||||||
//! Use the unit type `()` if no behavior is required. | ||||||||||||||||||||||||||||||||||||||||||||
//! | ||||||||||||||||||||||||||||||||||||||||||||
//! ## Interface | ||||||||||||||||||||||||||||||||||||||||||||
//! | ||||||||||||||||||||||||||||||||||||||||||||
//! ### Dispatchable Functions | ||||||||||||||||||||||||||||||||||||||||||||
|
@@ -68,9 +72,30 @@ use sp_core::TypeId; | |||||||||||||||||||||||||||||||||||||||||||
use sp_io::hashing::blake2_256; | ||||||||||||||||||||||||||||||||||||||||||||
use sp_runtime::traits::{BadOrigin, Dispatchable, TrailingZeroInput}; | ||||||||||||||||||||||||||||||||||||||||||||
pub use weights::WeightInfo; | ||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
pub use pallet::*; | ||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
/// Hooks that will be called for `batch` calls. | ||||||||||||||||||||||||||||||||||||||||||||
#[impl_trait_for_tuples::impl_for_tuples(30)] | ||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||
pub trait BatchHook { | ||||||||||||||||||||||||||||||||||||||||||||
/// Will be called before a batch is executed. | ||||||||||||||||||||||||||||||||||||||||||||
fn on_batch_start() -> sp_runtime::DispatchResult; | ||||||||||||||||||||||||||||||||||||||||||||
/// Will be called after the batch was executed. | ||||||||||||||||||||||||||||||||||||||||||||
/// | ||||||||||||||||||||||||||||||||||||||||||||
/// Depending on the exact batch call used, it may not be called when a batch item failed. | ||||||||||||||||||||||||||||||||||||||||||||
fn on_batch_end() -> sp_runtime::DispatchResult; | ||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
impl BatchHook for () { | ||||||||||||||||||||||||||||||||||||||||||||
fn on_batch_start() -> sp_runtime::DispatchResult { | ||||||||||||||||||||||||||||||||||||||||||||
Ok(()) | ||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
fn on_batch_end() -> sp_runtime::DispatchResult { | ||||||||||||||||||||||||||||||||||||||||||||
Ok(()) | ||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+88
to
+97
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
#[frame_support::pallet] | ||||||||||||||||||||||||||||||||||||||||||||
pub mod pallet { | ||||||||||||||||||||||||||||||||||||||||||||
use super::*; | ||||||||||||||||||||||||||||||||||||||||||||
|
@@ -100,6 +125,9 @@ pub mod pallet { | |||||||||||||||||||||||||||||||||||||||||||
Into<<Self as frame_system::Config>::RuntimeOrigin> + | ||||||||||||||||||||||||||||||||||||||||||||
IsType<<<Self as frame_system::Config>::RuntimeOrigin as frame_support::traits::OriginTrait>::PalletsOrigin>; | ||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
/// Hook to be called before any batch operation. | ||||||||||||||||||||||||||||||||||||||||||||
type BatchHook: BatchHook; | ||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
/// Weight information for extrinsics in this pallet. | ||||||||||||||||||||||||||||||||||||||||||||
type WeightInfo: WeightInfo; | ||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||
|
@@ -196,6 +224,8 @@ pub mod pallet { | |||||||||||||||||||||||||||||||||||||||||||
return Err(BadOrigin.into()) | ||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
T::BatchHook::on_batch_start()?; | ||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
let is_root = ensure_root(origin.clone()).is_ok(); | ||||||||||||||||||||||||||||||||||||||||||||
let calls_len = calls.len(); | ||||||||||||||||||||||||||||||||||||||||||||
ensure!(calls_len <= Self::batched_calls_limit() as usize, Error::<T>::TooManyCalls); | ||||||||||||||||||||||||||||||||||||||||||||
|
@@ -225,6 +255,9 @@ pub mod pallet { | |||||||||||||||||||||||||||||||||||||||||||
Self::deposit_event(Event::ItemCompleted); | ||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||
Self::deposit_event(Event::BatchCompleted); | ||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
T::BatchHook::on_batch_end()?; | ||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
let base_weight = T::WeightInfo::batch(calls_len as u32); | ||||||||||||||||||||||||||||||||||||||||||||
Ok(Some(base_weight.saturating_add(weight)).into()) | ||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||
|
@@ -305,6 +338,8 @@ pub mod pallet { | |||||||||||||||||||||||||||||||||||||||||||
return Err(BadOrigin.into()) | ||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
T::BatchHook::on_batch_start()?; | ||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
let is_root = ensure_root(origin.clone()).is_ok(); | ||||||||||||||||||||||||||||||||||||||||||||
let calls_len = calls.len(); | ||||||||||||||||||||||||||||||||||||||||||||
ensure!(calls_len <= Self::batched_calls_limit() as usize, Error::<T>::TooManyCalls); | ||||||||||||||||||||||||||||||||||||||||||||
|
@@ -339,6 +374,9 @@ pub mod pallet { | |||||||||||||||||||||||||||||||||||||||||||
Self::deposit_event(Event::ItemCompleted); | ||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||
Self::deposit_event(Event::BatchCompleted); | ||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
T::BatchHook::on_batch_end()?; | ||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
let base_weight = T::WeightInfo::batch_all(calls_len as u32); | ||||||||||||||||||||||||||||||||||||||||||||
Ok(Some(base_weight.saturating_add(weight)).into()) | ||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||
|
@@ -401,6 +439,8 @@ pub mod pallet { | |||||||||||||||||||||||||||||||||||||||||||
return Err(BadOrigin.into()) | ||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
T::BatchHook::on_batch_start()?; | ||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
let is_root = ensure_root(origin.clone()).is_ok(); | ||||||||||||||||||||||||||||||||||||||||||||
let calls_len = calls.len(); | ||||||||||||||||||||||||||||||||||||||||||||
ensure!(calls_len <= Self::batched_calls_limit() as usize, Error::<T>::TooManyCalls); | ||||||||||||||||||||||||||||||||||||||||||||
|
@@ -431,6 +471,9 @@ pub mod pallet { | |||||||||||||||||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||||||||||||||||||
Self::deposit_event(Event::BatchCompleted); | ||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
T::BatchHook::on_batch_end()?; | ||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
let base_weight = T::WeightInfo::batch(calls_len as u32); | ||||||||||||||||||||||||||||||||||||||||||||
Ok(Some(base_weight.saturating_add(weight)).into()) | ||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||
|
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.