// Code generated by ent, DO NOT EDIT. package ent import ( "context" "errors" "fmt" "sync" "time" "entgo.io/ent" "entgo.io/ent/dialect/sql" "leafdev.top/leaf/rag/ent/library" "leafdev.top/leaf/rag/ent/predicate" ) const ( // Operation types. OpCreate = ent.OpCreate OpDelete = ent.OpDelete OpDeleteOne = ent.OpDeleteOne OpUpdate = ent.OpUpdate OpUpdateOne = ent.OpUpdateOne // Node types. TypeLibrary = "Library" ) // LibraryMutation represents an operation that mutates the Library nodes in the graph. type LibraryMutation struct { config op Op typ string id *int name *string user_id *string created_at *time.Time updated_at *time.Time clearedFields map[string]struct{} done bool oldValue func(context.Context) (*Library, error) predicates []predicate.Library } var _ ent.Mutation = (*LibraryMutation)(nil) // libraryOption allows management of the mutation configuration using functional options. type libraryOption func(*LibraryMutation) // newLibraryMutation creates new mutation for the Library entity. func newLibraryMutation(c config, op Op, opts ...libraryOption) *LibraryMutation { m := &LibraryMutation{ config: c, op: op, typ: TypeLibrary, clearedFields: make(map[string]struct{}), } for _, opt := range opts { opt(m) } return m } // withLibraryID sets the ID field of the mutation. func withLibraryID(id int) libraryOption { return func(m *LibraryMutation) { var ( err error once sync.Once value *Library ) m.oldValue = func(ctx context.Context) (*Library, error) { once.Do(func() { if m.done { err = errors.New("querying old values post mutation is not allowed") } else { value, err = m.Client().Library.Get(ctx, id) } }) return value, err } m.id = &id } } // withLibrary sets the old Library of the mutation. func withLibrary(node *Library) libraryOption { return func(m *LibraryMutation) { m.oldValue = func(context.Context) (*Library, error) { return node, nil } m.id = &node.ID } } // Client returns a new `ent.Client` from the mutation. If the mutation was // executed in a transaction (ent.Tx), a transactional client is returned. func (m LibraryMutation) Client() *Client { client := &Client{config: m.config} client.init() return client } // Tx returns an `ent.Tx` for mutations that were executed in transactions; // it returns an error otherwise. func (m LibraryMutation) Tx() (*Tx, error) { if _, ok := m.driver.(*txDriver); !ok { return nil, errors.New("ent: mutation is not running in a transaction") } tx := &Tx{config: m.config} tx.init() return tx, nil } // ID returns the ID value in the mutation. Note that the ID is only available // if it was provided to the builder or after it was returned from the database. func (m *LibraryMutation) ID() (id int, exists bool) { if m.id == nil { return } return *m.id, true } // IDs queries the database and returns the entity ids that match the mutation's predicate. // That means, if the mutation is applied within a transaction with an isolation level such // as sql.LevelSerializable, the returned ids match the ids of the rows that will be updated // or updated by the mutation. func (m *LibraryMutation) IDs(ctx context.Context) ([]int, error) { switch { case m.op.Is(OpUpdateOne | OpDeleteOne): id, exists := m.ID() if exists { return []int{id}, nil } fallthrough case m.op.Is(OpUpdate | OpDelete): return m.Client().Library.Query().Where(m.predicates...).IDs(ctx) default: return nil, fmt.Errorf("IDs is not allowed on %s operations", m.op) } } // SetName sets the "name" field. func (m *LibraryMutation) SetName(s string) { m.name = &s } // Name returns the value of the "name" field in the mutation. func (m *LibraryMutation) Name() (r string, exists bool) { v := m.name if v == nil { return } return *v, true } // OldName returns the old "name" field's value of the Library entity. // If the Library object wasn't provided to the builder, the object is fetched from the database. // An error is returned if the mutation operation is not UpdateOne, or the database query fails. func (m *LibraryMutation) OldName(ctx context.Context) (v string, err error) { if !m.op.Is(OpUpdateOne) { return v, errors.New("OldName is only allowed on UpdateOne operations") } if m.id == nil || m.oldValue == nil { return v, errors.New("OldName requires an ID field in the mutation") } oldValue, err := m.oldValue(ctx) if err != nil { return v, fmt.Errorf("querying old value for OldName: %w", err) } return oldValue.Name, nil } // ResetName resets all changes to the "name" field. func (m *LibraryMutation) ResetName() { m.name = nil } // SetUserID sets the "user_id" field. func (m *LibraryMutation) SetUserID(s string) { m.user_id = &s } // UserID returns the value of the "user_id" field in the mutation. func (m *LibraryMutation) UserID() (r string, exists bool) { v := m.user_id if v == nil { return } return *v, true } // OldUserID returns the old "user_id" field's value of the Library entity. // If the Library object wasn't provided to the builder, the object is fetched from the database. // An error is returned if the mutation operation is not UpdateOne, or the database query fails. func (m *LibraryMutation) OldUserID(ctx context.Context) (v string, err error) { if !m.op.Is(OpUpdateOne) { return v, errors.New("OldUserID is only allowed on UpdateOne operations") } if m.id == nil || m.oldValue == nil { return v, errors.New("OldUserID requires an ID field in the mutation") } oldValue, err := m.oldValue(ctx) if err != nil { return v, fmt.Errorf("querying old value for OldUserID: %w", err) } return oldValue.UserID, nil } // ResetUserID resets all changes to the "user_id" field. func (m *LibraryMutation) ResetUserID() { m.user_id = nil } // SetCreatedAt sets the "created_at" field. func (m *LibraryMutation) SetCreatedAt(t time.Time) { m.created_at = &t } // CreatedAt returns the value of the "created_at" field in the mutation. func (m *LibraryMutation) CreatedAt() (r time.Time, exists bool) { v := m.created_at if v == nil { return } return *v, true } // OldCreatedAt returns the old "created_at" field's value of the Library entity. // If the Library object wasn't provided to the builder, the object is fetched from the database. // An error is returned if the mutation operation is not UpdateOne, or the database query fails. func (m *LibraryMutation) OldCreatedAt(ctx context.Context) (v time.Time, err error) { if !m.op.Is(OpUpdateOne) { return v, errors.New("OldCreatedAt is only allowed on UpdateOne operations") } if m.id == nil || m.oldValue == nil { return v, errors.New("OldCreatedAt requires an ID field in the mutation") } oldValue, err := m.oldValue(ctx) if err != nil { return v, fmt.Errorf("querying old value for OldCreatedAt: %w", err) } return oldValue.CreatedAt, nil } // ResetCreatedAt resets all changes to the "created_at" field. func (m *LibraryMutation) ResetCreatedAt() { m.created_at = nil } // SetUpdatedAt sets the "updated_at" field. func (m *LibraryMutation) SetUpdatedAt(t time.Time) { m.updated_at = &t } // UpdatedAt returns the value of the "updated_at" field in the mutation. func (m *LibraryMutation) UpdatedAt() (r time.Time, exists bool) { v := m.updated_at if v == nil { return } return *v, true } // OldUpdatedAt returns the old "updated_at" field's value of the Library entity. // If the Library object wasn't provided to the builder, the object is fetched from the database. // An error is returned if the mutation operation is not UpdateOne, or the database query fails. func (m *LibraryMutation) OldUpdatedAt(ctx context.Context) (v time.Time, err error) { if !m.op.Is(OpUpdateOne) { return v, errors.New("OldUpdatedAt is only allowed on UpdateOne operations") } if m.id == nil || m.oldValue == nil { return v, errors.New("OldUpdatedAt requires an ID field in the mutation") } oldValue, err := m.oldValue(ctx) if err != nil { return v, fmt.Errorf("querying old value for OldUpdatedAt: %w", err) } return oldValue.UpdatedAt, nil } // ResetUpdatedAt resets all changes to the "updated_at" field. func (m *LibraryMutation) ResetUpdatedAt() { m.updated_at = nil } // Where appends a list predicates to the LibraryMutation builder. func (m *LibraryMutation) Where(ps ...predicate.Library) { m.predicates = append(m.predicates, ps...) } // WhereP appends storage-level predicates to the LibraryMutation builder. Using this method, // users can use type-assertion to append predicates that do not depend on any generated package. func (m *LibraryMutation) WhereP(ps ...func(*sql.Selector)) { p := make([]predicate.Library, len(ps)) for i := range ps { p[i] = ps[i] } m.Where(p...) } // Op returns the operation name. func (m *LibraryMutation) Op() Op { return m.op } // SetOp allows setting the mutation operation. func (m *LibraryMutation) SetOp(op Op) { m.op = op } // Type returns the node type of this mutation (Library). func (m *LibraryMutation) Type() string { return m.typ } // Fields returns all fields that were changed during this mutation. Note that in // order to get all numeric fields that were incremented/decremented, call // AddedFields(). func (m *LibraryMutation) Fields() []string { fields := make([]string, 0, 4) if m.name != nil { fields = append(fields, library.FieldName) } if m.user_id != nil { fields = append(fields, library.FieldUserID) } if m.created_at != nil { fields = append(fields, library.FieldCreatedAt) } if m.updated_at != nil { fields = append(fields, library.FieldUpdatedAt) } return fields } // Field returns the value of a field with the given name. The second boolean // return value indicates that this field was not set, or was not defined in the // schema. func (m *LibraryMutation) Field(name string) (ent.Value, bool) { switch name { case library.FieldName: return m.Name() case library.FieldUserID: return m.UserID() case library.FieldCreatedAt: return m.CreatedAt() case library.FieldUpdatedAt: return m.UpdatedAt() } return nil, false } // OldField returns the old value of the field from the database. An error is // returned if the mutation operation is not UpdateOne, or the query to the // database failed. func (m *LibraryMutation) OldField(ctx context.Context, name string) (ent.Value, error) { switch name { case library.FieldName: return m.OldName(ctx) case library.FieldUserID: return m.OldUserID(ctx) case library.FieldCreatedAt: return m.OldCreatedAt(ctx) case library.FieldUpdatedAt: return m.OldUpdatedAt(ctx) } return nil, fmt.Errorf("unknown Library field %s", name) } // SetField sets the value of a field with the given name. It returns an error if // the field is not defined in the schema, or if the type mismatched the field // type. func (m *LibraryMutation) SetField(name string, value ent.Value) error { switch name { case library.FieldName: v, ok := value.(string) if !ok { return fmt.Errorf("unexpected type %T for field %s", value, name) } m.SetName(v) return nil case library.FieldUserID: v, ok := value.(string) if !ok { return fmt.Errorf("unexpected type %T for field %s", value, name) } m.SetUserID(v) return nil case library.FieldCreatedAt: v, ok := value.(time.Time) if !ok { return fmt.Errorf("unexpected type %T for field %s", value, name) } m.SetCreatedAt(v) return nil case library.FieldUpdatedAt: v, ok := value.(time.Time) if !ok { return fmt.Errorf("unexpected type %T for field %s", value, name) } m.SetUpdatedAt(v) return nil } return fmt.Errorf("unknown Library field %s", name) } // AddedFields returns all numeric fields that were incremented/decremented during // this mutation. func (m *LibraryMutation) AddedFields() []string { return nil } // AddedField returns the numeric value that was incremented/decremented on a field // with the given name. The second boolean return value indicates that this field // was not set, or was not defined in the schema. func (m *LibraryMutation) AddedField(name string) (ent.Value, bool) { return nil, false } // AddField adds the value to the field with the given name. It returns an error if // the field is not defined in the schema, or if the type mismatched the field // type. func (m *LibraryMutation) AddField(name string, value ent.Value) error { switch name { } return fmt.Errorf("unknown Library numeric field %s", name) } // ClearedFields returns all nullable fields that were cleared during this // mutation. func (m *LibraryMutation) ClearedFields() []string { return nil } // FieldCleared returns a boolean indicating if a field with the given name was // cleared in this mutation. func (m *LibraryMutation) FieldCleared(name string) bool { _, ok := m.clearedFields[name] return ok } // ClearField clears the value of the field with the given name. It returns an // error if the field is not defined in the schema. func (m *LibraryMutation) ClearField(name string) error { return fmt.Errorf("unknown Library nullable field %s", name) } // ResetField resets all changes in the mutation for the field with the given name. // It returns an error if the field is not defined in the schema. func (m *LibraryMutation) ResetField(name string) error { switch name { case library.FieldName: m.ResetName() return nil case library.FieldUserID: m.ResetUserID() return nil case library.FieldCreatedAt: m.ResetCreatedAt() return nil case library.FieldUpdatedAt: m.ResetUpdatedAt() return nil } return fmt.Errorf("unknown Library field %s", name) } // AddedEdges returns all edge names that were set/added in this mutation. func (m *LibraryMutation) AddedEdges() []string { edges := make([]string, 0, 0) return edges } // AddedIDs returns all IDs (to other nodes) that were added for the given edge // name in this mutation. func (m *LibraryMutation) AddedIDs(name string) []ent.Value { return nil } // RemovedEdges returns all edge names that were removed in this mutation. func (m *LibraryMutation) RemovedEdges() []string { edges := make([]string, 0, 0) return edges } // RemovedIDs returns all IDs (to other nodes) that were removed for the edge with // the given name in this mutation. func (m *LibraryMutation) RemovedIDs(name string) []ent.Value { return nil } // ClearedEdges returns all edge names that were cleared in this mutation. func (m *LibraryMutation) ClearedEdges() []string { edges := make([]string, 0, 0) return edges } // EdgeCleared returns a boolean which indicates if the edge with the given name // was cleared in this mutation. func (m *LibraryMutation) EdgeCleared(name string) bool { return false } // ClearEdge clears the value of the edge with the given name. It returns an error // if that edge is not defined in the schema. func (m *LibraryMutation) ClearEdge(name string) error { return fmt.Errorf("unknown Library unique edge %s", name) } // ResetEdge resets all changes to the edge with the given name in this mutation. // It returns an error if the edge is not defined in the schema. func (m *LibraryMutation) ResetEdge(name string) error { return fmt.Errorf("unknown Library edge %s", name) }