1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
//! A backend module which provides a few generic traits
//! to implement SQL generation for different databases.
//!
//! It also re-exports the generators for existing databases
//! so they can be used more conveniently.

#[cfg(feature = "mysql")]
mod mysql;
#[cfg(feature = "mysql")]
pub use self::mysql::MySql;

#[cfg(feature = "pg")]
mod pg;
#[cfg(feature = "pg")]
pub use self::pg::Pg;

#[cfg(feature = "sqlite3")]
mod sqlite3;
#[cfg(feature = "sqlite3")]
pub use self::sqlite3::Sqlite;

#[cfg(feature = "mssql")]
mod mssql;
#[cfg(feature = "mssql")]
pub use self::mssql::MsSql;

#[allow(unused_imports)]
use crate::{types::Type, Migration};

/// An enum describing all supported Sql flavours
#[derive(Copy, Clone, Debug)]
pub enum SqlVariant {
    #[cfg(feature = "sqlite3")]
    Sqlite,
    #[cfg(feature = "pg")]
    Pg,
    #[cfg(feature = "mysql")]
    Mysql,
    #[cfg(feature = "mssql")]
    Mssql,
    #[doc(hidden)]
    __Empty,
}

impl SqlVariant {
    pub(crate) fn run_for(self, _migr: &Migration) -> String {
        match self {
            #[cfg(feature = "sqlite3")]
            SqlVariant::Sqlite => _migr.make::<Sqlite>(),

            #[cfg(feature = "pg")]
            SqlVariant::Pg => _migr.make::<Pg>(),

            #[cfg(feature = "mysql")]
            SqlVariant::Mysql => _migr.make::<MySql>(),

            #[cfg(feature = "mssql")]
            SqlVariant::Mssql => _migr.make::<MsSql>(),

            _ => panic!("You need to select an Sql variant!"),
        }
    }
}

/// A generic SQL generator trait
pub trait SqlGenerator {
    /// Create a new table with a name
    fn create_table(name: &str, schema: Option<&str>) -> String;

    /// Create a new table with a name, only if it doesn't exist
    fn create_table_if_not_exists(name: &str, schema: Option<&str>) -> String;

    /// Drop a table with a name
    fn drop_table(name: &str, schema: Option<&str>) -> String;

    /// Drop a table with a name, only if it exists
    fn drop_table_if_exists(name: &str, schema: Option<&str>) -> String;

    /// Rename a table from <old> to <new>
    fn rename_table(old: &str, new: &str, schema: Option<&str>) -> String;

    /// Modify a table in some other way
    fn alter_table(name: &str, schema: Option<&str>) -> String;

    /// Create a new column with a type
    fn add_column(ex: bool, schema: Option<&str>, name: &str, _type: &Type) -> String;

    /// Drop an existing column from the table
    fn drop_column(name: &str) -> String;

    /// Rename an existing column
    fn rename_column(old: &str, new: &str) -> String;

    /// Create a multi-column index
    fn create_index(table: &str, schema: Option<&str>, name: &str, _type: &Type) -> String;

    /// Create a constraint
    fn create_constraint(name: &str, _type: &Type, schema: Option<&str>) -> String;

    /// Create a multi-column index
    fn create_partial_index(
        table: &str,
        schema: Option<&str>,
        name: &str,
        _type: &Type,
        conditions: &str,
    ) -> String {
        format!(
            "{} WHERE {}",
            Self::create_index(table, schema, name, _type),
            conditions
        )
    }

    /// Drop a multi-column index
    fn drop_index(name: &str) -> String;

    /// Add a foreign key
    fn add_foreign_key(
        columns: &[String],
        table: &str,
        relation_columns: &[String],
        schema: Option<&str>,
    ) -> String;

    fn add_primary_key(columns: &[String]) -> String;
}