forked from elgris/sqrl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
insert.go
303 lines (252 loc) · 7.65 KB
/
insert.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
package sqrl
import (
"bytes"
"context"
"database/sql"
"errors"
"fmt"
"io"
"sort"
"strings"
)
// InsertBuilder builds SQL INSERT statements.
type InsertBuilder struct {
StatementBuilderType
returning
prefixes exprs
options []string
into string
columns []string
values [][]interface{}
suffixes exprs
iselect *SelectBuilder
}
// NewInsertBuilder creates new instance of InsertBuilder
func NewInsertBuilder(b StatementBuilderType) *InsertBuilder {
return &InsertBuilder{StatementBuilderType: b}
}
// RunWith sets a Runner (like database/sql.DB) to be used with e.g. Exec.
func (b *InsertBuilder) RunWith(runner BaseRunner) *InsertBuilder {
b.runWith = wrapRunner(runner)
return b
}
// Exec builds and Execs the query with the Runner set by RunWith.
func (b *InsertBuilder) Exec() (sql.Result, error) {
return b.ExecContext(context.Background())
}
// ExecContext builds and Execs the query with the Runner set by RunWith using given context.
func (b *InsertBuilder) ExecContext(ctx context.Context) (sql.Result, error) {
if b.runWith == nil {
return nil, ErrRunnerNotSet
}
return ExecWithContext(ctx, b.runWith, b)
}
// Query builds and Querys the query with the Runner set by RunWith.
func (b *InsertBuilder) Query() (*sql.Rows, error) {
return b.QueryContext(context.Background())
}
// QueryContext builds and runs the query using given context and Query command.
func (b *InsertBuilder) QueryContext(ctx context.Context) (*sql.Rows, error) {
if b.runWith == nil {
return nil, ErrRunnerNotSet
}
return QueryWithContext(ctx, b.runWith, b)
}
// QueryRow builds and QueryRows the query with the Runner set by RunWith.
func (b *InsertBuilder) QueryRow() RowScanner {
return b.QueryRowContext(context.Background())
}
// QueryRowContext builds and runs the query using given context.
func (b *InsertBuilder) QueryRowContext(ctx context.Context) RowScanner {
if b.runWith == nil {
return &Row{err: ErrRunnerNotSet}
}
queryRower, ok := b.runWith.(QueryRowerContext)
if !ok {
return &Row{err: ErrRunnerNotQueryRunnerContext}
}
return QueryRowWithContext(ctx, queryRower, b)
}
// Scan is a shortcut for QueryRow().Scan.
func (b *InsertBuilder) Scan(dest ...interface{}) error {
return b.QueryRow().Scan(dest...)
}
// PlaceholderFormat sets PlaceholderFormat (e.g. Question or Dollar) for the
// query.
func (b *InsertBuilder) PlaceholderFormat(f PlaceholderFormat) *InsertBuilder {
b.placeholderFormat = f
return b
}
// ToSql builds the query into a SQL string and bound args.
func (b *InsertBuilder) ToSql() (sqlStr string, args []interface{}, err error) {
if len(b.into) == 0 {
err = fmt.Errorf("insert statements must specify a table")
return
}
if len(b.values) == 0 && b.iselect == nil {
err = fmt.Errorf("insert statements must have at least one set of values or select clause")
return
}
sql := &bytes.Buffer{}
if len(b.prefixes) > 0 {
args, _ = b.prefixes.AppendToSql(sql, " ", args)
sql.WriteString(" ")
}
sql.WriteString("INSERT ")
if len(b.options) > 0 {
sql.WriteString(strings.Join(b.options, " "))
sql.WriteString(" ")
}
sql.WriteString("INTO ")
sql.WriteString(b.into)
sql.WriteString(" ")
if len(b.columns) > 0 {
sql.WriteString("(")
sql.WriteString(strings.Join(b.columns, ","))
sql.WriteString(") ")
}
if b.iselect != nil {
args, err = b.appendSelectToSQL(sql, args)
} else {
args, err = b.appendValuesToSQL(sql, args)
}
if err != nil {
return
}
if len(b.returning) > 0 {
args, err = b.returning.AppendToSql(sql, args)
if err != nil {
return
}
}
if len(b.suffixes) > 0 {
sql.WriteString(" ")
args, _ = b.suffixes.AppendToSql(sql, " ", args)
}
sqlStr, err = b.placeholderFormat.ReplacePlaceholders(sql.String())
return
}
func (b *InsertBuilder) appendValuesToSQL(w io.Writer, args []interface{}) ([]interface{}, error) {
if len(b.values) == 0 {
return args, errors.New("values for insert statements are not set")
}
io.WriteString(w, "VALUES ")
valuesStrings := make([]string, len(b.values))
for r, row := range b.values {
valueStrings := make([]string, len(row))
for v, val := range row {
switch typedVal := val.(type) {
case expr:
valueStrings[v] = typedVal.sql
args = append(args, typedVal.args...)
case Sqlizer:
var valSql string
var valArgs []interface{}
var err error
valSql, valArgs, err = typedVal.ToSql()
if err != nil {
return nil, err
}
valueStrings[v] = valSql
args = append(args, valArgs...)
default:
valueStrings[v] = "?"
args = append(args, val)
}
}
valuesStrings[r] = fmt.Sprintf("(%s)", strings.Join(valueStrings, ","))
}
io.WriteString(w, strings.Join(valuesStrings, ","))
return args, nil
}
func (b *InsertBuilder) appendSelectToSQL(w io.Writer, args []interface{}) ([]interface{}, error) {
if b.iselect == nil {
return args, errors.New("select clause for insert statements are not set")
}
selectClause, sArgs, err := b.iselect.ToSql()
if err != nil {
return args, err
}
io.WriteString(w, selectClause)
args = append(args, sArgs...)
return args, nil
}
// Prefix adds an expression to the beginning of the query
func (b *InsertBuilder) Prefix(sql string, args ...interface{}) *InsertBuilder {
b.prefixes = append(b.prefixes, Expr(sql, args...))
return b
}
// Options adds keyword options before the INTO clause of the query.
func (b *InsertBuilder) Options(options ...string) *InsertBuilder {
b.options = append(b.options, options...)
return b
}
// Into sets the INTO clause of the query.
func (b *InsertBuilder) Into(into string) *InsertBuilder {
b.into = into
return b
}
// Columns adds insert columns to the query.
func (b *InsertBuilder) Columns(columns ...string) *InsertBuilder {
b.columns = append(b.columns, columns...)
return b
}
// Values adds a single row's values to the query.
func (b *InsertBuilder) Values(values ...interface{}) *InsertBuilder {
b.values = append(b.values, values)
return b
}
// Returning adds columns to RETURNING clause of the query
//
// INSERT ... RETURNING is PostgreSQL specific extension
func (b *InsertBuilder) Returning(columns ...string) *InsertBuilder {
b.returning.Returning(columns...)
return b
}
// ReturningSelect adds subquery to RETURNING clause of the query
//
// INSERT ... RETURNING is PostgreSQL specific extension
func (b *InsertBuilder) ReturningSelect(from *SelectBuilder, alias string) *InsertBuilder {
b.returning.ReturningSelect(from, alias)
return b
}
// Suffix adds an expression to the end of the query
func (b *InsertBuilder) Suffix(sql string, args ...interface{}) *InsertBuilder {
b.suffixes = append(b.suffixes, Expr(sql, args...))
return b
}
// SetMap set columns and values for insert builder from a map of column name and value
// note that it will reset all previous columns and values was set if any
func (b *InsertBuilder) SetMap(clauses map[string]interface{}) *InsertBuilder {
// TODO: replace resetting previous values with extending existing ones?
cols := make([]string, 0, len(clauses))
vals := make([]interface{}, 0, len(clauses))
for col, val := range clauses {
cols = append(cols, col)
vals = append(vals, val)
}
sort.Sort(clauseSlice{cols, vals})
b.columns = cols
b.values = [][]interface{}{vals}
return b
}
type clauseSlice struct {
cols []string
vals []interface{}
}
func (x clauseSlice) Len() int {
return len(x.cols)
}
func (x clauseSlice) Less(i, j int) bool {
return x.cols[i] < x.cols[j]
}
func (x clauseSlice) Swap(i, j int) {
x.cols[i], x.cols[j] = x.cols[j], x.cols[i]
x.vals[i], x.vals[j] = x.vals[j], x.vals[i]
}
// Select set Select clause for insert query
// If Values and Select are used, then Select has higher priority
func (b *InsertBuilder) Select(sb *SelectBuilder) *InsertBuilder {
b.iselect = sb
return b
}