366 lines
10 KiB
Go
366 lines
10 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|||
|
|
|
||
|
|
package ent
|
||
|
|
|
||
|
|
import (
|
||
|
|
"bj_power_mes/ent/alertrule"
|
||
|
|
"context"
|
||
|
|
"errors"
|
||
|
|
"fmt"
|
||
|
|
"time"
|
||
|
|
|
||
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
||
|
|
"entgo.io/ent/schema/field"
|
||
|
|
)
|
||
|
|
|
||
|
|
// AlertRuleCreate is the builder for creating a AlertRule entity.
|
||
|
|
type AlertRuleCreate struct {
|
||
|
|
config
|
||
|
|
mutation *AlertRuleMutation
|
||
|
|
hooks []Hook
|
||
|
|
}
|
||
|
|
|
||
|
|
// SetName sets the "name" field.
|
||
|
|
func (_c *AlertRuleCreate) SetName(v string) *AlertRuleCreate {
|
||
|
|
_c.mutation.SetName(v)
|
||
|
|
return _c
|
||
|
|
}
|
||
|
|
|
||
|
|
// SetType sets the "type" field.
|
||
|
|
func (_c *AlertRuleCreate) SetType(v string) *AlertRuleCreate {
|
||
|
|
_c.mutation.SetType(v)
|
||
|
|
return _c
|
||
|
|
}
|
||
|
|
|
||
|
|
// SetThreshold sets the "threshold" field.
|
||
|
|
func (_c *AlertRuleCreate) SetThreshold(v float64) *AlertRuleCreate {
|
||
|
|
_c.mutation.SetThreshold(v)
|
||
|
|
return _c
|
||
|
|
}
|
||
|
|
|
||
|
|
// SetNillableThreshold sets the "threshold" field if the given value is not nil.
|
||
|
|
func (_c *AlertRuleCreate) SetNillableThreshold(v *float64) *AlertRuleCreate {
|
||
|
|
if v != nil {
|
||
|
|
_c.SetThreshold(*v)
|
||
|
|
}
|
||
|
|
return _c
|
||
|
|
}
|
||
|
|
|
||
|
|
// SetReceiver sets the "receiver" field.
|
||
|
|
func (_c *AlertRuleCreate) SetReceiver(v string) *AlertRuleCreate {
|
||
|
|
_c.mutation.SetReceiver(v)
|
||
|
|
return _c
|
||
|
|
}
|
||
|
|
|
||
|
|
// SetNillableReceiver sets the "receiver" field if the given value is not nil.
|
||
|
|
func (_c *AlertRuleCreate) SetNillableReceiver(v *string) *AlertRuleCreate {
|
||
|
|
if v != nil {
|
||
|
|
_c.SetReceiver(*v)
|
||
|
|
}
|
||
|
|
return _c
|
||
|
|
}
|
||
|
|
|
||
|
|
// SetEnabled sets the "enabled" field.
|
||
|
|
func (_c *AlertRuleCreate) SetEnabled(v bool) *AlertRuleCreate {
|
||
|
|
_c.mutation.SetEnabled(v)
|
||
|
|
return _c
|
||
|
|
}
|
||
|
|
|
||
|
|
// SetNillableEnabled sets the "enabled" field if the given value is not nil.
|
||
|
|
func (_c *AlertRuleCreate) SetNillableEnabled(v *bool) *AlertRuleCreate {
|
||
|
|
if v != nil {
|
||
|
|
_c.SetEnabled(*v)
|
||
|
|
}
|
||
|
|
return _c
|
||
|
|
}
|
||
|
|
|
||
|
|
// SetCreatedBy sets the "createdBy" field.
|
||
|
|
func (_c *AlertRuleCreate) SetCreatedBy(v string) *AlertRuleCreate {
|
||
|
|
_c.mutation.SetCreatedBy(v)
|
||
|
|
return _c
|
||
|
|
}
|
||
|
|
|
||
|
|
// SetNillableCreatedBy sets the "createdBy" field if the given value is not nil.
|
||
|
|
func (_c *AlertRuleCreate) SetNillableCreatedBy(v *string) *AlertRuleCreate {
|
||
|
|
if v != nil {
|
||
|
|
_c.SetCreatedBy(*v)
|
||
|
|
}
|
||
|
|
return _c
|
||
|
|
}
|
||
|
|
|
||
|
|
// SetCreatedAt sets the "createdAt" field.
|
||
|
|
func (_c *AlertRuleCreate) SetCreatedAt(v time.Time) *AlertRuleCreate {
|
||
|
|
_c.mutation.SetCreatedAt(v)
|
||
|
|
return _c
|
||
|
|
}
|
||
|
|
|
||
|
|
// SetNillableCreatedAt sets the "createdAt" field if the given value is not nil.
|
||
|
|
func (_c *AlertRuleCreate) SetNillableCreatedAt(v *time.Time) *AlertRuleCreate {
|
||
|
|
if v != nil {
|
||
|
|
_c.SetCreatedAt(*v)
|
||
|
|
}
|
||
|
|
return _c
|
||
|
|
}
|
||
|
|
|
||
|
|
// SetID sets the "id" field.
|
||
|
|
func (_c *AlertRuleCreate) SetID(v int) *AlertRuleCreate {
|
||
|
|
_c.mutation.SetID(v)
|
||
|
|
return _c
|
||
|
|
}
|
||
|
|
|
||
|
|
// Mutation returns the AlertRuleMutation object of the builder.
|
||
|
|
func (_c *AlertRuleCreate) Mutation() *AlertRuleMutation {
|
||
|
|
return _c.mutation
|
||
|
|
}
|
||
|
|
|
||
|
|
// Save creates the AlertRule in the database.
|
||
|
|
func (_c *AlertRuleCreate) Save(ctx context.Context) (*AlertRule, error) {
|
||
|
|
_c.defaults()
|
||
|
|
return withHooks(ctx, _c.sqlSave, _c.mutation, _c.hooks)
|
||
|
|
}
|
||
|
|
|
||
|
|
// SaveX calls Save and panics if Save returns an error.
|
||
|
|
func (_c *AlertRuleCreate) SaveX(ctx context.Context) *AlertRule {
|
||
|
|
v, err := _c.Save(ctx)
|
||
|
|
if err != nil {
|
||
|
|
panic(err)
|
||
|
|
}
|
||
|
|
return v
|
||
|
|
}
|
||
|
|
|
||
|
|
// Exec executes the query.
|
||
|
|
func (_c *AlertRuleCreate) Exec(ctx context.Context) error {
|
||
|
|
_, err := _c.Save(ctx)
|
||
|
|
return err
|
||
|
|
}
|
||
|
|
|
||
|
|
// ExecX is like Exec, but panics if an error occurs.
|
||
|
|
func (_c *AlertRuleCreate) ExecX(ctx context.Context) {
|
||
|
|
if err := _c.Exec(ctx); err != nil {
|
||
|
|
panic(err)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
// defaults sets the default values of the builder before save.
|
||
|
|
func (_c *AlertRuleCreate) defaults() {
|
||
|
|
if _, ok := _c.mutation.Threshold(); !ok {
|
||
|
|
v := alertrule.DefaultThreshold
|
||
|
|
_c.mutation.SetThreshold(v)
|
||
|
|
}
|
||
|
|
if _, ok := _c.mutation.Receiver(); !ok {
|
||
|
|
v := alertrule.DefaultReceiver
|
||
|
|
_c.mutation.SetReceiver(v)
|
||
|
|
}
|
||
|
|
if _, ok := _c.mutation.Enabled(); !ok {
|
||
|
|
v := alertrule.DefaultEnabled
|
||
|
|
_c.mutation.SetEnabled(v)
|
||
|
|
}
|
||
|
|
if _, ok := _c.mutation.CreatedBy(); !ok {
|
||
|
|
v := alertrule.DefaultCreatedBy
|
||
|
|
_c.mutation.SetCreatedBy(v)
|
||
|
|
}
|
||
|
|
if _, ok := _c.mutation.CreatedAt(); !ok {
|
||
|
|
v := alertrule.DefaultCreatedAt()
|
||
|
|
_c.mutation.SetCreatedAt(v)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
// check runs all checks and user-defined validators on the builder.
|
||
|
|
func (_c *AlertRuleCreate) check() error {
|
||
|
|
if _, ok := _c.mutation.Name(); !ok {
|
||
|
|
return &ValidationError{Name: "name", err: errors.New(`ent: missing required field "AlertRule.name"`)}
|
||
|
|
}
|
||
|
|
if v, ok := _c.mutation.Name(); ok {
|
||
|
|
if err := alertrule.NameValidator(v); err != nil {
|
||
|
|
return &ValidationError{Name: "name", err: fmt.Errorf(`ent: validator failed for field "AlertRule.name": %w`, err)}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
if _, ok := _c.mutation.GetType(); !ok {
|
||
|
|
return &ValidationError{Name: "type", err: errors.New(`ent: missing required field "AlertRule.type"`)}
|
||
|
|
}
|
||
|
|
if v, ok := _c.mutation.GetType(); ok {
|
||
|
|
if err := alertrule.TypeValidator(v); err != nil {
|
||
|
|
return &ValidationError{Name: "type", err: fmt.Errorf(`ent: validator failed for field "AlertRule.type": %w`, err)}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
if _, ok := _c.mutation.Threshold(); !ok {
|
||
|
|
return &ValidationError{Name: "threshold", err: errors.New(`ent: missing required field "AlertRule.threshold"`)}
|
||
|
|
}
|
||
|
|
if _, ok := _c.mutation.Receiver(); !ok {
|
||
|
|
return &ValidationError{Name: "receiver", err: errors.New(`ent: missing required field "AlertRule.receiver"`)}
|
||
|
|
}
|
||
|
|
if v, ok := _c.mutation.Receiver(); ok {
|
||
|
|
if err := alertrule.ReceiverValidator(v); err != nil {
|
||
|
|
return &ValidationError{Name: "receiver", err: fmt.Errorf(`ent: validator failed for field "AlertRule.receiver": %w`, err)}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
if _, ok := _c.mutation.Enabled(); !ok {
|
||
|
|
return &ValidationError{Name: "enabled", err: errors.New(`ent: missing required field "AlertRule.enabled"`)}
|
||
|
|
}
|
||
|
|
if _, ok := _c.mutation.CreatedBy(); !ok {
|
||
|
|
return &ValidationError{Name: "createdBy", err: errors.New(`ent: missing required field "AlertRule.createdBy"`)}
|
||
|
|
}
|
||
|
|
if v, ok := _c.mutation.CreatedBy(); ok {
|
||
|
|
if err := alertrule.CreatedByValidator(v); err != nil {
|
||
|
|
return &ValidationError{Name: "createdBy", err: fmt.Errorf(`ent: validator failed for field "AlertRule.createdBy": %w`, err)}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
if _, ok := _c.mutation.CreatedAt(); !ok {
|
||
|
|
return &ValidationError{Name: "createdAt", err: errors.New(`ent: missing required field "AlertRule.createdAt"`)}
|
||
|
|
}
|
||
|
|
if v, ok := _c.mutation.ID(); ok {
|
||
|
|
if err := alertrule.IDValidator(v); err != nil {
|
||
|
|
return &ValidationError{Name: "id", err: fmt.Errorf(`ent: validator failed for field "AlertRule.id": %w`, err)}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
return nil
|
||
|
|
}
|
||
|
|
|
||
|
|
func (_c *AlertRuleCreate) sqlSave(ctx context.Context) (*AlertRule, error) {
|
||
|
|
if err := _c.check(); err != nil {
|
||
|
|
return nil, err
|
||
|
|
}
|
||
|
|
_node, _spec := _c.createSpec()
|
||
|
|
if err := sqlgraph.CreateNode(ctx, _c.driver, _spec); err != nil {
|
||
|
|
if sqlgraph.IsConstraintError(err) {
|
||
|
|
err = &ConstraintError{msg: err.Error(), wrap: err}
|
||
|
|
}
|
||
|
|
return nil, err
|
||
|
|
}
|
||
|
|
if _spec.ID.Value != _node.ID {
|
||
|
|
id := _spec.ID.Value.(int64)
|
||
|
|
_node.ID = int(id)
|
||
|
|
}
|
||
|
|
_c.mutation.id = &_node.ID
|
||
|
|
_c.mutation.done = true
|
||
|
|
return _node, nil
|
||
|
|
}
|
||
|
|
|
||
|
|
func (_c *AlertRuleCreate) createSpec() (*AlertRule, *sqlgraph.CreateSpec) {
|
||
|
|
var (
|
||
|
|
_node = &AlertRule{config: _c.config}
|
||
|
|
_spec = sqlgraph.NewCreateSpec(alertrule.Table, sqlgraph.NewFieldSpec(alertrule.FieldID, field.TypeInt))
|
||
|
|
)
|
||
|
|
if id, ok := _c.mutation.ID(); ok {
|
||
|
|
_node.ID = id
|
||
|
|
_spec.ID.Value = id
|
||
|
|
}
|
||
|
|
if value, ok := _c.mutation.Name(); ok {
|
||
|
|
_spec.SetField(alertrule.FieldName, field.TypeString, value)
|
||
|
|
_node.Name = value
|
||
|
|
}
|
||
|
|
if value, ok := _c.mutation.GetType(); ok {
|
||
|
|
_spec.SetField(alertrule.FieldType, field.TypeString, value)
|
||
|
|
_node.Type = value
|
||
|
|
}
|
||
|
|
if value, ok := _c.mutation.Threshold(); ok {
|
||
|
|
_spec.SetField(alertrule.FieldThreshold, field.TypeFloat64, value)
|
||
|
|
_node.Threshold = value
|
||
|
|
}
|
||
|
|
if value, ok := _c.mutation.Receiver(); ok {
|
||
|
|
_spec.SetField(alertrule.FieldReceiver, field.TypeString, value)
|
||
|
|
_node.Receiver = value
|
||
|
|
}
|
||
|
|
if value, ok := _c.mutation.Enabled(); ok {
|
||
|
|
_spec.SetField(alertrule.FieldEnabled, field.TypeBool, value)
|
||
|
|
_node.Enabled = value
|
||
|
|
}
|
||
|
|
if value, ok := _c.mutation.CreatedBy(); ok {
|
||
|
|
_spec.SetField(alertrule.FieldCreatedBy, field.TypeString, value)
|
||
|
|
_node.CreatedBy = value
|
||
|
|
}
|
||
|
|
if value, ok := _c.mutation.CreatedAt(); ok {
|
||
|
|
_spec.SetField(alertrule.FieldCreatedAt, field.TypeTime, value)
|
||
|
|
_node.CreatedAt = value
|
||
|
|
}
|
||
|
|
return _node, _spec
|
||
|
|
}
|
||
|
|
|
||
|
|
// AlertRuleCreateBulk is the builder for creating many AlertRule entities in bulk.
|
||
|
|
type AlertRuleCreateBulk struct {
|
||
|
|
config
|
||
|
|
err error
|
||
|
|
builders []*AlertRuleCreate
|
||
|
|
}
|
||
|
|
|
||
|
|
// Save creates the AlertRule entities in the database.
|
||
|
|
func (_c *AlertRuleCreateBulk) Save(ctx context.Context) ([]*AlertRule, error) {
|
||
|
|
if _c.err != nil {
|
||
|
|
return nil, _c.err
|
||
|
|
}
|
||
|
|
specs := make([]*sqlgraph.CreateSpec, len(_c.builders))
|
||
|
|
nodes := make([]*AlertRule, len(_c.builders))
|
||
|
|
mutators := make([]Mutator, len(_c.builders))
|
||
|
|
for i := range _c.builders {
|
||
|
|
func(i int, root context.Context) {
|
||
|
|
builder := _c.builders[i]
|
||
|
|
builder.defaults()
|
||
|
|
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
|
||
|
|
mutation, ok := m.(*AlertRuleMutation)
|
||
|
|
if !ok {
|
||
|
|
return nil, fmt.Errorf("unexpected mutation type %T", m)
|
||
|
|
}
|
||
|
|
if err := builder.check(); err != nil {
|
||
|
|
return nil, err
|
||
|
|
}
|
||
|
|
builder.mutation = mutation
|
||
|
|
var err error
|
||
|
|
nodes[i], specs[i] = builder.createSpec()
|
||
|
|
if i < len(mutators)-1 {
|
||
|
|
_, err = mutators[i+1].Mutate(root, _c.builders[i+1].mutation)
|
||
|
|
} else {
|
||
|
|
spec := &sqlgraph.BatchCreateSpec{Nodes: specs}
|
||
|
|
// Invoke the actual operation on the latest mutation in the chain.
|
||
|
|
if err = sqlgraph.BatchCreate(ctx, _c.driver, spec); err != nil {
|
||
|
|
if sqlgraph.IsConstraintError(err) {
|
||
|
|
err = &ConstraintError{msg: err.Error(), wrap: err}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
if err != nil {
|
||
|
|
return nil, err
|
||
|
|
}
|
||
|
|
mutation.id = &nodes[i].ID
|
||
|
|
if specs[i].ID.Value != nil && nodes[i].ID == 0 {
|
||
|
|
id := specs[i].ID.Value.(int64)
|
||
|
|
nodes[i].ID = int(id)
|
||
|
|
}
|
||
|
|
mutation.done = true
|
||
|
|
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, _c.builders[0].mutation); err != nil {
|
||
|
|
return nil, err
|
||
|
|
}
|
||
|
|
}
|
||
|
|
return nodes, nil
|
||
|
|
}
|
||
|
|
|
||
|
|
// SaveX is like Save, but panics if an error occurs.
|
||
|
|
func (_c *AlertRuleCreateBulk) SaveX(ctx context.Context) []*AlertRule {
|
||
|
|
v, err := _c.Save(ctx)
|
||
|
|
if err != nil {
|
||
|
|
panic(err)
|
||
|
|
}
|
||
|
|
return v
|
||
|
|
}
|
||
|
|
|
||
|
|
// Exec executes the query.
|
||
|
|
func (_c *AlertRuleCreateBulk) Exec(ctx context.Context) error {
|
||
|
|
_, err := _c.Save(ctx)
|
||
|
|
return err
|
||
|
|
}
|
||
|
|
|
||
|
|
// ExecX is like Exec, but panics if an error occurs.
|
||
|
|
func (_c *AlertRuleCreateBulk) ExecX(ctx context.Context) {
|
||
|
|
if err := _c.Exec(ctx); err != nil {
|
||
|
|
panic(err)
|
||
|
|
}
|
||
|
|
}
|