0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2025-05-23 22:26:07 +00:00
Files
libsql/libsql-server/src/database.rs
2023-11-01 10:32:04 +01:00

49 lines
1.5 KiB
Rust

use std::sync::Arc;
use crate::connection::libsql::LibSqlConnection;
use crate::connection::write_proxy::{RpcStream, WriteProxyConnection};
use crate::connection::{Connection, MakeConnection, TrackedConnection};
use crate::replication::{ReplicationLogger, ReplicationLoggerHook};
pub trait Database: Sync + Send + 'static {
/// The connection type of the database
type Connection: Connection;
fn connection_maker(&self) -> Arc<dyn MakeConnection<Connection = Self::Connection>>;
fn shutdown(&self);
}
pub struct ReplicaDatabase {
pub connection_maker:
Arc<dyn MakeConnection<Connection = TrackedConnection<WriteProxyConnection<RpcStream>>>>,
}
impl Database for ReplicaDatabase {
type Connection = TrackedConnection<WriteProxyConnection<RpcStream>>;
fn connection_maker(&self) -> Arc<dyn MakeConnection<Connection = Self::Connection>> {
self.connection_maker.clone()
}
fn shutdown(&self) {}
}
pub type PrimaryConnection = TrackedConnection<LibSqlConnection<ReplicationLoggerHook>>;
pub struct PrimaryDatabase {
pub logger: Arc<ReplicationLogger>,
pub connection_maker: Arc<dyn MakeConnection<Connection = PrimaryConnection>>,
}
impl Database for PrimaryDatabase {
type Connection = PrimaryConnection;
fn connection_maker(&self) -> Arc<dyn MakeConnection<Connection = Self::Connection>> {
self.connection_maker.clone()
}
fn shutdown(&self) {
self.logger.closed_signal.send_replace(true);
}
}