forked from Masterminds/squirrel
-
Notifications
You must be signed in to change notification settings - Fork 1
/
update.go
253 lines (210 loc) · 6.73 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
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
package squirrel
import (
"bytes"
"fmt"
"sort"
"strings"
"github.com/lann/builder"
)
type updateData struct {
PlaceholderFormat PlaceholderFormat
Prefixes exprs
Table string
SetClauses []setClause
WhereParts []Sqlizer
GroupBys []string
HavingParts []Sqlizer
OrderBys []string
Limit string
Offset string
Suffixes exprs
}
type setClause struct {
column string
value interface{}
}
func (d *updateData) ToSql() (sqlStr string, args []interface{}, err error) {
if len(d.Table) == 0 {
err = fmt.Errorf("update statements must specify a table")
return
}
if len(d.SetClauses) == 0 {
err = fmt.Errorf("update statements must have at least one Set clause")
return
}
sql := &bytes.Buffer{}
if len(d.Prefixes) > 0 {
args, _ = d.Prefixes.AppendToSql(sql, " ", args)
sql.WriteString(" ")
}
sql.WriteString("UPDATE ")
sql.WriteString(d.Table)
sql.WriteString(" SET ")
setSqls := make([]string, len(d.SetClauses))
for i, setClause := range d.SetClauses {
var valSql string
e, isExpr := setClause.value.(expr)
if isExpr {
valSql = e.sql
args = append(args, e.args...)
} else {
valSql = "?"
args = append(args, setClause.value)
}
if ok, column := getSetColumn(setClause.column); ok {
setSqls[i] = fmt.Sprintf("%s%s", column, valSql)
} else {
setSqls[i] = fmt.Sprintf("%s = %s", column, valSql)
}
}
sql.WriteString(strings.Join(setSqls, ", "))
if len(d.WhereParts) > 0 {
sql.WriteString(" WHERE ")
args, err = appendToSql(d.WhereParts, sql, " AND ", args)
if err != nil {
return
}
}
if len(d.OrderBys) > 0 {
sql.WriteString(" ORDER BY ")
sql.WriteString(strings.Join(d.OrderBys, ", "))
}
if len(d.Limit) > 0 {
sql.WriteString(" LIMIT ")
sql.WriteString(d.Limit)
}
if len(d.Offset) > 0 {
sql.WriteString(" OFFSET ")
sql.WriteString(d.Offset)
}
if len(d.Suffixes) > 0 {
sql.WriteString(" ")
args, _ = d.Suffixes.AppendToSql(sql, " ", args)
}
sqlStr, err = d.PlaceholderFormat.ReplacePlaceholders(sql.String())
return
}
func getSetColumn(column string) (bool, string) {
r := []rune(column)
str := string(r[:3])
if str == "=-=" || str == "=+=" {
return true, string(r[3:])
}
return false, column
}
// Builder
// UpdateBuilder builds SQL UPDATE statements.
type UpdateBuilder builder.Builder
func init() {
builder.Register(UpdateBuilder{}, updateData{})
}
// Format methods
// PlaceholderFormat sets PlaceholderFormat (e.g. Question or Dollar) for the
// query.
func (b UpdateBuilder) PlaceholderFormat(f PlaceholderFormat) WhereConditions {
return builder.Set(b, "PlaceholderFormat", f).(UpdateBuilder)
}
// SQL methods
// ToSql builds the query into a SQL string and bound args.
func (b UpdateBuilder) ToSql() (string, []interface{}, error) {
data := builder.GetStruct(b).(updateData)
return data.ToSql()
}
// Prefix adds an expression to the beginning of the query
func (b UpdateBuilder) Prefix(sql string, args ...interface{}) UpdateCondition {
return builder.Append(b, "Prefixes", Expr(sql, args...)).(UpdateBuilder)
}
// Table sets the table to be updated.
func (b UpdateBuilder) Table(table string) UpdateCondition {
return builder.Set(b, "Table", table).(UpdateBuilder)
}
// Set adds SET clauses to the query.
func (b UpdateBuilder) Set(column string, value interface{}) UpdateCondition {
return builder.Append(b, "SetClauses", setClause{column: column, value: value}).(UpdateBuilder)
}
func (b UpdateBuilder) IncrBy(column string, num int) UpdateCondition {
column = fmt.Sprintf("=+=%s = %s+", column, column)
return builder.Append(b, "SetClauses", setClause{column: column, value: num}).(UpdateBuilder)
}
func (b UpdateBuilder) DecrBy(column string, num int) UpdateCondition {
column = fmt.Sprintf("=-=%s = %s+", column, column)
return builder.Append(b, "SetClauses", setClause{column: column, value: num}).(UpdateBuilder)
}
// SetMap is a convenience method which calls .Set for each key/value pair in clauses.
func (b UpdateBuilder) SetMap(clauses map[string]interface{}) UpdateCondition {
keys := make([]string, len(clauses))
i := 0
for key := range clauses {
keys[i] = key
i++
}
sort.Strings(keys)
for _, key := range keys {
val, _ := clauses[key]
b = b.Set(key, val).(UpdateBuilder)
}
return b
}
// Where adds WHERE expressions to the query.
//
// See SelectBuilder.Where for more information.
func (b UpdateBuilder) Where(pred interface{}, args ...interface{}) WhereConditions {
return builder.Append(b, "WhereParts", newWherePart(pred, args...)).(UpdateBuilder)
}
//Condition
func (b UpdateBuilder) Condition() WhereConditions {
return builder.Append(b, "WhereParts", newWherePart("")).(UpdateBuilder)
}
//expr
func (b UpdateBuilder) Expr(sql string, args ...interface{}) WhereConditions {
return builder.Append(b, "WhereParts", newWherePart(expr{sql: sql, args: args})).(UpdateBuilder)
}
//eq
func (b UpdateBuilder) Eq(column string, arg interface{}) WhereConditions {
return b.Where(Eq{column: arg})
}
func (b UpdateBuilder) NotEq(column string, arg interface{}) WhereConditions {
return b.Where(NotEq{column: arg})
}
//gt
func (b UpdateBuilder) Gt(column string, arg interface{}) WhereConditions {
return b.Where(Gt{column: arg})
}
//gtOrEq
func (b UpdateBuilder) GtOrEq(column string, arg interface{}) WhereConditions {
return b.Where(GtOrEq{column: arg})
}
//lt
func (b UpdateBuilder) Lt(column string, arg interface{}) WhereConditions {
return b.Where(Lt{column: arg})
}
//ltOrEq
func (b UpdateBuilder) LtOrEq(column string, arg interface{}) WhereConditions {
return b.Where(LtOrEq{column: arg})
}
// OrderBy adds ORDER BY expressions to the query.
func (b UpdateBuilder) OrderBy(orderBys ...string) WhereConditions {
return builder.Extend(b, "OrderBys", orderBys).(UpdateBuilder)
}
// GroupBy adds GROUP BY expressions to the query.
func (b UpdateBuilder) GroupBy(groupBys ...string) WhereConditions {
return builder.Extend(b, "GroupBys", groupBys).(UpdateBuilder)
}
// Having adds an expression to the HAVING clause of the query.
//
// See Where.
func (b UpdateBuilder) Having(pred interface{}, rest ...interface{}) WhereConditions {
return builder.Append(b, "HavingParts", newWherePart(pred, rest...)).(UpdateBuilder)
}
// Limit sets a LIMIT clause on the update.
func (b UpdateBuilder) Limit(limit int) WhereConditions {
return builder.Set(b, "Limit", fmt.Sprintf("%d", limit)).(UpdateBuilder)
}
// Offset sets a OFFSET clause on the query.
func (b UpdateBuilder) Offset(offset int) WhereConditions {
return builder.Set(b, "Offset", fmt.Sprintf("%d", offset)).(UpdateBuilder)
}
// Suffix adds an expression to the end of the query
func (b UpdateBuilder) Suffix(sql string, args ...interface{}) WhereConditions {
return builder.Append(b, "Suffixes", Expr(sql, args...)).(UpdateBuilder)
}