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
|
// 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 entv1
import (
"context"
"fmt"
"github.com/facebook/ent/dialect/sql/sqlgraph"
"github.com/facebook/ent/entc/integration/migrate/entv1/conversion"
"github.com/facebook/ent/schema/field"
)
// ConversionCreate is the builder for creating a Conversion entity.
type ConversionCreate struct {
config
mutation *ConversionMutation
hooks []Hook
}
// SetName sets the "name" field.
func (cc *ConversionCreate) SetName(s string) *ConversionCreate {
cc.mutation.SetName(s)
return cc
}
// SetNillableName sets the "name" field if the given value is not nil.
func (cc *ConversionCreate) SetNillableName(s *string) *ConversionCreate {
if s != nil {
cc.SetName(*s)
}
return cc
}
// SetInt8ToString sets the "int8_to_string" field.
func (cc *ConversionCreate) SetInt8ToString(i int8) *ConversionCreate {
cc.mutation.SetInt8ToString(i)
return cc
}
// SetNillableInt8ToString sets the "int8_to_string" field if the given value is not nil.
func (cc *ConversionCreate) SetNillableInt8ToString(i *int8) *ConversionCreate {
if i != nil {
cc.SetInt8ToString(*i)
}
return cc
}
// SetUint8ToString sets the "uint8_to_string" field.
func (cc *ConversionCreate) SetUint8ToString(u uint8) *ConversionCreate {
cc.mutation.SetUint8ToString(u)
return cc
}
// SetNillableUint8ToString sets the "uint8_to_string" field if the given value is not nil.
func (cc *ConversionCreate) SetNillableUint8ToString(u *uint8) *ConversionCreate {
if u != nil {
cc.SetUint8ToString(*u)
}
return cc
}
// SetInt16ToString sets the "int16_to_string" field.
func (cc *ConversionCreate) SetInt16ToString(i int16) *ConversionCreate {
cc.mutation.SetInt16ToString(i)
return cc
}
// SetNillableInt16ToString sets the "int16_to_string" field if the given value is not nil.
func (cc *ConversionCreate) SetNillableInt16ToString(i *int16) *ConversionCreate {
if i != nil {
cc.SetInt16ToString(*i)
}
return cc
}
// SetUint16ToString sets the "uint16_to_string" field.
func (cc *ConversionCreate) SetUint16ToString(u uint16) *ConversionCreate {
cc.mutation.SetUint16ToString(u)
return cc
}
// SetNillableUint16ToString sets the "uint16_to_string" field if the given value is not nil.
func (cc *ConversionCreate) SetNillableUint16ToString(u *uint16) *ConversionCreate {
if u != nil {
cc.SetUint16ToString(*u)
}
return cc
}
// SetInt32ToString sets the "int32_to_string" field.
func (cc *ConversionCreate) SetInt32ToString(i int32) *ConversionCreate {
cc.mutation.SetInt32ToString(i)
return cc
}
// SetNillableInt32ToString sets the "int32_to_string" field if the given value is not nil.
func (cc *ConversionCreate) SetNillableInt32ToString(i *int32) *ConversionCreate {
if i != nil {
cc.SetInt32ToString(*i)
}
return cc
}
// SetUint32ToString sets the "uint32_to_string" field.
func (cc *ConversionCreate) SetUint32ToString(u uint32) *ConversionCreate {
cc.mutation.SetUint32ToString(u)
return cc
}
// SetNillableUint32ToString sets the "uint32_to_string" field if the given value is not nil.
func (cc *ConversionCreate) SetNillableUint32ToString(u *uint32) *ConversionCreate {
if u != nil {
cc.SetUint32ToString(*u)
}
return cc
}
// SetInt64ToString sets the "int64_to_string" field.
func (cc *ConversionCreate) SetInt64ToString(i int64) *ConversionCreate {
cc.mutation.SetInt64ToString(i)
return cc
}
// SetNillableInt64ToString sets the "int64_to_string" field if the given value is not nil.
func (cc *ConversionCreate) SetNillableInt64ToString(i *int64) *ConversionCreate {
if i != nil {
cc.SetInt64ToString(*i)
}
return cc
}
// SetUint64ToString sets the "uint64_to_string" field.
func (cc *ConversionCreate) SetUint64ToString(u uint64) *ConversionCreate {
cc.mutation.SetUint64ToString(u)
return cc
}
// SetNillableUint64ToString sets the "uint64_to_string" field if the given value is not nil.
func (cc *ConversionCreate) SetNillableUint64ToString(u *uint64) *ConversionCreate {
if u != nil {
cc.SetUint64ToString(*u)
}
return cc
}
// Mutation returns the ConversionMutation object of the builder.
func (cc *ConversionCreate) Mutation() *ConversionMutation {
return cc.mutation
}
// Save creates the Conversion in the database.
func (cc *ConversionCreate) Save(ctx context.Context) (*Conversion, error) {
var (
err error
node *Conversion
)
if len(cc.hooks) == 0 {
if err = cc.check(); err != nil {
return nil, err
}
node, err = cc.sqlSave(ctx)
} else {
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
mutation, ok := m.(*ConversionMutation)
if !ok {
return nil, fmt.Errorf("unexpected mutation type %T", m)
}
if err = cc.check(); err != nil {
return nil, err
}
cc.mutation = mutation
node, err = cc.sqlSave(ctx)
mutation.done = true
return node, err
})
for i := len(cc.hooks) - 1; i >= 0; i-- {
mut = cc.hooks[i](mut)
}
if _, err := mut.Mutate(ctx, cc.mutation); err != nil {
return nil, err
}
}
return node, err
}
// SaveX calls Save and panics if Save returns an error.
func (cc *ConversionCreate) SaveX(ctx context.Context) *Conversion {
v, err := cc.Save(ctx)
if err != nil {
panic(err)
}
return v
}
// check runs all checks and user-defined validators on the builder.
func (cc *ConversionCreate) check() error {
return nil
}
func (cc *ConversionCreate) sqlSave(ctx context.Context) (*Conversion, error) {
_node, _spec := cc.createSpec()
if err := sqlgraph.CreateNode(ctx, cc.driver, _spec); err != nil {
if cerr, ok := isSQLConstraintError(err); ok {
err = cerr
}
return nil, err
}
id := _spec.ID.Value.(int64)
_node.ID = int(id)
return _node, nil
}
func (cc *ConversionCreate) createSpec() (*Conversion, *sqlgraph.CreateSpec) {
var (
_node = &Conversion{config: cc.config}
_spec = &sqlgraph.CreateSpec{
Table: conversion.Table,
ID: &sqlgraph.FieldSpec{
Type: field.TypeInt,
Column: conversion.FieldID,
},
}
)
if value, ok := cc.mutation.Name(); ok {
_spec.Fields = append(_spec.Fields, &sqlgraph.FieldSpec{
Type: field.TypeString,
Value: value,
Column: conversion.FieldName,
})
_node.Name = value
}
if value, ok := cc.mutation.Int8ToString(); ok {
_spec.Fields = append(_spec.Fields, &sqlgraph.FieldSpec{
Type: field.TypeInt8,
Value: value,
Column: conversion.FieldInt8ToString,
})
_node.Int8ToString = value
}
if value, ok := cc.mutation.Uint8ToString(); ok {
_spec.Fields = append(_spec.Fields, &sqlgraph.FieldSpec{
Type: field.TypeUint8,
Value: value,
Column: conversion.FieldUint8ToString,
})
_node.Uint8ToString = value
}
if value, ok := cc.mutation.Int16ToString(); ok {
_spec.Fields = append(_spec.Fields, &sqlgraph.FieldSpec{
Type: field.TypeInt16,
Value: value,
Column: conversion.FieldInt16ToString,
})
_node.Int16ToString = value
}
if value, ok := cc.mutation.Uint16ToString(); ok {
_spec.Fields = append(_spec.Fields, &sqlgraph.FieldSpec{
Type: field.TypeUint16,
Value: value,
Column: conversion.FieldUint16ToString,
})
_node.Uint16ToString = value
}
if value, ok := cc.mutation.Int32ToString(); ok {
_spec.Fields = append(_spec.Fields, &sqlgraph.FieldSpec{
Type: field.TypeInt32,
Value: value,
Column: conversion.FieldInt32ToString,
})
_node.Int32ToString = value
}
if value, ok := cc.mutation.Uint32ToString(); ok {
_spec.Fields = append(_spec.Fields, &sqlgraph.FieldSpec{
Type: field.TypeUint32,
Value: value,
Column: conversion.FieldUint32ToString,
})
_node.Uint32ToString = value
}
if value, ok := cc.mutation.Int64ToString(); ok {
_spec.Fields = append(_spec.Fields, &sqlgraph.FieldSpec{
Type: field.TypeInt64,
Value: value,
Column: conversion.FieldInt64ToString,
})
_node.Int64ToString = value
}
if value, ok := cc.mutation.Uint64ToString(); ok {
_spec.Fields = append(_spec.Fields, &sqlgraph.FieldSpec{
Type: field.TypeUint64,
Value: value,
Column: conversion.FieldUint64ToString,
})
_node.Uint64ToString = value
}
return _node, _spec
}
// ConversionCreateBulk is the builder for creating many Conversion entities in bulk.
type ConversionCreateBulk struct {
config
builders []*ConversionCreate
}
// Save creates the Conversion entities in the database.
func (ccb *ConversionCreateBulk) Save(ctx context.Context) ([]*Conversion, error) {
specs := make([]*sqlgraph.CreateSpec, len(ccb.builders))
nodes := make([]*Conversion, len(ccb.builders))
mutators := make([]Mutator, len(ccb.builders))
for i := range ccb.builders {
func(i int, root context.Context) {
builder := ccb.builders[i]
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
mutation, ok := m.(*ConversionMutation)
if !ok {
return nil, fmt.Errorf("unexpected mutation type %T", m)
}
if err := builder.check(); err != nil {
return nil, err
}
builder.mutation = mutation
nodes[i], specs[i] = builder.createSpec()
var err error
if i < len(mutators)-1 {
_, err = mutators[i+1].Mutate(root, ccb.builders[i+1].mutation)
} else {
// Invoke the actual operation on the latest mutation in the chain.
if err = sqlgraph.BatchCreate(ctx, ccb.driver, &sqlgraph.BatchCreateSpec{Nodes: specs}); err != nil {
if cerr, ok := isSQLConstraintError(err); ok {
err = cerr
}
}
}
mutation.done = true
if err != nil {
return nil, err
}
id := specs[i].ID.Value.(int64)
nodes[i].ID = int(id)
return nodes[i], nil
})
for i := len(builder.hooks) - 1; i >= 0; i-- {
mut = builder.hooks[i](mut)
}
mutators[i] = mut
}(i, ctx)
}
if len(mutators) > 0 {
if _, err := mutators[0].Mutate(ctx, ccb.builders[0].mutation); err != nil {
return nil, err
}
}
return nodes, nil
}
// SaveX is like Save, but panics if an error occurs.
func (ccb *ConversionCreateBulk) SaveX(ctx context.Context) []*Conversion {
v, err := ccb.Save(ctx)
if err != nil {
panic(err)
}
return v
}
|