2016-04-13 15:51:58 +02:00
|
|
|
package boil
|
|
|
|
|
2016-04-19 07:31:07 +02:00
|
|
|
import (
|
|
|
|
"database/sql"
|
|
|
|
"fmt"
|
|
|
|
)
|
2016-04-19 04:02:32 +02:00
|
|
|
|
2016-08-07 22:37:51 +02:00
|
|
|
// joinKind is the type of join
|
|
|
|
type joinKind int
|
|
|
|
|
|
|
|
// Join type constants
|
|
|
|
const (
|
|
|
|
JoinInner joinKind = iota
|
|
|
|
JoinOuterLeft
|
|
|
|
JoinOuterRight
|
|
|
|
JoinNatural
|
|
|
|
)
|
|
|
|
|
2016-07-19 06:07:12 +02:00
|
|
|
// Query holds the state for the built up query
|
2016-04-13 15:51:58 +02:00
|
|
|
type Query struct {
|
2016-08-07 00:10:35 +02:00
|
|
|
executor Executor
|
|
|
|
plainSQL plainSQL
|
|
|
|
delete bool
|
|
|
|
update map[string]interface{}
|
|
|
|
selectCols []string
|
|
|
|
modFunction string
|
|
|
|
from []string
|
2016-08-07 22:37:51 +02:00
|
|
|
joins []join
|
2016-08-07 00:10:35 +02:00
|
|
|
where []where
|
|
|
|
groupBy []string
|
|
|
|
orderBy []string
|
|
|
|
having []string
|
|
|
|
limit int
|
|
|
|
offset int
|
2016-04-13 15:51:58 +02:00
|
|
|
}
|
|
|
|
|
2016-08-06 23:42:22 +02:00
|
|
|
type where struct {
|
2016-08-11 08:44:15 +02:00
|
|
|
clause string
|
|
|
|
orSeparator bool
|
|
|
|
args []interface{}
|
2016-04-19 04:02:32 +02:00
|
|
|
}
|
|
|
|
|
2016-08-06 23:42:22 +02:00
|
|
|
type plainSQL struct {
|
|
|
|
sql string
|
|
|
|
args []interface{}
|
2016-04-19 04:02:32 +02:00
|
|
|
}
|
|
|
|
|
2016-08-06 23:42:22 +02:00
|
|
|
type join struct {
|
2016-08-07 22:37:51 +02:00
|
|
|
kind joinKind
|
|
|
|
clause string
|
|
|
|
args []interface{}
|
2016-08-04 06:29:18 +02:00
|
|
|
}
|
|
|
|
|
2016-08-08 08:36:11 +02:00
|
|
|
// SQL makes a plainSQL query, usually for use with bind
|
|
|
|
func SQL(query string, args ...interface{}) *Query {
|
|
|
|
return &Query{
|
|
|
|
plainSQL: plainSQL{
|
|
|
|
sql: query,
|
|
|
|
args: args,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-08 03:16:34 +02:00
|
|
|
// ExecQuery executes a query that does not need a row returned
|
|
|
|
func ExecQuery(q *Query) (sql.Result, error) {
|
2016-04-20 15:03:33 +02:00
|
|
|
qs, args := buildQuery(q)
|
2016-06-02 23:07:51 +02:00
|
|
|
if DebugMode {
|
|
|
|
fmt.Fprintln(DebugWriter, qs)
|
2016-08-11 14:26:49 +02:00
|
|
|
fmt.Fprintln(DebugWriter, args)
|
2016-06-02 23:07:51 +02:00
|
|
|
}
|
2016-04-20 15:03:33 +02:00
|
|
|
return q.executor.Exec(qs, args...)
|
2016-04-19 07:31:07 +02:00
|
|
|
}
|
2016-04-19 04:02:32 +02:00
|
|
|
|
2016-08-08 03:16:34 +02:00
|
|
|
// ExecQueryOne executes the query for the One finisher and returns a row
|
|
|
|
func ExecQueryOne(q *Query) *sql.Row {
|
2016-08-08 02:11:45 +02:00
|
|
|
qs, args := buildQuery(q)
|
|
|
|
if DebugMode {
|
|
|
|
fmt.Fprintln(DebugWriter, qs)
|
2016-08-11 14:26:49 +02:00
|
|
|
fmt.Fprintln(DebugWriter, args)
|
2016-08-08 02:11:45 +02:00
|
|
|
}
|
|
|
|
return q.executor.QueryRow(qs, args...)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ExecQueryAll executes the query for the All finisher and returns multiple rows
|
|
|
|
func ExecQueryAll(q *Query) (*sql.Rows, error) {
|
2016-04-20 15:03:33 +02:00
|
|
|
qs, args := buildQuery(q)
|
2016-06-02 23:07:51 +02:00
|
|
|
if DebugMode {
|
|
|
|
fmt.Fprintln(DebugWriter, qs)
|
2016-08-11 14:26:49 +02:00
|
|
|
fmt.Fprintln(DebugWriter, args)
|
2016-06-02 23:07:51 +02:00
|
|
|
}
|
2016-06-05 08:13:38 +02:00
|
|
|
return q.executor.Query(qs, args...)
|
2016-04-19 07:31:07 +02:00
|
|
|
}
|
2016-04-19 04:02:32 +02:00
|
|
|
|
2016-07-19 06:07:12 +02:00
|
|
|
// SetSQL on the query.
|
|
|
|
func SetSQL(q *Query, sql string, args ...interface{}) {
|
|
|
|
q.plainSQL = plainSQL{sql: sql, args: args}
|
|
|
|
}
|
|
|
|
|
2016-07-16 13:22:57 +02:00
|
|
|
// SetCount on the query.
|
2016-05-10 12:20:29 +02:00
|
|
|
func SetCount(q *Query) {
|
2016-08-07 00:10:35 +02:00
|
|
|
q.modFunction = "COUNT"
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetAvg on the query.
|
|
|
|
func SetAvg(q *Query) {
|
|
|
|
q.modFunction = "AVG"
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetMax on the query.
|
|
|
|
func SetMax(q *Query) {
|
|
|
|
q.modFunction = "MAX"
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetMin on the query.
|
|
|
|
func SetMin(q *Query) {
|
|
|
|
q.modFunction = "MIN"
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetSum on the query.
|
|
|
|
func SetSum(q *Query) {
|
|
|
|
q.modFunction = "SUM"
|
2016-05-10 12:20:29 +02:00
|
|
|
}
|
|
|
|
|
2016-07-16 13:22:57 +02:00
|
|
|
// SetDelete on the query.
|
2016-04-20 14:51:04 +02:00
|
|
|
func SetDelete(q *Query) {
|
|
|
|
q.delete = true
|
2016-04-19 07:31:07 +02:00
|
|
|
}
|
2016-04-19 04:02:32 +02:00
|
|
|
|
2016-08-04 06:29:18 +02:00
|
|
|
// SetUpdate on the query.
|
|
|
|
func SetUpdate(q *Query, cols map[string]interface{}) {
|
|
|
|
q.update = cols
|
|
|
|
}
|
|
|
|
|
2016-07-16 13:22:57 +02:00
|
|
|
// SetExecutor on the query.
|
2016-04-19 07:31:07 +02:00
|
|
|
func SetExecutor(q *Query, exec Executor) {
|
|
|
|
q.executor = exec
|
|
|
|
}
|
2016-04-19 04:02:32 +02:00
|
|
|
|
2016-08-04 07:22:17 +02:00
|
|
|
// AppendSelect on the query.
|
|
|
|
func AppendSelect(q *Query, columns ...string) {
|
|
|
|
q.selectCols = append(q.selectCols, columns...)
|
|
|
|
}
|
2016-08-02 05:25:02 +02:00
|
|
|
|
2016-08-04 07:22:17 +02:00
|
|
|
// SetSelect replaces the current select clause.
|
|
|
|
func SetSelect(q *Query, columns ...string) {
|
|
|
|
q.selectCols = append([]string(nil), columns...)
|
2016-04-19 04:02:32 +02:00
|
|
|
}
|
|
|
|
|
2016-07-16 13:22:57 +02:00
|
|
|
// Select returns the select columns in the query.
|
2016-06-07 06:38:17 +02:00
|
|
|
func Select(q *Query) []string {
|
2016-06-05 08:13:38 +02:00
|
|
|
cols := make([]string, len(q.selectCols))
|
|
|
|
copy(cols, q.selectCols)
|
|
|
|
return cols
|
|
|
|
}
|
|
|
|
|
2016-08-04 07:22:17 +02:00
|
|
|
// AppendFrom on the query.
|
|
|
|
func AppendFrom(q *Query, from ...string) {
|
2016-08-04 06:50:26 +02:00
|
|
|
q.from = append(q.from, from...)
|
2016-04-19 07:31:07 +02:00
|
|
|
}
|
2016-04-19 04:02:32 +02:00
|
|
|
|
2016-08-04 07:22:17 +02:00
|
|
|
// SetFrom replaces the current from statements.
|
|
|
|
func SetFrom(q *Query, from ...string) {
|
|
|
|
q.from = append([]string(nil), from...)
|
2016-04-16 07:17:25 +02:00
|
|
|
}
|
|
|
|
|
2016-08-04 07:22:17 +02:00
|
|
|
// AppendInnerJoin on the query.
|
2016-08-07 22:37:51 +02:00
|
|
|
func AppendInnerJoin(q *Query, clause string, args ...interface{}) {
|
|
|
|
q.joins = append(q.joins, join{clause: clause, kind: JoinInner, args: args})
|
2016-04-19 07:31:07 +02:00
|
|
|
}
|
2016-04-13 15:51:58 +02:00
|
|
|
|
2016-08-04 07:22:17 +02:00
|
|
|
// SetInnerJoin on the query.
|
2016-08-07 22:37:51 +02:00
|
|
|
func SetInnerJoin(q *Query, clause string, args ...interface{}) {
|
|
|
|
q.joins = append([]join(nil), join{clause: clause, kind: JoinInner, args: args})
|
2016-04-19 04:02:32 +02:00
|
|
|
}
|
|
|
|
|
2016-08-04 07:22:17 +02:00
|
|
|
// AppendWhere on the query.
|
|
|
|
func AppendWhere(q *Query, clause string, args ...interface{}) {
|
|
|
|
q.where = append(q.where, where{clause: clause, args: args})
|
2016-04-19 07:31:07 +02:00
|
|
|
}
|
2016-04-19 04:02:32 +02:00
|
|
|
|
2016-07-16 13:22:57 +02:00
|
|
|
// SetWhere on the query.
|
2016-04-19 07:31:07 +02:00
|
|
|
func SetWhere(q *Query, clause string, args ...interface{}) {
|
2016-08-04 07:22:17 +02:00
|
|
|
q.where = append([]where(nil), where{clause: clause, args: args})
|
2016-04-19 04:02:32 +02:00
|
|
|
}
|
|
|
|
|
2016-08-11 08:44:15 +02:00
|
|
|
// SetLastWhereAsOr sets the or separator for the tail where in the slice
|
|
|
|
func SetLastWhereAsOr(q *Query) {
|
|
|
|
if len(q.where) == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
q.where[len(q.where)-1].orSeparator = true
|
|
|
|
}
|
|
|
|
|
2016-08-04 07:22:17 +02:00
|
|
|
// ApplyGroupBy on the query.
|
|
|
|
func ApplyGroupBy(q *Query, clause string) {
|
|
|
|
q.groupBy = append(q.groupBy, clause)
|
|
|
|
}
|
|
|
|
|
2016-07-16 13:22:57 +02:00
|
|
|
// SetGroupBy on the query.
|
2016-04-19 07:31:07 +02:00
|
|
|
func SetGroupBy(q *Query, clause string) {
|
2016-08-04 07:22:17 +02:00
|
|
|
q.groupBy = append([]string(nil), clause)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ApplyOrderBy on the query.
|
|
|
|
func ApplyOrderBy(q *Query, clause string) {
|
|
|
|
q.orderBy = append(q.orderBy, clause)
|
2016-04-19 04:02:32 +02:00
|
|
|
}
|
|
|
|
|
2016-07-16 13:22:57 +02:00
|
|
|
// SetOrderBy on the query.
|
2016-04-19 07:31:07 +02:00
|
|
|
func SetOrderBy(q *Query, clause string) {
|
2016-08-04 07:22:17 +02:00
|
|
|
q.orderBy = append([]string(nil), clause)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ApplyHaving on the query.
|
|
|
|
func ApplyHaving(q *Query, clause string) {
|
|
|
|
q.having = append(q.having, clause)
|
2016-04-19 04:02:32 +02:00
|
|
|
}
|
|
|
|
|
2016-07-16 13:22:57 +02:00
|
|
|
// SetHaving on the query.
|
2016-04-19 07:31:07 +02:00
|
|
|
func SetHaving(q *Query, clause string) {
|
2016-08-04 07:22:17 +02:00
|
|
|
q.having = append([]string(nil), clause)
|
2016-04-19 04:02:32 +02:00
|
|
|
}
|
|
|
|
|
2016-07-16 13:22:57 +02:00
|
|
|
// SetLimit on the query.
|
2016-04-19 07:31:07 +02:00
|
|
|
func SetLimit(q *Query, limit int) {
|
|
|
|
q.limit = limit
|
2016-04-13 15:51:58 +02:00
|
|
|
}
|
2016-06-12 13:14:25 +02:00
|
|
|
|
2016-08-01 04:21:06 +02:00
|
|
|
// SetOffset on the query.
|
|
|
|
func SetOffset(q *Query, offset int) {
|
|
|
|
q.offset = offset
|
|
|
|
}
|