1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
// Copyright (C) Use Ink (UK) Ltd.
//
// 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.
//! This module contains the implementation for the event topic logic.
use crate::Environment;
/// The concrete implementation that is guided by the topics builder.
///
/// To be implemented by the on-chain and off-chain environments respectively.
#[doc(hidden)]
pub trait TopicsBuilderBackend<E>
where
E: Environment,
{
/// The type of the serialized event topics.
type Output;
/// Initialized the backend with the expected number of event topics.
fn expect(&mut self, expected_topics: usize);
/// Pushes another topic for serialization to the backend.
fn push_topic<T>(&mut self, topic_value: &T)
where
T: scale::Encode;
/// Extracts the serialized topics.
fn output(self) -> Self::Output;
}
/// Builder for event topic serialization.
///
/// Abstraction to build up event topic serialization with zero-overhead,
/// no heap-memory allocations and no dynamic dispatch.
#[doc(hidden)]
pub struct TopicsBuilder<S, E, B> {
backend: B,
state: core::marker::PhantomData<fn() -> (S, E)>,
}
impl<E, B> From<B> for TopicsBuilder<state::Uninit, E, B>
where
E: Environment,
B: TopicsBuilderBackend<E>,
{
fn from(backend: B) -> Self {
Self {
backend,
state: Default::default(),
}
}
}
#[doc(hidden)]
pub mod state {
/// The topic builder is uninitialized and needs to be provided with the
/// expected number of topics that need to be constructed.
pub enum Uninit {}
/// There are some remaining topics that need to be provided with some values.
pub enum HasRemainingTopics {}
/// There are no more remaining topics and the topic builder shall be finalized.
pub enum NoRemainingTopics {}
}
impl<E, B> TopicsBuilder<state::Uninit, E, B>
where
E: Environment,
B: TopicsBuilderBackend<E>,
{
/// Initializes the topics builder and informs it about how many topics it must expect
/// to serialize.
///
/// The number of expected topics is given implicitly by the `E` type parameter.
pub fn build<Evt: Event>(
mut self,
) -> TopicsBuilder<<Evt as Event>::RemainingTopics, E, B> {
self.backend
.expect(<<Evt as Event>::RemainingTopics as EventTopicsAmount>::AMOUNT);
TopicsBuilder {
backend: self.backend,
state: Default::default(),
}
}
}
impl<E, S, B> TopicsBuilder<S, E, B>
where
E: Environment,
S: SomeRemainingTopics,
B: TopicsBuilderBackend<E>,
{
/// Pushes another event topic to be serialized through the topics builder.
///
/// Returns a topics builder that expects one less event topic for serialization
/// than before the call.
pub fn push_topic<T>(
mut self,
value: Option<&T>,
) -> TopicsBuilder<<S as SomeRemainingTopics>::Next, E, B>
where
T: scale::Encode,
{
// Only publish the topic if it is not an `Option::None`.
if let Some(topic) = value {
self.backend.push_topic::<T>(topic);
} else {
self.backend.push_topic::<u8>(&0u8);
}
TopicsBuilder {
backend: self.backend,
state: Default::default(),
}
}
}
impl<E, B> TopicsBuilder<state::NoRemainingTopics, E, B>
where
E: Environment,
B: TopicsBuilderBackend<E>,
{
/// Finalizes the topics builder.
///
/// No more event topics can be serialized afterwards, but the environment will be
/// able to extract the information collected by the topics builder in order to
/// emit the serialized event.
pub fn finish(self) -> <B as TopicsBuilderBackend<E>>::Output
where
B: TopicsBuilderBackend<E>,
{
self.backend.output()
}
}
/// Indicates that there are some remaining topics left for expected serialization.
#[doc(hidden)]
pub trait SomeRemainingTopics {
/// The type state indicating the amount of the remaining topics afterwards.
///
/// Basically trivial sequence of: `N => N - 1` unless `N <= 1`
type Next;
}
/// Indicates the actual amount of expected event topics.
#[doc(hidden)]
pub trait EventTopicsAmount {
/// The actual amount of remaining topics.
const AMOUNT: usize;
}
macro_rules! impl_some_remaining_for {
( $( $n:literal ),* $(,)? ) => {
$(
impl SomeRemainingTopics for [state::HasRemainingTopics; $n] {
type Next = [state::HasRemainingTopics; $n - 1];
}
impl EventTopicsAmount for [state::HasRemainingTopics; $n] {
const AMOUNT: usize = $n;
}
)*
};
}
#[rustfmt::skip]
impl_some_remaining_for!(
2, 3, 4, 5, 6, 7, 8, 9,
10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
20, 21, 22, 23, 24, 25, 26, 27, 28, 29,
30, 31, 32,
);
impl SomeRemainingTopics for [state::HasRemainingTopics; 1] {
type Next = state::NoRemainingTopics;
}
impl EventTopicsAmount for [state::HasRemainingTopics; 1] {
const AMOUNT: usize = 1;
}
impl EventTopicsAmount for state::NoRemainingTopics {
const AMOUNT: usize = 0;
}
/// Implemented by event types to guide the event topic serialization using the topics
/// builder.
///
/// Normally this trait should be implemented automatically via `#[derive(ink::Event)`.
pub trait Event: scale::Encode {
/// Type state indicating how many event topics are to be expected by the topics
/// builder.
type RemainingTopics: EventTopicsAmount;
/// The unique signature topic of the event. `None` for anonymous events.
///
/// It can be automatically calculated or manually specified.
///
/// Usually this is calculated using the `#[derive(ink::Event)]` derive, which by
/// default calculates this as `blake2b("Event(field1_type,field2_type)"`
const SIGNATURE_TOPIC: core::option::Option<[u8; 32]>;
/// Guides event topic serialization using the given topics builder.
fn topics<E, B>(
&self,
builder: TopicsBuilder<state::Uninit, E, B>,
) -> <B as TopicsBuilderBackend<E>>::Output
where
E: Environment,
B: TopicsBuilderBackend<E>;
}