mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
114 lines
2.7 KiB
Go
114 lines
2.7 KiB
Go
// Copyright 2019-present Facebook Inc. All rights reserved.
|
|
// This source code is licensed under the Apache 2.0 license found
|
|
// in the LICENSE file in the root directory of this source tree.
|
|
|
|
// Code generated by entc, DO NOT EDIT.
|
|
|
|
package ent
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/facebook/ent/dialect/sql"
|
|
"github.com/facebook/ent/dialect/sql/sqlgraph"
|
|
"github.com/facebook/ent/entc/integration/ent/file"
|
|
"github.com/facebook/ent/entc/integration/ent/predicate"
|
|
"github.com/facebook/ent/schema/field"
|
|
)
|
|
|
|
// FileDelete is the builder for deleting a File entity.
|
|
type FileDelete struct {
|
|
config
|
|
hooks []Hook
|
|
mutation *FileMutation
|
|
predicates []predicate.File
|
|
}
|
|
|
|
// Where adds a new predicate to the delete builder.
|
|
func (fd *FileDelete) Where(ps ...predicate.File) *FileDelete {
|
|
fd.predicates = append(fd.predicates, ps...)
|
|
return fd
|
|
}
|
|
|
|
// Exec executes the deletion query and returns how many vertices were deleted.
|
|
func (fd *FileDelete) Exec(ctx context.Context) (int, error) {
|
|
var (
|
|
err error
|
|
affected int
|
|
)
|
|
if len(fd.hooks) == 0 {
|
|
affected, err = fd.sqlExec(ctx)
|
|
} else {
|
|
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
|
|
mutation, ok := m.(*FileMutation)
|
|
if !ok {
|
|
return nil, fmt.Errorf("unexpected mutation type %T", m)
|
|
}
|
|
fd.mutation = mutation
|
|
affected, err = fd.sqlExec(ctx)
|
|
mutation.done = true
|
|
return affected, err
|
|
})
|
|
for i := len(fd.hooks) - 1; i >= 0; i-- {
|
|
mut = fd.hooks[i](mut)
|
|
}
|
|
if _, err := mut.Mutate(ctx, fd.mutation); err != nil {
|
|
return 0, err
|
|
}
|
|
}
|
|
return affected, err
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (fd *FileDelete) ExecX(ctx context.Context) int {
|
|
n, err := fd.Exec(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return n
|
|
}
|
|
|
|
func (fd *FileDelete) sqlExec(ctx context.Context) (int, error) {
|
|
_spec := &sqlgraph.DeleteSpec{
|
|
Node: &sqlgraph.NodeSpec{
|
|
Table: file.Table,
|
|
ID: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: file.FieldID,
|
|
},
|
|
},
|
|
}
|
|
if ps := fd.predicates; len(ps) > 0 {
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
return sqlgraph.DeleteNodes(ctx, fd.driver, _spec)
|
|
}
|
|
|
|
// FileDeleteOne is the builder for deleting a single File entity.
|
|
type FileDeleteOne struct {
|
|
fd *FileDelete
|
|
}
|
|
|
|
// Exec executes the deletion query.
|
|
func (fdo *FileDeleteOne) Exec(ctx context.Context) error {
|
|
n, err := fdo.fd.Exec(ctx)
|
|
switch {
|
|
case err != nil:
|
|
return err
|
|
case n == 0:
|
|
return &NotFoundError{file.Label}
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (fdo *FileDeleteOne) ExecX(ctx context.Context) {
|
|
fdo.fd.ExecX(ctx)
|
|
}
|