get update id

This commit is contained in:
mpostma 2021-01-28 17:20:51 +01:00
parent 4119ae8655
commit 60371b9dcf
No known key found for this signature in database
GPG Key ID: CBC8A7C1D7A28C3A
4 changed files with 47 additions and 38 deletions

View File

@ -10,7 +10,7 @@ use crate::index_controller::{IndexController, Settings, UpdateResult, UpdateMet
use crate::index_controller::updates::UpdateStatus; use crate::index_controller::updates::UpdateStatus;
impl Data { impl Data {
pub async fn add_documents<B, E, S>( pub async fn add_documents<B, E, S>(
&self, &self,
index: S, index: S,
method: IndexDocumentsMethod, method: IndexDocumentsMethod,
@ -52,24 +52,24 @@ impl Data {
Ok(update.into()) Ok(update.into())
} }
//#[inline] #[inline]
//pub fn get_update_status<S: AsRef<str>>(&self, _index: S, uid: u64) -> anyhow::Result<Option<UpdateStatus<UpdateMeta, UpdateResult, String>>> { pub fn get_update_status<S: AsRef<str>>(&self, index: S, uid: u64) -> anyhow::Result<Option<UpdateStatus<UpdateMeta, UpdateResult, String>>> {
//self.indexes.get_update_status(uid) self.index_controller.update_status(index, uid)
//} }
//pub fn get_updates_status(&self, _index: &str) -> anyhow::Result<Vec<UpdateStatus<UpdateMeta, UpdateResult, String>>> { //pub fn get_updates_status(&self, _index: &str) -> anyhow::Result<Vec<UpdateStatus<UpdateMeta, UpdateResult, String>>> {
//let result = self.update_queue.iter_metas(|processing, processed, pending, aborted, failed| { //let result = self.update_queue.iter_metas(|processing, processed, pending, aborted, failed| {
//let mut metas = processing //let mut metas = processing
//.map(UpdateStatus::from) //.map(UpdateStatus::from)
//.into_iter() //.into_iter()
//.chain(processed.filter_map(|i| Some(i.ok()?.1)).map(UpdateStatus::from)) //.chain(processed.filter_map(|i| Some(i.ok()?.1)).map(UpdateStatus::from))
//.chain(pending.filter_map(|i| Some(i.ok()?.1)).map(UpdateStatus::from)) //.chain(pending.filter_map(|i| Some(i.ok()?.1)).map(UpdateStatus::from))
//.chain(aborted.filter_map(|i| Some(i.ok()?.1)).map(UpdateStatus::from)) //.chain(aborted.filter_map(|i| Some(i.ok()?.1)).map(UpdateStatus::from))
//.chain(failed.filter_map(|i| Some(i.ok()?.1)).map(UpdateStatus::from)) //.chain(failed.filter_map(|i| Some(i.ok()?.1)).map(UpdateStatus::from))
//.collect::<Vec<_>>(); //.collect::<Vec<_>>();
//metas.sort_by(|a, b| a.id().cmp(&b.id())); //metas.sort_by(|a, b| a.id().cmp(&b.id()));
//Ok(metas) //Ok(metas)
//})?; //})?;
//Ok(result) //Ok(result)
//} //}
} }

View File

@ -8,6 +8,7 @@ use std::path::Path;
use std::sync::Arc; use std::sync::Arc;
use milli::Index; use milli::Index;
use anyhow::bail;
use crate::option::IndexerOpts; use crate::option::IndexerOpts;
use super::IndexController; use super::IndexController;
@ -73,4 +74,11 @@ impl IndexController for LocalIndexController {
let index = self.indexes.index(name)?.map(|(i, _)| i); let index = self.indexes.index(name)?.map(|(i, _)| i);
Ok(index) Ok(index)
} }
fn update_status(&self, index: impl AsRef<str>, id: u64) -> anyhow::Result<Option<UpdateStatus<UpdateMeta, UpdateResult, String>>> {
match self.indexes.index(&index)? {
Some((_, update_store)) => Ok(update_store.meta(id)?),
None => bail!("index {:?} doesn't exist", index.as_ref()),
}
}
} }

View File

@ -135,4 +135,6 @@ pub trait IndexController {
/// Returns, if it exists, an `IndexView` to the requested index. /// Returns, if it exists, an `IndexView` to the requested index.
fn index(&self, uid: impl AsRef<str>) -> anyhow::Result<Option<Arc<Index>>>; fn index(&self, uid: impl AsRef<str>) -> anyhow::Result<Option<Arc<Index>>>;
fn update_status(&self, index: impl AsRef<str>, id: u64) -> anyhow::Result<Option<UpdateStatus<UpdateMeta, UpdateResult, String>>>;
} }

View File

@ -1,7 +1,7 @@
use actix_web::{delete, get, post, put}; use actix_web::{delete, get, post, put};
use actix_web::{web, HttpResponse}; use actix_web::{web, HttpResponse};
use chrono::{DateTime, Utc}; use chrono::{DateTime, Utc};
//use log::error; use log::error;
use serde::{Deserialize, Serialize}; use serde::{Deserialize, Serialize};
use crate::Data; use crate::Data;
@ -94,8 +94,8 @@ async fn delete_index(
#[derive(Deserialize)] #[derive(Deserialize)]
struct UpdateParam { struct UpdateParam {
_index_uid: String, index_uid: String,
_update_id: u64, update_id: u64,
} }
#[get( #[get(
@ -103,24 +103,23 @@ struct UpdateParam {
wrap = "Authentication::Private" wrap = "Authentication::Private"
)] )]
async fn get_update_status( async fn get_update_status(
_data: web::Data<Data>, data: web::Data<Data>,
_path: web::Path<UpdateParam>, path: web::Path<UpdateParam>,
) -> Result<HttpResponse, ResponseError> { ) -> Result<HttpResponse, ResponseError> {
todo!() let result = data.get_update_status(&path.index_uid, path.update_id);
//let result = data.get_update_status(&path.index_uid, path.update_id); match result {
//match result { Ok(Some(meta)) => {
//Ok(Some(meta)) => { let json = serde_json::to_string(&meta).unwrap();
//let json = serde_json::to_string(&meta).unwrap(); Ok(HttpResponse::Ok().body(json))
//Ok(HttpResponse::Ok().body(json)) }
//} Ok(None) => {
//Ok(None) => { todo!()
//todo!() }
//} Err(e) => {
//Err(e) => { error!("{}", e);
//error!("{}", e); todo!()
//todo!() }
//} }
//}
} }
#[get("/indexes/{index_uid}/updates", wrap = "Authentication::Private")] #[get("/indexes/{index_uid}/updates", wrap = "Authentication::Private")]