use super::impls::{BaseType, WrapVec};
use super::impls::{Constraint, ReferentialAction};
use crate::types::Type;
pub fn primary() -> Type {
Type::new(BaseType::Primary)
.nullable(true) .increments(false) .primary(false) .unique(false) .indexed(false)
}
pub fn uuid() -> Type {
Type::new(BaseType::UUID)
.nullable(false)
.unique(true)
.indexed(true)
}
pub fn integer() -> Type {
Type::new(BaseType::Integer)
}
pub fn serial() -> Type {
Type::new(BaseType::Serial)
}
pub fn float() -> Type {
Type::new(BaseType::Float)
}
pub fn double() -> Type {
Type::new(BaseType::Double)
}
pub fn boolean() -> Type {
Type::new(BaseType::Boolean)
}
pub fn varchar(len: usize) -> Type {
Type::new(BaseType::Varchar(len))
}
pub fn r#char(len: usize) -> Type {
Type::new(BaseType::Char(len))
}
pub fn text() -> Type {
Type::new(BaseType::Text)
}
pub fn json() -> Type {
Type::new(BaseType::Json)
}
pub fn binary<'inner>() -> Type {
Type::new(BaseType::Binary)
}
pub fn foreign<S, I>(table: S, keys: I) -> Type
where
S: Into<String>,
I: Into<WrapVec<String>>,
{
Type::new(BaseType::Foreign(None, table.into(), keys.into()))
}
pub fn foreign_schema<S, I>(schema: S, table: S, keys: I) -> Type
where
S: Into<String>,
I: Into<WrapVec<String>>,
{
Type::new(BaseType::Foreign(
Some(schema.into()),
table.into(),
keys.into(),
))
}
pub fn custom(sql: &'static str) -> Type {
Type::new(BaseType::Custom(sql))
}
pub fn date() -> Type {
Type::new(BaseType::Date)
}
pub fn time() -> Type {
Type::new(BaseType::Time)
}
pub fn datetime() -> Type {
Type::new(BaseType::DateTime)
}
pub fn array(inner: &Type) -> Type {
Type::new(BaseType::Array(Box::new(inner.get_inner())))
}
pub fn index<I, S>(columns: I) -> Type
where
S: ToString,
I: IntoIterator<Item = S>,
{
let vec: Vec<String> = columns.into_iter().map(|s| s.to_string()).collect();
Type::new(BaseType::Index(vec))
}
pub fn unique_constraint<I, S>(columns: I) -> Type
where
S: ToString,
I: IntoIterator<Item = S>,
{
let vec: Vec<String> = columns.into_iter().map(|s| s.to_string()).collect();
Type::new(BaseType::Constraint(Constraint::Unique, vec))
}
pub fn primary_constraint<I, S>(columns: I) -> Type
where
S: ToString,
I: IntoIterator<Item = S>,
{
let vec: Vec<String> = columns.into_iter().map(|s| s.to_string()).collect();
Type::new(BaseType::Constraint(Constraint::PrimaryKey, vec))
}
pub fn foreign_constraint<C, A, T>(
columns: T,
table: A,
foreign_columns: T,
on_delete: Option<ReferentialAction>,
on_update: Option<ReferentialAction>,
) -> Type
where
C: ToString,
A: ToString,
T: IntoIterator<Item = C>,
{
let columns: Vec<String> = columns.into_iter().map(|s| s.to_string()).collect();
let table = table.to_string();
let foreign_columns: Vec<String> = foreign_columns.into_iter().map(|s| s.to_string()).collect();
let constraint = Constraint::ForeignKey {
table,
foreign_columns,
on_delete,
on_update,
};
Type::new(BaseType::Constraint(constraint, columns))
}