namada_node 0.251.4

Namada node library code
Documentation
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
use std::future::Future;
use std::pin::Pin;

use namada_sdk::control_flow::{
    ShutdownSignal, ShutdownSignalChan, install_shutdown_signal,
};
use tokio::sync::mpsc::{self, UnboundedReceiver, UnboundedSender};
use tokio::task::JoinHandle;

use crate::shell::ShellResult;

/// Serves to identify an aborting async task, which is spawned
/// with an [`AbortableSpawner`].
pub type AbortingTask = &'static str;

/// An [`AbortableSpawner`] will spawn abortable tasks into the asynchronous
/// runtime.
pub struct AbortableSpawner {
    shutdown_recv: ShutdownSignalChan,
    abort_send: UnboundedSender<AbortingTask>,
    abort_recv: UnboundedReceiver<AbortingTask>,
    cleanup_jobs: Vec<Pin<Box<dyn Future<Output = ()>>>>,
    pinned: Option<(AbortingTask, JoinHandle<ShellResult<()>>)>,
    batch: Vec<(AbortingTask, JoinHandle<ShellResult<()>>)>,
}

/// Contains the state of an on-going [`AbortableSpawner`] task spawn.
pub struct AbortableTaskBuilder<'a, A> {
    who: AbortingTask,
    abortable: A,
    spawner: &'a mut AbortableSpawner,
    cleanup: Option<Pin<Box<dyn Future<Output = ()>>>>,
    pin: bool,
}

impl Default for AbortableSpawner {
    #[inline]
    fn default() -> Self {
        Self::new()
    }
}

impl AbortableSpawner {
    /// Creates a new [`AbortableSpawner`].
    pub fn new() -> Self {
        let shutdown_recv = install_shutdown_signal(true);
        let (abort_send, abort_recv) = mpsc::unbounded_channel();
        Self {
            abort_send,
            abort_recv,
            shutdown_recv,
            cleanup_jobs: Vec::new(),
            batch: Vec::new(),
            pinned: None,
        }
    }

    /// Spawns a new task into the asynchronous runtime, with an [`Aborter`]
    /// that shall be dropped when it is no longer running.
    ///
    /// For instance:
    ///
    /// ```ignore
    /// let mut spawner = AbortableSpawner::new();
    /// spawner
    ///     .abortable("ExampleTask", |aborter| async {
    ///         drop(aborter);
    ///         println!("I have signaled a control task that I am no longer running!");
    ///     })
    ///     .spawn();
    /// spawner.run_to_completion().await;
    /// ```
    ///
    /// The return type of this method is [`AbortableTaskBuilder`], such that a
    /// cleanup routine, after the abort is received, can be configured to
    /// execute.
    #[inline]
    pub fn abortable<A>(
        &mut self,
        who: AbortingTask,
        abortable: A,
    ) -> AbortableTaskBuilder<'_, A> {
        AbortableTaskBuilder {
            who,
            abortable,
            spawner: self,
            cleanup: None,
            pin: false,
        }
    }

    /// Wait for any of the spawned tasks to abort.
    ///
    /// ## Resolving this future
    ///
    /// This future runs to completion if:
    ///
    ///   1. A user sends a shutdown signal (e.g. SIGINT), or...
    ///   2. One of the child processes of the ledger terminates, which
    ///      generates a notification upon dropping an [`Aborter`].
    ///
    /// These two scenarios are represented by the [`AborterStatus`] enum.
    async fn wait_for_abort(mut self) -> AborterStatus {
        let status = tokio::select! {
            _ = self.shutdown_recv.wait_for_shutdown() => AborterStatus::UserShutdownLedger,
            msg = self.abort_recv.recv() => {
                // When the msg is `None`, there are no more abort senders, so both
                // Tendermint and the shell must have already exited
                if let Some(who) = msg {
                     tracing::info!("{who} has exited, shutting down...");
                }
                AborterStatus::ChildProcessTerminated
            }
        };

        for job in self.cleanup_jobs {
            job.await;
        }

        status
    }

    /// Run all the spawned tasks to completion.
    pub async fn run_to_completion(mut self) {
        let pinned_task = self.pinned.take();

        let batch = std::mem::take(&mut self.batch);
        let (task_ids, task_handles): (Vec<_>, Vec<_>) =
            batch.into_iter().unzip();

        // Wait for interrupt signal or abort message
        let aborted = self.wait_for_abort().await.child_terminated();

        // Wait for all managed tasks to finish
        match futures::future::try_join_all(task_handles).await {
            Ok(results) => {
                for (i, res) in results.into_iter().enumerate() {
                    match res {
                        Err(err) if aborted => {
                            let who = task_ids[i];
                            tracing::error!("{who} error: {err}");
                        }
                        _ => {}
                    }
                }
            }
            Err(err) => {
                // Ignore cancellation errors
                if !err.is_cancelled() {
                    tracing::error!("Abortable spawner error: {err}");
                }
            }
        }

        if let Some((who, pinned_task)) = pinned_task {
            match pinned_task.await {
                Err(err) if err.is_panic() => {
                    std::panic::resume_unwind(err.into_panic())
                }
                Err(err) => tracing::error!("{who} error: {err}"),
                _ => {}
            }
        }
    }

    fn spawn_abortable_task<A, F>(
        &self,
        who: AbortingTask,
        abortable: A,
    ) -> JoinHandle<ShellResult<()>>
    where
        A: FnOnce(Aborter) -> F,
        F: Future<Output = ShellResult<()>> + Send + 'static,
    {
        let abort = Aborter {
            who,
            sender: self.abort_send.clone(),
        };
        tokio::spawn(abortable(abort))
    }

    fn spawn_abortable_task_blocking<A>(
        &self,
        who: AbortingTask,
        abortable: A,
    ) -> JoinHandle<ShellResult<()>>
    where
        A: FnOnce(Aborter) -> ShellResult<()> + Send + 'static,
    {
        let abort = Aborter {
            who,
            sender: self.abort_send.clone(),
        };
        tokio::task::spawn_blocking(move || abortable(abort))
    }
}

