mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
511 lines
13 KiB
Go
511 lines
13 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"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
"entgo.io/ent/examples/o2orecur/ent/node"
|
|
"entgo.io/ent/examples/o2orecur/ent/predicate"
|
|
"entgo.io/ent/schema/field"
|
|
)
|
|
|
|
// NodeUpdate is the builder for updating Node entities.
|
|
type NodeUpdate struct {
|
|
config
|
|
hooks []Hook
|
|
mutation *NodeMutation
|
|
}
|
|
|
|
// Where adds a new predicate for the NodeUpdate builder.
|
|
func (nu *NodeUpdate) Where(ps ...predicate.Node) *NodeUpdate {
|
|
nu.mutation.predicates = append(nu.mutation.predicates, ps...)
|
|
return nu
|
|
}
|
|
|
|
// SetValue sets the "value" field.
|
|
func (nu *NodeUpdate) SetValue(i int) *NodeUpdate {
|
|
nu.mutation.ResetValue()
|
|
nu.mutation.SetValue(i)
|
|
return nu
|
|
}
|
|
|
|
// AddValue adds i to the "value" field.
|
|
func (nu *NodeUpdate) AddValue(i int) *NodeUpdate {
|
|
nu.mutation.AddValue(i)
|
|
return nu
|
|
}
|
|
|
|
// SetPrevID sets the "prev" edge to the Node entity by ID.
|
|
func (nu *NodeUpdate) SetPrevID(id int) *NodeUpdate {
|
|
nu.mutation.SetPrevID(id)
|
|
return nu
|
|
}
|
|
|
|
// SetNillablePrevID sets the "prev" edge to the Node entity by ID if the given value is not nil.
|
|
func (nu *NodeUpdate) SetNillablePrevID(id *int) *NodeUpdate {
|
|
if id != nil {
|
|
nu = nu.SetPrevID(*id)
|
|
}
|
|
return nu
|
|
}
|
|
|
|
// SetPrev sets the "prev" edge to the Node entity.
|
|
func (nu *NodeUpdate) SetPrev(n *Node) *NodeUpdate {
|
|
return nu.SetPrevID(n.ID)
|
|
}
|
|
|
|
// SetNextID sets the "next" edge to the Node entity by ID.
|
|
func (nu *NodeUpdate) SetNextID(id int) *NodeUpdate {
|
|
nu.mutation.SetNextID(id)
|
|
return nu
|
|
}
|
|
|
|
// SetNillableNextID sets the "next" edge to the Node entity by ID if the given value is not nil.
|
|
func (nu *NodeUpdate) SetNillableNextID(id *int) *NodeUpdate {
|
|
if id != nil {
|
|
nu = nu.SetNextID(*id)
|
|
}
|
|
return nu
|
|
}
|
|
|
|
// SetNext sets the "next" edge to the Node entity.
|
|
func (nu *NodeUpdate) SetNext(n *Node) *NodeUpdate {
|
|
return nu.SetNextID(n.ID)
|
|
}
|
|
|
|
// Mutation returns the NodeMutation object of the builder.
|
|
func (nu *NodeUpdate) Mutation() *NodeMutation {
|
|
return nu.mutation
|
|
}
|
|
|
|
// ClearPrev clears the "prev" edge to the Node entity.
|
|
func (nu *NodeUpdate) ClearPrev() *NodeUpdate {
|
|
nu.mutation.ClearPrev()
|
|
return nu
|
|
}
|
|
|
|
// ClearNext clears the "next" edge to the Node entity.
|
|
func (nu *NodeUpdate) ClearNext() *NodeUpdate {
|
|
nu.mutation.ClearNext()
|
|
return nu
|
|
}
|
|
|
|
// Save executes the query and returns the number of nodes affected by the update operation.
|
|
func (nu *NodeUpdate) Save(ctx context.Context) (int, error) {
|
|
var (
|
|
err error
|
|
affected int
|
|
)
|
|
if len(nu.hooks) == 0 {
|
|
affected, err = nu.sqlSave(ctx)
|
|
} else {
|
|
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
|
|
mutation, ok := m.(*NodeMutation)
|
|
if !ok {
|
|
return nil, fmt.Errorf("unexpected mutation type %T", m)
|
|
}
|
|
nu.mutation = mutation
|
|
affected, err = nu.sqlSave(ctx)
|
|
mutation.done = true
|
|
return affected, err
|
|
})
|
|
for i := len(nu.hooks) - 1; i >= 0; i-- {
|
|
mut = nu.hooks[i](mut)
|
|
}
|
|
if _, err := mut.Mutate(ctx, nu.mutation); err != nil {
|
|
return 0, err
|
|
}
|
|
}
|
|
return affected, err
|
|
}
|
|
|
|
// SaveX is like Save, but panics if an error occurs.
|
|
func (nu *NodeUpdate) SaveX(ctx context.Context) int {
|
|
affected, err := nu.Save(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return affected
|
|
}
|
|
|
|
// Exec executes the query.
|
|
func (nu *NodeUpdate) Exec(ctx context.Context) error {
|
|
_, err := nu.Save(ctx)
|
|
return err
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (nu *NodeUpdate) ExecX(ctx context.Context) {
|
|
if err := nu.Exec(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
func (nu *NodeUpdate) sqlSave(ctx context.Context) (n int, err error) {
|
|
_spec := &sqlgraph.UpdateSpec{
|
|
Node: &sqlgraph.NodeSpec{
|
|
Table: node.Table,
|
|
Columns: node.Columns,
|
|
ID: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: node.FieldID,
|
|
},
|
|
},
|
|
}
|
|
if ps := nu.mutation.predicates; len(ps) > 0 {
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
if value, ok := nu.mutation.Value(); ok {
|
|
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Value: value,
|
|
Column: node.FieldValue,
|
|
})
|
|
}
|
|
if value, ok := nu.mutation.AddedValue(); ok {
|
|
_spec.Fields.Add = append(_spec.Fields.Add, &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Value: value,
|
|
Column: node.FieldValue,
|
|
})
|
|
}
|
|
if nu.mutation.PrevCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2O,
|
|
Inverse: true,
|
|
Table: node.PrevTable,
|
|
Columns: []string{node.PrevColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: node.FieldID,
|
|
},
|
|
},
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := nu.mutation.PrevIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2O,
|
|
Inverse: true,
|
|
Table: node.PrevTable,
|
|
Columns: []string{node.PrevColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: node.FieldID,
|
|
},
|
|
},
|
|
}
|
|
for _, k := range nodes {
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
}
|
|
_spec.Edges.Add = append(_spec.Edges.Add, edge)
|
|
}
|
|
if nu.mutation.NextCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2O,
|
|
Inverse: false,
|
|
Table: node.NextTable,
|
|
Columns: []string{node.NextColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: node.FieldID,
|
|
},
|
|
},
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := nu.mutation.NextIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2O,
|
|
Inverse: false,
|
|
Table: node.NextTable,
|
|
Columns: []string{node.NextColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: node.FieldID,
|
|
},
|
|
},
|
|
}
|
|
for _, k := range nodes {
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
}
|
|
_spec.Edges.Add = append(_spec.Edges.Add, edge)
|
|
}
|
|
if n, err = sqlgraph.UpdateNodes(ctx, nu.driver, _spec); err != nil {
|
|
if _, ok := err.(*sqlgraph.NotFoundError); ok {
|
|
err = &NotFoundError{node.Label}
|
|
} else if cerr, ok := isSQLConstraintError(err); ok {
|
|
err = cerr
|
|
}
|
|
return 0, err
|
|
}
|
|
return n, nil
|
|
}
|
|
|
|
// NodeUpdateOne is the builder for updating a single Node entity.
|
|
type NodeUpdateOne struct {
|
|
config
|
|
hooks []Hook
|
|
mutation *NodeMutation
|
|
}
|
|
|
|
// SetValue sets the "value" field.
|
|
func (nuo *NodeUpdateOne) SetValue(i int) *NodeUpdateOne {
|
|
nuo.mutation.ResetValue()
|
|
nuo.mutation.SetValue(i)
|
|
return nuo
|
|
}
|
|
|
|
// AddValue adds i to the "value" field.
|
|
func (nuo *NodeUpdateOne) AddValue(i int) *NodeUpdateOne {
|
|
nuo.mutation.AddValue(i)
|
|
return nuo
|
|
}
|
|
|
|
// SetPrevID sets the "prev" edge to the Node entity by ID.
|
|
func (nuo *NodeUpdateOne) SetPrevID(id int) *NodeUpdateOne {
|
|
nuo.mutation.SetPrevID(id)
|
|
return nuo
|
|
}
|
|
|
|
// SetNillablePrevID sets the "prev" edge to the Node entity by ID if the given value is not nil.
|
|
func (nuo *NodeUpdateOne) SetNillablePrevID(id *int) *NodeUpdateOne {
|
|
if id != nil {
|
|
nuo = nuo.SetPrevID(*id)
|
|
}
|
|
return nuo
|
|
}
|
|
|
|
// SetPrev sets the "prev" edge to the Node entity.
|
|
func (nuo *NodeUpdateOne) SetPrev(n *Node) *NodeUpdateOne {
|
|
return nuo.SetPrevID(n.ID)
|
|
}
|
|
|
|
// SetNextID sets the "next" edge to the Node entity by ID.
|
|
func (nuo *NodeUpdateOne) SetNextID(id int) *NodeUpdateOne {
|
|
nuo.mutation.SetNextID(id)
|
|
return nuo
|
|
}
|
|
|
|
// SetNillableNextID sets the "next" edge to the Node entity by ID if the given value is not nil.
|
|
func (nuo *NodeUpdateOne) SetNillableNextID(id *int) *NodeUpdateOne {
|
|
if id != nil {
|
|
nuo = nuo.SetNextID(*id)
|
|
}
|
|
return nuo
|
|
}
|
|
|
|
// SetNext sets the "next" edge to the Node entity.
|
|
func (nuo *NodeUpdateOne) SetNext(n *Node) *NodeUpdateOne {
|
|
return nuo.SetNextID(n.ID)
|
|
}
|
|
|
|
// Mutation returns the NodeMutation object of the builder.
|
|
func (nuo *NodeUpdateOne) Mutation() *NodeMutation {
|
|
return nuo.mutation
|
|
}
|
|
|
|
// ClearPrev clears the "prev" edge to the Node entity.
|
|
func (nuo *NodeUpdateOne) ClearPrev() *NodeUpdateOne {
|
|
nuo.mutation.ClearPrev()
|
|
return nuo
|
|
}
|
|
|
|
// ClearNext clears the "next" edge to the Node entity.
|
|
func (nuo *NodeUpdateOne) ClearNext() *NodeUpdateOne {
|
|
nuo.mutation.ClearNext()
|
|
return nuo
|
|
}
|
|
|
|
// Save executes the query and returns the updated Node entity.
|
|
func (nuo *NodeUpdateOne) Save(ctx context.Context) (*Node, error) {
|
|
var (
|
|
err error
|
|
node *Node
|
|
)
|
|
if len(nuo.hooks) == 0 {
|
|
node, err = nuo.sqlSave(ctx)
|
|
} else {
|
|
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
|
|
mutation, ok := m.(*NodeMutation)
|
|
if !ok {
|
|
return nil, fmt.Errorf("unexpected mutation type %T", m)
|
|
}
|
|
nuo.mutation = mutation
|
|
node, err = nuo.sqlSave(ctx)
|
|
mutation.done = true
|
|
return node, err
|
|
})
|
|
for i := len(nuo.hooks) - 1; i >= 0; i-- {
|
|
mut = nuo.hooks[i](mut)
|
|
}
|
|
if _, err := mut.Mutate(ctx, nuo.mutation); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
return node, err
|
|
}
|
|
|
|
// SaveX is like Save, but panics if an error occurs.
|
|
func (nuo *NodeUpdateOne) SaveX(ctx context.Context) *Node {
|
|
node, err := nuo.Save(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return node
|
|
}
|
|
|
|
// Exec executes the query on the entity.
|
|
func (nuo *NodeUpdateOne) Exec(ctx context.Context) error {
|
|
_, err := nuo.Save(ctx)
|
|
return err
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (nuo *NodeUpdateOne) ExecX(ctx context.Context) {
|
|
if err := nuo.Exec(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
func (nuo *NodeUpdateOne) sqlSave(ctx context.Context) (_node *Node, err error) {
|
|
_spec := &sqlgraph.UpdateSpec{
|
|
Node: &sqlgraph.NodeSpec{
|
|
Table: node.Table,
|
|
Columns: node.Columns,
|
|
ID: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: node.FieldID,
|
|
},
|
|
},
|
|
}
|
|
id, ok := nuo.mutation.ID()
|
|
if !ok {
|
|
return nil, &ValidationError{Name: "ID", err: fmt.Errorf("missing Node.ID for update")}
|
|
}
|
|
_spec.Node.ID.Value = id
|
|
if ps := nuo.mutation.predicates; len(ps) > 0 {
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
if value, ok := nuo.mutation.Value(); ok {
|
|
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Value: value,
|
|
Column: node.FieldValue,
|
|
})
|
|
}
|
|
if value, ok := nuo.mutation.AddedValue(); ok {
|
|
_spec.Fields.Add = append(_spec.Fields.Add, &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Value: value,
|
|
Column: node.FieldValue,
|
|
})
|
|
}
|
|
if nuo.mutation.PrevCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2O,
|
|
Inverse: true,
|
|
Table: node.PrevTable,
|
|
Columns: []string{node.PrevColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: node.FieldID,
|
|
},
|
|
},
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := nuo.mutation.PrevIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2O,
|
|
Inverse: true,
|
|
Table: node.PrevTable,
|
|
Columns: []string{node.PrevColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: node.FieldID,
|
|
},
|
|
},
|
|
}
|
|
for _, k := range nodes {
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
}
|
|
_spec.Edges.Add = append(_spec.Edges.Add, edge)
|
|
}
|
|
if nuo.mutation.NextCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2O,
|
|
Inverse: false,
|
|
Table: node.NextTable,
|
|
Columns: []string{node.NextColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: node.FieldID,
|
|
},
|
|
},
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := nuo.mutation.NextIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.O2O,
|
|
Inverse: false,
|
|
Table: node.NextTable,
|
|
Columns: []string{node.NextColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: node.FieldID,
|
|
},
|
|
},
|
|
}
|
|
for _, k := range nodes {
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
}
|
|
_spec.Edges.Add = append(_spec.Edges.Add, edge)
|
|
}
|
|
_node = &Node{config: nuo.config}
|
|
_spec.Assign = _node.assignValues
|
|
_spec.ScanValues = _node.scanValues
|
|
if err = sqlgraph.UpdateNode(ctx, nuo.driver, _spec); err != nil {
|
|
if _, ok := err.(*sqlgraph.NotFoundError); ok {
|
|
err = &NotFoundError{node.Label}
|
|
} else if cerr, ok := isSQLConstraintError(err); ok {
|
|
err = cerr
|
|
}
|
|
return nil, err
|
|
}
|
|
return _node, nil
|
|
}
|