| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 |
- use async_trait::async_trait;
- use hbb_common::{log, ResultType};
- use sqlx::{
- sqlite::SqliteConnectOptions, ConnectOptions, Connection, Error as SqlxError, SqliteConnection,
- };
- use std::{ops::DerefMut, str::FromStr};
- //use sqlx::postgres::PgPoolOptions;
- //use sqlx::mysql::MySqlPoolOptions;
- type Pool = deadpool::managed::Pool<DbPool>;
- pub struct DbPool {
- url: String,
- }
- #[async_trait]
- impl deadpool::managed::Manager for DbPool {
- type Type = SqliteConnection;
- type Error = SqlxError;
- async fn create(&self) -> Result<SqliteConnection, SqlxError> {
- let mut opt = SqliteConnectOptions::from_str(&self.url).unwrap();
- opt.log_statements(log::LevelFilter::Debug);
- SqliteConnection::connect_with(&opt).await
- }
- async fn recycle(
- &self,
- obj: &mut SqliteConnection,
- ) -> deadpool::managed::RecycleResult<SqlxError> {
- Ok(obj.ping().await?)
- }
- }
- #[derive(Clone)]
- pub struct Database {
- pool: Pool,
- }
- #[derive(Default)]
- pub struct Peer {
- pub guid: Vec<u8>,
- pub id: String,
- pub uuid: Vec<u8>,
- pub pk: Vec<u8>,
- pub user: Option<Vec<u8>>,
- pub info: String,
- pub status: Option<i64>,
- }
- impl Database {
- pub async fn new(url: &str) -> ResultType<Database> {
- if !std::path::Path::new(url).exists() {
- std::fs::File::create(url).ok();
- }
- let n: usize = std::env::var("MAX_DATABASE_CONNECTIONS")
- .unwrap_or_else(|_| "1".to_owned())
- .parse()
- .unwrap_or(1);
- log::debug!("MAX_DATABASE_CONNECTIONS={}", n);
- let pool = Pool::new(
- DbPool {
- url: url.to_owned(),
- },
- n,
- );
- let _ = pool.get().await?; // test
- let db = Database { pool };
- db.create_tables().await?;
- Ok(db)
- }
- async fn create_tables(&self) -> ResultType<()> {
- sqlx::query!(
- "
- create table if not exists peer (
- guid blob primary key not null,
- id varchar(100) not null,
- uuid blob not null,
- pk blob not null,
- created_at datetime not null default(current_timestamp),
- user blob,
- status tinyint,
- note varchar(300),
- info text not null
- ) without rowid;
- create unique index if not exists index_peer_id on peer (id);
- create index if not exists index_peer_user on peer (user);
- create index if not exists index_peer_created_at on peer (created_at);
- create index if not exists index_peer_status on peer (status);
- "
- )
- .execute(self.pool.get().await?.deref_mut())
- .await?;
- Ok(())
- }
- pub async fn get_peer(&self, id: &str) -> ResultType<Option<Peer>> {
- Ok(sqlx::query_as!(
- Peer,
- "select guid, id, uuid, pk, user, status, info from peer where id = ?",
- id
- )
- .fetch_optional(self.pool.get().await?.deref_mut())
- .await?)
- }
- pub async fn insert_peer(
- &self,
- id: &str,
- uuid: &[u8],
- pk: &[u8],
- info: &str,
- ) -> ResultType<Vec<u8>> {
- let guid = uuid::Uuid::new_v4().as_bytes().to_vec();
- sqlx::query!(
- "insert into peer(guid, id, uuid, pk, info) values(?, ?, ?, ?, ?)",
- guid,
- id,
- uuid,
- pk,
- info
- )
- .execute(self.pool.get().await?.deref_mut())
- .await?;
- Ok(guid)
- }
- pub async fn update_pk(
- &self,
- guid: &Vec<u8>,
- id: &str,
- pk: &[u8],
- info: &str,
- ) -> ResultType<()> {
- sqlx::query!(
- "update peer set id=?, pk=?, info=? where guid=?",
- id,
- pk,
- info,
- guid
- )
- .execute(self.pool.get().await?.deref_mut())
- .await?;
- Ok(())
- }
- }
- #[cfg(test)]
- mod tests {
- use hbb_common::tokio;
- #[test]
- fn test_insert() {
- insert();
- }
- #[tokio::main(flavor = "multi_thread")]
- async fn insert() {
- let db = super::Database::new("test.sqlite3").await.unwrap();
- let mut jobs = vec![];
- for i in 0..10000 {
- let cloned = db.clone();
- let id = i.to_string();
- let a = tokio::spawn(async move {
- let empty_vec = Vec::new();
- cloned
- .insert_peer(&id, &empty_vec, &empty_vec, "")
- .await
- .unwrap();
- });
- jobs.push(a);
- }
- for i in 0..10000 {
- let cloned = db.clone();
- let id = i.to_string();
- let a = tokio::spawn(async move {
- cloned.get_peer(&id).await.unwrap();
- });
- jobs.push(a);
- }
- hbb_common::futures::future::join_all(jobs).await;
- }
- }
|