-
Notifications
You must be signed in to change notification settings - Fork 0
/
update.go
250 lines (221 loc) · 6.31 KB
/
update.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
package dent
import (
"context"
"errors"
"fmt"
"entgo.io/ent/dialect/sql"
"entgo.io/ent/dialect/sql/sqlgraph"
"entgo.io/ent/schema/field"
)
// DUpdate is the builder for updating Dynamic entities.
type DUpdate struct {
mutation *DMutation
}
// Where appends a list predicates to the DUpdate builder.
func (du *DUpdate) Where(ps ...Predicate) *DUpdate {
du.mutation.Where(ps...)
return du
}
// SetCreatorID sets the "creator_id" field.
func (du *DUpdate) SetValue(name string, val interface{}) *DUpdate {
du.mutation.SetValue(name, val)
return du
}
// AddCreatorID adds i to the "creator_id" field.
func (du *DUpdate) AddValue(name string, i int) *DUpdate {
du.mutation.AddValue(name, i)
return du
}
// ClearCreatorID clears the value of the "creator_id" field.
func (du *DUpdate) ClearValue(name string) *DUpdate {
du.mutation.ClearValue(name)
return du
}
// Mutation returns the DMutation object of the builder.
func (du *DUpdate) Mutation() *DMutation {
return du.mutation
}
// Save executes the query and returns the number of nodes affected by the update operation.
func (du *DUpdate) Save(ctx context.Context) (int, error) {
if err := du.defaults(); err != nil {
return 0, err
}
return du.sqlSave(ctx)
}
// SaveX is like Save, but panics if an error occurs.
func (du *DUpdate) SaveX(ctx context.Context) int {
affected, err := du.Save(ctx)
if err != nil {
panic(err)
}
return affected
}
// Exec executes the query.
func (du *DUpdate) Exec(ctx context.Context) error {
_, err := du.Save(ctx)
return err
}
// ExecX is like Exec, but panics if an error occurs.
func (du *DUpdate) ExecX(ctx context.Context) {
if err := du.Exec(ctx); err != nil {
panic(err)
}
}
// defaults sets the default values of the builder before save.
func (du *DUpdate) defaults() error {
return nil
}
func (du *DUpdate) sqlSave(ctx context.Context) (n int, err error) {
_spec := &sqlgraph.UpdateSpec{
Node: &sqlgraph.NodeSpec{
Table: du.mutation.table.Name,
Columns: du.mutation.table.GetColumns(),
ID: &sqlgraph.FieldSpec{
Type: field.TypeInt,
Column: FieldID,
},
},
}
if ps := du.mutation.predicates; len(ps) > 0 {
_spec.Predicate = func(selector *sql.Selector) {
for i := range ps {
ps[i](selector)
}
}
}
for k, v := range du.mutation.data {
col, _ := du.mutation.table.Column(k)
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
Type: col.Type,
Value: v,
Column: k,
})
}
if n, err = sqlgraph.UpdateNodes(ctx, du.mutation.table.driver, _spec); err != nil {
if _, ok := err.(*sqlgraph.NotFoundError); ok {
err = &NotFoundError{du.mutation.table.Name}
} else if sqlgraph.IsConstraintError(err) {
err = &ConstraintError{msg: err.Error(), wrap: err}
}
return 0, err
}
return n, nil
}
// DUpdateOne is the builder for updating a single Dynamic entity.
type DUpdateOne struct {
fields []string
mutation *DMutation
}
// SetCreatorID sets the "creator_id" field.
func (duo *DUpdateOne) SetValue(name string, val interface{}) *DUpdateOne {
duo.mutation.SetValue(name, val)
return duo
}
// AddCreatorID adds i to the "creator_id" field.
func (duo *DUpdateOne) AddValue(name string, i int) *DUpdateOne {
duo.mutation.AddValue(name, i)
return duo
}
// ClearCreatorID clears the value of the "creator_id" field.
func (duo *DUpdateOne) ClearValue(name string) *DUpdateOne {
duo.mutation.ClearValue(name)
return duo
}
// Mutation returns the DMutation object of the builder.
func (duo *DUpdateOne) Mutation() *DMutation {
return duo.mutation
}
// Select allows selecting one or more fields (columns) of the returned entity.
// The default is selecting all fields defined in the entity schema.
func (duo *DUpdateOne) Select(field string, fields ...string) *DUpdateOne {
duo.fields = append([]string{field}, fields...)
return duo
}
// Save executes the query and returns the updated Dynamic entity.
func (duo *DUpdateOne) Save(ctx context.Context) (*Dynamic, error) {
if err := duo.defaults(); err != nil {
return nil, err
}
return duo.sqlSave(ctx)
}
// SaveX is like Save, but panics if an error occurs.
func (duo *DUpdateOne) SaveX(ctx context.Context) *Dynamic {
node, err := duo.Save(ctx)
if err != nil {
panic(err)
}
return node
}
// Exec executes the query on the entity.
func (duo *DUpdateOne) Exec(ctx context.Context) error {
_, err := duo.Save(ctx)
return err
}
// ExecX is like Exec, but panics if an error occurs.
func (duo *DUpdateOne) ExecX(ctx context.Context) {
if err := duo.Exec(ctx); err != nil {
panic(err)
}
}
// defaults sets the default values of the builder before save.
func (duo *DUpdateOne) defaults() error {
return nil
}
func (duo *DUpdateOne) sqlSave(ctx context.Context) (_node *Dynamic, err error) {
_spec := &sqlgraph.UpdateSpec{
Node: &sqlgraph.NodeSpec{
Table: duo.mutation.table.Name,
Columns: duo.mutation.table.GetColumns(),
ID: &sqlgraph.FieldSpec{
Type: field.TypeInt,
Column: FieldID,
},
},
}
id, ok := duo.mutation.ID()
if !ok {
return nil, &ValidationError{Name: FieldID, err: errors.New(`ent: missing "Dynamic.id" for update`)}
}
_spec.Node.ID.Value = id
if fields := duo.fields; len(fields) > 0 {
_spec.Node.Columns = make([]string, 0, len(fields))
_spec.Node.Columns = append(_spec.Node.Columns, FieldID)
for _, f := range fields {
if !duo.mutation.table.HasColumn(f) {
return nil, &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
}
if f != FieldID {
_spec.Node.Columns = append(_spec.Node.Columns, f)
}
}
}
if ps := duo.mutation.predicates; len(ps) > 0 {
_spec.Predicate = func(selector *sql.Selector) {
for i := range ps {
ps[i](selector)
}
}
}
for k, v := range duo.mutation.data {
col, _ := duo.mutation.table.Column(k)
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
Type: col.Type,
Value: v,
Column: k,
})
}
_node = &Dynamic{table: duo.mutation.table}
_node.ID = id
_node.Row = duo.mutation.data
_spec.Assign = _node.assignValues
_spec.ScanValues = _node.scanValues
if err = sqlgraph.UpdateNode(ctx, duo.mutation.table.driver, _spec); err != nil {
if _, ok := err.(*sqlgraph.NotFoundError); ok {
err = &NotFoundError{duo.mutation.table.Name}
} else if sqlgraph.IsConstraintError(err) {
err = &ConstraintError{msg: err.Error(), wrap: err}
}
return nil, err
}
return _node, nil
}