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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
use crate::common::{Indented, IteratorJoin, SQL_INDENTATION};
use std::{borrow::Cow, fmt::Display};

struct SqliteIdentifier<T>(T);

impl<T: Display> Display for SqliteIdentifier<T> {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "\"{}\"", self.0)
    }
}

pub struct CreateTable<'a> {
    pub table_name: &'a dyn Display,
    pub columns: Vec<Column<'a>>,
    pub primary_key: Option<Vec<Cow<'a, str>>>,
    pub foreign_keys: Vec<ForeignKey<'a>>,
}

impl Display for CreateTable<'_> {
    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
        writeln!(f, "CREATE TABLE {} (", self.table_name)?;

        self.columns.iter().map(Indented).join(",\n", f)?;

        if let Some(primary_key) = &self.primary_key {
            f.write_str(",\n\n")?;
            f.write_str(SQL_INDENTATION)?;
            f.write_str("PRIMARY KEY (")?;
            primary_key.iter().map(SqliteIdentifier).join(", ", f)?;
            f.write_str(")")?;
        }

        for foreign_key in &self.foreign_keys {
            write!(f, ",\n{SQL_INDENTATION}{foreign_key}")?;
        }

        write!(f, "\n)")
    }
}

#[derive(Debug, Default)]
pub struct ForeignKey<'a> {
    pub constrains: Vec<Cow<'a, str>>,
    pub references: (Cow<'a, str>, Vec<Cow<'a, str>>),
    pub constraint_name: Option<Cow<'a, str>>,
    pub on_delete: Option<ForeignKeyAction>,
    pub on_update: Option<ForeignKeyAction>,
}

/// Foreign key action types (for ON DELETE|ON UPDATE).
#[derive(Debug)]
pub enum ForeignKeyAction {
    /// Produce an error indicating that the deletion or update would create a foreign key
    /// constraint violation. If the constraint is deferred, this error will be produced at
    /// constraint check time if there still exist any referencing rows. This is the default action.
    NoAction,
    /// Produce an error indicating that the deletion or update would create a foreign key
    /// constraint violation. This is the same as NO ACTION except that the check is not deferrable.
    Restrict,
    /// Delete any rows referencing the deleted row, or update the values of the referencing
    /// column(s) to the new values of the referenced columns, respectively.
    Cascade,
    /// Set the referencing column(s) to null.
    SetNull,
    /// Set the referencing column(s) to their default values. (There must be a row in the
    /// referenced table matching the default values, if they are not null, or the operation
    /// will fail).
    SetDefault,
}

impl Display for ForeignKeyAction {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let action_s = match self {
            ForeignKeyAction::NoAction => "NO ACTION",
            ForeignKeyAction::Restrict => "RESTRICT",
            ForeignKeyAction::Cascade => "CASCADE",
            ForeignKeyAction::SetNull => "SET NULL",
            ForeignKeyAction::SetDefault => "SET DEFAULT",
        };

        f.write_str(action_s)
    }
}

impl Display for ForeignKey<'_> {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        if let Some(constraint_name) = &self.constraint_name {
            write!(f, "CONSTRAINT \"{constraint_name}\" ")?;
        }

        f.write_str("FOREIGN KEY (")?;

        self.constrains.iter().map(SqliteIdentifier).join(", ", f)?;

        write!(
            f,
            ") REFERENCES \"{referenced_table}\" (",
            referenced_table = self.references.0,
        )?;

        self.references.1.iter().map(SqliteIdentifier).join(", ", f)?;

        f.write_str(")")?;

        if let Some(action) = &self.on_delete {
            f.write_str(" ON DELETE ")?;
            action.fmt(f)?;
        }

        if let Some(action) = &self.on_update {
            f.write_str(" ON UPDATE ")?;
            action.fmt(f)?;
        }

        Ok(())
    }
}

#[derive(Debug, Default)]
pub struct Column<'a> {
    pub name: Cow<'a, str>,
    pub r#type: Cow<'a, str>,
    pub not_null: bool,
    pub primary_key: bool,
    pub default: Option<Cow<'a, str>>,
    /// Whether to render AUTOINCREMENT on the primary key.
    pub autoincrement: bool,
}

