use inherent::inherent;
use crate::{backend::SchemaBuilder, types::*, SchemaStatementBuilder};
use super::common::*;
#[derive(Default, Debug, Clone)]
pub struct IndexCreateStatement {
pub(crate) table: Option<TableRef>,
pub(crate) index: TableIndex,
pub(crate) primary: bool,
pub(crate) unique: bool,
pub(crate) nulls_not_distinct: bool,
pub(crate) index_type: Option<IndexType>,
pub(crate) if_not_exists: bool,
}
#[derive(Debug, Clone)]
pub enum IndexType {
BTree,
FullText,
Hash,
Custom(DynIden),
}
impl IndexCreateStatement {
pub fn new() -> Self {
Self::default()
}
pub fn if_not_exists(&mut self) -> &mut Self {
self.if_not_exists = true;
self
}
pub fn name<T>(&mut self, name: T) -> &mut Self
where
T: Into<String>,
{
self.index.name(name);
self
}
pub fn table<T>(&mut self, table: T) -> &mut Self
where
T: IntoTableRef,
{
self.table = Some(table.into_table_ref());
self
}
pub fn col<C>(&mut self, col: C) -> &mut Self
where
C: IntoIndexColumn,
{
self.index.col(col.into_index_column());
self
}
pub fn primary(&mut self) -> &mut Self {
self.primary = true;
self
}
pub fn unique(&mut self) -> &mut Self {
self.unique = true;
self
}
pub fn nulls_not_distinct(&mut self) -> &mut Self {
self.nulls_not_distinct = true;
self
}
pub fn full_text(&mut self) -> &mut Self {
self.index_type(IndexType::FullText)
}
pub fn index_type(&mut self, index_type: IndexType) -> &mut Self {
self.index_type = Some(index_type);
self
}
pub fn is_primary_key(&self) -> bool {
self.primary
}
pub fn is_unique_key(&self) -> bool {
self.unique
}
pub fn is_nulls_not_distinct(&self) -> bool {
self.nulls_not_distinct
}
pub fn get_index_spec(&self) -> &TableIndex {
&self.index
}
pub fn take(&mut self) -> Self {
Self {
table: self.table.take(),
index: self.index.take(),
primary: self.primary,
unique: self.unique,
nulls_not_distinct: self.nulls_not_distinct,
index_type: self.index_type.take(),
if_not_exists: self.if_not_exists,
}
}
}
#[inherent]
impl SchemaStatementBuilder for IndexCreateStatement {
pub fn build<T: SchemaBuilder>(&self, schema_builder: T) -> String {
let mut sql = String::with_capacity(256);
schema_builder.prepare_index_create_statement(self, &mut sql);
sql
}
pub fn build_any(&self, schema_builder: &dyn SchemaBuilder) -> String {
let mut sql = String::with_capacity(256);
schema_builder.prepare_index_create_statement(self, &mut sql);
sql
}
pub fn to_string<T: SchemaBuilder>(&self, schema_builder: T) -> String;
}