impl<A> AbortableTaskBuilder<'_, A> {
    /// Spawn the built abortable task into the runtime.
    #[inline]
    pub fn spawn<F>(self)
    where
        A: FnOnce(Aborter) -> F,
        F: Future<Output = ShellResult<()>> + Send + 'static,
    {
        if let Some(cleanup) = self.cleanup {
            self.spawner.cleanup_jobs.push(cleanup);
        }
        let task = self.spawner.spawn_abortable_task(self.who, self.abortable);
        if self.pin {
            if let Some(pinned_task) = self.spawner.pinned.take() {
                self.spawner.batch.push(pinned_task);
            }
            self.spawner.pinned = Some((self.who, task));
        } else {
            self.spawner.batch.push((self.who, task));
        }
    }

    /// Spawn the built abortable (blocking) task into the runtime.
    #[inline]
    pub fn spawn_blocking(self)
    where
        A: FnOnce(Aborter) -> ShellResult<()> + Send + 'static,
    {
        if let Some(cleanup) = self.cleanup {
            self.spawner.cleanup_jobs.push(cleanup);
        }
        let task = self
            .spawner
            .spawn_abortable_task_blocking(self.who, self.abortable);
        if self.pin {
            if let Some(pinned_task) = self.spawner.pinned.take() {
                self.spawner.batch.push(pinned_task);
            }
            self.spawner.pinned = Some((self.who, task));
        } else {
            self.spawner.batch.push((self.who, task));
        }
    }

    /// A cleanup routine `cleanup` will be executed for the associated task.
    /// This method replaces the previous cleanup routine, if any.
    #[inline]
    pub fn with_cleanup<C>(mut self, cleanup: C) -> Self
    where
        C: Future<Output = ()> + Send + 'static,
    {
        self.cleanup = Some(Box::pin(cleanup));
        self
    }

    /// Pin the task to spawn. The main purpose behind this operation
    /// is to resume unwinding the stack if the pinned task panics.
    #[inline]
    pub fn pin(mut self) -> Self {
        self.pin = true;
        self
    }
}

/// A panic-proof handle for aborting a future. Will abort during stack
/// unwinding and its drop method sends abort message with `who` inside it.
pub struct Aborter {
    sender: mpsc::UnboundedSender<AbortingTask>,
    who: AbortingTask,
}

impl Drop for Aborter {
    fn drop(&mut self) {
        // Send abort message, ignore result
        let _ = self.sender.send(self.who);
    }
}

