pub struct ProcessedFileRepository<'a> {
pub pool: &'a SqlitePool,
}Expand description
Repository for processed file operations (inbox deduplication)
Fields§
§pool: &'a SqlitePoolImplementations§
Source§impl<'a> ProcessedFileRepository<'a>
impl<'a> ProcessedFileRepository<'a>
pub fn new(pool: &'a SqlitePool) -> Self
Sourcepub async fn is_processed(&self, namespace_id: i64, path: &str) -> Result<bool>
pub async fn is_processed(&self, namespace_id: i64, path: &str) -> Result<bool>
Check if a file has been successfully processed
Sourcepub async fn get_completed_paths(
&self,
namespace_id: i64,
) -> Result<HashSet<String>>
pub async fn get_completed_paths( &self, namespace_id: i64, ) -> Result<HashSet<String>>
Get all completed file paths for a namespace (for batch dedup checks)
Sourcepub async fn mark_processing(
&self,
namespace_id: i64,
path: &str,
content_hash: Option<&str>,
) -> Result<i64>
pub async fn mark_processing( &self, namespace_id: i64, path: &str, content_hash: Option<&str>, ) -> Result<i64>
Mark a file as being processed
Sourcepub async fn mark_processed(&self, id: i64, memory_id: i64) -> Result<()>
pub async fn mark_processed(&self, id: i64, memory_id: i64) -> Result<()>
Mark a file as successfully processed with memory reference
Sourcepub async fn get_pending(
&self,
namespace_id: i64,
limit: i32,
) -> Result<Vec<ProcessedFileRow>>
pub async fn get_pending( &self, namespace_id: i64, limit: i32, ) -> Result<Vec<ProcessedFileRow>>
Get files pending processing
Sourcepub async fn clear_namespace(&self, namespace_id: i64) -> Result<u64>
pub async fn clear_namespace(&self, namespace_id: i64) -> Result<u64>
Clear all processed files for a namespace
Auto Trait Implementations§
impl<'a> Freeze for ProcessedFileRepository<'a>
impl<'a> !RefUnwindSafe for ProcessedFileRepository<'a>
impl<'a> Send for ProcessedFileRepository<'a>
impl<'a> Sync for ProcessedFileRepository<'a>
impl<'a> Unpin for ProcessedFileRepository<'a>
impl<'a> UnsafeUnpin for ProcessedFileRepository<'a>
impl<'a> !UnwindSafe for ProcessedFileRepository<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more