// Code generated by ent, DO NOT EDIT. package ent import ( "context" "database/sql/driver" "fmt" "math" "entgo.io/ent/dialect/sql" "entgo.io/ent/dialect/sql/sqlgraph" "entgo.io/ent/schema/field" "git.harting.dev/csgowtf/csgowtfd/ent/match" "git.harting.dev/csgowtf/csgowtfd/ent/matchplayer" "git.harting.dev/csgowtf/csgowtfd/ent/player" "git.harting.dev/csgowtf/csgowtfd/ent/predicate" ) // PlayerQuery is the builder for querying Player entities. type PlayerQuery struct { config limit *int offset *int unique *bool order []OrderFunc fields []string predicates []predicate.Player withStats *MatchPlayerQuery withMatches *MatchQuery 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 PlayerQuery builder. func (pq *PlayerQuery) Where(ps ...predicate.Player) *PlayerQuery { pq.predicates = append(pq.predicates, ps...) return pq } // Limit adds a limit step to the query. func (pq *PlayerQuery) Limit(limit int) *PlayerQuery { pq.limit = &limit return pq } // Offset adds an offset step to the query. func (pq *PlayerQuery) Offset(offset int) *PlayerQuery { pq.offset = &offset return pq } // 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 (pq *PlayerQuery) Unique(unique bool) *PlayerQuery { pq.unique = &unique return pq } // Order adds an order step to the query. func (pq *PlayerQuery) Order(o ...OrderFunc) *PlayerQuery { pq.order = append(pq.order, o...) return pq } // QueryStats chains the current query on the "stats" edge. func (pq *PlayerQuery) QueryStats() *MatchPlayerQuery { query := &MatchPlayerQuery{config: pq.config} query.path = func(ctx context.Context) (fromU *sql.Selector, err error) { if err := pq.prepareQuery(ctx); err != nil { return nil, err } selector := pq.sqlQuery(ctx) if err := selector.Err(); err != nil { return nil, err } step := sqlgraph.NewStep( sqlgraph.From(player.Table, player.FieldID, selector), sqlgraph.To(matchplayer.Table, matchplayer.FieldID), sqlgraph.Edge(sqlgraph.O2M, false, player.StatsTable, player.StatsColumn), ) fromU = sqlgraph.SetNeighbors(pq.driver.Dialect(), step) return fromU, nil } return query } // QueryMatches chains the current query on the "matches" edge. func (pq *PlayerQuery) QueryMatches() *MatchQuery { query := &MatchQuery{config: pq.config} query.path = func(ctx context.Context) (fromU *sql.Selector, err error) { if err := pq.prepareQuery(ctx); err != nil { return nil, err } selector := pq.sqlQuery(ctx) if err := selector.Err(); err != nil { return nil, err } step := sqlgraph.NewStep( sqlgraph.From(player.Table, player.FieldID, selector), sqlgraph.To(match.Table, match.FieldID), sqlgraph.Edge(sqlgraph.M2M, false, player.MatchesTable, player.MatchesPrimaryKey...), ) fromU = sqlgraph.SetNeighbors(pq.driver.Dialect(), step) return fromU, nil } return query } // First returns the first Player entity from the query. // Returns a *NotFoundError when no Player was found. func (pq *PlayerQuery) First(ctx context.Context) (*Player, error) { nodes, err := pq.Limit(1).All(ctx) if err != nil { return nil, err } if len(nodes) == 0 { return nil, &NotFoundError{player.Label} } return nodes[0], nil } // FirstX is like First, but panics if an error occurs. func (pq *PlayerQuery) FirstX(ctx context.Context) *Player { node, err := pq.First(ctx) if err != nil && !IsNotFound(err) { panic(err) } return node } // FirstID returns the first Player ID from the query. // Returns a *NotFoundError when no Player ID was found. func (pq *PlayerQuery) FirstID(ctx context.Context) (id uint64, err error) { var ids []uint64 if ids, err = pq.Limit(1).IDs(ctx); err != nil { return } if len(ids) == 0 { err = &NotFoundError{player.Label} return } return ids[0], nil } // FirstIDX is like FirstID, but panics if an error occurs. func (pq *PlayerQuery) FirstIDX(ctx context.Context) uint64 { id, err := pq.FirstID(ctx) if err != nil && !IsNotFound(err) { panic(err) } return id } // Only returns a single Player entity found by the query, ensuring it only returns one. // Returns a *NotSingularError when more than one Player entity is found. // Returns a *NotFoundError when no Player entities are found. func (pq *PlayerQuery) Only(ctx context.Context) (*Player, error) { nodes, err := pq.Limit(2).All(ctx) if err != nil { return nil, err } switch len(nodes) { case 1: return nodes[0], nil case 0: return nil, &NotFoundError{player.Label} default: return nil, &NotSingularError{player.Label} } } // OnlyX is like Only, but panics if an error occurs. func (pq *PlayerQuery) OnlyX(ctx context.Context) *Player { node, err := pq.Only(ctx) if err != nil { panic(err) } return node } // OnlyID is like Only, but returns the only Player ID in the query. // Returns a *NotSingularError when more than one Player ID is found. // Returns a *NotFoundError when no entities are found. func (pq *PlayerQuery) OnlyID(ctx context.Context) (id uint64, err error) { var ids []uint64 if ids, err = pq.Limit(2).IDs(ctx); err != nil { return } switch len(ids) { case 1: id = ids[0] case 0: err = &NotFoundError{player.Label} default: err = &NotSingularError{player.Label} } return } // OnlyIDX is like OnlyID, but panics if an error occurs. func (pq *PlayerQuery) OnlyIDX(ctx context.Context) uint64 { id, err := pq.OnlyID(ctx) if err != nil { panic(err) } return id } // All executes the query and returns a list of Players. func (pq *PlayerQuery) All(ctx context.Context) ([]*Player, error) { if err := pq.prepareQuery(ctx); err != nil { return nil, err } return pq.sqlAll(ctx) } // AllX is like All, but panics if an error occurs. func (pq *PlayerQuery) AllX(ctx context.Context) []*Player { nodes, err := pq.All(ctx) if err != nil { panic(err) } return nodes } // IDs executes the query and returns a list of Player IDs. func (pq *PlayerQuery) IDs(ctx context.Context) ([]uint64, error) { var ids []uint64 if err := pq.Select(player.FieldID).Scan(ctx, &ids); err != nil { return nil, err } return ids, nil } // IDsX is like IDs, but panics if an error occurs. func (pq *PlayerQuery) IDsX(ctx context.Context) []uint64 { ids, err := pq.IDs(ctx) if err != nil { panic(err) } return ids } // Count returns the count of the given query. func (pq *PlayerQuery) Count(ctx context.Context) (int, error) { if err := pq.prepareQuery(ctx); err != nil { return 0, err } return pq.sqlCount(ctx) } // CountX is like Count, but panics if an error occurs. func (pq *PlayerQuery) CountX(ctx context.Context) int { count, err := pq.Count(ctx) if err != nil { panic(err) } return count } // Exist returns true if the query has elements in the graph. func (pq *PlayerQuery) Exist(ctx context.Context) (bool, error) { if err := pq.prepareQuery(ctx); err != nil { return false, err } return pq.sqlExist(ctx) } // ExistX is like Exist, but panics if an error occurs. func (pq *PlayerQuery) ExistX(ctx context.Context) bool { exist, err := pq.Exist(ctx) if err != nil { panic(err) } return exist } // Clone returns a duplicate of the PlayerQuery builder, including all associated steps. It can be // used to prepare common query builders and use them differently after the clone is made. func (pq *PlayerQuery) Clone() *PlayerQuery { if pq == nil { return nil } return &PlayerQuery{ config: pq.config, limit: pq.limit, offset: pq.offset, order: append([]OrderFunc{}, pq.order...), predicates: append([]predicate.Player{}, pq.predicates...), withStats: pq.withStats.Clone(), withMatches: pq.withMatches.Clone(), // clone intermediate query. sql: pq.sql.Clone(), path: pq.path, unique: pq.unique, } } // WithStats tells the query-builder to eager-load the nodes that are connected to // the "stats" edge. The optional arguments are used to configure the query builder of the edge. func (pq *PlayerQuery) WithStats(opts ...func(*MatchPlayerQuery)) *PlayerQuery { query := &MatchPlayerQuery{config: pq.config} for _, opt := range opts { opt(query) } pq.withStats = query return pq } // WithMatches tells the query-builder to eager-load the nodes that are connected to // the "matches" edge. The optional arguments are used to configure the query builder of the edge. func (pq *PlayerQuery) WithMatches(opts ...func(*MatchQuery)) *PlayerQuery { query := &MatchQuery{config: pq.config} for _, opt := range opts { opt(query) } pq.withMatches = query return pq } // 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,omitempty"` // Count int `json:"count,omitempty"` // } // // client.Player.Query(). // GroupBy(player.FieldName). // Aggregate(ent.Count()). // Scan(ctx, &v) func (pq *PlayerQuery) GroupBy(field string, fields ...string) *PlayerGroupBy { grbuild := &PlayerGroupBy{config: pq.config} grbuild.fields = append([]string{field}, fields...) grbuild.path = func(ctx context.Context) (prev *sql.Selector, err error) { if err := pq.prepareQuery(ctx); err != nil { return nil, err } return pq.sqlQuery(ctx), nil } grbuild.label = player.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,omitempty"` // } // // client.Player.Query(). // Select(player.FieldName). // Scan(ctx, &v) func (pq *PlayerQuery) Select(fields ...string) *PlayerSelect { pq.fields = append(pq.fields, fields...) selbuild := &PlayerSelect{PlayerQuery: pq} selbuild.label = player.Label selbuild.flds, selbuild.scan = &pq.fields, selbuild.Scan return selbuild } // Aggregate returns a PlayerSelect configured with the given aggregations. func (pq *PlayerQuery) Aggregate(fns ...AggregateFunc) *PlayerSelect { return pq.Select().Aggregate(fns...) } func (pq *PlayerQuery) prepareQuery(ctx context.Context) error { for _, f := range pq.fields { if !player.ValidColumn(f) { return &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)} } } if pq.path != nil { prev, err := pq.path(ctx) if err != nil { return err } pq.sql = prev } return nil } func (pq *PlayerQuery) sqlAll(ctx context.Context, hooks ...queryHook) ([]*Player, error) { var ( nodes = []*Player{} _spec = pq.querySpec() loadedTypes = [2]bool{ pq.withStats != nil, pq.withMatches != nil, } ) _spec.ScanValues = func(columns []string) ([]any, error) { return (*Player).scanValues(nil, columns) } _spec.Assign = func(columns []string, values []any) error { node := &Player{config: pq.config} nodes = append(nodes, node) node.Edges.loadedTypes = loadedTypes return node.assignValues(columns, values) } if len(pq.modifiers) > 0 { _spec.Modifiers = pq.modifiers } for i := range hooks { hooks[i](ctx, _spec) } if err := sqlgraph.QueryNodes(ctx, pq.driver, _spec); err != nil { return nil, err } if len(nodes) == 0 { return nodes, nil } if query := pq.withStats; query != nil { if err := pq.loadStats(ctx, query, nodes, func(n *Player) { n.Edges.Stats = []*MatchPlayer{} }, func(n *Player, e *MatchPlayer) { n.Edges.Stats = append(n.Edges.Stats, e) }); err != nil { return nil, err } } if query := pq.withMatches; query != nil { if err := pq.loadMatches(ctx, query, nodes, func(n *Player) { n.Edges.Matches = []*Match{} }, func(n *Player, e *Match) { n.Edges.Matches = append(n.Edges.Matches, e) }); err != nil { return nil, err } } return nodes, nil } func (pq *PlayerQuery) loadStats(ctx context.Context, query *MatchPlayerQuery, nodes []*Player, init func(*Player), assign func(*Player, *MatchPlayer)) error { fks := make([]driver.Value, 0, len(nodes)) nodeids := make(map[uint64]*Player) for i := range nodes { fks = append(fks, nodes[i].ID) nodeids[nodes[i].ID] = nodes[i] if init != nil { init(nodes[i]) } } query.Where(predicate.MatchPlayer(func(s *sql.Selector) { s.Where(sql.InValues(player.StatsColumn, fks...)) })) neighbors, err := query.All(ctx) if err != nil { return err } for _, n := range neighbors { fk := n.PlayerStats node, ok := nodeids[fk] if !ok { return fmt.Errorf(`unexpected foreign-key "player_stats" returned %v for node %v`, fk, n.ID) } assign(node, n) } return nil } func (pq *PlayerQuery) loadMatches(ctx context.Context, query *MatchQuery, nodes []*Player, init func(*Player), assign func(*Player, *Match)) error { edgeIDs := make([]driver.Value, len(nodes)) byID := make(map[uint64]*Player) nids := make(map[uint64]map[*Player]struct{}) for i, node := range nodes { edgeIDs[i] = node.ID byID[node.ID] = node if init != nil { init(node) } } query.Where(func(s *sql.Selector) { joinT := sql.Table(player.MatchesTable) s.Join(joinT).On(s.C(match.FieldID), joinT.C(player.MatchesPrimaryKey[1])) s.Where(sql.InValues(joinT.C(player.MatchesPrimaryKey[0]), edgeIDs...)) columns := s.SelectedColumns() s.Select(joinT.C(player.MatchesPrimaryKey[0])) s.AppendSelect(columns...) s.SetDistinct(false) }) if err := query.prepareQuery(ctx); err != nil { return err } neighbors, err := query.sqlAll(ctx, func(_ context.Context, spec *sqlgraph.QuerySpec) { assign := spec.Assign values := spec.ScanValues spec.ScanValues = func(columns []string) ([]any, error) { values, err := values(columns[1:]) if err != nil { return nil, err } return append([]any{new(sql.NullInt64)}, values...), nil } spec.Assign = func(columns []string, values []any) error { outValue := uint64(values[0].(*sql.NullInt64).Int64) inValue := uint64(values[1].(*sql.NullInt64).Int64) if nids[inValue] == nil { nids[inValue] = map[*Player]struct{}{byID[outValue]: {}} return assign(columns[1:], values[1:]) } nids[inValue][byID[outValue]] = struct{}{} return nil } }) if err != nil { return err } for _, n := range neighbors { nodes, ok := nids[n.ID] if !ok { return fmt.Errorf(`unexpected "matches" node returned %v`, n.ID) } for kn := range nodes { assign(kn, n) } } return nil } func (pq *PlayerQuery) sqlCount(ctx context.Context) (int, error) { _spec := pq.querySpec() if len(pq.modifiers) > 0 { _spec.Modifiers = pq.modifiers } _spec.Node.Columns = pq.fields if len(pq.fields) > 0 { _spec.Unique = pq.unique != nil && *pq.unique } return sqlgraph.CountNodes(ctx, pq.driver, _spec) } func (pq *PlayerQuery) sqlExist(ctx context.Context) (bool, error) { switch _, err := pq.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 (pq *PlayerQuery) querySpec() *sqlgraph.QuerySpec { _spec := &sqlgraph.QuerySpec{ Node: &sqlgraph.NodeSpec{ Table: player.Table, Columns: player.Columns, ID: &sqlgraph.FieldSpec{ Type: field.TypeUint64, Column: player.FieldID, }, }, From: pq.sql, Unique: true, } if unique := pq.unique; unique != nil { _spec.Unique = *unique } if fields := pq.fields; len(fields) > 0 { _spec.Node.Columns = make([]string, 0, len(fields)) _spec.Node.Columns = append(_spec.Node.Columns, player.FieldID) for i := range fields { if fields[i] != player.FieldID { _spec.Node.Columns = append(_spec.Node.Columns, fields[i]) } } } if ps := pq.predicates; len(ps) > 0 { _spec.Predicate = func(selector *sql.Selector) { for i := range ps { ps[i](selector) } } } if limit := pq.limit; limit != nil { _spec.Limit = *limit } if offset := pq.offset; offset != nil { _spec.Offset = *offset } if ps := pq.order; len(ps) > 0 { _spec.Order = func(selector *sql.Selector) { for i := range ps { ps[i](selector) } } } return _spec } func (pq *PlayerQuery) sqlQuery(ctx context.Context) *sql.Selector { builder := sql.Dialect(pq.driver.Dialect()) t1 := builder.Table(player.Table) columns := pq.fields if len(columns) == 0 { columns = player.Columns } selector := builder.Select(t1.Columns(columns...)...).From(t1) if pq.sql != nil { selector = pq.sql selector.Select(selector.Columns(columns...)...) } if pq.unique != nil && *pq.unique { selector.Distinct() } for _, m := range pq.modifiers { m(selector) } for _, p := range pq.predicates { p(selector) } for _, p := range pq.order { p(selector) } if offset := pq.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 := pq.limit; limit != nil { selector.Limit(*limit) } return selector } // Modify adds a query modifier for attaching custom logic to queries. func (pq *PlayerQuery) Modify(modifiers ...func(s *sql.Selector)) *PlayerSelect { pq.modifiers = append(pq.modifiers, modifiers...) return pq.Select() } // PlayerGroupBy is the group-by builder for Player entities. type PlayerGroupBy 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 (pgb *PlayerGroupBy) Aggregate(fns ...AggregateFunc) *PlayerGroupBy { pgb.fns = append(pgb.fns, fns...) return pgb } // Scan applies the group-by query and scans the result into the given value. func (pgb *PlayerGroupBy) Scan(ctx context.Context, v any) error { query, err := pgb.path(ctx) if err != nil { return err } pgb.sql = query return pgb.sqlScan(ctx, v) } func (pgb *PlayerGroupBy) sqlScan(ctx context.Context, v any) error { for _, f := range pgb.fields { if !player.ValidColumn(f) { return &ValidationError{Name: f, err: fmt.Errorf("invalid field %q for group-by", f)} } } selector := pgb.sqlQuery() if err := selector.Err(); err != nil { return err } rows := &sql.Rows{} query, args := selector.Query() if err := pgb.driver.Query(ctx, query, args, rows); err != nil { return err } defer rows.Close() return sql.ScanSlice(rows, v) } func (pgb *PlayerGroupBy) sqlQuery() *sql.Selector { selector := pgb.sql.Select() aggregation := make([]string, 0, len(pgb.fns)) for _, fn := range pgb.fns { aggregation = append(aggregation, fn(selector)) } if len(selector.SelectedColumns()) == 0 { columns := make([]string, 0, len(pgb.fields)+len(pgb.fns)) for _, f := range pgb.fields { columns = append(columns, selector.C(f)) } columns = append(columns, aggregation...) selector.Select(columns...) } return selector.GroupBy(selector.Columns(pgb.fields...)...) } // PlayerSelect is the builder for selecting fields of Player entities. type PlayerSelect struct { *PlayerQuery selector // intermediate query (i.e. traversal path). sql *sql.Selector } // Aggregate adds the given aggregation functions to the selector query. func (ps *PlayerSelect) Aggregate(fns ...AggregateFunc) *PlayerSelect { ps.fns = append(ps.fns, fns...) return ps } // Scan applies the selector query and scans the result into the given value. func (ps *PlayerSelect) Scan(ctx context.Context, v any) error { if err := ps.prepareQuery(ctx); err != nil { return err } ps.sql = ps.PlayerQuery.sqlQuery(ctx) return ps.sqlScan(ctx, v) } func (ps *PlayerSelect) sqlScan(ctx context.Context, v any) error { aggregation := make([]string, 0, len(ps.fns)) for _, fn := range ps.fns { aggregation = append(aggregation, fn(ps.sql)) } switch n := len(*ps.selector.flds); { case n == 0 && len(aggregation) > 0: ps.sql.Select(aggregation...) case n != 0 && len(aggregation) > 0: ps.sql.AppendSelect(aggregation...) } rows := &sql.Rows{} query, args := ps.sql.Query() if err := ps.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 (ps *PlayerSelect) Modify(modifiers ...func(s *sql.Selector)) *PlayerSelect { ps.modifiers = append(ps.modifiers, modifiers...) return ps }