use std::cell::RefCell;
use std::rc::Rc;
pub use crate::errors::{Error, Result};
use crate::htslib;
#[derive(Clone, Debug)]
pub struct ThreadPool {
pub(crate) handle: Rc<RefCell<InnerThreadPool>>,
}
impl ThreadPool {
pub fn new(n_threads: u32) -> Result<ThreadPool> {
let ret = unsafe { htslib::hts_tpool_init(n_threads as i32) };
if ret.is_null() {
Err(Error::ThreadPool)
} else {
let inner = htslib::htsThreadPool {
pool: ret,
qsize: n_threads as i32 * 2,
};
let inner = InnerThreadPool { inner };
let handle = Rc::new(RefCell::new(inner));
Ok(ThreadPool { handle })
}
}
}
#[derive(Clone, Debug)]
pub struct InnerThreadPool {
pub(crate) inner: htslib::htsThreadPool,
}
impl Drop for InnerThreadPool {
fn drop(&mut self) {
if !self.inner.pool.is_null() {
unsafe {
htslib::hts_tpool_destroy(self.inner.pool);
}
}
self.inner.pool = std::ptr::null_mut();
}
}