fast-able 1.20.2

The world's martial arts are fast and unbreakable; 天下武功 唯快不破
Documentation
use std::{sync::Arc, time::Duration};

/// Statistics utility, counts events per second and executes a callback
/// 统计工具,统计每秒事件数并执行回调
pub struct Statis {
    _rt: std::thread::JoinHandle<()>,
    sum: Arc<std::sync::atomic::AtomicU64>,
}

impl Statis {
    /// Create a new Statis instance
    /// 创建一个新的 Statis 实例
    ///
    /// # Arguments
    /// * `print` - Callback function executed every second with the count of events
    /// * `print` - 每秒执行的回调函数,参数为事件数量
    pub fn new<P: Fn(u64) + Send + 'static>(print: P) -> Self {
        let sum = Arc::new(std::sync::atomic::AtomicU64::new(0));
        let sum_clone = sum.clone();
        let rt = std::thread::spawn(move || loop {
            std::thread::sleep(Duration::from_millis(1000));
            let v = sum_clone.fetch_and(0, std::sync::atomic::Ordering::SeqCst);
            if v > 0 {
                print(v);
            }
        });
        Self { _rt: rt, sum }
    }

    /// Increment the counter
    /// 增加计数
    pub fn add(&self) {
        _ = self.sum.fetch_add(1, std::sync::atomic::Ordering::SeqCst);
    }
}

impl Drop for Statis {
    fn drop(&mut self) {}
}

#[test]
fn test() {
    pub static RECKON_BY_SEC: once_cell::sync::Lazy<Statis> =
        once_cell::sync::Lazy::new(|| Statis::new(|v| println!("one sec run sum: {v}")));

    let rt = std::thread::spawn(|| {
        for i in 0..10000_0000 {
            RECKON_BY_SEC.add();
        }
    });
    let rt2 = std::thread::spawn(|| {
        for i in 0..10000_0000 {
            RECKON_BY_SEC.add();
        }
    });
    let rt3 = std::thread::spawn(|| {
        for i in 0..10000_0000 {
            RECKON_BY_SEC.add();
        }
    });

    rt.join();
    rt2.join();
    rt3.join();
}