continuwuity/src/database/engine/context.rs
June Clementine Strawberry a1e1f40ded
run cargo fix for rust 2024 changes and rustfmt
Signed-off-by: June Clementine Strawberry <strawberry@puppygock.gay>
2025-02-23 01:17:45 -05:00

82 lines
2.4 KiB
Rust

use std::{
collections::BTreeMap,
sync::{Arc, Mutex},
};
use conduwuit::{Result, Server, debug, utils::math::usize_from_f64};
use rocksdb::{Cache, Env, LruCacheOptions};
use crate::{or_else, pool::Pool};
/// Some components are constructed prior to opening the database and must
/// outlive the database. These can also be shared between database instances
/// though at the time of this comment we only open one database per process.
/// These assets are housed in the shared Context.
pub(crate) struct Context {
pub(crate) pool: Arc<Pool>,
pub(crate) col_cache: Mutex<BTreeMap<String, Cache>>,
pub(crate) row_cache: Mutex<Cache>,
pub(crate) env: Mutex<Env>,
pub(crate) server: Arc<Server>,
}
impl Context {
pub(crate) fn new(server: &Arc<Server>) -> Result<Arc<Self>> {
let config = &server.config;
let cache_capacity_bytes = config.db_cache_capacity_mb * 1024.0 * 1024.0;
let col_shard_bits = 7;
let col_cache_capacity_bytes = usize_from_f64(cache_capacity_bytes * 0.50)?;
let row_shard_bits = 7;
let row_cache_capacity_bytes = usize_from_f64(cache_capacity_bytes * 0.50)?;
let mut row_cache_opts = LruCacheOptions::default();
row_cache_opts.set_num_shard_bits(row_shard_bits);
row_cache_opts.set_capacity(row_cache_capacity_bytes);
let row_cache = Cache::new_lru_cache_opts(&row_cache_opts);
let mut col_cache_opts = LruCacheOptions::default();
col_cache_opts.set_num_shard_bits(col_shard_bits);
col_cache_opts.set_capacity(col_cache_capacity_bytes);
let col_cache = Cache::new_lru_cache_opts(&col_cache_opts);
let col_cache: BTreeMap<_, _> = [("Shared".to_owned(), col_cache)].into();
let mut env = Env::new().or_else(or_else)?;
if config.rocksdb_compaction_prio_idle {
env.lower_thread_pool_cpu_priority();
}
if config.rocksdb_compaction_ioprio_idle {
env.lower_thread_pool_io_priority();
}
Ok(Arc::new(Self {
pool: Pool::new(server)?,
col_cache: col_cache.into(),
row_cache: row_cache.into(),
env: env.into(),
server: server.clone(),
}))
}
}
impl Drop for Context {
#[cold]
fn drop(&mut self) {
debug!("Closing frontend pool");
self.pool.close();
let mut env = self.env.lock().expect("locked");
debug!("Shutting down background threads");
env.set_high_priority_background_threads(0);
env.set_low_priority_background_threads(0);
env.set_bottom_priority_background_threads(0);
env.set_background_threads(0);
debug!("Joining background threads...");
env.join_all_threads();
}
}