-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtranslate.go
420 lines (393 loc) · 9.69 KB
/
translate.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
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
package dali
import (
"bytes"
"database/sql/driver"
"fmt"
"reflect"
"sort"
"strconv"
"strings"
"time"
"unicode/utf8"
"github.com/mibk/dali/dialect"
)
// Marshaler is the interface implemented by types that can marshal
// themselves into valid SQL. Any type that implements Marshaler can
// be used as an argument to the ?sql placeholder.
type Marshaler interface {
MarshalSQL(t Translator) (string, error)
}
// A Translator translates SQL queries using a dialect.
type Translator struct {
dialect dialect.Dialect
preparedStmt bool
err error
args []interface{}
index int // of current arg
param int // placeholder index
}
func translate(d dialect.Dialect, sql string, args []interface{}) (string, error) {
t := Translator{
dialect: d,
}
return t.Translate(sql, args)
}
func translatePreparedStmt(d dialect.Dialect, sql string, args []interface{}) (string, error) {
t := Translator{
dialect: d,
preparedStmt: true,
}
return t.Translate(sql, args)
}
// Translate processes sql and args using the dialect specified in t.
// It returns the resulting SQL query and an error, if there is one.
func (t Translator) Translate(sql string, args []interface{}) (string, error) {
t.args = args
s, err := t.translate(sql)
if err != nil {
return "", fmt.Errorf("dali: %v", err)
}
return s, nil
}
func (t Translator) clone() Translator {
return Translator{
dialect: t.dialect,
preparedStmt: t.preparedStmt,
}
}
func (p *Translator) checkInterpolationOf(placeholder string) error {
if p.preparedStmt {
return fmt.Errorf("%s cannot be used in prepared statements", placeholder)
}
return nil
}
func (p *Translator) translate(sql string) (string, error) {
b := new(bytes.Buffer)
pos := 0
for pos < len(sql) {
r, w := utf8.DecodeRuneInString(sql[pos:])
pos += w
switch r {
case '[':
w := strings.IndexRune(sql[pos:], ']')
if w == -1 {
return "", fmt.Errorf("identifier not terminated")
}
col := sql[pos : pos+w]
p.dialect.EscapeIdent(b, col)
pos += w + 1 // size of ']'
case '?':
start, end := pos, pos
var expand bool
for {
r, w := utf8.DecodeRuneInString(sql[pos:])
if r < 'a' || r > 'z' {
if strings.HasPrefix(sql[pos:], "...") {
pos += 3
expand = true
}
break
}
pos += w
end = pos
}
if err := p.interpolate(b, sql[start:end], expand); err != nil {
return "", err
}
default:
b.WriteRune(r)
}
}
if p.index < len(p.args) {
return "", fmt.Errorf("only %d args are expected", p.index)
}
return b.String(), nil
}
func (p *Translator) nextArg() interface{} {
if p.index >= len(p.args) {
p.try(fmt.Errorf("there is not enough args for placeholders"))
return nil
}
v := p.args[p.index]
p.index++
return v
}
func (p *Translator) nextParamNumber() int {
p.param++
return p.param
}
func (p *Translator) interpolate(b *bytes.Buffer, typ string, expand bool) error {
if expand {
switch typ {
case "":
p.try(p.checkInterpolationOf("?..."))
p.try(p.escapeMultipleValues(b, p.nextArg()))
case "ident":
idents, ok := p.nextArg().([]string)
if !ok {
return fmt.Errorf("?ident... expects the argument to be a []string")
} else if len(idents) == 0 {
return fmt.Errorf("empty slice passed to ?ident...")
}
for i, ident := range idents {
if i > 0 {
b.WriteString(", ")
}
p.dialect.EscapeIdent(b, ident)
}
case "values":
p.try(p.checkInterpolationOf("?values..."))
p.try(p.printMultiValuesClause(b, p.nextArg()))
default:
return fmt.Errorf("?%s cannot be expanded (...) or doesn't exist", typ)
}
} else {
switch typ {
case "":
if p.preparedStmt {
p.dialect.PrintPlaceholderSign(b, p.nextParamNumber())
return nil
}
p.try(p.escapeValue(b, p.nextArg()))
case "ident":
ident, ok := p.nextArg().(string)
if !ok {
return p.try(
fmt.Errorf("?ident expects the argument to be a string"))
}
p.dialect.EscapeIdent(b, ident)
case "values":
p.try(p.checkInterpolationOf("?values"))
p.try(p.printValuesClause(b, p.nextArg()))
case "set":
p.try(p.checkInterpolationOf("?set"))
p.try(p.printSetClause(b, p.nextArg()))
case "sql":
switch arg := p.nextArg().(type) {
case Marshaler:
sql, err := arg.MarshalSQL(p.clone())
if err != nil {
return fmt.Errorf("marshal SQL: %v", err)
}
b.WriteString(sql)
case string:
b.WriteString(arg)
default:
return fmt.Errorf("?sql expects the argument to be a string or Marshaler")
}
default:
return fmt.Errorf("unknown placeholder ?%s", typ)
}
}
return p.err
}
func (p *Translator) try(err error) error {
if p.err == nil {
p.err = err
}
return p.err
}
var timeType = reflect.TypeOf(time.Time{})
func (p *Translator) escapeValue(b *bytes.Buffer, v interface{}) error {
vv := reflect.ValueOf(v)
if valuer, ok := v.(driver.Valuer); ok {
if vv.Kind() == reflect.Ptr && vv.IsNil() {
b.WriteString("NULL")
return nil
}
var err error
if v, err = valuer.Value(); err != nil {
return err
}
vv = reflect.ValueOf(v)
}
if v == nil {
b.WriteString("NULL")
return nil
}
switch vv.Kind() {
case reflect.Ptr:
if vv.IsNil() {
b.WriteString("NULL")
return nil
}
return p.escapeValue(b, vv.Elem().Interface())
case reflect.Bool:
p.dialect.EscapeBool(b, vv.Bool())
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
formatInt(b, vv.Int())
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:
formatUint(b, vv.Uint())
case reflect.Float32, reflect.Float64:
formatFloat(b, vv.Float())
case reflect.String:
p.dialect.EscapeString(b, vv.String())
case reflect.Slice:
if vv.Type().Elem().Kind() == reflect.Uint8 {
p.dialect.EscapeBytes(b, vv.Bytes())
break
}
return fmt.Errorf("only a slice of bytes supported; got: %T", v)
case reflect.Struct:
if vv.Type() == timeType {
p.dialect.EscapeTime(b, vv.Interface().(time.Time))
break
}
fallthrough
default:
return fmt.Errorf("invalid argument type: %T", v)
}
return nil
}
func formatInt(b *bytes.Buffer, i int64) { b.WriteString(strconv.FormatInt(i, 10)) }
func formatUint(b *bytes.Buffer, u uint64) { b.WriteString(strconv.FormatUint(u, 10)) }
func formatFloat(b *bytes.Buffer, f float64) { b.WriteString(strconv.FormatFloat(f, 'f', -1, 64)) }
func (p *Translator) escapeMultipleValues(b *bytes.Buffer, v interface{}) error {
vv := reflect.ValueOf(v)
if vv.Kind() != reflect.Slice {
return fmt.Errorf("?... expects the argument to be a slice")
}
length := vv.Len()
if length == 0 {
b.WriteString("NULL")
return nil
}
for i := 0; i < length; i++ {
if i > 0 {
b.WriteString(", ")
}
if err := p.escapeValue(b, vv.Index(i).Interface()); err != nil {
return err
}
}
return nil
}
func (p *Translator) printValuesClause(b *bytes.Buffer, v interface{}) error {
cols, vals, err := p.deriveColsAndVals(v)
if err != nil {
return err
}
b.WriteRune('(')
for i, c := range cols {
if i > 0 {
b.WriteString(", ")
}
p.dialect.EscapeIdent(b, c)
}
b.WriteString(") VALUES (")
for i, v := range vals {
if i > 0 {
b.WriteString(", ")
}
p.try(p.escapeValue(b, v))
}
b.WriteRune(')')
return nil
}
func (p *Translator) printSetClause(b *bytes.Buffer, v interface{}) error {
cols, vals, err := p.deriveColsAndVals(v)
if err != nil {
return err
}
b.WriteString("SET ")
for i, c := range cols {
if i > 0 {
b.WriteString(", ")
}
v := vals[i]
p.dialect.EscapeIdent(b, c)
b.WriteString(" = ")
p.try(p.escapeValue(b, v))
}
return nil
}
// deriveColsAndVals derives column names from an underlying type of v and returns
// them together with the corresponding values.
func (p *Translator) deriveColsAndVals(v interface{}) (cols []string, vals []interface{}, err error) {
switch v := v.(type) {
case Map:
keys := make([]string, 0, len(v))
for k := range v {
keys = append(keys, k)
}
sort.Strings(keys)
for _, col := range keys {
cols = append(cols, col)
vals = append(vals, v[col])
}
default:
vv := reflect.ValueOf(v)
if vv.Kind() == reflect.Ptr {
vv = reflect.Indirect(vv)
}
if vv.Kind() != reflect.Struct {
return nil, nil, fmt.Errorf("argument must be a pointer to a struct")
}
var indexes [][]int
cols, indexes = colNamesAndFieldIndexes(vv.Type(), true)
vals = valuesByFieldIndexes(vv, indexes)
}
if len(cols) == 0 {
err = errNoCols(v)
}
return
}
func (p *Translator) printMultiValuesClause(b *bytes.Buffer, v interface{}) error {
errInvalidArg := fmt.Errorf("?values... expects the argument to be a slice of structs")
vv := reflect.ValueOf(v)
if vv.Kind() != reflect.Slice {
return errInvalidArg
}
el := vv.Type().Elem()
isPtr := false
if el.Kind() == reflect.Ptr {
el = el.Elem()
isPtr = true
}
if el.Kind() != reflect.Struct {
return errInvalidArg
}
if vv.Len() == 0 {
return fmt.Errorf("empty slice passed to ?values...")
}
cols, indexes := colNamesAndFieldIndexes(el, true)
if len(cols) == 0 {
return errNoCols(v)
}
b.WriteRune('(')
for i, c := range cols {
if i > 0 {
b.WriteString(", ")
}
p.dialect.EscapeIdent(b, c)
}
b.WriteString(") VALUES")
for i, length := 0, vv.Len(); i < length; i++ {
b.WriteString(" (")
el := vv.Index(i)
if isPtr {
el = reflect.Indirect(el)
}
vals := valuesByFieldIndexes(el, indexes)
for i, v := range vals {
if i > 0 {
b.WriteString(", ")
}
p.try(p.escapeValue(b, v))
}
b.WriteRune(')')
if i != length-1 {
b.WriteRune(',')
}
}
return nil
}
func errNoCols(v interface{}) error {
return fmt.Errorf("no columns derived from %T", v)
}
func valuesByFieldIndexes(v reflect.Value, indexes [][]int) (vals []interface{}) {
for _, index := range indexes {
vals = append(vals, v.FieldByIndex(index).Interface())
}
return
}