mirror of
https://github.com/natsukagami/youmubot.git
synced 2025-04-19 16:58:55 +00:00
93 lines
2.6 KiB
Rust
93 lines
2.6 KiB
Rust
use rustbreak::{deser::Yaml, FileDatabase, RustbreakError as DBError};
|
|
use serde::{de::DeserializeOwned, Deserialize, Serialize};
|
|
use serenity::{
|
|
model::id::GuildId,
|
|
prelude::{TypeMap, TypeMapKey},
|
|
};
|
|
use std::{collections::HashMap, path::Path};
|
|
|
|
/// GuildMap defines the guild-map type.
|
|
/// It is basically a HashMap from a GuildId to a data structure.
|
|
pub type GuildMap<V> = HashMap<GuildId, V>;
|
|
/// The generic DB type we will be using.
|
|
pub struct DB<T>(std::marker::PhantomData<T>);
|
|
|
|
/// A short type abbreviation for a FileDatabase.
|
|
type Database<T> = FileDatabase<T, Yaml>;
|
|
|
|
impl<T: std::any::Any + Send + Sync> TypeMapKey for DB<T> {
|
|
type Value = Database<T>;
|
|
}
|
|
|
|
impl<T: std::any::Any + Default + Send + Sync + Clone + Serialize + std::fmt::Debug> DB<T>
|
|
where
|
|
for<'de> T: Deserialize<'de>,
|
|
{
|
|
/// Load the DB from a path.
|
|
pub fn load_from_path(path: impl AsRef<Path>) -> Result<Database<T>, DBError> {
|
|
Database::<T>::load_from_path(path)
|
|
}
|
|
|
|
/// Insert into a ShareMap.
|
|
pub fn insert_into(data: &mut TypeMap, path: impl AsRef<Path>) -> Result<(), DBError> {
|
|
let db = Database::<T>::load_from_path_or_default(path)?;
|
|
data.insert::<DB<T>>(db);
|
|
Ok(())
|
|
}
|
|
|
|
/// Open a previously inserted DB.
|
|
pub fn open(data: &TypeMap) -> DBWriteGuard<T> {
|
|
data.get::<Self>().expect("DB initialized").into()
|
|
}
|
|
}
|
|
|
|
/// The write guard for our FileDatabase.
|
|
/// It wraps the FileDatabase in a write-on-drop lock.
|
|
#[derive(Debug)]
|
|
pub struct DBWriteGuard<'a, T>
|
|
where
|
|
T: Send + Sync + Clone + std::fmt::Debug + Serialize + DeserializeOwned,
|
|
{
|
|
db: &'a Database<T>,
|
|
needs_save: bool,
|
|
}
|
|
|
|
impl<'a, T> From<&'a Database<T>> for DBWriteGuard<'a, T>
|
|
where
|
|
T: Send + Sync + Clone + std::fmt::Debug + Serialize + DeserializeOwned,
|
|
{
|
|
fn from(v: &'a Database<T>) -> Self {
|
|
DBWriteGuard {
|
|
db: v,
|
|
needs_save: false,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<'a, T> DBWriteGuard<'a, T>
|
|
where
|
|
T: Send + Sync + Clone + std::fmt::Debug + Serialize + DeserializeOwned,
|
|
{
|
|
/// Borrows the FileDatabase.
|
|
pub fn borrow(&self) -> Result<std::sync::RwLockReadGuard<T>, DBError> {
|
|
self.db.borrow_data()
|
|
}
|
|
/// Borrows the FileDatabase for writing.
|
|
pub fn borrow_mut(&mut self) -> Result<std::sync::RwLockWriteGuard<T>, DBError> {
|
|
self.needs_save = true;
|
|
self.db.borrow_data_mut()
|
|
}
|
|
}
|
|
|
|
impl<'a, T> Drop for DBWriteGuard<'a, T>
|
|
where
|
|
T: Send + Sync + Clone + std::fmt::Debug + Serialize + DeserializeOwned,
|
|
{
|
|
fn drop(&mut self) {
|
|
if self.needs_save {
|
|
if let Err(e) = self.db.save() {
|
|
dbg!(e);
|
|
}
|
|
}
|
|
}
|
|
}
|