2022-09-07 00:10:14 +02:00
|
|
|
//! Utility functions on the DBs. Mainly getter and setters.
|
|
|
|
|
|
|
|
use milli::{
|
2022-09-07 11:21:53 +02:00
|
|
|
heed::{types::DecodeIgnore, RoTxn, RwTxn},
|
2022-09-07 00:10:14 +02:00
|
|
|
BEU32,
|
|
|
|
};
|
|
|
|
use roaring::RoaringBitmap;
|
|
|
|
|
|
|
|
use crate::{
|
|
|
|
task::{Kind, Status},
|
|
|
|
Error, IndexScheduler, Result, Task, TaskId,
|
|
|
|
};
|
|
|
|
|
|
|
|
impl IndexScheduler {
|
2022-09-07 11:21:53 +02:00
|
|
|
pub(crate) fn last_task_id(&self, rtxn: &RoTxn) -> Result<Option<TaskId>> {
|
|
|
|
Ok(self
|
|
|
|
.all_tasks
|
|
|
|
.remap_data_type::<DecodeIgnore>()
|
|
|
|
.last(rtxn)?
|
|
|
|
.map(|(k, _)| k.get() + 1))
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn next_task_id(&self, rtxn: &RoTxn) -> Result<TaskId> {
|
|
|
|
Ok(self.last_task_id(rtxn)?.unwrap_or_default())
|
|
|
|
}
|
|
|
|
|
2022-09-07 00:10:14 +02:00
|
|
|
pub(crate) fn get_task(&self, rtxn: &RoTxn, task_id: TaskId) -> Result<Option<Task>> {
|
|
|
|
Ok(self.all_tasks.get(rtxn, &BEU32::new(task_id))?)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Convert an iterator to a `Vec` of tasks. The tasks MUST exist or a
|
|
|
|
/// `CorruptedTaskQueue` error will be throwed.
|
|
|
|
pub(crate) fn get_existing_tasks(
|
|
|
|
&self,
|
|
|
|
rtxn: &RoTxn,
|
|
|
|
tasks: impl IntoIterator<Item = TaskId>,
|
|
|
|
) -> Result<Vec<Task>> {
|
|
|
|
tasks
|
|
|
|
.into_iter()
|
|
|
|
.map(|task_id| {
|
|
|
|
self.get_task(rtxn, task_id)
|
|
|
|
.and_then(|task| task.ok_or(Error::CorruptedTaskQueue))
|
|
|
|
})
|
|
|
|
.collect::<Result<_>>()
|
|
|
|
}
|
|
|
|
|
2022-09-07 20:08:07 +02:00
|
|
|
pub(crate) fn update_task(&self, wtxn: &mut RwTxn, task: Task) -> Result<()> {
|
|
|
|
let old_task = self
|
|
|
|
.get_task(wtxn, task.uid)?
|
|
|
|
.ok_or(Error::CorruptedTaskQueue)?;
|
|
|
|
|
|
|
|
if old_task.status != task.status {
|
2022-09-07 20:38:57 +02:00
|
|
|
self.update_status(wtxn, old_task.status, |mut bitmap| {
|
2022-09-07 20:08:07 +02:00
|
|
|
bitmap.remove(task.uid);
|
|
|
|
bitmap
|
|
|
|
})?;
|
2022-09-07 20:38:57 +02:00
|
|
|
self.update_status(wtxn, task.status, |mut bitmap| {
|
2022-09-07 20:08:07 +02:00
|
|
|
bitmap.insert(task.uid);
|
|
|
|
bitmap
|
|
|
|
})?;
|
|
|
|
}
|
|
|
|
|
|
|
|
if old_task.kind.as_kind() != task.kind.as_kind() {
|
2022-09-07 20:38:57 +02:00
|
|
|
self.update_kind(wtxn, old_task.kind.as_kind(), |mut bitmap| {
|
2022-09-07 20:08:07 +02:00
|
|
|
bitmap.remove(task.uid);
|
|
|
|
bitmap
|
|
|
|
})?;
|
2022-09-07 20:38:57 +02:00
|
|
|
self.update_kind(wtxn, task.kind.as_kind(), |mut bitmap| {
|
2022-09-07 20:08:07 +02:00
|
|
|
bitmap.insert(task.uid);
|
|
|
|
bitmap
|
|
|
|
})?;
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2022-09-07 00:10:14 +02:00
|
|
|
pub(crate) fn get_index(&self, rtxn: &RoTxn, index: &str) -> Result<RoaringBitmap> {
|
|
|
|
Ok(self.index_tasks.get(&rtxn, index)?.unwrap_or_default())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn put_index(
|
|
|
|
&self,
|
|
|
|
wtxn: &mut RwTxn,
|
|
|
|
index: &str,
|
|
|
|
bitmap: &RoaringBitmap,
|
|
|
|
) -> Result<()> {
|
|
|
|
Ok(self.index_tasks.put(wtxn, index, bitmap)?)
|
|
|
|
}
|
|
|
|
|
2022-09-07 00:22:58 +02:00
|
|
|
pub(crate) fn update_index(
|
2022-09-07 00:10:14 +02:00
|
|
|
&self,
|
|
|
|
wtxn: &mut RwTxn,
|
2022-09-07 00:22:58 +02:00
|
|
|
index: &str,
|
|
|
|
f: impl Fn(RoaringBitmap) -> RoaringBitmap,
|
2022-09-07 00:10:14 +02:00
|
|
|
) -> Result<()> {
|
2022-09-07 00:22:58 +02:00
|
|
|
let tasks = self.get_index(&wtxn, index)?;
|
|
|
|
let tasks = f(tasks);
|
|
|
|
self.put_index(wtxn, index, &tasks)?;
|
|
|
|
|
|
|
|
Ok(())
|
2022-09-07 00:10:14 +02:00
|
|
|
}
|
|
|
|
|
2022-09-07 00:22:58 +02:00
|
|
|
pub(crate) fn get_status(&self, rtxn: &RoTxn, status: Status) -> Result<RoaringBitmap> {
|
|
|
|
Ok(self.status.get(&rtxn, &status)?.unwrap_or_default())
|
2022-09-07 00:10:14 +02:00
|
|
|
}
|
|
|
|
|
2022-09-07 00:22:58 +02:00
|
|
|
pub(crate) fn put_status(
|
2022-09-07 00:10:14 +02:00
|
|
|
&self,
|
|
|
|
wtxn: &mut RwTxn,
|
2022-09-07 00:22:58 +02:00
|
|
|
status: Status,
|
2022-09-07 00:10:14 +02:00
|
|
|
bitmap: &RoaringBitmap,
|
|
|
|
) -> Result<()> {
|
2022-09-07 00:22:58 +02:00
|
|
|
Ok(self.status.put(wtxn, &status, bitmap)?)
|
2022-09-07 00:10:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn update_status(
|
|
|
|
&self,
|
|
|
|
wtxn: &mut RwTxn,
|
|
|
|
status: Status,
|
|
|
|
f: impl Fn(RoaringBitmap) -> RoaringBitmap,
|
|
|
|
) -> Result<()> {
|
|
|
|
let tasks = self.get_status(&wtxn, status)?;
|
|
|
|
let tasks = f(tasks);
|
|
|
|
self.put_status(wtxn, status, &tasks)?;
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2022-09-07 00:22:58 +02:00
|
|
|
pub(crate) fn get_kind(&self, rtxn: &RoTxn, kind: Kind) -> Result<RoaringBitmap> {
|
|
|
|
Ok(self.kind.get(&rtxn, &kind)?.unwrap_or_default())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn put_kind(
|
|
|
|
&self,
|
|
|
|
wtxn: &mut RwTxn,
|
|
|
|
kind: Kind,
|
|
|
|
bitmap: &RoaringBitmap,
|
|
|
|
) -> Result<()> {
|
|
|
|
Ok(self.kind.put(wtxn, &kind, bitmap)?)
|
|
|
|
}
|
|
|
|
|
2022-09-07 00:10:14 +02:00
|
|
|
pub(crate) fn update_kind(
|
|
|
|
&self,
|
|
|
|
wtxn: &mut RwTxn,
|
|
|
|
kind: Kind,
|
|
|
|
f: impl Fn(RoaringBitmap) -> RoaringBitmap,
|
|
|
|
) -> Result<()> {
|
|
|
|
let tasks = self.get_kind(&wtxn, kind)?;
|
|
|
|
let tasks = f(tasks);
|
|
|
|
self.put_kind(wtxn, kind, &tasks)?;
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|