/// An [`AborterStatus`] represents one of two possible causes that resulted
/// in shutting down the ledger.
#[derive(Debug, Copy, Clone, Eq, PartialEq)]
pub enum AborterStatus {
    /// The ledger process received a shutdown signal.
    UserShutdownLedger,
    /// One of the ledger's child processes terminated, signaling the
    /// [`AbortableSpawner`].
    ChildProcessTerminated,
}

impl AborterStatus {
    /// Checks if the reason for aborting was a child process terminating.
    pub fn child_terminated(self) -> bool {
        matches!(self, AborterStatus::ChildProcessTerminated)
    }
}

#[cfg(test)]
mod abortale_spawner_tests {
    use std::sync::{Arc, Mutex};

    use super::*;

    /// Test panicking a non-pinned task shouldn't cause the entire spawner to
    /// come crashing down.
    #[tokio::test(flavor = "multi_thread", worker_threads = 2)]
    async fn test_abortable_spawner_panic_non_pinned_task() {
        let mut spawner = AbortableSpawner::new();

        spawner
            .abortable("TestTask", |_aborter| async {
                panic!();
            })
            .spawn();

        spawner.run_to_completion().await;
    }

    /// Test panicking a pinned task must cause the entire spawner to come
    /// crashing down.
    #[tokio::test(flavor = "multi_thread", worker_threads = 2)]
    #[should_panic = "AbortableSpawnerPanic"]
    async fn test_abortable_spawner_panic_pinned_task() {
        let mut spawner = AbortableSpawner::new();

        spawner
            .abortable("TestTask", |_aborter| async {
                panic!("AbortableSpawnerPanic");
            })
            .pin()
            .spawn();

        spawner.run_to_completion().await;
    }

    /// Test that cleanup jobs get triggered.
    #[tokio::test(flavor = "multi_thread", worker_threads = 2)]
    async fn test_cleanup_job() {
        let mut spawner = AbortableSpawner::new();

        struct Slot {
            task_data: [String; 3],
        }

        let slot = Arc::new(Mutex::new(Slot {
            task_data: [String::new(), String::new(), String::new()],
        }));

        let task_ids = ["TestTask#1", "TestTask#2", "TestTask#3"];

        for (task_no, &id) in task_ids.iter().enumerate() {
            let slot = Arc::clone(&slot);

            spawner
                .abortable(id, |aborter| async move {
                    drop(aborter);
                    Ok(())
                })
                .with_cleanup(async move {
                    slot.lock().unwrap().task_data[task_no] = id.into();
                })
                .spawn();
        }

        spawner.run_to_completion().await;

        let slot_handle = slot.lock().unwrap();
        assert_eq!(slot_handle.task_data[0].as_str(), task_ids[0]);
        assert_eq!(slot_handle.task_data[1].as_str(), task_ids[1]);
        assert_eq!(slot_handle.task_data[2].as_str(), task_ids[2]);
    }

    /// Test blocking jobs.
    #[tokio::test(flavor = "multi_thread", worker_threads = 1)]
    async fn test_blocking_spawn() {
        let (bing_tx, bing_rx) = tokio::sync::oneshot::channel();
        let (bong_tx, bong_rx) = tokio::sync::oneshot::channel();

        let mut spawner = AbortableSpawner::new();
        spawner
            .abortable("Bing", move |aborter| {
                bing_rx.blocking_recv().unwrap();
                drop(aborter);
                Ok(())
            })
            .spawn_blocking();
        spawner
            .abortable("Bong", move |aborter| {
                bong_rx.blocking_recv().unwrap();
                drop(aborter);
                Ok(())
            })
            .spawn_blocking();

        let spawner_run_fut = Box::pin(spawner.run_to_completion());
        let select_result =
            futures::future::select(spawner_run_fut, std::future::ready(()))
                .await;
        let spawner_run_fut = match select_result {
            futures::future::Either::Left(_) => unreachable!("Test failed"),
            futures::future::Either::Right(((), fut)) => fut,
        };

        bing_tx.send(()).unwrap();
        let select_result =
            futures::future::select(spawner_run_fut, std::future::ready(()))
                .await;
        let spawner_run_fut = match select_result {
            futures::future::Either::Left(_) => unreachable!("Test failed"),
            futures::future::Either::Right(((), fut)) => fut,
        };

        bong_tx.send(()).unwrap();
        spawner_run_fut.await;
    }
}