-
Notifications
You must be signed in to change notification settings - Fork 54
/
xprovidercursor_update.go
387 lines (343 loc) · 11.8 KB
/
xprovidercursor_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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
// Code generated by ent, DO NOT EDIT.
package ent
import (
"context"
"errors"
"fmt"
"time"
"entgo.io/ent/dialect/sql"
"entgo.io/ent/dialect/sql/sqlgraph"
"entgo.io/ent/schema/field"
"github.com/google/uuid"
"github.com/omni-network/omni/explorer/db/ent/predicate"
"github.com/omni-network/omni/explorer/db/ent/xprovidercursor"
)
// XProviderCursorUpdate is the builder for updating XProviderCursor entities.
type XProviderCursorUpdate struct {
config
hooks []Hook
mutation *XProviderCursorMutation
}
// Where appends a list predicates to the XProviderCursorUpdate builder.
func (xcu *XProviderCursorUpdate) Where(ps ...predicate.XProviderCursor) *XProviderCursorUpdate {
xcu.mutation.Where(ps...)
return xcu
}
// SetUUID sets the "UUID" field.
func (xcu *XProviderCursorUpdate) SetUUID(u uuid.UUID) *XProviderCursorUpdate {
xcu.mutation.SetUUID(u)
return xcu
}
// SetNillableUUID sets the "UUID" field if the given value is not nil.
func (xcu *XProviderCursorUpdate) SetNillableUUID(u *uuid.UUID) *XProviderCursorUpdate {
if u != nil {
xcu.SetUUID(*u)
}
return xcu
}
// SetChainID sets the "ChainID" field.
func (xcu *XProviderCursorUpdate) SetChainID(u uint64) *XProviderCursorUpdate {
xcu.mutation.ResetChainID()
xcu.mutation.SetChainID(u)
return xcu
}
// SetNillableChainID sets the "ChainID" field if the given value is not nil.
func (xcu *XProviderCursorUpdate) SetNillableChainID(u *uint64) *XProviderCursorUpdate {
if u != nil {
xcu.SetChainID(*u)
}
return xcu
}
// AddChainID adds u to the "ChainID" field.
func (xcu *XProviderCursorUpdate) AddChainID(u int64) *XProviderCursorUpdate {
xcu.mutation.AddChainID(u)
return xcu
}
// SetHeight sets the "Height" field.
func (xcu *XProviderCursorUpdate) SetHeight(u uint64) *XProviderCursorUpdate {
xcu.mutation.ResetHeight()
xcu.mutation.SetHeight(u)
return xcu
}
// SetNillableHeight sets the "Height" field if the given value is not nil.
func (xcu *XProviderCursorUpdate) SetNillableHeight(u *uint64) *XProviderCursorUpdate {
if u != nil {
xcu.SetHeight(*u)
}
return xcu
}
// AddHeight adds u to the "Height" field.
func (xcu *XProviderCursorUpdate) AddHeight(u int64) *XProviderCursorUpdate {
xcu.mutation.AddHeight(u)
return xcu
}
// SetCreatedAt sets the "CreatedAt" field.
func (xcu *XProviderCursorUpdate) SetCreatedAt(t time.Time) *XProviderCursorUpdate {
xcu.mutation.SetCreatedAt(t)
return xcu
}
// SetNillableCreatedAt sets the "CreatedAt" field if the given value is not nil.
func (xcu *XProviderCursorUpdate) SetNillableCreatedAt(t *time.Time) *XProviderCursorUpdate {
if t != nil {
xcu.SetCreatedAt(*t)
}
return xcu
}
// SetUpdatedAt sets the "UpdatedAt" field.
func (xcu *XProviderCursorUpdate) SetUpdatedAt(t time.Time) *XProviderCursorUpdate {
xcu.mutation.SetUpdatedAt(t)
return xcu
}
// SetNillableUpdatedAt sets the "UpdatedAt" field if the given value is not nil.
func (xcu *XProviderCursorUpdate) SetNillableUpdatedAt(t *time.Time) *XProviderCursorUpdate {
if t != nil {
xcu.SetUpdatedAt(*t)
}
return xcu
}
// Mutation returns the XProviderCursorMutation object of the builder.
func (xcu *XProviderCursorUpdate) Mutation() *XProviderCursorMutation {
return xcu.mutation
}
// Save executes the query and returns the number of nodes affected by the update operation.
func (xcu *XProviderCursorUpdate) Save(ctx context.Context) (int, error) {
return withHooks(ctx, xcu.sqlSave, xcu.mutation, xcu.hooks)
}
// SaveX is like Save, but panics if an error occurs.
func (xcu *XProviderCursorUpdate) SaveX(ctx context.Context) int {
affected, err := xcu.Save(ctx)
if err != nil {
panic(err)
}
return affected
}
// Exec executes the query.
func (xcu *XProviderCursorUpdate) Exec(ctx context.Context) error {
_, err := xcu.Save(ctx)
return err
}
// ExecX is like Exec, but panics if an error occurs.
func (xcu *XProviderCursorUpdate) ExecX(ctx context.Context) {
if err := xcu.Exec(ctx); err != nil {
panic(err)
}
}
func (xcu *XProviderCursorUpdate) sqlSave(ctx context.Context) (n int, err error) {
_spec := sqlgraph.NewUpdateSpec(xprovidercursor.Table, xprovidercursor.Columns, sqlgraph.NewFieldSpec(xprovidercursor.FieldID, field.TypeInt))
if ps := xcu.mutation.predicates; len(ps) > 0 {
_spec.Predicate = func(selector *sql.Selector) {
for i := range ps {
ps[i](selector)
}
}
}
if value, ok := xcu.mutation.UUID(); ok {
_spec.SetField(xprovidercursor.FieldUUID, field.TypeUUID, value)
}
if value, ok := xcu.mutation.ChainID(); ok {
_spec.SetField(xprovidercursor.FieldChainID, field.TypeUint64, value)
}
if value, ok := xcu.mutation.AddedChainID(); ok {
_spec.AddField(xprovidercursor.FieldChainID, field.TypeUint64, value)
}
if value, ok := xcu.mutation.Height(); ok {
_spec.SetField(xprovidercursor.FieldHeight, field.TypeUint64, value)
}
if value, ok := xcu.mutation.AddedHeight(); ok {
_spec.AddField(xprovidercursor.FieldHeight, field.TypeUint64, value)
}
if value, ok := xcu.mutation.CreatedAt(); ok {
_spec.SetField(xprovidercursor.FieldCreatedAt, field.TypeTime, value)
}
if value, ok := xcu.mutation.UpdatedAt(); ok {
_spec.SetField(xprovidercursor.FieldUpdatedAt, field.TypeTime, value)
}
if n, err = sqlgraph.UpdateNodes(ctx, xcu.driver, _spec); err != nil {
if _, ok := err.(*sqlgraph.NotFoundError); ok {
err = &NotFoundError{xprovidercursor.Label}
} else if sqlgraph.IsConstraintError(err) {
err = &ConstraintError{msg: err.Error(), wrap: err}
}
return 0, err
}
xcu.mutation.done = true
return n, nil
}
// XProviderCursorUpdateOne is the builder for updating a single XProviderCursor entity.
type XProviderCursorUpdateOne struct {
config
fields []string
hooks []Hook
mutation *XProviderCursorMutation
}
// SetUUID sets the "UUID" field.
func (xcuo *XProviderCursorUpdateOne) SetUUID(u uuid.UUID) *XProviderCursorUpdateOne {
xcuo.mutation.SetUUID(u)
return xcuo
}
// SetNillableUUID sets the "UUID" field if the given value is not nil.
func (xcuo *XProviderCursorUpdateOne) SetNillableUUID(u *uuid.UUID) *XProviderCursorUpdateOne {
if u != nil {
xcuo.SetUUID(*u)
}
return xcuo
}
// SetChainID sets the "ChainID" field.
func (xcuo *XProviderCursorUpdateOne) SetChainID(u uint64) *XProviderCursorUpdateOne {
xcuo.mutation.ResetChainID()
xcuo.mutation.SetChainID(u)
return xcuo
}
// SetNillableChainID sets the "ChainID" field if the given value is not nil.
func (xcuo *XProviderCursorUpdateOne) SetNillableChainID(u *uint64) *XProviderCursorUpdateOne {
if u != nil {
xcuo.SetChainID(*u)
}
return xcuo
}
// AddChainID adds u to the "ChainID" field.
func (xcuo *XProviderCursorUpdateOne) AddChainID(u int64) *XProviderCursorUpdateOne {
xcuo.mutation.AddChainID(u)
return xcuo
}
// SetHeight sets the "Height" field.
func (xcuo *XProviderCursorUpdateOne) SetHeight(u uint64) *XProviderCursorUpdateOne {
xcuo.mutation.ResetHeight()
xcuo.mutation.SetHeight(u)
return xcuo
}
// SetNillableHeight sets the "Height" field if the given value is not nil.
func (xcuo *XProviderCursorUpdateOne) SetNillableHeight(u *uint64) *XProviderCursorUpdateOne {
if u != nil {
xcuo.SetHeight(*u)
}
return xcuo
}
// AddHeight adds u to the "Height" field.
func (xcuo *XProviderCursorUpdateOne) AddHeight(u int64) *XProviderCursorUpdateOne {
xcuo.mutation.AddHeight(u)
return xcuo
}
// SetCreatedAt sets the "CreatedAt" field.
func (xcuo *XProviderCursorUpdateOne) SetCreatedAt(t time.Time) *XProviderCursorUpdateOne {
xcuo.mutation.SetCreatedAt(t)
return xcuo
}
// SetNillableCreatedAt sets the "CreatedAt" field if the given value is not nil.
func (xcuo *XProviderCursorUpdateOne) SetNillableCreatedAt(t *time.Time) *XProviderCursorUpdateOne {
if t != nil {
xcuo.SetCreatedAt(*t)
}
return xcuo
}
// SetUpdatedAt sets the "UpdatedAt" field.
func (xcuo *XProviderCursorUpdateOne) SetUpdatedAt(t time.Time) *XProviderCursorUpdateOne {
xcuo.mutation.SetUpdatedAt(t)
return xcuo
}
// SetNillableUpdatedAt sets the "UpdatedAt" field if the given value is not nil.
func (xcuo *XProviderCursorUpdateOne) SetNillableUpdatedAt(t *time.Time) *XProviderCursorUpdateOne {
if t != nil {
xcuo.SetUpdatedAt(*t)
}
return xcuo
}
// Mutation returns the XProviderCursorMutation object of the builder.
func (xcuo *XProviderCursorUpdateOne) Mutation() *XProviderCursorMutation {
return xcuo.mutation
}
// Where appends a list predicates to the XProviderCursorUpdate builder.
func (xcuo *XProviderCursorUpdateOne) Where(ps ...predicate.XProviderCursor) *XProviderCursorUpdateOne {
xcuo.mutation.Where(ps...)
return xcuo
}
// Select allows selecting one or more fields (columns) of the returned entity.
// The default is selecting all fields defined in the entity schema.
func (xcuo *XProviderCursorUpdateOne) Select(field string, fields ...string) *XProviderCursorUpdateOne {
xcuo.fields = append([]string{field}, fields...)
return xcuo
}
// Save executes the query and returns the updated XProviderCursor entity.
func (xcuo *XProviderCursorUpdateOne) Save(ctx context.Context) (*XProviderCursor, error) {
return withHooks(ctx, xcuo.sqlSave, xcuo.mutation, xcuo.hooks)
}
// SaveX is like Save, but panics if an error occurs.
func (xcuo *XProviderCursorUpdateOne) SaveX(ctx context.Context) *XProviderCursor {
node, err := xcuo.Save(ctx)
if err != nil {
panic(err)
}
return node
}
// Exec executes the query on the entity.
func (xcuo *XProviderCursorUpdateOne) Exec(ctx context.Context) error {
_, err := xcuo.Save(ctx)
return err
}
// ExecX is like Exec, but panics if an error occurs.
func (xcuo *XProviderCursorUpdateOne) ExecX(ctx context.Context) {
if err := xcuo.Exec(ctx); err != nil {
panic(err)
}
}
func (xcuo *XProviderCursorUpdateOne) sqlSave(ctx context.Context) (_node *XProviderCursor, err error) {
_spec := sqlgraph.NewUpdateSpec(xprovidercursor.Table, xprovidercursor.Columns, sqlgraph.NewFieldSpec(xprovidercursor.FieldID, field.TypeInt))
id, ok := xcuo.mutation.ID()
if !ok {
return nil, &ValidationError{Name: "id", err: errors.New(`ent: missing "XProviderCursor.id" for update`)}
}
_spec.Node.ID.Value = id
if fields := xcuo.fields; len(fields) > 0 {
_spec.Node.Columns = make([]string, 0, len(fields))
_spec.Node.Columns = append(_spec.Node.Columns, xprovidercursor.FieldID)
for _, f := range fields {
if !xprovidercursor.ValidColumn(f) {
return nil, &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
}
if f != xprovidercursor.FieldID {
_spec.Node.Columns = append(_spec.Node.Columns, f)
}
}
}
if ps := xcuo.mutation.predicates; len(ps) > 0 {
_spec.Predicate = func(selector *sql.Selector) {
for i := range ps {
ps[i](selector)
}
}
}
if value, ok := xcuo.mutation.UUID(); ok {
_spec.SetField(xprovidercursor.FieldUUID, field.TypeUUID, value)
}
if value, ok := xcuo.mutation.ChainID(); ok {
_spec.SetField(xprovidercursor.FieldChainID, field.TypeUint64, value)
}
if value, ok := xcuo.mutation.AddedChainID(); ok {
_spec.AddField(xprovidercursor.FieldChainID, field.TypeUint64, value)
}
if value, ok := xcuo.mutation.Height(); ok {
_spec.SetField(xprovidercursor.FieldHeight, field.TypeUint64, value)
}
if value, ok := xcuo.mutation.AddedHeight(); ok {
_spec.AddField(xprovidercursor.FieldHeight, field.TypeUint64, value)
}
if value, ok := xcuo.mutation.CreatedAt(); ok {
_spec.SetField(xprovidercursor.FieldCreatedAt, field.TypeTime, value)
}
if value, ok := xcuo.mutation.UpdatedAt(); ok {
_spec.SetField(xprovidercursor.FieldUpdatedAt, field.TypeTime, value)
}
_node = &XProviderCursor{config: xcuo.config}
_spec.Assign = _node.assignValues
_spec.ScanValues = _node.scanValues
if err = sqlgraph.UpdateNode(ctx, xcuo.driver, _spec); err != nil {
if _, ok := err.(*sqlgraph.NotFoundError); ok {
err = &NotFoundError{xprovidercursor.Label}
} else if sqlgraph.IsConstraintError(err) {
err = &ConstraintError{msg: err.Error(), wrap: err}
}
return nil, err
}
xcuo.mutation.done = true
return _node, nil
}