3 Star 0 Fork 0

广东宇凌网络科技有限公司 / simple-iot-data-rpc

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
deviceupstercycle_query.go 16.60 KB
一键复制 编辑 原始数据 按行查看 历史
HienGee 提交于 2024-04-26 11:27 . init
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548
// 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"
"gitee.com/yuLingNet/simple-iot-data-rpc/ent/deviceupstercycle"
"gitee.com/yuLingNet/simple-iot-data-rpc/ent/predicate"
)
// DeviceUpsterCycleQuery is the builder for querying DeviceUpsterCycle entities.
type DeviceUpsterCycleQuery struct {
config
ctx *QueryContext
order []deviceupstercycle.OrderOption
inters []Interceptor
predicates []predicate.DeviceUpsterCycle
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 DeviceUpsterCycleQuery builder.
func (ducq *DeviceUpsterCycleQuery) Where(ps ...predicate.DeviceUpsterCycle) *DeviceUpsterCycleQuery {
ducq.predicates = append(ducq.predicates, ps...)
return ducq
}
// Limit the number of records to be returned by this query.
func (ducq *DeviceUpsterCycleQuery) Limit(limit int) *DeviceUpsterCycleQuery {
ducq.ctx.Limit = &limit
return ducq
}
// Offset to start from.
func (ducq *DeviceUpsterCycleQuery) Offset(offset int) *DeviceUpsterCycleQuery {
ducq.ctx.Offset = &offset
return ducq
}
// 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 (ducq *DeviceUpsterCycleQuery) Unique(unique bool) *DeviceUpsterCycleQuery {
ducq.ctx.Unique = &unique
return ducq
}
// Order specifies how the records should be ordered.
func (ducq *DeviceUpsterCycleQuery) Order(o ...deviceupstercycle.OrderOption) *DeviceUpsterCycleQuery {
ducq.order = append(ducq.order, o...)
return ducq
}
// First returns the first DeviceUpsterCycle entity from the query.
// Returns a *NotFoundError when no DeviceUpsterCycle was found.
func (ducq *DeviceUpsterCycleQuery) First(ctx context.Context) (*DeviceUpsterCycle, error) {
nodes, err := ducq.Limit(1).All(setContextOp(ctx, ducq.ctx, "First"))
if err != nil {
return nil, err
}
if len(nodes) == 0 {
return nil, &NotFoundError{deviceupstercycle.Label}
}
return nodes[0], nil
}
// FirstX is like First, but panics if an error occurs.
func (ducq *DeviceUpsterCycleQuery) FirstX(ctx context.Context) *DeviceUpsterCycle {
node, err := ducq.First(ctx)
if err != nil && !IsNotFound(err) {
panic(err)
}
return node
}
// FirstID returns the first DeviceUpsterCycle ID from the query.
// Returns a *NotFoundError when no DeviceUpsterCycle ID was found.
func (ducq *DeviceUpsterCycleQuery) FirstID(ctx context.Context) (id uint64, err error) {
var ids []uint64
if ids, err = ducq.Limit(1).IDs(setContextOp(ctx, ducq.ctx, "FirstID")); err != nil {
return
}
if len(ids) == 0 {
err = &NotFoundError{deviceupstercycle.Label}
return
}
return ids[0], nil
}
// FirstIDX is like FirstID, but panics if an error occurs.
func (ducq *DeviceUpsterCycleQuery) FirstIDX(ctx context.Context) uint64 {
id, err := ducq.FirstID(ctx)
if err != nil && !IsNotFound(err) {
panic(err)
}
return id
}
// Only returns a single DeviceUpsterCycle entity found by the query, ensuring it only returns one.
// Returns a *NotSingularError when more than one DeviceUpsterCycle entity is found.
// Returns a *NotFoundError when no DeviceUpsterCycle entities are found.
func (ducq *DeviceUpsterCycleQuery) Only(ctx context.Context) (*DeviceUpsterCycle, error) {
nodes, err := ducq.Limit(2).All(setContextOp(ctx, ducq.ctx, "Only"))
if err != nil {
return nil, err
}
switch len(nodes) {
case 1:
return nodes[0], nil
case 0:
return nil, &NotFoundError{deviceupstercycle.Label}
default:
return nil, &NotSingularError{deviceupstercycle.Label}
}
}
// OnlyX is like Only, but panics if an error occurs.
func (ducq *DeviceUpsterCycleQuery) OnlyX(ctx context.Context) *DeviceUpsterCycle {
node, err := ducq.Only(ctx)
if err != nil {
panic(err)
}
return node
}
// OnlyID is like Only, but returns the only DeviceUpsterCycle ID in the query.
// Returns a *NotSingularError when more than one DeviceUpsterCycle ID is found.
// Returns a *NotFoundError when no entities are found.
func (ducq *DeviceUpsterCycleQuery) OnlyID(ctx context.Context) (id uint64, err error) {
var ids []uint64
if ids, err = ducq.Limit(2).IDs(setContextOp(ctx, ducq.ctx, "OnlyID")); err != nil {
return
}
switch len(ids) {
case 1:
id = ids[0]
case 0:
err = &NotFoundError{deviceupstercycle.Label}
default:
err = &NotSingularError{deviceupstercycle.Label}
}
return
}
// OnlyIDX is like OnlyID, but panics if an error occurs.
func (ducq *DeviceUpsterCycleQuery) OnlyIDX(ctx context.Context) uint64 {
id, err := ducq.OnlyID(ctx)
if err != nil {
panic(err)
}
return id
}
// All executes the query and returns a list of DeviceUpsterCycles.
func (ducq *DeviceUpsterCycleQuery) All(ctx context.Context) ([]*DeviceUpsterCycle, error) {
ctx = setContextOp(ctx, ducq.ctx, "All")
if err := ducq.prepareQuery(ctx); err != nil {
return nil, err
}
qr := querierAll[[]*DeviceUpsterCycle, *DeviceUpsterCycleQuery]()
return withInterceptors[[]*DeviceUpsterCycle](ctx, ducq, qr, ducq.inters)
}
// AllX is like All, but panics if an error occurs.
func (ducq *DeviceUpsterCycleQuery) AllX(ctx context.Context) []*DeviceUpsterCycle {
nodes, err := ducq.All(ctx)
if err != nil {
panic(err)
}
return nodes
}
// IDs executes the query and returns a list of DeviceUpsterCycle IDs.
func (ducq *DeviceUpsterCycleQuery) IDs(ctx context.Context) (ids []uint64, err error) {
if ducq.ctx.Unique == nil && ducq.path != nil {
ducq.Unique(true)
}
ctx = setContextOp(ctx, ducq.ctx, "IDs")
if err = ducq.Select(deviceupstercycle.FieldID).Scan(ctx, &ids); err != nil {
return nil, err
}
return ids, nil
}
// IDsX is like IDs, but panics if an error occurs.
func (ducq *DeviceUpsterCycleQuery) IDsX(ctx context.Context) []uint64 {
ids, err := ducq.IDs(ctx)
if err != nil {
panic(err)
}
return ids
}
// Count returns the count of the given query.
func (ducq *DeviceUpsterCycleQuery) Count(ctx context.Context) (int, error) {
ctx = setContextOp(ctx, ducq.ctx, "Count")
if err := ducq.prepareQuery(ctx); err != nil {
return 0, err
}
return withInterceptors[int](ctx, ducq, querierCount[*DeviceUpsterCycleQuery](), ducq.inters)
}
// CountX is like Count, but panics if an error occurs.
func (ducq *DeviceUpsterCycleQuery) CountX(ctx context.Context) int {
count, err := ducq.Count(ctx)
if err != nil {
panic(err)
}
return count
}
// Exist returns true if the query has elements in the graph.
func (ducq *DeviceUpsterCycleQuery) Exist(ctx context.Context) (bool, error) {
ctx = setContextOp(ctx, ducq.ctx, "Exist")
switch _, err := ducq.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 (ducq *DeviceUpsterCycleQuery) ExistX(ctx context.Context) bool {
exist, err := ducq.Exist(ctx)
if err != nil {
panic(err)
}
return exist
}
// Clone returns a duplicate of the DeviceUpsterCycleQuery builder, including all associated steps. It can be
// used to prepare common query builders and use them differently after the clone is made.
func (ducq *DeviceUpsterCycleQuery) Clone() *DeviceUpsterCycleQuery {
if ducq == nil {
return nil
}
return &DeviceUpsterCycleQuery{
config: ducq.config,
ctx: ducq.ctx.Clone(),
order: append([]deviceupstercycle.OrderOption{}, ducq.order...),
inters: append([]Interceptor{}, ducq.inters...),
predicates: append([]predicate.DeviceUpsterCycle{}, ducq.predicates...),
// clone intermediate query.
sql: ducq.sql.Clone(),
path: ducq.path,
}
}
// 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 {
// CreatedAt time.Time `json:"created_at,omitempty"`
// Count int `json:"count,omitempty"`
// }
//
// client.DeviceUpsterCycle.Query().
// GroupBy(deviceupstercycle.FieldCreatedAt).
// Aggregate(ent.Count()).
// Scan(ctx, &v)
func (ducq *DeviceUpsterCycleQuery) GroupBy(field string, fields ...string) *DeviceUpsterCycleGroupBy {
ducq.ctx.Fields = append([]string{field}, fields...)
grbuild := &DeviceUpsterCycleGroupBy{build: ducq}
grbuild.flds = &ducq.ctx.Fields
grbuild.label = deviceupstercycle.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 {
// CreatedAt time.Time `json:"created_at,omitempty"`
// }
//
// client.DeviceUpsterCycle.Query().
// Select(deviceupstercycle.FieldCreatedAt).
// Scan(ctx, &v)
func (ducq *DeviceUpsterCycleQuery) Select(fields ...string) *DeviceUpsterCycleSelect {
ducq.ctx.Fields = append(ducq.ctx.Fields, fields...)
sbuild := &DeviceUpsterCycleSelect{DeviceUpsterCycleQuery: ducq}
sbuild.label = deviceupstercycle.Label
sbuild.flds, sbuild.scan = &ducq.ctx.Fields, sbuild.Scan
return sbuild
}
// Aggregate returns a DeviceUpsterCycleSelect configured with the given aggregations.
func (ducq *DeviceUpsterCycleQuery) Aggregate(fns ...AggregateFunc) *DeviceUpsterCycleSelect {
return ducq.Select().Aggregate(fns...)
}
func (ducq *DeviceUpsterCycleQuery) prepareQuery(ctx context.Context) error {
for _, inter := range ducq.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, ducq); err != nil {
return err
}
}
}
for _, f := range ducq.ctx.Fields {
if !deviceupstercycle.ValidColumn(f) {
return &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
}
}
if ducq.path != nil {
prev, err := ducq.path(ctx)
if err != nil {
return err
}
ducq.sql = prev
}
return nil
}
func (ducq *DeviceUpsterCycleQuery) sqlAll(ctx context.Context, hooks ...queryHook) ([]*DeviceUpsterCycle, error) {
var (
nodes = []*DeviceUpsterCycle{}
_spec = ducq.querySpec()
)
_spec.ScanValues = func(columns []string) ([]any, error) {
return (*DeviceUpsterCycle).scanValues(nil, columns)
}
_spec.Assign = func(columns []string, values []any) error {
node := &DeviceUpsterCycle{config: ducq.config}
nodes = append(nodes, node)
return node.assignValues(columns, values)
}
if len(ducq.modifiers) > 0 {
_spec.Modifiers = ducq.modifiers
}
for i := range hooks {
hooks[i](ctx, _spec)
}
if err := sqlgraph.QueryNodes(ctx, ducq.driver, _spec); err != nil {
return nil, err
}
if len(nodes) == 0 {
return nodes, nil
}
return nodes, nil
}
func (ducq *DeviceUpsterCycleQuery) sqlCount(ctx context.Context) (int, error) {
_spec := ducq.querySpec()
if len(ducq.modifiers) > 0 {
_spec.Modifiers = ducq.modifiers
}
_spec.Node.Columns = ducq.ctx.Fields
if len(ducq.ctx.Fields) > 0 {
_spec.Unique = ducq.ctx.Unique != nil && *ducq.ctx.Unique
}
return sqlgraph.CountNodes(ctx, ducq.driver, _spec)
}
func (ducq *DeviceUpsterCycleQuery) querySpec() *sqlgraph.QuerySpec {
_spec := sqlgraph.NewQuerySpec(deviceupstercycle.Table, deviceupstercycle.Columns, sqlgraph.NewFieldSpec(deviceupstercycle.FieldID, field.TypeUint64))
_spec.From = ducq.sql
if unique := ducq.ctx.Unique; unique != nil {
_spec.Unique = *unique
} else if ducq.path != nil {
_spec.Unique = true
}
if fields := ducq.ctx.Fields; len(fields) > 0 {
_spec.Node.Columns = make([]string, 0, len(fields))
_spec.Node.Columns = append(_spec.Node.Columns, deviceupstercycle.FieldID)
for i := range fields {
if fields[i] != deviceupstercycle.FieldID {
_spec.Node.Columns = append(_spec.Node.Columns, fields[i])
}
}
}
if ps := ducq.predicates; len(ps) > 0 {
_spec.Predicate = func(selector *sql.Selector) {
for i := range ps {
ps[i](selector)
}
}
}
if limit := ducq.ctx.Limit; limit != nil {
_spec.Limit = *limit
}
if offset := ducq.ctx.Offset; offset != nil {
_spec.Offset = *offset
}
if ps := ducq.order; len(ps) > 0 {
_spec.Order = func(selector *sql.Selector) {
for i := range ps {
ps[i](selector)
}
}
}
return _spec
}
func (ducq *DeviceUpsterCycleQuery) sqlQuery(ctx context.Context) *sql.Selector {
builder := sql.Dialect(ducq.driver.Dialect())
t1 := builder.Table(deviceupstercycle.Table)
columns := ducq.ctx.Fields
if len(columns) == 0 {
columns = deviceupstercycle.Columns
}
selector := builder.Select(t1.Columns(columns...)...).From(t1)
if ducq.sql != nil {
selector = ducq.sql
selector.Select(selector.Columns(columns...)...)
}
if ducq.ctx.Unique != nil && *ducq.ctx.Unique {
selector.Distinct()
}
for _, m := range ducq.modifiers {
m(selector)
}
for _, p := range ducq.predicates {
p(selector)
}
for _, p := range ducq.order {
p(selector)
}
if offset := ducq.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 := ducq.ctx.Limit; limit != nil {
selector.Limit(*limit)
}
return selector
}
// Modify adds a query modifier for attaching custom logic to queries.
func (ducq *DeviceUpsterCycleQuery) Modify(modifiers ...func(s *sql.Selector)) *DeviceUpsterCycleSelect {
ducq.modifiers = append(ducq.modifiers, modifiers...)
return ducq.Select()
}
// DeviceUpsterCycleGroupBy is the group-by builder for DeviceUpsterCycle entities.
type DeviceUpsterCycleGroupBy struct {
selector
build *DeviceUpsterCycleQuery
}
// Aggregate adds the given aggregation functions to the group-by query.
func (ducgb *DeviceUpsterCycleGroupBy) Aggregate(fns ...AggregateFunc) *DeviceUpsterCycleGroupBy {
ducgb.fns = append(ducgb.fns, fns...)
return ducgb
}
// Scan applies the selector query and scans the result into the given value.
func (ducgb *DeviceUpsterCycleGroupBy) Scan(ctx context.Context, v any) error {
ctx = setContextOp(ctx, ducgb.build.ctx, "GroupBy")
if err := ducgb.build.prepareQuery(ctx); err != nil {
return err
}
return scanWithInterceptors[*DeviceUpsterCycleQuery, *DeviceUpsterCycleGroupBy](ctx, ducgb.build, ducgb, ducgb.build.inters, v)
}
func (ducgb *DeviceUpsterCycleGroupBy) sqlScan(ctx context.Context, root *DeviceUpsterCycleQuery, v any) error {
selector := root.sqlQuery(ctx).Select()
aggregation := make([]string, 0, len(ducgb.fns))
for _, fn := range ducgb.fns {
aggregation = append(aggregation, fn(selector))
}
if len(selector.SelectedColumns()) == 0 {
columns := make([]string, 0, len(*ducgb.flds)+len(ducgb.fns))
for _, f := range *ducgb.flds {
columns = append(columns, selector.C(f))
}
columns = append(columns, aggregation...)
selector.Select(columns...)
}
selector.GroupBy(selector.Columns(*ducgb.flds...)...)
if err := selector.Err(); err != nil {
return err
}
rows := &sql.Rows{}
query, args := selector.Query()
if err := ducgb.build.driver.Query(ctx, query, args, rows); err != nil {
return err
}
defer rows.Close()
return sql.ScanSlice(rows, v)
}
// DeviceUpsterCycleSelect is the builder for selecting fields of DeviceUpsterCycle entities.
type DeviceUpsterCycleSelect struct {
*DeviceUpsterCycleQuery
selector
}
// Aggregate adds the given aggregation functions to the selector query.
func (ducs *DeviceUpsterCycleSelect) Aggregate(fns ...AggregateFunc) *DeviceUpsterCycleSelect {
ducs.fns = append(ducs.fns, fns...)
return ducs
}
// Scan applies the selector query and scans the result into the given value.
func (ducs *DeviceUpsterCycleSelect) Scan(ctx context.Context, v any) error {
ctx = setContextOp(ctx, ducs.ctx, "Select")
if err := ducs.prepareQuery(ctx); err != nil {
return err
}
return scanWithInterceptors[*DeviceUpsterCycleQuery, *DeviceUpsterCycleSelect](ctx, ducs.DeviceUpsterCycleQuery, ducs, ducs.inters, v)
}
func (ducs *DeviceUpsterCycleSelect) sqlScan(ctx context.Context, root *DeviceUpsterCycleQuery, v any) error {
selector := root.sqlQuery(ctx)
aggregation := make([]string, 0, len(ducs.fns))
for _, fn := range ducs.fns {
aggregation = append(aggregation, fn(selector))
}
switch n := len(*ducs.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 := ducs.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 (ducs *DeviceUpsterCycleSelect) Modify(modifiers ...func(s *sql.Selector)) *DeviceUpsterCycleSelect {
ducs.modifiers = append(ducs.modifiers, modifiers...)
return ducs
}
Go
1
https://gitee.com/yuLingNet/simple-iot-data-rpc.git
git@gitee.com:yuLingNet/simple-iot-data-rpc.git
yuLingNet
simple-iot-data-rpc
simple-iot-data-rpc
39cb53be4684

搜索帮助

53164aa7 5694891 3bd8fe86 5694891