LCOV - code coverage report
Current view: top level - libs/utils/src - yielding_loop.rs (source / functions) Coverage Total Hit
Test: aca8877be6ceba750c1be359ed71bc1799d52b30.info Lines: 77.3 % 22 17
Test Date: 2024-02-14 18:05:35 Functions: 60.0 % 10 6

            Line data    Source code
       1              : use tokio_util::sync::CancellationToken;
       2              : 
       3            0 : #[derive(thiserror::Error, Debug)]
       4              : pub enum YieldingLoopError {
       5              :     #[error("Cancelled")]
       6              :     Cancelled,
       7              : }
       8              : 
       9              : /// Helper for long synchronous loops, e.g. over all tenants in the system.  Periodically
      10              : /// yields to avoid blocking the executor, and after resuming checks the provided
      11              : /// cancellation token to drop out promptly on shutdown.
      12              : #[inline(always)]
      13         3771 : pub async fn yielding_loop<I, T, F>(
      14         3771 :     interval: usize,
      15         3771 :     cancel: &CancellationToken,
      16         3771 :     iter: I,
      17         3771 :     mut visitor: F,
      18         3771 : ) -> Result<(), YieldingLoopError>
      19         3771 : where
      20         3771 :     I: Iterator<Item = T>,
      21         3771 :     F: FnMut(T),
      22         3771 : {
      23         3771 :     for (i, item) in iter.enumerate() {
      24          993 :         visitor(item);
      25          993 : 
      26          993 :         if i + 1 % interval == 0 {
      27            0 :             tokio::task::yield_now().await;
      28            0 :             if cancel.is_cancelled() {
      29            0 :                 return Err(YieldingLoopError::Cancelled);
      30            0 :             }
      31          993 :         }
      32              :     }
      33              : 
      34         3771 :     Ok(())
      35         3771 : }
        

Generated by: LCOV version 2.1-beta