#[cfg(test)]
use std::cmp::Ordering;
use std::{sync::Arc, time::Duration};
use derivative::Derivative;
#[cfg(test)]
use serde::de::{Deserializer, Error};
use serde::Deserialize;
use crate::{
client::auth::Credential,
event::cmap::{CmapEventHandler, ConnectionPoolOptions as EventOptions},
options::ClientOptions,
serde_util,
};
#[derive(Clone, Default, Deserialize, Derivative)]
#[derivative(Debug, PartialEq)]
#[serde(rename_all = "camelCase")]
pub(crate) struct ConnectionPoolOptions {
#[serde(skip)]
pub(crate) credential: Option<Credential>,
#[derivative(Debug = "ignore", PartialEq = "ignore")]
#[serde(skip)]
pub(crate) cmap_event_handler: Option<Arc<dyn CmapEventHandler>>,
#[cfg(test)]
#[serde(rename = "backgroundThreadIntervalMS")]
pub(crate) background_thread_interval: Option<BackgroundThreadInterval>,
#[serde(rename = "maxIdleTimeMS")]
#[serde(default)]
#[serde(deserialize_with = "serde_util::deserialize_duration_option_from_u64_millis")]
pub(crate) max_idle_time: Option<Duration>,
pub(crate) max_pool_size: Option<u32>,
pub(crate) min_pool_size: Option<u32>,
#[cfg(test)]
pub(crate) ready: Option<bool>,
pub(crate) load_balanced: Option<bool>,
pub(crate) max_connecting: Option<u32>,
}
impl ConnectionPoolOptions {
pub(crate) fn from_client_options(options: &ClientOptions) -> Self {
Self {
max_idle_time: options.max_idle_time,
min_pool_size: options.min_pool_size,
max_pool_size: options.max_pool_size,
cmap_event_handler: options.cmap_event_handler.clone(),
#[cfg(test)]
background_thread_interval: None,
#[cfg(test)]
ready: None,
load_balanced: options.load_balanced,
credential: options.credential.clone(),
max_connecting: options.max_connecting,
}
}
pub(crate) fn to_event_options(&self) -> EventOptions {
EventOptions {
max_idle_time: self.max_idle_time,
min_pool_size: self.min_pool_size,
max_pool_size: self.max_pool_size,
}
}
}
#[cfg(test)]
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
pub(crate) enum BackgroundThreadInterval {
Never,
Every(Duration),
}
#[cfg(test)]
impl<'de> Deserialize<'de> for BackgroundThreadInterval {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: Deserializer<'de>,
{
let millis = i64::deserialize(deserializer)?;
Ok(match millis.cmp(&0) {
Ordering::Less => BackgroundThreadInterval::Never,
Ordering::Equal => return Err(D::Error::custom("zero is not allowed")),
Ordering::Greater => {
BackgroundThreadInterval::Every(Duration::from_millis(millis as u64))
}
})
}
}