mirror of
https://github.com/launchbadge/sqlx.git
synced 2026-01-20 07:36:34 +00:00
62 lines
1.7 KiB
Rust
62 lines
1.7 KiB
Rust
use crate::any::AnyConnection;
|
|
use crate::connection::{ConnectOptions, LogSettings};
|
|
use crate::error::Error;
|
|
use futures_core::future::BoxFuture;
|
|
use log::LevelFilter;
|
|
use std::str::FromStr;
|
|
use std::time::Duration;
|
|
use url::Url;
|
|
|
|
/// Opaque options for connecting to a database. These may only be constructed by parsing from
|
|
/// a connection url.
|
|
///
|
|
/// ```text
|
|
/// postgres://postgres:password@localhost/database
|
|
/// mysql://root:password@localhost/database
|
|
/// ```
|
|
#[derive(Debug, Clone)]
|
|
#[non_exhaustive]
|
|
pub struct AnyConnectOptions {
|
|
pub database_url: Url,
|
|
pub log_settings: LogSettings,
|
|
}
|
|
impl FromStr for AnyConnectOptions {
|
|
type Err = Error;
|
|
|
|
fn from_str(url: &str) -> Result<Self, Self::Err> {
|
|
Ok(AnyConnectOptions {
|
|
database_url: url
|
|
.parse::<Url>()
|
|
.map_err(|e| Error::Configuration(e.into()))?,
|
|
log_settings: LogSettings::default(),
|
|
})
|
|
}
|
|
}
|
|
|
|
impl ConnectOptions for AnyConnectOptions {
|
|
type Connection = AnyConnection;
|
|
|
|
fn from_url(url: &Url) -> Result<Self, Error> {
|
|
Ok(AnyConnectOptions {
|
|
database_url: url.clone(),
|
|
log_settings: LogSettings::default(),
|
|
})
|
|
}
|
|
|
|
#[inline]
|
|
fn connect(&self) -> BoxFuture<'_, Result<AnyConnection, Error>> {
|
|
AnyConnection::connect(self)
|
|
}
|
|
|
|
fn log_statements(mut self, level: LevelFilter) -> Self {
|
|
self.log_settings.statements_level = level;
|
|
self
|
|
}
|
|
|
|
fn log_slow_statements(mut self, level: LevelFilter, duration: Duration) -> Self {
|
|
self.log_settings.slow_statements_level = level;
|
|
self.log_settings.slow_statements_duration = duration;
|
|
self
|
|
}
|
|
}
|