123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613 |
- // Code generated by ent, DO NOT EDIT.
- package ent
- import (
- "context"
- "fmt"
- "math"
- "entgo.io/ent/dialect/sql"
- "entgo.io/ent/dialect/sql/sqlgraph"
- "entgo.io/ent/schema/field"
- "github.com/suyuan32/simple-admin-job/ent/predicate"
- "github.com/suyuan32/simple-admin-job/ent/task"
- "github.com/suyuan32/simple-admin-job/ent/tasklog"
- )
- // TaskLogQuery is the builder for querying TaskLog entities.
- type TaskLogQuery struct {
- config
- ctx *QueryContext
- order []tasklog.OrderOption
- inters []Interceptor
- predicates []predicate.TaskLog
- withTasks *TaskQuery
- withFKs bool
- // intermediate query (i.e. traversal path).
- sql *sql.Selector
- path func(context.Context) (*sql.Selector, error)
- }
- // Where adds a new predicate for the TaskLogQuery builder.
- func (tlq *TaskLogQuery) Where(ps ...predicate.TaskLog) *TaskLogQuery {
- tlq.predicates = append(tlq.predicates, ps...)
- return tlq
- }
- // Limit the number of records to be returned by this query.
- func (tlq *TaskLogQuery) Limit(limit int) *TaskLogQuery {
- tlq.ctx.Limit = &limit
- return tlq
- }
- // Offset to start from.
- func (tlq *TaskLogQuery) Offset(offset int) *TaskLogQuery {
- tlq.ctx.Offset = &offset
- return tlq
- }
- // 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 (tlq *TaskLogQuery) Unique(unique bool) *TaskLogQuery {
- tlq.ctx.Unique = &unique
- return tlq
- }
- // Order specifies how the records should be ordered.
- func (tlq *TaskLogQuery) Order(o ...tasklog.OrderOption) *TaskLogQuery {
- tlq.order = append(tlq.order, o...)
- return tlq
- }
- // QueryTasks chains the current query on the "tasks" edge.
- func (tlq *TaskLogQuery) QueryTasks() *TaskQuery {
- query := (&TaskClient{config: tlq.config}).Query()
- query.path = func(ctx context.Context) (fromU *sql.Selector, err error) {
- if err := tlq.prepareQuery(ctx); err != nil {
- return nil, err
- }
- selector := tlq.sqlQuery(ctx)
- if err := selector.Err(); err != nil {
- return nil, err
- }
- step := sqlgraph.NewStep(
- sqlgraph.From(tasklog.Table, tasklog.FieldID, selector),
- sqlgraph.To(task.Table, task.FieldID),
- sqlgraph.Edge(sqlgraph.M2O, true, tasklog.TasksTable, tasklog.TasksColumn),
- )
- fromU = sqlgraph.SetNeighbors(tlq.driver.Dialect(), step)
- return fromU, nil
- }
- return query
- }
- // First returns the first TaskLog entity from the query.
- // Returns a *NotFoundError when no TaskLog was found.
- func (tlq *TaskLogQuery) First(ctx context.Context) (*TaskLog, error) {
- nodes, err := tlq.Limit(1).All(setContextOp(ctx, tlq.ctx, "First"))
- if err != nil {
- return nil, err
- }
- if len(nodes) == 0 {
- return nil, &NotFoundError{tasklog.Label}
- }
- return nodes[0], nil
- }
- // FirstX is like First, but panics if an error occurs.
- func (tlq *TaskLogQuery) FirstX(ctx context.Context) *TaskLog {
- node, err := tlq.First(ctx)
- if err != nil && !IsNotFound(err) {
- panic(err)
- }
- return node
- }
- // FirstID returns the first TaskLog ID from the query.
- // Returns a *NotFoundError when no TaskLog ID was found.
- func (tlq *TaskLogQuery) FirstID(ctx context.Context) (id uint64, err error) {
- var ids []uint64
- if ids, err = tlq.Limit(1).IDs(setContextOp(ctx, tlq.ctx, "FirstID")); err != nil {
- return
- }
- if len(ids) == 0 {
- err = &NotFoundError{tasklog.Label}
- return
- }
- return ids[0], nil
- }
- // FirstIDX is like FirstID, but panics if an error occurs.
- func (tlq *TaskLogQuery) FirstIDX(ctx context.Context) uint64 {
- id, err := tlq.FirstID(ctx)
- if err != nil && !IsNotFound(err) {
- panic(err)
- }
- return id
- }
- // Only returns a single TaskLog entity found by the query, ensuring it only returns one.
- // Returns a *NotSingularError when more than one TaskLog entity is found.
- // Returns a *NotFoundError when no TaskLog entities are found.
- func (tlq *TaskLogQuery) Only(ctx context.Context) (*TaskLog, error) {
- nodes, err := tlq.Limit(2).All(setContextOp(ctx, tlq.ctx, "Only"))
- if err != nil {
- return nil, err
- }
- switch len(nodes) {
- case 1:
- return nodes[0], nil
- case 0:
- return nil, &NotFoundError{tasklog.Label}
- default:
- return nil, &NotSingularError{tasklog.Label}
- }
- }
- // OnlyX is like Only, but panics if an error occurs.
- func (tlq *TaskLogQuery) OnlyX(ctx context.Context) *TaskLog {
- node, err := tlq.Only(ctx)
- if err != nil {
- panic(err)
- }
- return node
- }
- // OnlyID is like Only, but returns the only TaskLog ID in the query.
- // Returns a *NotSingularError when more than one TaskLog ID is found.
- // Returns a *NotFoundError when no entities are found.
- func (tlq *TaskLogQuery) OnlyID(ctx context.Context) (id uint64, err error) {
- var ids []uint64
- if ids, err = tlq.Limit(2).IDs(setContextOp(ctx, tlq.ctx, "OnlyID")); err != nil {
- return
- }
- switch len(ids) {
- case 1:
- id = ids[0]
- case 0:
- err = &NotFoundError{tasklog.Label}
- default:
- err = &NotSingularError{tasklog.Label}
- }
- return
- }
- // OnlyIDX is like OnlyID, but panics if an error occurs.
- func (tlq *TaskLogQuery) OnlyIDX(ctx context.Context) uint64 {
- id, err := tlq.OnlyID(ctx)
- if err != nil {
- panic(err)
- }
- return id
- }
- // All executes the query and returns a list of TaskLogs.
- func (tlq *TaskLogQuery) All(ctx context.Context) ([]*TaskLog, error) {
- ctx = setContextOp(ctx, tlq.ctx, "All")
- if err := tlq.prepareQuery(ctx); err != nil {
- return nil, err
- }
- qr := querierAll[[]*TaskLog, *TaskLogQuery]()
- return withInterceptors[[]*TaskLog](ctx, tlq, qr, tlq.inters)
- }
- // AllX is like All, but panics if an error occurs.
- func (tlq *TaskLogQuery) AllX(ctx context.Context) []*TaskLog {
- nodes, err := tlq.All(ctx)
- if err != nil {
- panic(err)
- }
- return nodes
- }
- // IDs executes the query and returns a list of TaskLog IDs.
- func (tlq *TaskLogQuery) IDs(ctx context.Context) (ids []uint64, err error) {
- if tlq.ctx.Unique == nil && tlq.path != nil {
- tlq.Unique(true)
- }
- ctx = setContextOp(ctx, tlq.ctx, "IDs")
- if err = tlq.Select(tasklog.FieldID).Scan(ctx, &ids); err != nil {
- return nil, err
- }
- return ids, nil
- }
- // IDsX is like IDs, but panics if an error occurs.
- func (tlq *TaskLogQuery) IDsX(ctx context.Context) []uint64 {
- ids, err := tlq.IDs(ctx)
- if err != nil {
- panic(err)
- }
- return ids
- }
- // Count returns the count of the given query.
- func (tlq *TaskLogQuery) Count(ctx context.Context) (int, error) {
- ctx = setContextOp(ctx, tlq.ctx, "Count")
- if err := tlq.prepareQuery(ctx); err != nil {
- return 0, err
- }
- return withInterceptors[int](ctx, tlq, querierCount[*TaskLogQuery](), tlq.inters)
- }
- // CountX is like Count, but panics if an error occurs.
- func (tlq *TaskLogQuery) CountX(ctx context.Context) int {
- count, err := tlq.Count(ctx)
- if err != nil {
- panic(err)
- }
- return count
- }
- // Exist returns true if the query has elements in the graph.
- func (tlq *TaskLogQuery) Exist(ctx context.Context) (bool, error) {
- ctx = setContextOp(ctx, tlq.ctx, "Exist")
- switch _, err := tlq.FirstID(ctx); {
- case IsNotFound(err):
- return false, nil
- case err != nil:
- return false, fmt.Errorf("ent: check existence: %w", err)
- default:
- return true, nil
- }
- }
- // ExistX is like Exist, but panics if an error occurs.
- func (tlq *TaskLogQuery) ExistX(ctx context.Context) bool {
- exist, err := tlq.Exist(ctx)
- if err != nil {
- panic(err)
- }
- return exist
- }
- // Clone returns a duplicate of the TaskLogQuery builder, including all associated steps. It can be
- // used to prepare common query builders and use them differently after the clone is made.
- func (tlq *TaskLogQuery) Clone() *TaskLogQuery {
- if tlq == nil {
- return nil
- }
- return &TaskLogQuery{
- config: tlq.config,
- ctx: tlq.ctx.Clone(),
- order: append([]tasklog.OrderOption{}, tlq.order...),
- inters: append([]Interceptor{}, tlq.inters...),
- predicates: append([]predicate.TaskLog{}, tlq.predicates...),
- withTasks: tlq.withTasks.Clone(),
- // clone intermediate query.
- sql: tlq.sql.Clone(),
- path: tlq.path,
- }
- }
- // WithTasks tells the query-builder to eager-load the nodes that are connected to
- // the "tasks" edge. The optional arguments are used to configure the query builder of the edge.
- func (tlq *TaskLogQuery) WithTasks(opts ...func(*TaskQuery)) *TaskLogQuery {
- query := (&TaskClient{config: tlq.config}).Query()
- for _, opt := range opts {
- opt(query)
- }
- tlq.withTasks = query
- return tlq
- }
- // 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 {
- // StartedAt time.Time `json:"started_at,omitempty"`
- // Count int `json:"count,omitempty"`
- // }
- //
- // client.TaskLog.Query().
- // GroupBy(tasklog.FieldStartedAt).
- // Aggregate(ent.Count()).
- // Scan(ctx, &v)
- func (tlq *TaskLogQuery) GroupBy(field string, fields ...string) *TaskLogGroupBy {
- tlq.ctx.Fields = append([]string{field}, fields...)
- grbuild := &TaskLogGroupBy{build: tlq}
- grbuild.flds = &tlq.ctx.Fields
- grbuild.label = tasklog.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 {
- // StartedAt time.Time `json:"started_at,omitempty"`
- // }
- //
- // client.TaskLog.Query().
- // Select(tasklog.FieldStartedAt).
- // Scan(ctx, &v)
- func (tlq *TaskLogQuery) Select(fields ...string) *TaskLogSelect {
- tlq.ctx.Fields = append(tlq.ctx.Fields, fields...)
- sbuild := &TaskLogSelect{TaskLogQuery: tlq}
- sbuild.label = tasklog.Label
- sbuild.flds, sbuild.scan = &tlq.ctx.Fields, sbuild.Scan
- return sbuild
- }
- // Aggregate returns a TaskLogSelect configured with the given aggregations.
- func (tlq *TaskLogQuery) Aggregate(fns ...AggregateFunc) *TaskLogSelect {
- return tlq.Select().Aggregate(fns...)
- }
- func (tlq *TaskLogQuery) prepareQuery(ctx context.Context) error {
- for _, inter := range tlq.inters {
- if inter == nil {
- return fmt.Errorf("ent: uninitialized interceptor (forgotten import ent/runtime?)")
- }
- if trv, ok := inter.(Traverser); ok {
- if err := trv.Traverse(ctx, tlq); err != nil {
- return err
- }
- }
- }
- for _, f := range tlq.ctx.Fields {
- if !tasklog.ValidColumn(f) {
- return &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
- }
- }
- if tlq.path != nil {
- prev, err := tlq.path(ctx)
- if err != nil {
- return err
- }
- tlq.sql = prev
- }
- return nil
- }
- func (tlq *TaskLogQuery) sqlAll(ctx context.Context, hooks ...queryHook) ([]*TaskLog, error) {
- var (
- nodes = []*TaskLog{}
- withFKs = tlq.withFKs
- _spec = tlq.querySpec()
- loadedTypes = [1]bool{
- tlq.withTasks != nil,
- }
- )
- if tlq.withTasks != nil {
- withFKs = true
- }
- if withFKs {
- _spec.Node.Columns = append(_spec.Node.Columns, tasklog.ForeignKeys...)
- }
- _spec.ScanValues = func(columns []string) ([]any, error) {
- return (*TaskLog).scanValues(nil, columns)
- }
- _spec.Assign = func(columns []string, values []any) error {
- node := &TaskLog{config: tlq.config}
- nodes = append(nodes, node)
- node.Edges.loadedTypes = loadedTypes
- return node.assignValues(columns, values)
- }
- for i := range hooks {
- hooks[i](ctx, _spec)
- }
- if err := sqlgraph.QueryNodes(ctx, tlq.driver, _spec); err != nil {
- return nil, err
- }
- if len(nodes) == 0 {
- return nodes, nil
- }
- if query := tlq.withTasks; query != nil {
- if err := tlq.loadTasks(ctx, query, nodes, nil,
- func(n *TaskLog, e *Task) { n.Edges.Tasks = e }); err != nil {
- return nil, err
- }
- }
- return nodes, nil
- }
- func (tlq *TaskLogQuery) loadTasks(ctx context.Context, query *TaskQuery, nodes []*TaskLog, init func(*TaskLog), assign func(*TaskLog, *Task)) error {
- ids := make([]uint64, 0, len(nodes))
- nodeids := make(map[uint64][]*TaskLog)
- for i := range nodes {
- if nodes[i].task_task_logs == nil {
- continue
- }
- fk := *nodes[i].task_task_logs
- if _, ok := nodeids[fk]; !ok {
- ids = append(ids, fk)
- }
- nodeids[fk] = append(nodeids[fk], nodes[i])
- }
- if len(ids) == 0 {
- return nil
- }
- query.Where(task.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 "task_task_logs" returned %v`, n.ID)
- }
- for i := range nodes {
- assign(nodes[i], n)
- }
- }
- return nil
- }
- func (tlq *TaskLogQuery) sqlCount(ctx context.Context) (int, error) {
- _spec := tlq.querySpec()
- _spec.Node.Columns = tlq.ctx.Fields
- if len(tlq.ctx.Fields) > 0 {
- _spec.Unique = tlq.ctx.Unique != nil && *tlq.ctx.Unique
- }
- return sqlgraph.CountNodes(ctx, tlq.driver, _spec)
- }
- func (tlq *TaskLogQuery) querySpec() *sqlgraph.QuerySpec {
- _spec := sqlgraph.NewQuerySpec(tasklog.Table, tasklog.Columns, sqlgraph.NewFieldSpec(tasklog.FieldID, field.TypeUint64))
- _spec.From = tlq.sql
- if unique := tlq.ctx.Unique; unique != nil {
- _spec.Unique = *unique
- } else if tlq.path != nil {
- _spec.Unique = true
- }
- if fields := tlq.ctx.Fields; len(fields) > 0 {
- _spec.Node.Columns = make([]string, 0, len(fields))
- _spec.Node.Columns = append(_spec.Node.Columns, tasklog.FieldID)
- for i := range fields {
- if fields[i] != tasklog.FieldID {
- _spec.Node.Columns = append(_spec.Node.Columns, fields[i])
- }
- }
- }
- if ps := tlq.predicates; len(ps) > 0 {
- _spec.Predicate = func(selector *sql.Selector) {
- for i := range ps {
- ps[i](selector)
- }
- }
- }
- if limit := tlq.ctx.Limit; limit != nil {
- _spec.Limit = *limit
- }
- if offset := tlq.ctx.Offset; offset != nil {
- _spec.Offset = *offset
- }
- if ps := tlq.order; len(ps) > 0 {
- _spec.Order = func(selector *sql.Selector) {
- for i := range ps {
- ps[i](selector)
- }
- }
- }
- return _spec
- }
- func (tlq *TaskLogQuery) sqlQuery(ctx context.Context) *sql.Selector {
- builder := sql.Dialect(tlq.driver.Dialect())
- t1 := builder.Table(tasklog.Table)
- columns := tlq.ctx.Fields
- if len(columns) == 0 {
- columns = tasklog.Columns
- }
- selector := builder.Select(t1.Columns(columns...)...).From(t1)
- if tlq.sql != nil {
- selector = tlq.sql
- selector.Select(selector.Columns(columns...)...)
- }
- if tlq.ctx.Unique != nil && *tlq.ctx.Unique {
- selector.Distinct()
- }
- for _, p := range tlq.predicates {
- p(selector)
- }
- for _, p := range tlq.order {
- p(selector)
- }
- if offset := tlq.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 := tlq.ctx.Limit; limit != nil {
- selector.Limit(*limit)
- }
- return selector
- }
- // TaskLogGroupBy is the group-by builder for TaskLog entities.
- type TaskLogGroupBy struct {
- selector
- build *TaskLogQuery
- }
- // Aggregate adds the given aggregation functions to the group-by query.
- func (tlgb *TaskLogGroupBy) Aggregate(fns ...AggregateFunc) *TaskLogGroupBy {
- tlgb.fns = append(tlgb.fns, fns...)
- return tlgb
- }
- // Scan applies the selector query and scans the result into the given value.
- func (tlgb *TaskLogGroupBy) Scan(ctx context.Context, v any) error {
- ctx = setContextOp(ctx, tlgb.build.ctx, "GroupBy")
- if err := tlgb.build.prepareQuery(ctx); err != nil {
- return err
- }
- return scanWithInterceptors[*TaskLogQuery, *TaskLogGroupBy](ctx, tlgb.build, tlgb, tlgb.build.inters, v)
- }
- func (tlgb *TaskLogGroupBy) sqlScan(ctx context.Context, root *TaskLogQuery, v any) error {
- selector := root.sqlQuery(ctx).Select()
- aggregation := make([]string, 0, len(tlgb.fns))
- for _, fn := range tlgb.fns {
- aggregation = append(aggregation, fn(selector))
- }
- if len(selector.SelectedColumns()) == 0 {
- columns := make([]string, 0, len(*tlgb.flds)+len(tlgb.fns))
- for _, f := range *tlgb.flds {
- columns = append(columns, selector.C(f))
- }
- columns = append(columns, aggregation...)
- selector.Select(columns...)
- }
- selector.GroupBy(selector.Columns(*tlgb.flds...)...)
- if err := selector.Err(); err != nil {
- return err
- }
- rows := &sql.Rows{}
- query, args := selector.Query()
- if err := tlgb.build.driver.Query(ctx, query, args, rows); err != nil {
- return err
- }
- defer rows.Close()
- return sql.ScanSlice(rows, v)
- }
- // TaskLogSelect is the builder for selecting fields of TaskLog entities.
- type TaskLogSelect struct {
- *TaskLogQuery
- selector
- }
- // Aggregate adds the given aggregation functions to the selector query.
- func (tls *TaskLogSelect) Aggregate(fns ...AggregateFunc) *TaskLogSelect {
- tls.fns = append(tls.fns, fns...)
- return tls
- }
- // Scan applies the selector query and scans the result into the given value.
- func (tls *TaskLogSelect) Scan(ctx context.Context, v any) error {
- ctx = setContextOp(ctx, tls.ctx, "Select")
- if err := tls.prepareQuery(ctx); err != nil {
- return err
- }
- return scanWithInterceptors[*TaskLogQuery, *TaskLogSelect](ctx, tls.TaskLogQuery, tls, tls.inters, v)
- }
- func (tls *TaskLogSelect) sqlScan(ctx context.Context, root *TaskLogQuery, v any) error {
- selector := root.sqlQuery(ctx)
- aggregation := make([]string, 0, len(tls.fns))
- for _, fn := range tls.fns {
- aggregation = append(aggregation, fn(selector))
- }
- switch n := len(*tls.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 := tls.driver.Query(ctx, query, args, rows); err != nil {
- return err
- }
- defer rows.Close()
- return sql.ScanSlice(rows, v)
- }
|