fast-able 1.20.2

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

use core_affinity::CoreId;
use crossbeam::{atomic::AtomicCell, queue};
use thingbuf::mpsc::Sender;

pub trait TaskFn: FnOnce(&usize) + Default + Clone + 'static {}

/// Simple thread pool
/// 简易线程池
pub struct TaskExecutor {
    jobs: Sender<Box<dyn TaskFn>>,
    _handle: thread::JoinHandle<()>,
    pub count: Arc<AtomicCell<i64>>,
    core: usize,
}

impl std::fmt::Debug for TaskExecutor {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("TaskExecutor")
            .field("_handle", &self._handle)
            .field("count", &self.count)
            .finish()
    }
}

impl TaskExecutor {
    /// Create a new TaskExecutor
    /// 创建一个新的 TaskExecutor
    pub fn new(core: CoreId) -> TaskExecutor {
        let (tx, rx) = thingbuf::mpsc::channel::<Box<dyn TaskFn>>(5000);
        // let (tx, rx) = crossbeam::channel::unbounded::<Box<dyn FnOnce(&usize) + Send + 'static>>();
        let count = Arc::new(AtomicCell::new(0_i64));

        let count_c = count.clone();
        let _handle = thread::spawn(move || {
            // 绑核
            {
                let core_id = core.id;
                let b = core_affinity::set_for_current(core);
                
                // 绑核成功, 输出日志
                warn!("bind {core_id} {b}");
            }
            let ref core = core.id;
            loop {
                if let Ok(job) = rx.try_recv() {
                    job(core);
                    count_c.fetch_sub(1);
                }
            }
        });

        TaskExecutor {
            jobs: tx,
            _handle,
            count,
            core: core.id,
        }
    }

    /// Spawn a task
    /// 派发一个任务
    pub fn spawn<F>(&self, f: F)
    where
        F: FnOnce(&usize),
        F: Send + 'static,
    {
        self.count.fetch_add(1);
        if let Err(e) = self.jobs.send(Box::new(f)) {
            error!("TaskExecutor send error: {:?}", e);
        }
    }
}