introduce Dump TaskListIdentifier variant

This commit is contained in:
ad hoc 2022-05-17 10:58:15 +02:00
parent 5a5066023b
commit 737b891a41
No known key found for this signature in database
GPG Key ID: 4F00A782990CC643
1 changed files with 13 additions and 1 deletions

View File

@ -76,6 +76,7 @@ pub struct IndexController<U, I> {
index_resolver: Arc<IndexResolver<U, I>>,
scheduler: Arc<RwLock<Scheduler>>,
task_store: TaskStore,
dump_path: PathBuf,
dump_handle: dump_actor::DumpActorHandleImpl,
update_file_store: UpdateFileStore,
}
@ -89,6 +90,7 @@ impl<U, I> Clone for IndexController<U, I> {
dump_handle: self.dump_handle.clone(),
update_file_store: self.update_file_store.clone(),
task_store: self.task_store.clone(),
dump_path: self.dump_path.clone(),
}
}
}
@ -234,7 +236,7 @@ impl IndexControllerBuilder {
receiver,
update_file_store.clone(),
scheduler.clone(),
dump_path,
dump_path.clone(),
analytics_path,
index_size,
task_store_size,
@ -269,6 +271,7 @@ impl IndexControllerBuilder {
index_resolver,
scheduler,
dump_handle,
dump_path,
update_file_store,
task_store,
})
@ -425,6 +428,15 @@ where
Ok(task)
}
pub async fn register_dump_task(&self) -> Result<Task> {
let content = TaskContent::Dump {
path: self.dump_path.clone(),
};
let task = self.task_store.register(None, content).await?;
self.scheduler.read().await.notify();
Ok(task)
}
pub async fn get_task(&self, id: TaskId, filter: Option<TaskFilter>) -> Result<Task> {
let task = self.scheduler.read().await.get_task(id, filter).await?;
Ok(task)