impl Display for Column<'_> {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(
            f,
            "\"{name}\" {tpe}{not_null}{primary_key}{autoincrement}",
            name = self.name,
            tpe = self.r#type,
            not_null = if self.not_null { " NOT NULL" } else { "" },
            primary_key = if self.primary_key { " PRIMARY KEY" } else { "" },
            autoincrement = if self.autoincrement { " AUTOINCREMENT" } else { "" },
        )?;

        if let Some(default) = &self.default {
            f.write_str(" DEFAULT ")?;
            f.write_str(default)?;
        }

        Ok(())
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use indoc::indoc;

    #[test]
    fn basic_create_table() {
        let create_table = CreateTable {
            table_name: &SqliteIdentifier("Cat"),
            columns: vec![
                Column {
                    name: "id".into(),
                    r#type: "integer".into(),
                    primary_key: true,
                    autoincrement: true,
                    ..Default::default()
                },
                Column {
                    name: "boxId".into(),
                    r#type: "uuid".into(),
                    ..Default::default()
                },
            ],
            primary_key: None,
            foreign_keys: Vec::new(),
        };

        let expected = indoc::indoc!(
            r#"
            CREATE TABLE "Cat" (
                "id" integer PRIMARY KEY AUTOINCREMENT,
                "boxId" uuid
            )
            "#
        );

        assert_eq!(create_table.to_string(), expected.trim_matches('\n'))
    }

    #[test]
    fn create_table_with_primary_key() {
        let create_table = CreateTable {
            table_name: &SqliteIdentifier("Cat"),
            columns: vec![
                Column {
                    name: "id".into(),
                    r#type: "integer".into(),
                    ..Default::default()
                },
                Column {
                    name: "boxId".into(),
                    r#type: "uuid".into(),
                    default: Some("'maybe_a_uuid_idk'".into()),
                    ..Default::default()
                },
            ],
            primary_key: Some(vec!["id".into(), "boxId".into()]),
            foreign_keys: Vec::new(),
        };

        let expected = indoc!(
            r#"
            CREATE TABLE "Cat" (
                "id" integer,
                "boxId" uuid DEFAULT 'maybe_a_uuid_idk',

                PRIMARY KEY ("id", "boxId")
            )
            "#
        );

        assert_eq!(create_table.to_string(), expected.trim_matches('\n'))
    }

    #[test]
    fn create_table_with_primary_key_and_foreign_keys() {
        let create_table = CreateTable {
            table_name: &SqliteIdentifier("Cat"),
            columns: vec![
                Column {
                    name: "id".into(),
                    r#type: "integer".into(),
                    ..Default::default()
                },
                Column {
                    name: "boxId".into(),
                    r#type: "uuid".into(),
                    default: Some("'maybe_a_uuid_idk'".into()),
                    ..Default::default()
                },
            ],
            primary_key: Some(vec!["id".into(), "boxId".into()]),
            foreign_keys: vec![
                ForeignKey {
                    constrains: vec!["boxId".into()],
                    references: ("Box".into(), vec!["id".into(), "material".into()]),
                    ..Default::default()
                },
                ForeignKey {
                    constrains: vec!["id".into()],
                    references: ("meow".into(), vec!["id".into()]),
                    constraint_name: Some("meowConstraint".into()),
                    ..Default::default()
                },
            ],
        };

        let expected = indoc!(
            r#"
            CREATE TABLE "Cat" (
                "id" integer,
                "boxId" uuid DEFAULT 'maybe_a_uuid_idk',

                PRIMARY KEY ("id", "boxId"),
                FOREIGN KEY ("boxId") REFERENCES "Box" ("id", "material"),
                CONSTRAINT "meowConstraint" FOREIGN KEY ("id") REFERENCES "meow" ("id")
            )
            "#
        );

        assert_eq!(create_table.to_string(), expected.trim_matches('\n'))
    }
}