-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcolumn.go
323 lines (283 loc) · 7.23 KB
/
column.go
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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
package pqt
import (
"bytes"
"strings"
)
const (
// EventInsert ...
EventInsert Event = "INSERT"
// EventUpdate ...
EventUpdate Event = "UPDATE"
)
// Event ...
type Event string
// Column describes database column.
type Column struct {
// Name is a column name.
Name string
// ShortName is a column short name. It is used in queries when column name is ambiguous.
ShortName string
// Collate is a collation for column.
// It allows to specify the collation order for character data.
Collate string
// Check is a check constraint.
// It allows to specify a predicate that must be satisfied by each row of the table.
Check string
// Default is a default value for column for given event.
// For example for insert event it will be used when no value is provided.
Default map[Event]string
// NotNull if true means that column cannot be null.
NotNull bool
// Unique if true means that column value must be unique.
Unique bool
// PrimaryKey if true means that column is a primary key.
PrimaryKey bool
// Index if true means that column is indexed.
Index bool
// Type is a column type.
Type Type
// Table is a table that column belongs to.
Table *Table
// Reference is a column that this column references.
Reference *Column
// ReferenceOptions are options for reference.
ReferenceOptions []RelationshipOption
// Match is a match option for foreign key constraint.
Match int32
// OnDelete is a ON DELETE clause that specifies the action to perform when a referenced row in the referenced table is being deleted.
OnDelete int32
// OnUpdate is a ON UPDATE clause that specifies the action to perform when a referenced column in the referenced table is being updated to a new value.
OnUpdate int32
// NoInherit if true means that column is not inherited by child tables.
NoInherit bool
DeferrableInitiallyDeferred bool
DeferrableInitiallyImmediate bool
// IsDynamic if true means that column is not stored in database, but is dynamically created using function.
IsDynamic bool
// Func is a function that is used to create dynamic column.
Func *Function
// Columns are columns that are used by dynamic column function.
Columns Columns
}
// NewColumn initializes new instance of Column.
func NewColumn(n string, t Type, opts ...ColumnOption) *Column {
c := &Column{
Name: n,
Type: t,
}
for _, opt := range opts {
opt(c)
}
return c
}
// NewDynamicColumn initializes new instance of Column that is created using function.
func NewDynamicColumn(n string, f *Function, cs ...*Column) *Column {
return &Column{
IsDynamic: true,
NotNull: true,
Name: n,
Type: f.Type,
Func: f,
Columns: cs,
}
}
// Constraints ...
func (c *Column) Constraints() []*Constraint {
var cs []*Constraint
if c.PrimaryKey {
cs = append(cs, &Constraint{
Type: ConstraintTypePrimaryKey,
PrimaryColumns: Columns{c},
PrimaryTable: c.Table,
})
} else if c.Unique {
cs = append(cs, &Constraint{
Type: ConstraintTypeUnique,
PrimaryColumns: Columns{c},
PrimaryTable: c.Table,
})
} else if c.Index {
cs = append(cs, &Constraint{
Type: ConstraintTypeIndex,
PrimaryColumns: Columns{c},
PrimaryTable: c.Table,
})
}
if c.Check != "" {
cs = append(cs, &Constraint{
Type: ConstraintTypeCheck,
Check: c.Check,
PrimaryColumns: Columns{c},
PrimaryTable: c.Table,
})
}
if c.Reference != nil {
cs = append(cs, &Constraint{
Type: ConstraintTypeForeignKey,
PrimaryColumns: Columns{c},
PrimaryTable: c.Table,
Columns: Columns{c.Reference},
Table: c.Reference.Table,
})
}
return cs
}
// DefaultOn ...
func (c Column) DefaultOn(e ...Event) (string, bool) {
for k, v := range c.Default {
for _, ee := range e {
if k == ee {
return v, true
}
}
}
return "", false
}
// Columns is a slice of columns that implements few handy methods.
type Columns []*Column
// Len implements sort.Interface interface.
func (c Columns) Len() int {
return len(c)
}
// Swap implements sort.Interface interface.
func (c Columns) Swap(i, j int) {
c[i], c[j] = c[j], c[i]
}
// Less implements sort.Interface interface.
func (c Columns) Less(i, j int) bool {
return c[i].Name < c[j].Name
}
// String implements Stringer interface.
func (c Columns) String() string {
b := bytes.NewBuffer(nil)
defer b.Reset()
for i, col := range c {
if i != 0 {
b.WriteRune(',')
}
b.WriteString(col.Name)
}
return b.String()
}
// JoinColumns ...
func JoinColumns(columns Columns, sep string) string {
tmp := make([]string, 0, len(columns))
for _, c := range columns {
tmp = append(tmp, c.Name)
}
return strings.Join(tmp, sep)
}
// Attribute ...
type Attribute struct {
Name, Collate, Default, Check string
NotNull, Unique, PrimaryKey bool
Schema *Schema
Type Type
}
// Constraint ...
func (a *Attribute) Constraint() (*Constraint, bool) {
var kind ConstraintType
switch {
case a.Unique && !a.PrimaryKey:
kind = ConstraintTypeUnique
case a.PrimaryKey && !a.Unique:
kind = ConstraintTypePrimaryKey
case a.Check != "":
kind = ConstraintTypeCheck
default:
return nil, false
}
return &Constraint{
Type: kind,
Check: a.Check,
Attribute: []*Attribute{a},
}, true
}
// ColumnOption configures how we set up the column.
type ColumnOption func(*Column)
// WithTypeMapping ...
func WithTypeMapping(t Type) ColumnOption {
return func(c *Column) {
switch ct := c.Type.(type) {
case MappableType:
ct.Mapping = append(ct.Mapping, t)
default:
c.Type = TypeMappable(c.Type, t)
}
}
}
// WithCheck ...
func WithCheck(ch string) ColumnOption {
return func(c *Column) {
c.Check = ch
}
}
// WithUnique ...
func WithUnique() ColumnOption {
return func(c *Column) {
c.Unique = true
}
}
// WithIndex ...
func WithIndex() ColumnOption {
return func(c *Column) {
c.Index = true
}
}
// WithPrimaryKey ...
func WithPrimaryKey() ColumnOption {
return func(c *Column) {
c.PrimaryKey = true
}
}
// WithCollate ...
func WithCollate(cl string) ColumnOption {
return func(c *Column) {
c.Collate = cl
}
}
// WithDefault ...
func WithDefault(d string, e ...Event) ColumnOption {
return func(c *Column) {
if len(e) == 0 {
e = []Event{EventInsert}
}
if c.Default == nil {
c.Default = make(map[Event]string, len(e))
}
for _, event := range e {
c.Default[event] = d
}
}
}
// WithNotNull ...
func WithNotNull() ColumnOption {
return func(c *Column) {
c.NotNull = true
}
}
// WithReference ...
func WithReference(r *Column, opts ...RelationshipOption) ColumnOption {
return func(c *Column) {
c.Reference = r
c.ReferenceOptions = opts
}
}
// WithOnDelete add ON DELETE clause that specifies the action to perform when a referenced row in the referenced table is being deleted
func WithOnDelete(on int32) ColumnOption {
return func(c *Column) {
c.OnDelete = on
}
}
// WithOnUpdate add ON UPDATE clause that specifies the action to perform when a referenced column in the referenced table is being updated to a new value.
func WithOnUpdate(on int32) ColumnOption {
return func(c *Column) {
c.OnUpdate = on
}
}
// WithColumnShortName ...
func WithColumnShortName(s string) ColumnOption {
return func(c *Column) {
c.ShortName = s
}
}