use super::SqlGenerator;
use crate::{
functions::AutogenFunction,
types::{BaseType, Constraint, Type, WrappedDefault},
};
macro_rules! prefix {
($schema:expr) => {
$schema
.map(|s| format!("`{}`.", s))
.unwrap_or_else(|| String::new())
};
}
pub struct MySql;
impl SqlGenerator for MySql {
fn create_table(name: &str, schema: Option<&str>) -> String {
format!("CREATE TABLE {}`{}`", prefix!(schema), name)
}
fn create_table_if_not_exists(name: &str, schema: Option<&str>) -> String {
format!("CREATE TABLE {}`{}` IF NOT EXISTS", prefix!(schema), name)
}
fn drop_table(name: &str, schema: Option<&str>) -> String {
format!("DROP TABLE {}`{}`", prefix!(schema), name)
}
fn drop_table_if_exists(name: &str, schema: Option<&str>) -> String {
format!("DROP TABLE {}`{}` IF EXISTS", prefix!(schema), name)
}
fn rename_table(old: &str, new: &str, schema: Option<&str>) -> String {
let schema = prefix!(schema);
format!("RENAME TABLE {}`{}` TO {}`{}`", schema, old, schema, new)
}
fn alter_table(name: &str, schema: Option<&str>) -> String {
format!("ALTER TABLE {}`{}`", prefix!(schema), name)
}
fn add_column(ex: bool, schema: Option<&str>, name: &str, tt: &Type) -> String {
let bt: BaseType = tt.get_inner();
use self::BaseType::*;
let name = format!("`{}`", name);
#[cfg_attr(rustfmt, rustfmt_skip)] format!(
"{}{}{}{}{}{}",
match bt {
Text => format!("{}{} {}", MySql::prefix(ex), name, MySql::print_type(bt, schema)),
Varchar(_) => format!("{}{} {}", MySql::prefix(ex), name, MySql::print_type(bt, schema)),
Char(_) => format!("{}{} {}", MySql::prefix(ex), name, MySql::print_type(bt, schema)),
Primary => format!("{}{} {}", MySql::prefix(ex), name, MySql::print_type(bt, schema)),
Integer => format!("{}{} {}", MySql::prefix(ex), name, MySql::print_type(bt, schema)),
Serial => format!("{}{} {}", MySql::prefix(ex), name, MySql::print_type(bt, schema)),
Float => format!("{}{} {}", MySql::prefix(ex), name, MySql::print_type(bt, schema)),
Double => format!("{}{} {}", MySql::prefix(ex), name, MySql::print_type(bt, schema)),
UUID => unimplemented!(),
Json => format!("{}{} {}", MySql::prefix(ex), name, MySql::print_type(bt, schema)),
Boolean => format!("{}{} {}", MySql::prefix(ex), name, MySql::print_type(bt, schema)),
Date => format!("{}{} {}", MySql::prefix(ex), name, MySql::print_type(bt, schema)),
Time => format!("{}{} {}", MySql::prefix(ex), name, MySql::print_type(bt, schema)),
DateTime => format!("{}{} {}", MySql::prefix(ex), name, MySql::print_type(bt, schema)),
Binary => format!("{}{} {}", MySql::prefix(ex), name, MySql::print_type(bt, schema)),
Foreign(_, _, _) => format!("{}{} {}", MySql::prefix(ex), name, MySql::print_type(bt, schema)),
Custom(_) => format!("{}{} {}", MySql::prefix(ex), name, MySql::print_type(bt, schema)),
Array(it) => format!("{}{} {}", MySql::prefix(ex), name, MySql::print_type(Array(Box::new(*it)), schema)),
Index(_) => unreachable!("Indices are handled via custom builder"),
Constraint(_, _) => unreachable!("Constraints are handled via custom builder"),
},
match tt.increments {
true => " AUTO_INCREMENT",
false => "",
},
match tt.primary {
true => " PRIMARY KEY",
false => "",
},
match (&tt.default).as_ref() {
Some(ref m) => match m {
WrappedDefault::Function(ref fun) => match fun {
AutogenFunction::CurrentTimestamp => format!(" DEFAULT CURRENT_TIMESTAMP")
},
WrappedDefault::Null => format!(" DEFAULT NULL"),
WrappedDefault::AnyText(ref val) => format!(" DEFAULT '{}'", val),
WrappedDefault::UUID(ref val) => format!(" DEFAULT '{}'", val),
WrappedDefault::Date(ref val) => format!(" DEFAULT '{:?}'", val),
WrappedDefault::Boolean(val) => format!(" DEFAULT {}", if *val { 1 } else { 0 }),
WrappedDefault::Custom(ref val) => format!(" DEFAULT '{}'", val),
_ => format!(" DEFAULT {}", m),
},
_ => format!(""),
},
match tt.nullable {
true => "",
false => " NOT NULL",
},
match tt.unique {
true => " UNIQUE",
false => "",
},
)
}
fn drop_column(name: &str) -> String {
format!("DROP COLUMN `{}`", name)
}
fn rename_column(old: &str, new: &str) -> String {
format!("CHANGE COLUMN `{}` `{}`", old, new)
}
fn create_index(table: &str, schema: Option<&str>, name: &str, _type: &Type) -> String {
format!(
"CREATE {} INDEX `{}` ON {}`{}` ({})",
match _type.unique {
true => "UNIQUE",
false => "",
},
name,
prefix!(schema),
table,
match _type.inner {
BaseType::Index(ref cols) => cols
.iter()
.map(|col| format!("`{}`", col))
.collect::<Vec<_>>()
.join(", "),
_ => unreachable!(),
}
)
}
fn create_constraint(name: &str, _type: &Type, schema: Option<&str>) -> String {
let (r#type, columns, suffix) = match _type.inner {
BaseType::Constraint(ref r#type, ref columns) => {
let suffix = match r#type {
Constraint::ForeignKey {
table,
foreign_columns,
on_delete,
on_update,
} => {
let foreign_columns: Vec<_> = foreign_columns
.iter()
.map(|col| format!("`{}`", col))
.collect();
let mut suffix =
format!(" REFERENCES {}`{}`({})", prefix!(schema), table, foreign_columns.join(", "),);
if let Some(on_delete) = on_delete {
suffix.push_str(&format!(" ON DELETE {}", on_delete));
}
if let Some(on_update) = on_update {
suffix.push_str(&format!(" ON UPDATE {}", on_update));
}
Some(suffix)
}
_ => None,
};
let columns = columns
.iter()
.map(|col| format!("`{}`", col))
.collect::<Vec<_>>();
(r#type.clone(), columns, suffix)
}
_ => unreachable!(),
};
let mut sql = format!("CONSTRAINT `{}` {} ({})", name, r#type, columns.join(", "),);
if let Some(suffix) = suffix {
sql.push_str(&suffix);
}
sql
}
fn create_partial_index(
_table: &str,
_schema: Option<&str>,
_name: &str,
_type: &Type,
_conditions: &str,
) -> String {
panic!("Partial indices are not supported in MySQL")
}
fn drop_index(name: &str) -> String {
format!("DROP INDEX `{}`", name)
}
fn add_foreign_key(
columns: &[String],
table: &str,
relation_columns: &[String],
schema: Option<&str>,
) -> String {
let columns: Vec<_> = columns.into_iter().map(|c| format!("`{}`", c)).collect();
let relation_columns: Vec<_> = relation_columns
.into_iter()
.map(|c| format!("`{}`", c))
.collect();
format!(
"FOREIGN KEY ({}) REFERENCES {}`{}`({})",
columns.join(","),
prefix!(schema),
table,
relation_columns.join(","),
)
}
fn add_primary_key(columns: &[String]) -> String {
let columns: Vec<_> = columns.into_iter().map(|c| format!("`{}`", c)).collect();
format!("PRIMARY KEY ({})", columns.join(","))
}
}
impl MySql {
fn prefix(ex: bool) -> String {
match ex {
true => format!("ADD COLUMN "),
false => format!(""),
}
}
fn print_type(t: BaseType, schema: Option<&str>) -> String {
use self::BaseType::*;
match t {
Text => format!("TEXT"),
Varchar(l) => match l {
0 => format!("VARCHAR"), _ => format!("VARCHAR({})", l),
},
Char(l) => format!("CHAR({})", l),
Primary => format!("INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY"),
Integer => format!("INTEGER"),
Serial => format!("INTEGER AUTO_INCREMENT"),
Float => format!("FLOAT"),
Double => format!("DOUBLE"),
UUID => format!("CHAR(36)"),
Boolean => format!("BOOLEAN"),
Date => format!("DATE"),
Time => format!("TIME"),
DateTime => format!("DATETIME"),
Json => format!("JSON"),
Binary => format!("BYTEA"),
Foreign(s, t, refs) => format!(
"INTEGER REFERENCES {}{}({})",
prefix!(s),
t,
refs.0.join(",")
),
Custom(t) => format!("{}", t),
Array(meh) => format!("{}[]", MySql::print_type(*meh, schema)),
Index(_) => unreachable!(),
Constraint(_, _) => unreachable!(),
}
}
}