mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-11-10 06:25:00 +00:00
Finish implementing HashRepo
This commit is contained in:
parent
8921f57a21
commit
e580e7701e
2 changed files with 174 additions and 32 deletions
|
@ -165,8 +165,8 @@ CREATE TABLE queue (
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
CREATE INDEX queue_status_index ON queue INCLUDE status;
|
CREATE INDEX queue_status_index ON queue INCLUDE queue, status;
|
||||||
CREATE INDEX heartbeat_index ON queue
|
CREATE INDEX heartbeat_index ON queue INCLUDE heartbeat;
|
||||||
```
|
```
|
||||||
|
|
||||||
claiming a job can be
|
claiming a job can be
|
||||||
|
|
|
@ -9,7 +9,7 @@ use diesel_async::{
|
||||||
deadpool::{BuildError, Pool, PoolError},
|
deadpool::{BuildError, Pool, PoolError},
|
||||||
AsyncDieselConnectionManager,
|
AsyncDieselConnectionManager,
|
||||||
},
|
},
|
||||||
AsyncPgConnection, RunQueryDsl,
|
AsyncConnection, AsyncPgConnection, RunQueryDsl,
|
||||||
};
|
};
|
||||||
use url::Url;
|
use url::Url;
|
||||||
|
|
||||||
|
@ -223,63 +223,205 @@ impl HashRepo for PostgresRepo {
|
||||||
|
|
||||||
let timestamp = to_primitive(timestamp);
|
let timestamp = to_primitive(timestamp);
|
||||||
|
|
||||||
/*
|
let res = diesel::insert_into(hashes)
|
||||||
insert_into(hashes).values((
|
.values((
|
||||||
hash.eq(&input_hash),
|
hash.eq(&input_hash),
|
||||||
identifier.eq(&input_identifier)
|
identifier.eq(input_identifier.as_ref()),
|
||||||
))
|
created_at.eq(×tamp),
|
||||||
*/
|
))
|
||||||
|
.execute(&mut conn)
|
||||||
|
.await;
|
||||||
|
|
||||||
todo!()
|
match res {
|
||||||
|
Ok(_) => Ok(Ok(())),
|
||||||
|
Err(diesel::result::Error::DatabaseError(
|
||||||
|
diesel::result::DatabaseErrorKind::UniqueViolation,
|
||||||
|
_,
|
||||||
|
)) => Ok(Err(HashAlreadyExists)),
|
||||||
|
Err(e) => Err(PostgresError::Diesel(e).into()),
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn update_identifier(&self, hash: Hash, identifier: &Arc<str>) -> Result<(), RepoError> {
|
async fn update_identifier(
|
||||||
todo!()
|
&self,
|
||||||
|
input_hash: Hash,
|
||||||
|
input_identifier: &Arc<str>,
|
||||||
|
) -> Result<(), RepoError> {
|
||||||
|
use schema::hashes::dsl::*;
|
||||||
|
|
||||||
|
let mut conn = self.pool.get().await.map_err(PostgresError::Pool)?;
|
||||||
|
|
||||||
|
diesel::update(hashes)
|
||||||
|
.filter(hash.eq(&input_hash))
|
||||||
|
.set(identifier.eq(input_identifier.as_ref()))
|
||||||
|
.execute(&mut conn)
|
||||||
|
.await
|
||||||
|
.map_err(PostgresError::Diesel)?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn identifier(&self, hash: Hash) -> Result<Option<Arc<str>>, RepoError> {
|
async fn identifier(&self, input_hash: Hash) -> Result<Option<Arc<str>>, RepoError> {
|
||||||
todo!()
|
use schema::hashes::dsl::*;
|
||||||
|
|
||||||
|
let mut conn = self.pool.get().await.map_err(PostgresError::Pool)?;
|
||||||
|
|
||||||
|
let opt = hashes
|
||||||
|
.select(identifier)
|
||||||
|
.filter(hash.eq(&input_hash))
|
||||||
|
.get_result::<String>(&mut conn)
|
||||||
|
.await
|
||||||
|
.optional()
|
||||||
|
.map_err(PostgresError::Diesel)?;
|
||||||
|
|
||||||
|
Ok(opt.map(Arc::from))
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn relate_variant_identifier(
|
async fn relate_variant_identifier(
|
||||||
&self,
|
&self,
|
||||||
hash: Hash,
|
input_hash: Hash,
|
||||||
variant: String,
|
input_variant: String,
|
||||||
identifier: &Arc<str>,
|
input_identifier: &Arc<str>,
|
||||||
) -> Result<Result<(), VariantAlreadyExists>, RepoError> {
|
) -> Result<Result<(), VariantAlreadyExists>, RepoError> {
|
||||||
todo!()
|
use schema::variants::dsl::*;
|
||||||
|
|
||||||
|
let mut conn = self.pool.get().await.map_err(PostgresError::Pool)?;
|
||||||
|
|
||||||
|
let res = diesel::insert_into(variants)
|
||||||
|
.values((
|
||||||
|
hash.eq(&input_hash),
|
||||||
|
variant.eq(&input_variant),
|
||||||
|
identifier.eq(input_identifier.as_ref()),
|
||||||
|
))
|
||||||
|
.execute(&mut conn)
|
||||||
|
.await;
|
||||||
|
|
||||||
|
match res {
|
||||||
|
Ok(_) => Ok(Ok(())),
|
||||||
|
Err(diesel::result::Error::DatabaseError(
|
||||||
|
diesel::result::DatabaseErrorKind::UniqueViolation,
|
||||||
|
_,
|
||||||
|
)) => Ok(Err(VariantAlreadyExists)),
|
||||||
|
Err(e) => Err(PostgresError::Diesel(e).into()),
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn variant_identifier(
|
async fn variant_identifier(
|
||||||
&self,
|
&self,
|
||||||
hash: Hash,
|
input_hash: Hash,
|
||||||
variant: String,
|
input_variant: String,
|
||||||
) -> Result<Option<Arc<str>>, RepoError> {
|
) -> Result<Option<Arc<str>>, RepoError> {
|
||||||
todo!()
|
use schema::variants::dsl::*;
|
||||||
|
|
||||||
|
let mut conn = self.pool.get().await.map_err(PostgresError::Pool)?;
|
||||||
|
|
||||||
|
let opt = variants
|
||||||
|
.select(identifier)
|
||||||
|
.filter(hash.eq(&input_hash))
|
||||||
|
.filter(variant.eq(&input_variant))
|
||||||
|
.get_result::<String>(&mut conn)
|
||||||
|
.await
|
||||||
|
.optional()
|
||||||
|
.map_err(PostgresError::Diesel)?
|
||||||
|
.map(Arc::from);
|
||||||
|
|
||||||
|
Ok(opt)
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn variants(&self, hash: Hash) -> Result<Vec<(String, Arc<str>)>, RepoError> {
|
async fn variants(&self, input_hash: Hash) -> Result<Vec<(String, Arc<str>)>, RepoError> {
|
||||||
todo!()
|
use schema::variants::dsl::*;
|
||||||
|
|
||||||
|
let mut conn = self.pool.get().await.map_err(PostgresError::Pool)?;
|
||||||
|
|
||||||
|
let vec = variants
|
||||||
|
.select((variant, identifier))
|
||||||
|
.filter(hash.eq(&input_hash))
|
||||||
|
.get_results::<(String, String)>(&mut conn)
|
||||||
|
.await
|
||||||
|
.map_err(PostgresError::Diesel)?
|
||||||
|
.into_iter()
|
||||||
|
.map(|(s, i)| (s, Arc::from(i)))
|
||||||
|
.collect();
|
||||||
|
|
||||||
|
Ok(vec)
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn remove_variant(&self, hash: Hash, variant: String) -> Result<(), RepoError> {
|
async fn remove_variant(
|
||||||
todo!()
|
&self,
|
||||||
|
input_hash: Hash,
|
||||||
|
input_variant: String,
|
||||||
|
) -> Result<(), RepoError> {
|
||||||
|
use schema::variants::dsl::*;
|
||||||
|
|
||||||
|
let mut conn = self.pool.get().await.map_err(PostgresError::Pool)?;
|
||||||
|
|
||||||
|
diesel::delete(variants)
|
||||||
|
.filter(hash.eq(&input_hash))
|
||||||
|
.filter(variant.eq(&input_variant))
|
||||||
|
.execute(&mut conn)
|
||||||
|
.await
|
||||||
|
.map_err(PostgresError::Diesel)?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn relate_motion_identifier(
|
async fn relate_motion_identifier(
|
||||||
&self,
|
&self,
|
||||||
hash: Hash,
|
input_hash: Hash,
|
||||||
identifier: &Arc<str>,
|
input_identifier: &Arc<str>,
|
||||||
) -> Result<(), RepoError> {
|
) -> Result<(), RepoError> {
|
||||||
todo!()
|
use schema::hashes::dsl::*;
|
||||||
|
|
||||||
|
let mut conn = self.pool.get().await.map_err(PostgresError::Pool)?;
|
||||||
|
|
||||||
|
diesel::update(hashes)
|
||||||
|
.filter(hash.eq(&input_hash))
|
||||||
|
.set(motion_identifier.eq(input_identifier.as_ref()))
|
||||||
|
.execute(&mut conn)
|
||||||
|
.await
|
||||||
|
.map_err(PostgresError::Diesel)?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn motion_identifier(&self, hash: Hash) -> Result<Option<Arc<str>>, RepoError> {
|
async fn motion_identifier(&self, input_hash: Hash) -> Result<Option<Arc<str>>, RepoError> {
|
||||||
todo!()
|
use schema::hashes::dsl::*;
|
||||||
|
|
||||||
|
let mut conn = self.pool.get().await.map_err(PostgresError::Pool)?;
|
||||||
|
|
||||||
|
let opt = hashes
|
||||||
|
.select(motion_identifier)
|
||||||
|
.filter(hash.eq(&input_hash))
|
||||||
|
.get_result::<Option<String>>(&mut conn)
|
||||||
|
.await
|
||||||
|
.optional()
|
||||||
|
.map_err(PostgresError::Diesel)?
|
||||||
|
.flatten()
|
||||||
|
.map(Arc::from);
|
||||||
|
|
||||||
|
Ok(opt)
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn cleanup_hash(&self, hash: Hash) -> Result<(), RepoError> {
|
async fn cleanup_hash(&self, input_hash: Hash) -> Result<(), RepoError> {
|
||||||
todo!()
|
let mut conn = self.pool.get().await.map_err(PostgresError::Pool)?;
|
||||||
|
|
||||||
|
conn.transaction(|conn| {
|
||||||
|
Box::pin(async move {
|
||||||
|
diesel::delete(schema::hashes::dsl::hashes)
|
||||||
|
.filter(schema::hashes::dsl::hash.eq(&input_hash))
|
||||||
|
.execute(conn)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
diesel::delete(schema::variants::dsl::variants)
|
||||||
|
.filter(schema::variants::dsl::hash.eq(&input_hash))
|
||||||
|
.execute(conn)
|
||||||
|
.await
|
||||||
|
})
|
||||||
|
})
|
||||||
|
.await
|
||||||
|
.map_err(PostgresError::Diesel)?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue