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
use core::fmt::Debug;
#[cfg(doc)]
use crate::{contracttype, Bytes, BytesN, Map};
use crate::{
env::internal::{self},
unwrap::UnwrapInfallible,
ConversionError, Env, IntoVal, RawVal, TryFromVal, Vec,
};
const TOPIC_BYTES_LENGTH_LIMIT: u32 = 32;
#[derive(Clone)]
pub struct Events(Env);
impl Debug for Events {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "Events")
}
}
pub trait Topics: IntoVal<Env, Vec<RawVal>> {}
impl TryFromVal<Env, ()> for Vec<RawVal> {
type Error = ConversionError;
fn try_from_val(env: &Env, _v: &()) -> Result<Self, Self::Error> {
Ok(Vec::<RawVal>::new(env))
}
}
macro_rules! impl_topics_for_tuple {
( $($typ:ident $idx:tt)* ) => {
impl<$($typ),*> Topics for ($($typ,)*)
where
$($typ: IntoVal<Env, RawVal>),*
{
}
};
}
impl Topics for () {}
impl_topics_for_tuple! { T0 0 }
impl_topics_for_tuple! { T0 0 T1 1 }
impl_topics_for_tuple! { T0 0 T1 1 T2 2 }
impl_topics_for_tuple! { T0 0 T1 1 T2 2 T3 3 }
impl Events {
#[inline(always)]
pub(crate) fn env(&self) -> &Env {
&self.0
}
#[inline(always)]
pub(crate) fn new(env: &Env) -> Events {
Events(env.clone())
}
#[inline(always)]
pub fn publish<T, D>(&self, topics: T, data: D)
where
T: Topics,
D: IntoVal<Env, RawVal>,
{
let env = self.env();
internal::Env::contract_event(env, topics.into_val(env).to_object(), data.into_val(env))
.unwrap_infallible();
}
}
#[cfg(any(test, feature = "testutils"))]
use crate::{testutils, xdr, TryIntoVal};
#[cfg(any(test, feature = "testutils"))]
#[cfg_attr(feature = "docs", doc(cfg(feature = "testutils")))]
impl testutils::Events for Events {
fn all(&self) -> Vec<(crate::BytesN<32>, Vec<RawVal>, RawVal)> {
let env = self.env();
let mut vec = Vec::new(env);
self.env()
.host()
.get_events()
.unwrap()
.0
.into_iter()
.for_each(|e| {
if let internal::events::Event::Contract(xdr::ContractEvent {
type_: xdr::ContractEventType::Contract,
contract_id: Some(contract_id),
body: xdr::ContractEventBody::V0(xdr::ContractEventV0 { topics, data }),
..
}) = e.event
{
vec.push_back((
contract_id.0.into_val(env),
topics.try_into_val(env).unwrap(),
data.try_into_val(env).unwrap(),
))
}
});
vec
}
}