use {
super::RowIter,
crate::{
ast::{IndexOperator, OrderByExpr},
data::Value,
result::{Error, Result},
},
async_trait::async_trait,
serde::Serialize,
std::fmt::Debug,
thiserror::Error as ThisError,
};
#[derive(ThisError, Serialize, Debug, PartialEq, Eq)]
pub enum IndexError {
#[error("table not found: {0}")]
TableNotFound(String),
#[error("index name already exists: {0}")]
IndexNameAlreadyExists(String),
#[error("index name does not exist: {0}")]
IndexNameDoesNotExist(String),
#[error("conflict - table not found: {0}")]
ConflictTableNotFound(String),
#[error("conflict - update failed - index value")]
ConflictOnEmptyIndexValueUpdate,
#[error("conflict - delete failed - index value")]
ConflictOnEmptyIndexValueDelete,
#[error("conflict - scan failed - index value")]
ConflictOnEmptyIndexValueScan,
#[error("conflict - index sync - delete index data")]
ConflictOnIndexDataDeleteSync,
}
#[async_trait(?Send)]
pub trait Index {
async fn scan_indexed_data(
&self,
_table_name: &str,
_index_name: &str,
_asc: Option<bool>,
_cmp_value: Option<(&IndexOperator, Value)>,
) -> Result<RowIter> {
Err(Error::StorageMsg(
"[Storage] Index::scan_indexed_data is not supported".to_owned(),
))
}
}
#[async_trait(?Send)]
pub trait IndexMut {
async fn create_index(
&mut self,
_table_name: &str,
_index_name: &str,
_column: &OrderByExpr,
) -> Result<()> {
let msg = "[Storage] Index::create_index is not supported".to_owned();
Err(Error::StorageMsg(msg))
}
async fn drop_index(&mut self, _table_name: &str, _index_name: &str) -> Result<()> {
let msg = "[Storage] Index::drop_index is not supported".to_owned();
Err(Error::StorageMsg(msg))
}
}