|
@@ -0,0 +1,566 @@
|
|
|
|
+// Code generated by ent, DO NOT EDIT.
|
|
|
|
+
|
|
|
|
+package ent
|
|
|
|
+
|
|
|
|
+import (
|
|
|
|
+ "context"
|
|
|
|
+ "fmt"
|
|
|
|
+ "math"
|
|
|
|
+
|
|
|
|
+ "entgo.io/ent/dialect"
|
|
|
|
+ "entgo.io/ent/dialect/sql"
|
|
|
|
+ "entgo.io/ent/dialect/sql/sqlgraph"
|
|
|
|
+ "entgo.io/ent/schema/field"
|
|
|
|
+ "github.com/crowdsecurity/crowdsec/pkg/database/ent/lock"
|
|
|
|
+ "github.com/crowdsecurity/crowdsec/pkg/database/ent/predicate"
|
|
|
|
+)
|
|
|
|
+
|
|
|
|
+// LockQuery is the builder for querying Lock entities.
|
|
|
|
+type LockQuery struct {
|
|
|
|
+ config
|
|
|
|
+ limit *int
|
|
|
|
+ offset *int
|
|
|
|
+ unique *bool
|
|
|
|
+ order []OrderFunc
|
|
|
|
+ fields []string
|
|
|
|
+ predicates []predicate.Lock
|
|
|
|
+ modifiers []func(*sql.Selector)
|
|
|
|
+ // intermediate query (i.e. traversal path).
|
|
|
|
+ sql *sql.Selector
|
|
|
|
+ path func(context.Context) (*sql.Selector, error)
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// Where adds a new predicate for the LockQuery builder.
|
|
|
|
+func (lq *LockQuery) Where(ps ...predicate.Lock) *LockQuery {
|
|
|
|
+ lq.predicates = append(lq.predicates, ps...)
|
|
|
|
+ return lq
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// Limit adds a limit step to the query.
|
|
|
|
+func (lq *LockQuery) Limit(limit int) *LockQuery {
|
|
|
|
+ lq.limit = &limit
|
|
|
|
+ return lq
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// Offset adds an offset step to the query.
|
|
|
|
+func (lq *LockQuery) Offset(offset int) *LockQuery {
|
|
|
|
+ lq.offset = &offset
|
|
|
|
+ return lq
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// Unique configures the query builder to filter duplicate records on query.
|
|
|
|
+// By default, unique is set to true, and can be disabled using this method.
|
|
|
|
+func (lq *LockQuery) Unique(unique bool) *LockQuery {
|
|
|
|
+ lq.unique = &unique
|
|
|
|
+ return lq
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// Order adds an order step to the query.
|
|
|
|
+func (lq *LockQuery) Order(o ...OrderFunc) *LockQuery {
|
|
|
|
+ lq.order = append(lq.order, o...)
|
|
|
|
+ return lq
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// First returns the first Lock entity from the query.
|
|
|
|
+// Returns a *NotFoundError when no Lock was found.
|
|
|
|
+func (lq *LockQuery) First(ctx context.Context) (*Lock, error) {
|
|
|
|
+ nodes, err := lq.Limit(1).All(ctx)
|
|
|
|
+ if err != nil {
|
|
|
|
+ return nil, err
|
|
|
|
+ }
|
|
|
|
+ if len(nodes) == 0 {
|
|
|
|
+ return nil, &NotFoundError{lock.Label}
|
|
|
|
+ }
|
|
|
|
+ return nodes[0], nil
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// FirstX is like First, but panics if an error occurs.
|
|
|
|
+func (lq *LockQuery) FirstX(ctx context.Context) *Lock {
|
|
|
|
+ node, err := lq.First(ctx)
|
|
|
|
+ if err != nil && !IsNotFound(err) {
|
|
|
|
+ panic(err)
|
|
|
|
+ }
|
|
|
|
+ return node
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// FirstID returns the first Lock ID from the query.
|
|
|
|
+// Returns a *NotFoundError when no Lock ID was found.
|
|
|
|
+func (lq *LockQuery) FirstID(ctx context.Context) (id int, err error) {
|
|
|
|
+ var ids []int
|
|
|
|
+ if ids, err = lq.Limit(1).IDs(ctx); err != nil {
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ if len(ids) == 0 {
|
|
|
|
+ err = &NotFoundError{lock.Label}
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ return ids[0], nil
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// FirstIDX is like FirstID, but panics if an error occurs.
|
|
|
|
+func (lq *LockQuery) FirstIDX(ctx context.Context) int {
|
|
|
|
+ id, err := lq.FirstID(ctx)
|
|
|
|
+ if err != nil && !IsNotFound(err) {
|
|
|
|
+ panic(err)
|
|
|
|
+ }
|
|
|
|
+ return id
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// Only returns a single Lock entity found by the query, ensuring it only returns one.
|
|
|
|
+// Returns a *NotSingularError when more than one Lock entity is found.
|
|
|
|
+// Returns a *NotFoundError when no Lock entities are found.
|
|
|
|
+func (lq *LockQuery) Only(ctx context.Context) (*Lock, error) {
|
|
|
|
+ nodes, err := lq.Limit(2).All(ctx)
|
|
|
|
+ if err != nil {
|
|
|
|
+ return nil, err
|
|
|
|
+ }
|
|
|
|
+ switch len(nodes) {
|
|
|
|
+ case 1:
|
|
|
|
+ return nodes[0], nil
|
|
|
|
+ case 0:
|
|
|
|
+ return nil, &NotFoundError{lock.Label}
|
|
|
|
+ default:
|
|
|
|
+ return nil, &NotSingularError{lock.Label}
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// OnlyX is like Only, but panics if an error occurs.
|
|
|
|
+func (lq *LockQuery) OnlyX(ctx context.Context) *Lock {
|
|
|
|
+ node, err := lq.Only(ctx)
|
|
|
|
+ if err != nil {
|
|
|
|
+ panic(err)
|
|
|
|
+ }
|
|
|
|
+ return node
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// OnlyID is like Only, but returns the only Lock ID in the query.
|
|
|
|
+// Returns a *NotSingularError when more than one Lock ID is found.
|
|
|
|
+// Returns a *NotFoundError when no entities are found.
|
|
|
|
+func (lq *LockQuery) OnlyID(ctx context.Context) (id int, err error) {
|
|
|
|
+ var ids []int
|
|
|
|
+ if ids, err = lq.Limit(2).IDs(ctx); err != nil {
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ switch len(ids) {
|
|
|
|
+ case 1:
|
|
|
|
+ id = ids[0]
|
|
|
|
+ case 0:
|
|
|
|
+ err = &NotFoundError{lock.Label}
|
|
|
|
+ default:
|
|
|
|
+ err = &NotSingularError{lock.Label}
|
|
|
|
+ }
|
|
|
|
+ return
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// OnlyIDX is like OnlyID, but panics if an error occurs.
|
|
|
|
+func (lq *LockQuery) OnlyIDX(ctx context.Context) int {
|
|
|
|
+ id, err := lq.OnlyID(ctx)
|
|
|
|
+ if err != nil {
|
|
|
|
+ panic(err)
|
|
|
|
+ }
|
|
|
|
+ return id
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// All executes the query and returns a list of Locks.
|
|
|
|
+func (lq *LockQuery) All(ctx context.Context) ([]*Lock, error) {
|
|
|
|
+ if err := lq.prepareQuery(ctx); err != nil {
|
|
|
|
+ return nil, err
|
|
|
|
+ }
|
|
|
|
+ return lq.sqlAll(ctx)
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// AllX is like All, but panics if an error occurs.
|
|
|
|
+func (lq *LockQuery) AllX(ctx context.Context) []*Lock {
|
|
|
|
+ nodes, err := lq.All(ctx)
|
|
|
|
+ if err != nil {
|
|
|
|
+ panic(err)
|
|
|
|
+ }
|
|
|
|
+ return nodes
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// IDs executes the query and returns a list of Lock IDs.
|
|
|
|
+func (lq *LockQuery) IDs(ctx context.Context) ([]int, error) {
|
|
|
|
+ var ids []int
|
|
|
|
+ if err := lq.Select(lock.FieldID).Scan(ctx, &ids); err != nil {
|
|
|
|
+ return nil, err
|
|
|
|
+ }
|
|
|
|
+ return ids, nil
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// IDsX is like IDs, but panics if an error occurs.
|
|
|
|
+func (lq *LockQuery) IDsX(ctx context.Context) []int {
|
|
|
|
+ ids, err := lq.IDs(ctx)
|
|
|
|
+ if err != nil {
|
|
|
|
+ panic(err)
|
|
|
|
+ }
|
|
|
|
+ return ids
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// Count returns the count of the given query.
|
|
|
|
+func (lq *LockQuery) Count(ctx context.Context) (int, error) {
|
|
|
|
+ if err := lq.prepareQuery(ctx); err != nil {
|
|
|
|
+ return 0, err
|
|
|
|
+ }
|
|
|
|
+ return lq.sqlCount(ctx)
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// CountX is like Count, but panics if an error occurs.
|
|
|
|
+func (lq *LockQuery) CountX(ctx context.Context) int {
|
|
|
|
+ count, err := lq.Count(ctx)
|
|
|
|
+ if err != nil {
|
|
|
|
+ panic(err)
|
|
|
|
+ }
|
|
|
|
+ return count
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// Exist returns true if the query has elements in the graph.
|
|
|
|
+func (lq *LockQuery) Exist(ctx context.Context) (bool, error) {
|
|
|
|
+ if err := lq.prepareQuery(ctx); err != nil {
|
|
|
|
+ return false, err
|
|
|
|
+ }
|
|
|
|
+ return lq.sqlExist(ctx)
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// ExistX is like Exist, but panics if an error occurs.
|
|
|
|
+func (lq *LockQuery) ExistX(ctx context.Context) bool {
|
|
|
|
+ exist, err := lq.Exist(ctx)
|
|
|
|
+ if err != nil {
|
|
|
|
+ panic(err)
|
|
|
|
+ }
|
|
|
|
+ return exist
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// Clone returns a duplicate of the LockQuery builder, including all associated steps. It can be
|
|
|
|
+// used to prepare common query builders and use them differently after the clone is made.
|
|
|
|
+func (lq *LockQuery) Clone() *LockQuery {
|
|
|
|
+ if lq == nil {
|
|
|
|
+ return nil
|
|
|
|
+ }
|
|
|
|
+ return &LockQuery{
|
|
|
|
+ config: lq.config,
|
|
|
|
+ limit: lq.limit,
|
|
|
|
+ offset: lq.offset,
|
|
|
|
+ order: append([]OrderFunc{}, lq.order...),
|
|
|
|
+ predicates: append([]predicate.Lock{}, lq.predicates...),
|
|
|
|
+ // clone intermediate query.
|
|
|
|
+ sql: lq.sql.Clone(),
|
|
|
|
+ path: lq.path,
|
|
|
|
+ unique: lq.unique,
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// GroupBy is used to group vertices by one or more fields/columns.
|
|
|
|
+// It is often used with aggregate functions, like: count, max, mean, min, sum.
|
|
|
|
+//
|
|
|
|
+// Example:
|
|
|
|
+//
|
|
|
|
+// var v []struct {
|
|
|
|
+// Name string `json:"name"`
|
|
|
|
+// Count int `json:"count,omitempty"`
|
|
|
|
+// }
|
|
|
|
+//
|
|
|
|
+// client.Lock.Query().
|
|
|
|
+// GroupBy(lock.FieldName).
|
|
|
|
+// Aggregate(ent.Count()).
|
|
|
|
+// Scan(ctx, &v)
|
|
|
|
+func (lq *LockQuery) GroupBy(field string, fields ...string) *LockGroupBy {
|
|
|
|
+ grbuild := &LockGroupBy{config: lq.config}
|
|
|
|
+ grbuild.fields = append([]string{field}, fields...)
|
|
|
|
+ grbuild.path = func(ctx context.Context) (prev *sql.Selector, err error) {
|
|
|
|
+ if err := lq.prepareQuery(ctx); err != nil {
|
|
|
|
+ return nil, err
|
|
|
|
+ }
|
|
|
|
+ return lq.sqlQuery(ctx), nil
|
|
|
|
+ }
|
|
|
|
+ grbuild.label = lock.Label
|
|
|
|
+ grbuild.flds, grbuild.scan = &grbuild.fields, grbuild.Scan
|
|
|
|
+ return grbuild
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// Select allows the selection one or more fields/columns for the given query,
|
|
|
|
+// instead of selecting all fields in the entity.
|
|
|
|
+//
|
|
|
|
+// Example:
|
|
|
|
+//
|
|
|
|
+// var v []struct {
|
|
|
|
+// Name string `json:"name"`
|
|
|
|
+// }
|
|
|
|
+//
|
|
|
|
+// client.Lock.Query().
|
|
|
|
+// Select(lock.FieldName).
|
|
|
|
+// Scan(ctx, &v)
|
|
|
|
+func (lq *LockQuery) Select(fields ...string) *LockSelect {
|
|
|
|
+ lq.fields = append(lq.fields, fields...)
|
|
|
|
+ selbuild := &LockSelect{LockQuery: lq}
|
|
|
|
+ selbuild.label = lock.Label
|
|
|
|
+ selbuild.flds, selbuild.scan = &lq.fields, selbuild.Scan
|
|
|
|
+ return selbuild
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (lq *LockQuery) prepareQuery(ctx context.Context) error {
|
|
|
|
+ for _, f := range lq.fields {
|
|
|
|
+ if !lock.ValidColumn(f) {
|
|
|
|
+ return &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ if lq.path != nil {
|
|
|
|
+ prev, err := lq.path(ctx)
|
|
|
|
+ if err != nil {
|
|
|
|
+ return err
|
|
|
|
+ }
|
|
|
|
+ lq.sql = prev
|
|
|
|
+ }
|
|
|
|
+ return nil
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (lq *LockQuery) sqlAll(ctx context.Context, hooks ...queryHook) ([]*Lock, error) {
|
|
|
|
+ var (
|
|
|
|
+ nodes = []*Lock{}
|
|
|
|
+ _spec = lq.querySpec()
|
|
|
|
+ )
|
|
|
|
+ _spec.ScanValues = func(columns []string) ([]any, error) {
|
|
|
|
+ return (*Lock).scanValues(nil, columns)
|
|
|
|
+ }
|
|
|
|
+ _spec.Assign = func(columns []string, values []any) error {
|
|
|
|
+ node := &Lock{config: lq.config}
|
|
|
|
+ nodes = append(nodes, node)
|
|
|
|
+ return node.assignValues(columns, values)
|
|
|
|
+ }
|
|
|
|
+ if len(lq.modifiers) > 0 {
|
|
|
|
+ _spec.Modifiers = lq.modifiers
|
|
|
|
+ }
|
|
|
|
+ for i := range hooks {
|
|
|
|
+ hooks[i](ctx, _spec)
|
|
|
|
+ }
|
|
|
|
+ if err := sqlgraph.QueryNodes(ctx, lq.driver, _spec); err != nil {
|
|
|
|
+ return nil, err
|
|
|
|
+ }
|
|
|
|
+ if len(nodes) == 0 {
|
|
|
|
+ return nodes, nil
|
|
|
|
+ }
|
|
|
|
+ return nodes, nil
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (lq *LockQuery) sqlCount(ctx context.Context) (int, error) {
|
|
|
|
+ _spec := lq.querySpec()
|
|
|
|
+ if len(lq.modifiers) > 0 {
|
|
|
|
+ _spec.Modifiers = lq.modifiers
|
|
|
|
+ }
|
|
|
|
+ _spec.Node.Columns = lq.fields
|
|
|
|
+ if len(lq.fields) > 0 {
|
|
|
|
+ _spec.Unique = lq.unique != nil && *lq.unique
|
|
|
|
+ }
|
|
|
|
+ return sqlgraph.CountNodes(ctx, lq.driver, _spec)
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (lq *LockQuery) sqlExist(ctx context.Context) (bool, error) {
|
|
|
|
+ switch _, err := lq.FirstID(ctx); {
|
|
|
|
+ case IsNotFound(err):
|
|
|
|
+ return false, nil
|
|
|
|
+ case err != nil:
|
|
|
|
+ return false, fmt.Errorf("ent: check existence: %w", err)
|
|
|
|
+ default:
|
|
|
|
+ return true, nil
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (lq *LockQuery) querySpec() *sqlgraph.QuerySpec {
|
|
|
|
+ _spec := &sqlgraph.QuerySpec{
|
|
|
|
+ Node: &sqlgraph.NodeSpec{
|
|
|
|
+ Table: lock.Table,
|
|
|
|
+ Columns: lock.Columns,
|
|
|
|
+ ID: &sqlgraph.FieldSpec{
|
|
|
|
+ Type: field.TypeInt,
|
|
|
|
+ Column: lock.FieldID,
|
|
|
|
+ },
|
|
|
|
+ },
|
|
|
|
+ From: lq.sql,
|
|
|
|
+ Unique: true,
|
|
|
|
+ }
|
|
|
|
+ if unique := lq.unique; unique != nil {
|
|
|
|
+ _spec.Unique = *unique
|
|
|
|
+ }
|
|
|
|
+ if fields := lq.fields; len(fields) > 0 {
|
|
|
|
+ _spec.Node.Columns = make([]string, 0, len(fields))
|
|
|
|
+ _spec.Node.Columns = append(_spec.Node.Columns, lock.FieldID)
|
|
|
|
+ for i := range fields {
|
|
|
|
+ if fields[i] != lock.FieldID {
|
|
|
|
+ _spec.Node.Columns = append(_spec.Node.Columns, fields[i])
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ if ps := lq.predicates; len(ps) > 0 {
|
|
|
|
+ _spec.Predicate = func(selector *sql.Selector) {
|
|
|
|
+ for i := range ps {
|
|
|
|
+ ps[i](selector)
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ if limit := lq.limit; limit != nil {
|
|
|
|
+ _spec.Limit = *limit
|
|
|
|
+ }
|
|
|
|
+ if offset := lq.offset; offset != nil {
|
|
|
|
+ _spec.Offset = *offset
|
|
|
|
+ }
|
|
|
|
+ if ps := lq.order; len(ps) > 0 {
|
|
|
|
+ _spec.Order = func(selector *sql.Selector) {
|
|
|
|
+ for i := range ps {
|
|
|
|
+ ps[i](selector)
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ return _spec
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (lq *LockQuery) sqlQuery(ctx context.Context) *sql.Selector {
|
|
|
|
+ builder := sql.Dialect(lq.driver.Dialect())
|
|
|
|
+ t1 := builder.Table(lock.Table)
|
|
|
|
+ columns := lq.fields
|
|
|
|
+ if len(columns) == 0 {
|
|
|
|
+ columns = lock.Columns
|
|
|
|
+ }
|
|
|
|
+ selector := builder.Select(t1.Columns(columns...)...).From(t1)
|
|
|
|
+ if lq.sql != nil {
|
|
|
|
+ selector = lq.sql
|
|
|
|
+ selector.Select(selector.Columns(columns...)...)
|
|
|
|
+ }
|
|
|
|
+ if lq.unique != nil && *lq.unique {
|
|
|
|
+ selector.Distinct()
|
|
|
|
+ }
|
|
|
|
+ for _, m := range lq.modifiers {
|
|
|
|
+ m(selector)
|
|
|
|
+ }
|
|
|
|
+ for _, p := range lq.predicates {
|
|
|
|
+ p(selector)
|
|
|
|
+ }
|
|
|
|
+ for _, p := range lq.order {
|
|
|
|
+ p(selector)
|
|
|
|
+ }
|
|
|
|
+ if offset := lq.offset; offset != nil {
|
|
|
|
+ // limit is mandatory for offset clause. We start
|
|
|
|
+ // with default value, and override it below if needed.
|
|
|
|
+ selector.Offset(*offset).Limit(math.MaxInt32)
|
|
|
|
+ }
|
|
|
|
+ if limit := lq.limit; limit != nil {
|
|
|
|
+ selector.Limit(*limit)
|
|
|
|
+ }
|
|
|
|
+ return selector
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// ForUpdate locks the selected rows against concurrent updates, and prevent them from being
|
|
|
|
+// updated, deleted or "selected ... for update" by other sessions, until the transaction is
|
|
|
|
+// either committed or rolled-back.
|
|
|
|
+func (lq *LockQuery) ForUpdate(opts ...sql.LockOption) *LockQuery {
|
|
|
|
+ if lq.driver.Dialect() == dialect.Postgres {
|
|
|
|
+ lq.Unique(false)
|
|
|
|
+ }
|
|
|
|
+ lq.modifiers = append(lq.modifiers, func(s *sql.Selector) {
|
|
|
|
+ s.ForUpdate(opts...)
|
|
|
|
+ })
|
|
|
|
+ return lq
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// ForShare behaves similarly to ForUpdate, except that it acquires a shared mode lock
|
|
|
|
+// on any rows that are read. Other sessions can read the rows, but cannot modify them
|
|
|
|
+// until your transaction commits.
|
|
|
|
+func (lq *LockQuery) ForShare(opts ...sql.LockOption) *LockQuery {
|
|
|
|
+ if lq.driver.Dialect() == dialect.Postgres {
|
|
|
|
+ lq.Unique(false)
|
|
|
|
+ }
|
|
|
|
+ lq.modifiers = append(lq.modifiers, func(s *sql.Selector) {
|
|
|
|
+ s.ForShare(opts...)
|
|
|
|
+ })
|
|
|
|
+ return lq
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// LockGroupBy is the group-by builder for Lock entities.
|
|
|
|
+type LockGroupBy struct {
|
|
|
|
+ config
|
|
|
|
+ selector
|
|
|
|
+ fields []string
|
|
|
|
+ fns []AggregateFunc
|
|
|
|
+ // intermediate query (i.e. traversal path).
|
|
|
|
+ sql *sql.Selector
|
|
|
|
+ path func(context.Context) (*sql.Selector, error)
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// Aggregate adds the given aggregation functions to the group-by query.
|
|
|
|
+func (lgb *LockGroupBy) Aggregate(fns ...AggregateFunc) *LockGroupBy {
|
|
|
|
+ lgb.fns = append(lgb.fns, fns...)
|
|
|
|
+ return lgb
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// Scan applies the group-by query and scans the result into the given value.
|
|
|
|
+func (lgb *LockGroupBy) Scan(ctx context.Context, v any) error {
|
|
|
|
+ query, err := lgb.path(ctx)
|
|
|
|
+ if err != nil {
|
|
|
|
+ return err
|
|
|
|
+ }
|
|
|
|
+ lgb.sql = query
|
|
|
|
+ return lgb.sqlScan(ctx, v)
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (lgb *LockGroupBy) sqlScan(ctx context.Context, v any) error {
|
|
|
|
+ for _, f := range lgb.fields {
|
|
|
|
+ if !lock.ValidColumn(f) {
|
|
|
|
+ return &ValidationError{Name: f, err: fmt.Errorf("invalid field %q for group-by", f)}
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ selector := lgb.sqlQuery()
|
|
|
|
+ if err := selector.Err(); err != nil {
|
|
|
|
+ return err
|
|
|
|
+ }
|
|
|
|
+ rows := &sql.Rows{}
|
|
|
|
+ query, args := selector.Query()
|
|
|
|
+ if err := lgb.driver.Query(ctx, query, args, rows); err != nil {
|
|
|
|
+ return err
|
|
|
|
+ }
|
|
|
|
+ defer rows.Close()
|
|
|
|
+ return sql.ScanSlice(rows, v)
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (lgb *LockGroupBy) sqlQuery() *sql.Selector {
|
|
|
|
+ selector := lgb.sql.Select()
|
|
|
|
+ aggregation := make([]string, 0, len(lgb.fns))
|
|
|
|
+ for _, fn := range lgb.fns {
|
|
|
|
+ aggregation = append(aggregation, fn(selector))
|
|
|
|
+ }
|
|
|
|
+ // If no columns were selected in a custom aggregation function, the default
|
|
|
|
+ // selection is the fields used for "group-by", and the aggregation functions.
|
|
|
|
+ if len(selector.SelectedColumns()) == 0 {
|
|
|
|
+ columns := make([]string, 0, len(lgb.fields)+len(lgb.fns))
|
|
|
|
+ for _, f := range lgb.fields {
|
|
|
|
+ columns = append(columns, selector.C(f))
|
|
|
|
+ }
|
|
|
|
+ columns = append(columns, aggregation...)
|
|
|
|
+ selector.Select(columns...)
|
|
|
|
+ }
|
|
|
|
+ return selector.GroupBy(selector.Columns(lgb.fields...)...)
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// LockSelect is the builder for selecting fields of Lock entities.
|
|
|
|
+type LockSelect struct {
|
|
|
|
+ *LockQuery
|
|
|
|
+ selector
|
|
|
|
+ // intermediate query (i.e. traversal path).
|
|
|
|
+ sql *sql.Selector
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// Scan applies the selector query and scans the result into the given value.
|
|
|
|
+func (ls *LockSelect) Scan(ctx context.Context, v any) error {
|
|
|
|
+ if err := ls.prepareQuery(ctx); err != nil {
|
|
|
|
+ return err
|
|
|
|
+ }
|
|
|
|
+ ls.sql = ls.LockQuery.sqlQuery(ctx)
|
|
|
|
+ return ls.sqlScan(ctx, v)
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (ls *LockSelect) sqlScan(ctx context.Context, v any) error {
|
|
|
|
+ rows := &sql.Rows{}
|
|
|
|
+ query, args := ls.sql.Query()
|
|
|
|
+ if err := ls.driver.Query(ctx, query, args, rows); err != nil {
|
|
|
|
+ return err
|
|
|
|
+ }
|
|
|
|
+ defer rows.Close()
|
|
|
|
+ return sql.ScanSlice(rows, v)
|
|
|
|
+}
|