-
Notifications
You must be signed in to change notification settings - Fork 28
/
update.go
138 lines (115 loc) · 2.9 KB
/
update.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
package sqlingo
import (
"context"
"database/sql"
"strconv"
"strings"
)
type updateStatus struct {
scope scope
assignments []assignment
where BooleanExpression
orderBys []OrderBy
limit *int
ctx context.Context
}
func (d *database) Update(table Table) updateWithSet {
return updateStatus{scope: scope{Database: d, Tables: []Table{table}}}
}
type updateWithSet interface {
Set(Field Field, value interface{}) updateWithSet
SetIf(prerequisite bool, Field Field, value interface{}) updateWithSet
Where(conditions ...BooleanExpression) updateWithWhere
OrderBy(orderBys ...OrderBy) updateWithOrder
Limit(limit int) updateWithLimit
}
type updateWithWhere interface {
toUpdateWithContext
toUpdateFinal
OrderBy(orderBys ...OrderBy) updateWithOrder
Limit(limit int) updateWithLimit
}
type updateWithOrder interface {
toUpdateWithContext
toUpdateFinal
Limit(limit int) updateWithLimit
}
type updateWithLimit interface {
toUpdateWithContext
toUpdateFinal
}
type toUpdateWithContext interface {
WithContext(ctx context.Context) toUpdateFinal
}
type toUpdateFinal interface {
GetSQL() (string, error)
Execute() (sql.Result, error)
}
func (s updateStatus) Set(field Field, value interface{}) updateWithSet {
s.assignments = append([]assignment{}, s.assignments...)
s.assignments = append(s.assignments, assignment{
field: field,
value: value,
})
return s
}
func (s updateStatus) SetIf(prerequisite bool, field Field, value interface{}) updateWithSet {
if prerequisite {
return s.Set(field, value)
}
return s
}
func (s updateStatus) Where(conditions ...BooleanExpression) updateWithWhere {
s.where = And(conditions...)
return s
}
func (s updateStatus) OrderBy(orderBys ...OrderBy) updateWithOrder {
s.orderBys = orderBys
return s
}
func (s updateStatus) Limit(limit int) updateWithLimit {
s.limit = &limit
return s
}
func (s updateStatus) GetSQL() (string, error) {
if len(s.assignments) == 0 {
return "/* UPDATE without SET clause */ DO 0", nil
}
var sb strings.Builder
sb.Grow(128)
sb.WriteString("UPDATE ")
sb.WriteString(s.scope.Tables[0].GetSQL(s.scope))
assignmentsSql, err := commaAssignments(s.scope, s.assignments)
if err != nil {
return "", err
}
sb.WriteString(" SET ")
sb.WriteString(assignmentsSql)
if err := appendWhere(&sb, s.scope, s.where); err != nil {
return "", err
}
if len(s.orderBys) > 0 {
orderBySql, err := commaOrderBys(s.scope, s.orderBys)
if err != nil {
return "", err
}
sb.WriteString(" ORDER BY ")
sb.WriteString(orderBySql)
}
if s.limit != nil {
sb.WriteString(" LIMIT ")
sb.WriteString(strconv.Itoa(*s.limit))
}
return sb.String(), nil
}
func (s updateStatus) WithContext(ctx context.Context) toUpdateFinal {
s.ctx = ctx
return s
}
func (s updateStatus) Execute() (sql.Result, error) {
sqlString, err := s.GetSQL()
if err != nil {
return nil, err
}
return s.scope.Database.ExecuteContext(s.ctx, sqlString)
}