123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262 |
- // Code generated by entc, DO NOT EDIT.
- package ent
- import (
- "context"
- "fmt"
- "strings"
- "github.com/facebookincubator/ent"
- "github.com/facebookincubator/ent/dialect"
- "github.com/facebookincubator/ent/dialect/sql"
- "github.com/facebookincubator/ent/dialect/sql/sqlgraph"
- "golang.org/x/xerrors"
- )
- // ent aliases to avoid import conflict in user's code.
- type (
- Op = ent.Op
- Hook = ent.Hook
- Value = ent.Value
- Query = ent.Query
- Mutator = ent.Mutator
- Mutation = ent.Mutation
- MutateFunc = ent.MutateFunc
- )
- // Order applies an ordering on either graph traversal or sql selector.
- type Order func(*sql.Selector)
- // Asc applies the given fields in ASC order.
- func Asc(fields ...string) Order {
- return func(s *sql.Selector) {
- for _, f := range fields {
- s.OrderBy(sql.Asc(f))
- }
- }
- }
- // Desc applies the given fields in DESC order.
- func Desc(fields ...string) Order {
- return func(s *sql.Selector) {
- for _, f := range fields {
- s.OrderBy(sql.Desc(f))
- }
- }
- }
- // Aggregate applies an aggregation step on the group-by traversal/selector.
- type Aggregate func(*sql.Selector) string
- // As is a pseudo aggregation function for renaming another other functions with custom names. For example:
- //
- // GroupBy(field1, field2).
- // Aggregate(ent.As(ent.Sum(field1), "sum_field1"), (ent.As(ent.Sum(field2), "sum_field2")).
- // Scan(ctx, &v)
- //
- func As(fn Aggregate, end string) Aggregate {
- return func(s *sql.Selector) string {
- return sql.As(fn(s), end)
- }
- }
- // Count applies the "count" aggregation function on each group.
- func Count() Aggregate {
- return func(s *sql.Selector) string {
- return sql.Count("*")
- }
- }
- // Max applies the "max" aggregation function on the given field of each group.
- func Max(field string) Aggregate {
- return func(s *sql.Selector) string {
- return sql.Max(s.C(field))
- }
- }
- // Mean applies the "mean" aggregation function on the given field of each group.
- func Mean(field string) Aggregate {
- return func(s *sql.Selector) string {
- return sql.Avg(s.C(field))
- }
- }
- // Min applies the "min" aggregation function on the given field of each group.
- func Min(field string) Aggregate {
- return func(s *sql.Selector) string {
- return sql.Min(s.C(field))
- }
- }
- // Sum applies the "sum" aggregation function on the given field of each group.
- func Sum(field string) Aggregate {
- return func(s *sql.Selector) string {
- return sql.Sum(s.C(field))
- }
- }
- // NotFoundError returns when trying to fetch a specific entity and it was not found in the database.
- type NotFoundError struct {
- label string
- }
- // Error implements the error interface.
- func (e *NotFoundError) Error() string {
- return "ent: " + e.label + " not found"
- }
- // IsNotFound returns a boolean indicating whether the error is a not found error.
- func IsNotFound(err error) bool {
- if err == nil {
- return false
- }
- var e *NotFoundError
- return xerrors.As(err, &e)
- }
- // MaskNotFound masks nor found error.
- func MaskNotFound(err error) error {
- if IsNotFound(err) {
- return nil
- }
- return err
- }
- // NotSingularError returns when trying to fetch a singular entity and more then one was found in the database.
- type NotSingularError struct {
- label string
- }
- // Error implements the error interface.
- func (e *NotSingularError) Error() string {
- return "ent: " + e.label + " not singular"
- }
- // IsNotSingular returns a boolean indicating whether the error is a not singular error.
- func IsNotSingular(err error) bool {
- if err == nil {
- return false
- }
- var e *NotSingularError
- return xerrors.As(err, &e)
- }
- // NotLoadedError returns when trying to get a node that was not loaded by the query.
- type NotLoadedError struct {
- edge string
- }
- // Error implements the error interface.
- func (e *NotLoadedError) Error() string {
- return "ent: " + e.edge + " edge was not loaded"
- }
- // IsNotLoaded returns a boolean indicating whether the error is a not loaded error.
- func IsNotLoaded(err error) bool {
- if err == nil {
- return false
- }
- var e *NotLoadedError
- return xerrors.As(err, &e)
- }
- // ConstraintError returns when trying to create/update one or more entities and
- // one or more of their constraints failed. For example, violation of edge or
- // field uniqueness.
- type ConstraintError struct {
- msg string
- wrap error
- }
- // Error implements the error interface.
- func (e ConstraintError) Error() string {
- return "ent: constraint failed: " + e.msg
- }
- // Unwrap implements the errors.Wrapper interface.
- func (e *ConstraintError) Unwrap() error {
- return e.wrap
- }
- // IsConstraintError returns a boolean indicating whether the error is a constraint failure.
- func IsConstraintError(err error) bool {
- if err == nil {
- return false
- }
- var e *ConstraintError
- return xerrors.As(err, &e)
- }
- func isSQLConstraintError(err error) (*ConstraintError, bool) {
- var (
- msg = err.Error()
- // error format per dialect.
- errors = [...]string{
- "Error 1062", // MySQL 1062 error (ER_DUP_ENTRY).
- "UNIQUE constraint failed", // SQLite.
- "duplicate key value violates unique constraint", // PostgreSQL.
- }
- )
- if _, ok := err.(*sqlgraph.ConstraintError); ok {
- return &ConstraintError{msg, err}, true
- }
- for i := range errors {
- if strings.Contains(msg, errors[i]) {
- return &ConstraintError{msg, err}, true
- }
- }
- return nil, false
- }
- // rollback calls to tx.Rollback and wraps the given error with the rollback error if occurred.
- func rollback(tx dialect.Tx, err error) error {
- if rerr := tx.Rollback(); rerr != nil {
- err = fmt.Errorf("%s: %v", err.Error(), rerr)
- }
- if err, ok := isSQLConstraintError(err); ok {
- return err
- }
- return err
- }
- // insertLastID invokes the insert query on the transaction and returns the LastInsertID.
- func insertLastID(ctx context.Context, tx dialect.Tx, insert *sql.InsertBuilder) (int64, error) {
- query, args := insert.Query()
- // PostgreSQL does not support the LastInsertId() method of sql.Result
- // on Exec, and should be extracted manually using the `RETURNING` clause.
- if insert.Dialect() == dialect.Postgres {
- rows := &sql.Rows{}
- if err := tx.Query(ctx, query, args, rows); err != nil {
- return 0, err
- }
- defer rows.Close()
- if !rows.Next() {
- return 0, fmt.Errorf("no rows found for query: %v", query)
- }
- var id int64
- if err := rows.Scan(&id); err != nil {
- return 0, err
- }
- return id, nil
- }
- // MySQL, SQLite, etc.
- var res sql.Result
- if err := tx.Exec(ctx, query, args, &res); err != nil {
- return 0, err
- }
- id, err := res.LastInsertId()
- if err != nil {
- return 0, err
- }
- return id, nil
- }
- // keys returns the keys/ids from the edge map.
- func keys(m map[int]struct{}) []int {
- s := make([]int, 0, len(m))
- for id := range m {
- s = append(s, id)
- }
- return s
- }
|