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
use crate::weights::WeightInfo;
use crate::ExpirationsAgenda;
use crate::{
traits::ExpirationScheduler, CacheDataLayer, Config, DataLayer, Error, Event,
IncompleteExpirationsSince, OrderBookId, OrderBooks, Pallet,
};
use assets::AssetIdOf;
use common::weights::check_accrue_n;
use frame_support::weights::WeightMeter;
use sp_runtime::traits::One;
use sp_runtime::{DispatchError, Saturating};
impl<T: Config> Pallet<T> {
pub fn service_single_expiration(
data_layer: &mut impl DataLayer<T>,
order_book_id: &OrderBookId<AssetIdOf<T>, T::DEXId>,
order_id: T::OrderId,
) {
let order = match data_layer.get_limit_order(order_book_id, order_id) {
Ok(o) => o,
Err(error) => {
debug_assert!(
false,
"apparently removal of order book or order did not cleanup expiration schedule; \
order {:?} is set to expire but we cannot retrieve it: {:?}", order_id, error
);
Self::deposit_event(Event::<T>::ExpirationFailure {
order_book_id: order_book_id.clone(),
order_id,
error,
});
return;
}
};
let order_owner = order.owner.clone();
let Some(order_book) = <OrderBooks<T>>::get(order_book_id) else {
debug_assert!(false, "apparently removal of order book did not cleanup expiration schedule; \
order {:?} is set to expire but corresponding order book {:?} is not found", order_id, order_book_id);
Self::deposit_event(Event::<T>::ExpirationFailure {
order_book_id: order_book_id.clone(),
order_id,
error: Error::<T>::UnknownOrderBook.into(),
});
return;
};
match order_book.cancel_limit_order_unchecked(order, data_layer, true) {
Ok(_) => {
Self::deposit_event(Event::<T>::LimitOrderExpired {
order_book_id: *order_book_id,
order_id,
owner_id: order_owner,
});
}
Err(error) => {
debug_assert!(
false,
"expiration of order {:?} resulted in error: {:?}",
order_id, error
);
Self::deposit_event(Event::<T>::ExpirationFailure {
order_book_id: order_book_id.clone(),
order_id,
error,
});
}
}
}
pub fn service_block(
data_layer: &mut impl DataLayer<T>,
block: T::BlockNumber,
weight: &mut WeightMeter,
) -> bool {
if !weight.check_accrue(<T as Config>::WeightInfo::service_block_base()) {
return false;
}
let mut expirations = <ExpirationsAgenda<T>>::take(block);
if expirations.is_empty() {
return true;
}
let to_service = check_accrue_n(
weight,
<T as Config>::WeightInfo::service_single_expiration(),
expirations.len() as u64,
);
let postponed = expirations.len() as u64 - to_service;
let mut serviced = 0;
while let Some((order_book_id, order_id)) = expirations.last() {
if serviced >= to_service {
break;
}
Self::service_single_expiration(data_layer, order_book_id, *order_id);
serviced += 1;
expirations.pop();
}
if postponed != 0 {
<ExpirationsAgenda<T>>::insert(block, expirations);
}
postponed == 0
}
}
impl<T: Config>
ExpirationScheduler<
T::BlockNumber,
OrderBookId<AssetIdOf<T>, T::DEXId>,
T::DEXId,
T::OrderId,
DispatchError,
> for Pallet<T>
{
fn service(current_block: T::BlockNumber, weight: &mut WeightMeter) {
if !weight.check_accrue(<T as Config>::WeightInfo::service_base()) {
return;
}
let mut incomplete_since = current_block + One::one();
let mut when = IncompleteExpirationsSince::<T>::take().unwrap_or(current_block);
let service_block_base_weight = <T as Config>::WeightInfo::service_block_base();
let mut data_layer = CacheDataLayer::<T>::new();
while when <= current_block && weight.can_accrue(service_block_base_weight) {
if !Self::service_block(&mut data_layer, when, weight) {
incomplete_since = incomplete_since.min(when);
}
when.saturating_inc();
}
incomplete_since = incomplete_since.min(when);
if incomplete_since <= current_block {
IncompleteExpirationsSince::<T>::put(incomplete_since);
}
data_layer.commit();
}
fn schedule(
when: T::BlockNumber,
order_book_id: OrderBookId<AssetIdOf<T>, T::DEXId>,
order_id: T::OrderId,
) -> Result<(), DispatchError> {
<ExpirationsAgenda<T>>::try_mutate(when, |block_expirations| {
block_expirations
.try_push((order_book_id, order_id))
.map_err(|_| Error::<T>::BlockScheduleFull.into())
})
}
fn unschedule(
when: T::BlockNumber,
order_book_id: OrderBookId<AssetIdOf<T>, T::DEXId>,
order_id: T::OrderId,
) -> Result<(), DispatchError> {
<ExpirationsAgenda<T>>::try_mutate(when, |block_expirations| {
let Some(remove_index) = block_expirations.iter().position(|next| next == &(order_book_id, order_id)) else {
return Err(Error::<T>::ExpirationNotFound.into());
};
block_expirations.remove(remove_index);
Ok(())
})
}
}