Upstream merge Add Session wrapper With this patch we can now use gocqlx like: ``` session.Query(`SELECT * FROM struct_table`, nil).Get(&v) ``` instead of (old format): ``` gocqlx.Query(session.Query(`SELECT * FROM struct_table`), nil).Get(&v) ``` Signed-off-by: Michał Matczuk <michal@scylladb.com>
277 lines
7.7 KiB
Go
277 lines
7.7 KiB
Go
// Copyright (C) 2017 ScyllaDB
|
|
// Use of this source code is governed by a ALv2-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package gocqlx
|
|
|
|
import (
|
|
"bytes"
|
|
"errors"
|
|
"fmt"
|
|
"reflect"
|
|
"strconv"
|
|
|
|
"github.com/gocql/gocql"
|
|
"github.com/scylladb/go-reflectx"
|
|
)
|
|
|
|
// CompileNamedQuery translates query with named parameters in a form
|
|
// ':<identifier>' to query with '?' placeholders and a list of parameter names.
|
|
// If you need to use ':' in a query, i.e. with maps or UDTs use '::' instead.
|
|
func CompileNamedQuery(qs []byte) (stmt string, names []string, err error) {
|
|
// guess number of names
|
|
n := bytes.Count(qs, []byte(":"))
|
|
if n == 0 {
|
|
return "", nil, errors.New("expected a named query")
|
|
}
|
|
names = make([]string, 0, n)
|
|
rebound := make([]byte, 0, len(qs))
|
|
|
|
inName := false
|
|
last := len(qs) - 1
|
|
name := make([]byte, 0, 10)
|
|
|
|
for i, b := range qs {
|
|
// a ':' while we're in a name is an error
|
|
switch {
|
|
case b == ':':
|
|
// if this is the second ':' in a '::' escape sequence, append a ':'
|
|
if inName && i > 0 && qs[i-1] == ':' {
|
|
rebound = append(rebound, ':')
|
|
inName = false
|
|
continue
|
|
} else if inName {
|
|
err = errors.New("unexpected `:` while reading named param at " + strconv.Itoa(i))
|
|
return stmt, names, err
|
|
}
|
|
inName = true
|
|
name = []byte{}
|
|
// if we're in a name, and this is an allowed character, continue
|
|
case inName && (allowedBindRune(b) || b == '_' || b == '.') && i != last:
|
|
// append the byte to the name if we are in a name and not on the last byte
|
|
name = append(name, b)
|
|
// if we're in a name and it's not an allowed character, the name is done
|
|
case inName:
|
|
inName = false
|
|
// if this is the final byte of the string and it is part of the name, then
|
|
// make sure to add it to the name
|
|
if i == last && allowedBindRune(b) {
|
|
name = append(name, b)
|
|
}
|
|
// add the string representation to the names list
|
|
names = append(names, string(name))
|
|
// add a proper bindvar for the bindType
|
|
rebound = append(rebound, '?')
|
|
// add this byte to string unless it was not part of the name
|
|
if i != last {
|
|
rebound = append(rebound, b)
|
|
} else if !allowedBindRune(b) {
|
|
rebound = append(rebound, b)
|
|
}
|
|
default:
|
|
// this is a normal byte and should just go onto the rebound query
|
|
rebound = append(rebound, b)
|
|
}
|
|
}
|
|
|
|
return string(rebound), names, err
|
|
}
|
|
|
|
func allowedBindRune(b byte) bool {
|
|
return (b >= 'a' && b <= 'z') || (b >= 'A' && b <= 'Z') || (b >= '0' && b <= '9')
|
|
}
|
|
|
|
// Queryx is a wrapper around gocql.Query which adds struct binding capabilities.
|
|
type Queryx struct {
|
|
*gocql.Query
|
|
Names []string
|
|
Mapper *reflectx.Mapper
|
|
err error
|
|
}
|
|
|
|
// Query creates a new Queryx from gocql.Query using a default mapper.
|
|
//
|
|
// Deprecated: Use Session API instead.
|
|
func Query(q *gocql.Query, names []string) *Queryx {
|
|
return &Queryx{
|
|
Query: q,
|
|
Names: names,
|
|
Mapper: DefaultMapper,
|
|
}
|
|
}
|
|
|
|
// BindStruct binds query named parameters to values from arg using mapper. If
|
|
// value cannot be found error is reported.
|
|
func (q *Queryx) BindStruct(arg interface{}) *Queryx {
|
|
arglist, err := bindStructArgs(q.Names, arg, nil, q.Mapper)
|
|
if err != nil {
|
|
q.err = fmt.Errorf("bind error: %s", err)
|
|
} else {
|
|
q.err = nil
|
|
q.Bind(arglist...)
|
|
}
|
|
|
|
return q
|
|
}
|
|
|
|
// BindStructMap binds query named parameters to values from arg0 and arg1
|
|
// using a mapper. If value cannot be found in arg0 it's looked up in arg1
|
|
// before reporting an error.
|
|
func (q *Queryx) BindStructMap(arg0 interface{}, arg1 map[string]interface{}) *Queryx {
|
|
arglist, err := bindStructArgs(q.Names, arg0, arg1, q.Mapper)
|
|
if err != nil {
|
|
q.err = fmt.Errorf("bind error: %s", err)
|
|
} else {
|
|
q.err = nil
|
|
q.Bind(arglist...)
|
|
}
|
|
|
|
return q
|
|
}
|
|
|
|
func bindStructArgs(names []string, arg0 interface{}, arg1 map[string]interface{}, m *reflectx.Mapper) ([]interface{}, error) {
|
|
arglist := make([]interface{}, 0, len(names))
|
|
|
|
// grab the indirected value of arg
|
|
v := reflect.ValueOf(arg0)
|
|
for v = reflect.ValueOf(arg0); v.Kind() == reflect.Ptr; {
|
|
v = v.Elem()
|
|
}
|
|
|
|
err := m.TraversalsByNameFunc(v.Type(), names, func(i int, t []int) error {
|
|
if len(t) != 0 {
|
|
val := reflectx.FieldByIndexesReadOnly(v, t) // nolint:scopelint
|
|
arglist = append(arglist, val.Interface())
|
|
} else {
|
|
val, ok := arg1[names[i]]
|
|
if !ok {
|
|
return fmt.Errorf("could not find name %q in %#v and %#v", names[i], arg0, arg1)
|
|
}
|
|
arglist = append(arglist, val)
|
|
}
|
|
|
|
return nil
|
|
})
|
|
|
|
return arglist, err
|
|
}
|
|
|
|
// BindMap binds query named parameters using map.
|
|
func (q *Queryx) BindMap(arg map[string]interface{}) *Queryx {
|
|
arglist, err := bindMapArgs(q.Names, arg)
|
|
if err != nil {
|
|
q.err = fmt.Errorf("bind error: %s", err)
|
|
} else {
|
|
q.err = nil
|
|
q.Bind(arglist...)
|
|
}
|
|
|
|
return q
|
|
}
|
|
|
|
func bindMapArgs(names []string, arg map[string]interface{}) ([]interface{}, error) {
|
|
arglist := make([]interface{}, 0, len(names))
|
|
|
|
for _, name := range names {
|
|
val, ok := arg[name]
|
|
if !ok {
|
|
return arglist, fmt.Errorf("could not find name %q in %#v", name, arg)
|
|
}
|
|
arglist = append(arglist, val)
|
|
}
|
|
return arglist, nil
|
|
}
|
|
|
|
// Bind sets query arguments of query. This can also be used to rebind new query arguments
|
|
// to an existing query instance.
|
|
func (q *Queryx) Bind(v ...interface{}) *Queryx {
|
|
q.Query.Bind(udtWrapSlice(q.Mapper, DefaultUnsafe, v)...)
|
|
return q
|
|
}
|
|
|
|
// Err returns any binding errors.
|
|
func (q *Queryx) Err() error {
|
|
return q.err
|
|
}
|
|
|
|
// Exec executes the query without returning any rows.
|
|
func (q *Queryx) Exec() error {
|
|
if q.err != nil {
|
|
return q.err
|
|
}
|
|
return q.Query.Exec()
|
|
}
|
|
|
|
// ExecRelease calls Exec and releases the query, a released query cannot be
|
|
// reused.
|
|
func (q *Queryx) ExecRelease() error {
|
|
defer q.Release()
|
|
return q.Exec()
|
|
}
|
|
|
|
// Get scans first row into a destination and closes the iterator.
|
|
//
|
|
// If the destination type is a struct pointer, then Iter.StructScan will be
|
|
// used.
|
|
// If the destination is some other type, then the row must only have one column
|
|
// which can scan into that type.
|
|
// This includes types that implement gocql.Unmarshaler and gocql.UDTUnmarshaler.
|
|
//
|
|
// If you'd like to treat a type that implements gocql.Unmarshaler or
|
|
// gocql.UDTUnmarshaler as an ordinary struct you should call
|
|
// Iter().StructOnly().Get(dest) instead.
|
|
//
|
|
// If no rows were selected, ErrNotFound is returned.
|
|
func (q *Queryx) Get(dest interface{}) error {
|
|
if q.err != nil {
|
|
return q.err
|
|
}
|
|
return q.Iter().Get(dest)
|
|
}
|
|
|
|
// GetRelease calls Get and releases the query, a released query cannot be
|
|
// reused.
|
|
func (q *Queryx) GetRelease(dest interface{}) error {
|
|
defer q.Release()
|
|
return q.Get(dest)
|
|
}
|
|
|
|
// Select scans all rows into a destination, which must be a pointer to slice
|
|
// of any type, and closes the iterator.
|
|
//
|
|
// If the destination slice type is a struct, then Iter.StructScan will be used
|
|
// on each row.
|
|
// If the destination is some other type, then each row must only have one
|
|
// column which can scan into that type.
|
|
// This includes types that implement gocql.Unmarshaler and gocql.UDTUnmarshaler.
|
|
//
|
|
// If you'd like to treat a type that implements gocql.Unmarshaler or
|
|
// gocql.UDTUnmarshaler as an ordinary struct you should call
|
|
// Iter().StructOnly().Select(dest) instead.
|
|
//
|
|
// If no rows were selected, ErrNotFound is NOT returned.
|
|
func (q *Queryx) Select(dest interface{}) error {
|
|
if q.err != nil {
|
|
return q.err
|
|
}
|
|
return q.Iter().Select(dest)
|
|
}
|
|
|
|
// SelectRelease calls Select and releases the query, a released query cannot be
|
|
// reused.
|
|
func (q *Queryx) SelectRelease(dest interface{}) error {
|
|
defer q.Release()
|
|
return q.Select(dest)
|
|
}
|
|
|
|
// Iter returns Iterx instance for the query. It should be used when data is too
|
|
// big to be loaded with Select in order to do row by row iteration.
|
|
// See Iterx StructScan function.
|
|
func (q *Queryx) Iter() *Iterx {
|
|
return &Iterx{
|
|
Iter: q.Query.Iter(),
|
|
Mapper: q.Mapper,
|
|
unsafe: DefaultUnsafe,
|
|
}
|
|
}
|