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
use std::rc::Rc;
use crate::{TableIndex, backend::IndexBuilder, types::*, prepare::*};
#[derive(Debug, Clone)]
pub struct IndexCreateStatement {
pub(crate) table: Option<Rc<dyn Iden>>,
pub(crate) index: TableIndex,
pub(crate) primary: bool,
pub(crate) unique: bool,
pub(crate) index_type: Option<IndexType>,
}
#[derive(Debug, Clone)]
pub enum IndexType {
BTree,
FullText,
Hash,
Custom(Rc<dyn Iden>),
}
impl Default for IndexCreateStatement {
fn default() -> Self {
Self::new()
}
}
impl IndexCreateStatement {
pub fn new() -> Self {
Self {
table: None,
index: Default::default(),
primary: false,
unique: false,
index_type: None,
}
}
pub fn name(mut self, name: &str) -> Self {
self.index.name(name);
self
}
pub fn table<T: 'static>(mut self, table: T) -> Self
where T: Iden {
self.table = Some(Rc::new(table));
self
}
pub fn col<T: 'static>(mut self, column: T) -> Self
where T: Iden {
self.index.col(column);
self
}
pub fn primary(mut self) -> Self {
self.primary = true;
self
}
pub fn unique(mut self) -> Self {
self.unique = true;
self
}
pub fn full_text(self) -> Self {
self.index_type(IndexType::FullText)
}
pub fn index_type(mut self, index_type: IndexType) -> Self {
self.index_type = Some(index_type);
self
}
pub fn build<T: IndexBuilder>(&self, index_builder: T) -> String {
let mut sql = SqlWriter::new();
index_builder.prepare_index_create_statement(self, &mut sql);
sql.result()
}
pub fn build_any(&self, index_builder: &dyn IndexBuilder) -> String {
let mut sql = SqlWriter::new();
index_builder.prepare_index_create_statement(self, &mut sql);
sql.result()
}
pub fn to_string<T: IndexBuilder>(&self, index_builder: T) -> String {
self.build(index_builder)
}
}