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
|
// Copyright 2018 Canonical Ltd.
// Licensed under the LGPL, see LICENCE file for details.
package sqlsimplekv
import (
"bytes"
"context"
"database/sql"
"strings"
"text/template"
errgo "gopkg.in/errgo.v1"
)
type tmplID int
const (
_ tmplID = iota - 1
tmplGetKeyValue
tmplGetKeyValueForUpdate
tmplInsertKeyValue
tmplListKeys
numTmpl
)
type queryer interface {
ExecContext(ctx context.Context, query string, args ...interface{}) (sql.Result, error)
QueryContext(ctx context.Context, query string, args ...interface{}) (*sql.Rows, error)
QueryRowContext(ctx context.Context, query string, args ...interface{}) *sql.Row
}
// argBuilder is an interface that can be embedded in template parameters
// to record the arguments needed to be supplied with SQL queries.
type argBuilder interface {
// Arg is a method that is called in templates with the value of
// the next argument to be used in the query. Arg should remmebre
// the value and return a valid placeholder to access that
// argument when executing the query.
Arg(interface{}) string
// args returns the slice of arguments that should be used when
// executing the query.
args() []interface{}
}
type driver struct {
tmpls [numTmpl]*template.Template
argBuilderFunc func() argBuilder
isDuplicate func(error) bool
}
// exec performs the Exec method on the given queryer by processing the
// given template with the given params to determine the query to
// execute.
func (d *driver) exec(ctx context.Context, q queryer, tmplID tmplID, params argBuilder) (sql.Result, error) {
query, err := d.executeTemplate(tmplID, params)
if err != nil {
return nil, errgo.Notef(err, "cannot build query")
}
res, err := q.ExecContext(ctx, query, params.args()...)
return res, errgo.Mask(err, errgo.Any)
}
// query performs the Query method on the given queryer by processing the
// given template with the given params to determine the query to
// execute.
func (d *driver) query(ctx context.Context, q queryer, tmplID tmplID, params argBuilder) (*sql.Rows, error) {
query, err := d.executeTemplate(tmplID, params)
if err != nil {
return nil, errgo.Notef(err, "cannot build query")
}
rows, err := q.QueryContext(ctx, query, params.args()...)
return rows, errgo.Mask(err, errgo.Any)
}
// queryRow performs the QueryRow method on the given queryer by
// processing the given template with the given params to determine the
// query to execute.
func (d *driver) queryRow(ctx context.Context, q queryer, tmplID tmplID, params argBuilder) (*sql.Row, error) {
query, err := d.executeTemplate(tmplID, params)
if err != nil {
return nil, errgo.Notef(err, "cannot build query")
}
return q.QueryRowContext(ctx, query, params.args()...), nil
}
func (d *driver) parseTemplate(tmplID tmplID, tmpl string) error {
var err error
d.tmpls[tmplID], err = template.New("").Funcs(template.FuncMap{
"join": strings.Join,
}).Parse(tmpl)
return errgo.Mask(err)
}
func (d *driver) executeTemplate(tmplID tmplID, params argBuilder) (string, error) {
var buf bytes.Buffer
if err := d.tmpls[tmplID].Execute(&buf, params); err != nil {
return "", errgo.Mask(err)
}
return buf.String(), nil
}
|