// Code generated by ent, DO NOT EDIT. package db import ( "context" "fmt" "math" "entgo.io/ent" "entgo.io/ent/dialect" "entgo.io/ent/dialect/sql" "entgo.io/ent/dialect/sql/sqlgraph" "entgo.io/ent/schema/field" "github.com/chaitin/MonkeyCode/backend/db/model" "github.com/chaitin/MonkeyCode/backend/db/predicate" "github.com/chaitin/MonkeyCode/backend/db/record" "github.com/chaitin/MonkeyCode/backend/db/user" "github.com/google/uuid" ) // RecordQuery is the builder for querying Record entities. type RecordQuery struct { config ctx *QueryContext order []record.OrderOption inters []Interceptor predicates []predicate.Record withUser *UserQuery withModel *ModelQuery 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 RecordQuery builder. func (rq *RecordQuery) Where(ps ...predicate.Record) *RecordQuery { rq.predicates = append(rq.predicates, ps...) return rq } // Limit the number of records to be returned by this query. func (rq *RecordQuery) Limit(limit int) *RecordQuery { rq.ctx.Limit = &limit return rq } // Offset to start from. func (rq *RecordQuery) Offset(offset int) *RecordQuery { rq.ctx.Offset = &offset return rq } // 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 (rq *RecordQuery) Unique(unique bool) *RecordQuery { rq.ctx.Unique = &unique return rq } // Order specifies how the records should be ordered. func (rq *RecordQuery) Order(o ...record.OrderOption) *RecordQuery { rq.order = append(rq.order, o...) return rq } // QueryUser chains the current query on the "user" edge. func (rq *RecordQuery) QueryUser() *UserQuery { query := (&UserClient{config: rq.config}).Query() query.path = func(ctx context.Context) (fromU *sql.Selector, err error) { if err := rq.prepareQuery(ctx); err != nil { return nil, err } selector := rq.sqlQuery(ctx) if err := selector.Err(); err != nil { return nil, err } step := sqlgraph.NewStep( sqlgraph.From(record.Table, record.FieldID, selector), sqlgraph.To(user.Table, user.FieldID), sqlgraph.Edge(sqlgraph.M2O, true, record.UserTable, record.UserColumn), ) fromU = sqlgraph.SetNeighbors(rq.driver.Dialect(), step) return fromU, nil } return query } // QueryModel chains the current query on the "model" edge. func (rq *RecordQuery) QueryModel() *ModelQuery { query := (&ModelClient{config: rq.config}).Query() query.path = func(ctx context.Context) (fromU *sql.Selector, err error) { if err := rq.prepareQuery(ctx); err != nil { return nil, err } selector := rq.sqlQuery(ctx) if err := selector.Err(); err != nil { return nil, err } step := sqlgraph.NewStep( sqlgraph.From(record.Table, record.FieldID, selector), sqlgraph.To(model.Table, model.FieldID), sqlgraph.Edge(sqlgraph.M2O, true, record.ModelTable, record.ModelColumn), ) fromU = sqlgraph.SetNeighbors(rq.driver.Dialect(), step) return fromU, nil } return query } // First returns the first Record entity from the query. // Returns a *NotFoundError when no Record was found. func (rq *RecordQuery) First(ctx context.Context) (*Record, error) { nodes, err := rq.Limit(1).All(setContextOp(ctx, rq.ctx, ent.OpQueryFirst)) if err != nil { return nil, err } if len(nodes) == 0 { return nil, &NotFoundError{record.Label} } return nodes[0], nil } // FirstX is like First, but panics if an error occurs. func (rq *RecordQuery) FirstX(ctx context.Context) *Record { node, err := rq.First(ctx) if err != nil && !IsNotFound(err) { panic(err) } return node } // FirstID returns the first Record ID from the query. // Returns a *NotFoundError when no Record ID was found. func (rq *RecordQuery) FirstID(ctx context.Context) (id uuid.UUID, err error) { var ids []uuid.UUID if ids, err = rq.Limit(1).IDs(setContextOp(ctx, rq.ctx, ent.OpQueryFirstID)); err != nil { return } if len(ids) == 0 { err = &NotFoundError{record.Label} return } return ids[0], nil } // FirstIDX is like FirstID, but panics if an error occurs. func (rq *RecordQuery) FirstIDX(ctx context.Context) uuid.UUID { id, err := rq.FirstID(ctx) if err != nil && !IsNotFound(err) { panic(err) } return id } // Only returns a single Record entity found by the query, ensuring it only returns one. // Returns a *NotSingularError when more than one Record entity is found. // Returns a *NotFoundError when no Record entities are found. func (rq *RecordQuery) Only(ctx context.Context) (*Record, error) { nodes, err := rq.Limit(2).All(setContextOp(ctx, rq.ctx, ent.OpQueryOnly)) if err != nil { return nil, err } switch len(nodes) { case 1: return nodes[0], nil case 0: return nil, &NotFoundError{record.Label} default: return nil, &NotSingularError{record.Label} } } // OnlyX is like Only, but panics if an error occurs. func (rq *RecordQuery) OnlyX(ctx context.Context) *Record { node, err := rq.Only(ctx) if err != nil { panic(err) } return node } // OnlyID is like Only, but returns the only Record ID in the query. // Returns a *NotSingularError when more than one Record ID is found. // Returns a *NotFoundError when no entities are found. func (rq *RecordQuery) OnlyID(ctx context.Context) (id uuid.UUID, err error) { var ids []uuid.UUID if ids, err = rq.Limit(2).IDs(setContextOp(ctx, rq.ctx, ent.OpQueryOnlyID)); err != nil { return } switch len(ids) { case 1: id = ids[0] case 0: err = &NotFoundError{record.Label} default: err = &NotSingularError{record.Label} } return } // OnlyIDX is like OnlyID, but panics if an error occurs. func (rq *RecordQuery) OnlyIDX(ctx context.Context) uuid.UUID { id, err := rq.OnlyID(ctx) if err != nil { panic(err) } return id } // All executes the query and returns a list of Records. func (rq *RecordQuery) All(ctx context.Context) ([]*Record, error) { ctx = setContextOp(ctx, rq.ctx, ent.OpQueryAll) if err := rq.prepareQuery(ctx); err != nil { return nil, err } qr := querierAll[[]*Record, *RecordQuery]() return withInterceptors[[]*Record](ctx, rq, qr, rq.inters) } // AllX is like All, but panics if an error occurs. func (rq *RecordQuery) AllX(ctx context.Context) []*Record { nodes, err := rq.All(ctx) if err != nil { panic(err) } return nodes } // IDs executes the query and returns a list of Record IDs. func (rq *RecordQuery) IDs(ctx context.Context) (ids []uuid.UUID, err error) { if rq.ctx.Unique == nil && rq.path != nil { rq.Unique(true) } ctx = setContextOp(ctx, rq.ctx, ent.OpQueryIDs) if err = rq.Select(record.FieldID).Scan(ctx, &ids); err != nil { return nil, err } return ids, nil } // IDsX is like IDs, but panics if an error occurs. func (rq *RecordQuery) IDsX(ctx context.Context) []uuid.UUID { ids, err := rq.IDs(ctx) if err != nil { panic(err) } return ids } // Count returns the count of the given query. func (rq *RecordQuery) Count(ctx context.Context) (int, error) { ctx = setContextOp(ctx, rq.ctx, ent.OpQueryCount) if err := rq.prepareQuery(ctx); err != nil { return 0, err } return withInterceptors[int](ctx, rq, querierCount[*RecordQuery](), rq.inters) } // CountX is like Count, but panics if an error occurs. func (rq *RecordQuery) CountX(ctx context.Context) int { count, err := rq.Count(ctx) if err != nil { panic(err) } return count } // Exist returns true if the query has elements in the graph. func (rq *RecordQuery) Exist(ctx context.Context) (bool, error) { ctx = setContextOp(ctx, rq.ctx, ent.OpQueryExist) switch _, err := rq.FirstID(ctx); { case IsNotFound(err): return false, nil case err != nil: return false, fmt.Errorf("db: check existence: %w", err) default: return true, nil } } // ExistX is like Exist, but panics if an error occurs. func (rq *RecordQuery) ExistX(ctx context.Context) bool { exist, err := rq.Exist(ctx) if err != nil { panic(err) } return exist } // Clone returns a duplicate of the RecordQuery builder, including all associated steps. It can be // used to prepare common query builders and use them differently after the clone is made. func (rq *RecordQuery) Clone() *RecordQuery { if rq == nil { return nil } return &RecordQuery{ config: rq.config, ctx: rq.ctx.Clone(), order: append([]record.OrderOption{}, rq.order...), inters: append([]Interceptor{}, rq.inters...), predicates: append([]predicate.Record{}, rq.predicates...), withUser: rq.withUser.Clone(), withModel: rq.withModel.Clone(), // clone intermediate query. sql: rq.sql.Clone(), path: rq.path, modifiers: append([]func(*sql.Selector){}, rq.modifiers...), } } // WithUser tells the query-builder to eager-load the nodes that are connected to // the "user" edge. The optional arguments are used to configure the query builder of the edge. func (rq *RecordQuery) WithUser(opts ...func(*UserQuery)) *RecordQuery { query := (&UserClient{config: rq.config}).Query() for _, opt := range opts { opt(query) } rq.withUser = query return rq } // WithModel tells the query-builder to eager-load the nodes that are connected to // the "model" edge. The optional arguments are used to configure the query builder of the edge. func (rq *RecordQuery) WithModel(opts ...func(*ModelQuery)) *RecordQuery { query := (&ModelClient{config: rq.config}).Query() for _, opt := range opts { opt(query) } rq.withModel = query return rq } // 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 { // UserID uuid.UUID `json:"user_id,omitempty"` // Count int `json:"count,omitempty"` // } // // client.Record.Query(). // GroupBy(record.FieldUserID). // Aggregate(db.Count()). // Scan(ctx, &v) func (rq *RecordQuery) GroupBy(field string, fields ...string) *RecordGroupBy { rq.ctx.Fields = append([]string{field}, fields...) grbuild := &RecordGroupBy{build: rq} grbuild.flds = &rq.ctx.Fields grbuild.label = record.Label grbuild.scan = 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 { // UserID uuid.UUID `json:"user_id,omitempty"` // } // // client.Record.Query(). // Select(record.FieldUserID). // Scan(ctx, &v) func (rq *RecordQuery) Select(fields ...string) *RecordSelect { rq.ctx.Fields = append(rq.ctx.Fields, fields...) sbuild := &RecordSelect{RecordQuery: rq} sbuild.label = record.Label sbuild.flds, sbuild.scan = &rq.ctx.Fields, sbuild.Scan return sbuild } // Aggregate returns a RecordSelect configured with the given aggregations. func (rq *RecordQuery) Aggregate(fns ...AggregateFunc) *RecordSelect { return rq.Select().Aggregate(fns...) } func (rq *RecordQuery) prepareQuery(ctx context.Context) error { for _, inter := range rq.inters { if inter == nil { return fmt.Errorf("db: uninitialized interceptor (forgotten import db/runtime?)") } if trv, ok := inter.(Traverser); ok { if err := trv.Traverse(ctx, rq); err != nil { return err } } } for _, f := range rq.ctx.Fields { if !record.ValidColumn(f) { return &ValidationError{Name: f, err: fmt.Errorf("db: invalid field %q for query", f)} } } if rq.path != nil { prev, err := rq.path(ctx) if err != nil { return err } rq.sql = prev } return nil } func (rq *RecordQuery) sqlAll(ctx context.Context, hooks ...queryHook) ([]*Record, error) { var ( nodes = []*Record{} _spec = rq.querySpec() loadedTypes = [2]bool{ rq.withUser != nil, rq.withModel != nil, } ) _spec.ScanValues = func(columns []string) ([]any, error) { return (*Record).scanValues(nil, columns) } _spec.Assign = func(columns []string, values []any) error { node := &Record{config: rq.config} nodes = append(nodes, node) node.Edges.loadedTypes = loadedTypes return node.assignValues(columns, values) } if len(rq.modifiers) > 0 { _spec.Modifiers = rq.modifiers } for i := range hooks { hooks[i](ctx, _spec) } if err := sqlgraph.QueryNodes(ctx, rq.driver, _spec); err != nil { return nil, err } if len(nodes) == 0 { return nodes, nil } if query := rq.withUser; query != nil { if err := rq.loadUser(ctx, query, nodes, nil, func(n *Record, e *User) { n.Edges.User = e }); err != nil { return nil, err } } if query := rq.withModel; query != nil { if err := rq.loadModel(ctx, query, nodes, nil, func(n *Record, e *Model) { n.Edges.Model = e }); err != nil { return nil, err } } return nodes, nil } func (rq *RecordQuery) loadUser(ctx context.Context, query *UserQuery, nodes []*Record, init func(*Record), assign func(*Record, *User)) error { ids := make([]uuid.UUID, 0, len(nodes)) nodeids := make(map[uuid.UUID][]*Record) for i := range nodes { fk := nodes[i].UserID if _, ok := nodeids[fk]; !ok { ids = append(ids, fk) } nodeids[fk] = append(nodeids[fk], nodes[i]) } if len(ids) == 0 { return nil } query.Where(user.IDIn(ids...)) neighbors, err := query.All(ctx) if err != nil { return err } for _, n := range neighbors { nodes, ok := nodeids[n.ID] if !ok { return fmt.Errorf(`unexpected foreign-key "user_id" returned %v`, n.ID) } for i := range nodes { assign(nodes[i], n) } } return nil } func (rq *RecordQuery) loadModel(ctx context.Context, query *ModelQuery, nodes []*Record, init func(*Record), assign func(*Record, *Model)) error { ids := make([]uuid.UUID, 0, len(nodes)) nodeids := make(map[uuid.UUID][]*Record) for i := range nodes { fk := nodes[i].ModelID if _, ok := nodeids[fk]; !ok { ids = append(ids, fk) } nodeids[fk] = append(nodeids[fk], nodes[i]) } if len(ids) == 0 { return nil } query.Where(model.IDIn(ids...)) neighbors, err := query.All(ctx) if err != nil { return err } for _, n := range neighbors { nodes, ok := nodeids[n.ID] if !ok { return fmt.Errorf(`unexpected foreign-key "model_id" returned %v`, n.ID) } for i := range nodes { assign(nodes[i], n) } } return nil } func (rq *RecordQuery) sqlCount(ctx context.Context) (int, error) { _spec := rq.querySpec() if len(rq.modifiers) > 0 { _spec.Modifiers = rq.modifiers } _spec.Node.Columns = rq.ctx.Fields if len(rq.ctx.Fields) > 0 { _spec.Unique = rq.ctx.Unique != nil && *rq.ctx.Unique } return sqlgraph.CountNodes(ctx, rq.driver, _spec) } func (rq *RecordQuery) querySpec() *sqlgraph.QuerySpec { _spec := sqlgraph.NewQuerySpec(record.Table, record.Columns, sqlgraph.NewFieldSpec(record.FieldID, field.TypeUUID)) _spec.From = rq.sql if unique := rq.ctx.Unique; unique != nil { _spec.Unique = *unique } else if rq.path != nil { _spec.Unique = true } if fields := rq.ctx.Fields; len(fields) > 0 { _spec.Node.Columns = make([]string, 0, len(fields)) _spec.Node.Columns = append(_spec.Node.Columns, record.FieldID) for i := range fields { if fields[i] != record.FieldID { _spec.Node.Columns = append(_spec.Node.Columns, fields[i]) } } if rq.withUser != nil { _spec.Node.AddColumnOnce(record.FieldUserID) } if rq.withModel != nil { _spec.Node.AddColumnOnce(record.FieldModelID) } } if ps := rq.predicates; len(ps) > 0 { _spec.Predicate = func(selector *sql.Selector) { for i := range ps { ps[i](selector) } } } if limit := rq.ctx.Limit; limit != nil { _spec.Limit = *limit } if offset := rq.ctx.Offset; offset != nil { _spec.Offset = *offset } if ps := rq.order; len(ps) > 0 { _spec.Order = func(selector *sql.Selector) { for i := range ps { ps[i](selector) } } } return _spec } func (rq *RecordQuery) sqlQuery(ctx context.Context) *sql.Selector { builder := sql.Dialect(rq.driver.Dialect()) t1 := builder.Table(record.Table) columns := rq.ctx.Fields if len(columns) == 0 { columns = record.Columns } selector := builder.Select(t1.Columns(columns...)...).From(t1) if rq.sql != nil { selector = rq.sql selector.Select(selector.Columns(columns...)...) } if rq.ctx.Unique != nil && *rq.ctx.Unique { selector.Distinct() } for _, m := range rq.modifiers { m(selector) } for _, p := range rq.predicates { p(selector) } for _, p := range rq.order { p(selector) } if offset := rq.ctx.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 := rq.ctx.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 (rq *RecordQuery) ForUpdate(opts ...sql.LockOption) *RecordQuery { if rq.driver.Dialect() == dialect.Postgres { rq.Unique(false) } rq.modifiers = append(rq.modifiers, func(s *sql.Selector) { s.ForUpdate(opts...) }) return rq } // 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 (rq *RecordQuery) ForShare(opts ...sql.LockOption) *RecordQuery { if rq.driver.Dialect() == dialect.Postgres { rq.Unique(false) } rq.modifiers = append(rq.modifiers, func(s *sql.Selector) { s.ForShare(opts...) }) return rq } // Modify adds a query modifier for attaching custom logic to queries. func (rq *RecordQuery) Modify(modifiers ...func(s *sql.Selector)) *RecordSelect { rq.modifiers = append(rq.modifiers, modifiers...) return rq.Select() } // RecordGroupBy is the group-by builder for Record entities. type RecordGroupBy struct { selector build *RecordQuery } // Aggregate adds the given aggregation functions to the group-by query. func (rgb *RecordGroupBy) Aggregate(fns ...AggregateFunc) *RecordGroupBy { rgb.fns = append(rgb.fns, fns...) return rgb } // Scan applies the selector query and scans the result into the given value. func (rgb *RecordGroupBy) Scan(ctx context.Context, v any) error { ctx = setContextOp(ctx, rgb.build.ctx, ent.OpQueryGroupBy) if err := rgb.build.prepareQuery(ctx); err != nil { return err } return scanWithInterceptors[*RecordQuery, *RecordGroupBy](ctx, rgb.build, rgb, rgb.build.inters, v) } func (rgb *RecordGroupBy) sqlScan(ctx context.Context, root *RecordQuery, v any) error { selector := root.sqlQuery(ctx).Select() aggregation := make([]string, 0, len(rgb.fns)) for _, fn := range rgb.fns { aggregation = append(aggregation, fn(selector)) } if len(selector.SelectedColumns()) == 0 { columns := make([]string, 0, len(*rgb.flds)+len(rgb.fns)) for _, f := range *rgb.flds { columns = append(columns, selector.C(f)) } columns = append(columns, aggregation...) selector.Select(columns...) } selector.GroupBy(selector.Columns(*rgb.flds...)...) if err := selector.Err(); err != nil { return err } rows := &sql.Rows{} query, args := selector.Query() if err := rgb.build.driver.Query(ctx, query, args, rows); err != nil { return err } defer rows.Close() return sql.ScanSlice(rows, v) } // RecordSelect is the builder for selecting fields of Record entities. type RecordSelect struct { *RecordQuery selector } // Aggregate adds the given aggregation functions to the selector query. func (rs *RecordSelect) Aggregate(fns ...AggregateFunc) *RecordSelect { rs.fns = append(rs.fns, fns...) return rs } // Scan applies the selector query and scans the result into the given value. func (rs *RecordSelect) Scan(ctx context.Context, v any) error { ctx = setContextOp(ctx, rs.ctx, ent.OpQuerySelect) if err := rs.prepareQuery(ctx); err != nil { return err } return scanWithInterceptors[*RecordQuery, *RecordSelect](ctx, rs.RecordQuery, rs, rs.inters, v) } func (rs *RecordSelect) sqlScan(ctx context.Context, root *RecordQuery, v any) error { selector := root.sqlQuery(ctx) aggregation := make([]string, 0, len(rs.fns)) for _, fn := range rs.fns { aggregation = append(aggregation, fn(selector)) } switch n := len(*rs.selector.flds); { case n == 0 && len(aggregation) > 0: selector.Select(aggregation...) case n != 0 && len(aggregation) > 0: selector.AppendSelect(aggregation...) } rows := &sql.Rows{} query, args := selector.Query() if err := rs.driver.Query(ctx, query, args, rows); err != nil { return err } defer rows.Close() return sql.ScanSlice(rows, v) } // Modify adds a query modifier for attaching custom logic to queries. func (rs *RecordSelect) Modify(modifiers ...func(s *sql.Selector)) *RecordSelect { rs.modifiers = append(rs.modifiers, modifiers...) return rs }