Files
bj_power/bj_power_mes/ent/tx.go
T

306 lines
11 KiB
Go
Raw Normal View History

2026-08-28 15:06:01 +08:00
// Code generated by ent, DO NOT EDIT.
package ent
import (
"context"
stdsql "database/sql"
"fmt"
"sync"
"entgo.io/ent/dialect"
)
// Tx is a transactional client that is created by calling Client.Tx().
type Tx struct {
config
// AssociationTrace is the client for interacting with the AssociationTrace builders.
AssociationTrace *AssociationTraceClient
// BomItem is the client for interacting with the BomItem builders.
BomItem *BomItemClient
// DailyPlan is the client for interacting with the DailyPlan builders.
DailyPlan *DailyPlanClient
// EventLog is the client for interacting with the EventLog builders.
EventLog *EventLogClient
// InspectionRecord is the client for interacting with the InspectionRecord builders.
InspectionRecord *InspectionRecordClient
2026-08-28 15:06:01 +08:00
// MaterialRequest is the client for interacting with the MaterialRequest builders.
MaterialRequest *MaterialRequestClient
// Permission is the client for interacting with the Permission builders.
Permission *PermissionClient
// PlcSendLog is the client for interacting with the PlcSendLog builders.
PlcSendLog *PlcSendLogClient
// ProcessFlow is the client for interacting with the ProcessFlow builders.
ProcessFlow *ProcessFlowClient
2026-08-28 15:06:01 +08:00
// ProcessStep is the client for interacting with the ProcessStep builders.
ProcessStep *ProcessStepClient
// ProductType is the client for interacting with the ProductType builders.
ProductType *ProductTypeClient
// Role is the client for interacting with the Role builders.
Role *RoleClient
// ScanRecord is the client for interacting with the ScanRecord builders.
ScanRecord *ScanRecordClient
// SemiFlow is the client for interacting with the SemiFlow builders.
SemiFlow *SemiFlowClient
// Station is the client for interacting with the Station builders.
Station *StationClient
2026-08-28 15:06:01 +08:00
// StationProcess is the client for interacting with the StationProcess builders.
StationProcess *StationProcessClient
// StepCriterion is the client for interacting with the StepCriterion builders.
StepCriterion *StepCriterionClient
// StepData is the client for interacting with the StepData builders.
StepData *StepDataClient
// TorqueRecord is the client for interacting with the TorqueRecord builders.
TorqueRecord *TorqueRecordClient
// User is the client for interacting with the User builders.
User *UserClient
// UserStation is the client for interacting with the UserStation builders.
UserStation *UserStationClient
2026-08-28 15:06:01 +08:00
// WorkOrder is the client for interacting with the WorkOrder builders.
WorkOrder *WorkOrderClient
// Workpiece is the client for interacting with the Workpiece builders.
Workpiece *WorkpieceClient
// WorkpieceProcess is the client for interacting with the WorkpieceProcess builders.
WorkpieceProcess *WorkpieceProcessClient
// lazily loaded.
client *Client
clientOnce sync.Once
// ctx lives for the life of the transaction. It is
// the same context used by the underlying connection.
ctx context.Context
}
type (
// Committer is the interface that wraps the Commit method.
Committer interface {
Commit(context.Context, *Tx) error
}
// The CommitFunc type is an adapter to allow the use of ordinary
// function as a Committer. If f is a function with the appropriate
// signature, CommitFunc(f) is a Committer that calls f.
CommitFunc func(context.Context, *Tx) error
// CommitHook defines the "commit middleware". A function that gets a Committer
// and returns a Committer. For example:
//
// hook := func(next ent.Committer) ent.Committer {
// return ent.CommitFunc(func(ctx context.Context, tx *ent.Tx) error {
// // Do some stuff before.
// if err := next.Commit(ctx, tx); err != nil {
// return err
// }
// // Do some stuff after.
// return nil
// })
// }
//
CommitHook func(Committer) Committer
)
// Commit calls f(ctx, m).
func (f CommitFunc) Commit(ctx context.Context, tx *Tx) error {
return f(ctx, tx)
}
// Commit commits the transaction.
func (tx *Tx) Commit() error {
txDriver := tx.config.driver.(*txDriver)
var fn Committer = CommitFunc(func(context.Context, *Tx) error {
return txDriver.tx.Commit()
})
txDriver.mu.Lock()
hooks := append([]CommitHook(nil), txDriver.onCommit...)
txDriver.mu.Unlock()
for i := len(hooks) - 1; i >= 0; i-- {
fn = hooks[i](fn)
}
return fn.Commit(tx.ctx, tx)
}
// OnCommit adds a hook to call on commit.
func (tx *Tx) OnCommit(f CommitHook) {
txDriver := tx.config.driver.(*txDriver)
txDriver.mu.Lock()
txDriver.onCommit = append(txDriver.onCommit, f)
txDriver.mu.Unlock()
}
type (
// Rollbacker is the interface that wraps the Rollback method.
Rollbacker interface {
Rollback(context.Context, *Tx) error
}
// The RollbackFunc type is an adapter to allow the use of ordinary
// function as a Rollbacker. If f is a function with the appropriate
// signature, RollbackFunc(f) is a Rollbacker that calls f.
RollbackFunc func(context.Context, *Tx) error
// RollbackHook defines the "rollback middleware". A function that gets a Rollbacker
// and returns a Rollbacker. For example:
//
// hook := func(next ent.Rollbacker) ent.Rollbacker {
// return ent.RollbackFunc(func(ctx context.Context, tx *ent.Tx) error {
// // Do some stuff before.
// if err := next.Rollback(ctx, tx); err != nil {
// return err
// }
// // Do some stuff after.
// return nil
// })
// }
//
RollbackHook func(Rollbacker) Rollbacker
)
// Rollback calls f(ctx, m).
func (f RollbackFunc) Rollback(ctx context.Context, tx *Tx) error {
return f(ctx, tx)
}
// Rollback rollbacks the transaction.
func (tx *Tx) Rollback() error {
txDriver := tx.config.driver.(*txDriver)
var fn Rollbacker = RollbackFunc(func(context.Context, *Tx) error {
return txDriver.tx.Rollback()
})
txDriver.mu.Lock()
hooks := append([]RollbackHook(nil), txDriver.onRollback...)
txDriver.mu.Unlock()
for i := len(hooks) - 1; i >= 0; i-- {
fn = hooks[i](fn)
}
return fn.Rollback(tx.ctx, tx)
}
// OnRollback adds a hook to call on rollback.
func (tx *Tx) OnRollback(f RollbackHook) {
txDriver := tx.config.driver.(*txDriver)
txDriver.mu.Lock()
txDriver.onRollback = append(txDriver.onRollback, f)
txDriver.mu.Unlock()
}
// Client returns a Client that binds to current transaction.
func (tx *Tx) Client() *Client {
tx.clientOnce.Do(func() {
tx.client = &Client{config: tx.config}
tx.client.init()
})
return tx.client
}
func (tx *Tx) init() {
tx.AssociationTrace = NewAssociationTraceClient(tx.config)
tx.BomItem = NewBomItemClient(tx.config)
tx.DailyPlan = NewDailyPlanClient(tx.config)
tx.EventLog = NewEventLogClient(tx.config)
tx.InspectionRecord = NewInspectionRecordClient(tx.config)
2026-08-28 15:06:01 +08:00
tx.MaterialRequest = NewMaterialRequestClient(tx.config)
tx.Permission = NewPermissionClient(tx.config)
tx.PlcSendLog = NewPlcSendLogClient(tx.config)
tx.ProcessFlow = NewProcessFlowClient(tx.config)
2026-08-28 15:06:01 +08:00
tx.ProcessStep = NewProcessStepClient(tx.config)
tx.ProductType = NewProductTypeClient(tx.config)
tx.Role = NewRoleClient(tx.config)
tx.ScanRecord = NewScanRecordClient(tx.config)
tx.SemiFlow = NewSemiFlowClient(tx.config)
tx.Station = NewStationClient(tx.config)
2026-08-28 15:06:01 +08:00
tx.StationProcess = NewStationProcessClient(tx.config)
tx.StepCriterion = NewStepCriterionClient(tx.config)
tx.StepData = NewStepDataClient(tx.config)
tx.TorqueRecord = NewTorqueRecordClient(tx.config)
tx.User = NewUserClient(tx.config)
tx.UserStation = NewUserStationClient(tx.config)
2026-08-28 15:06:01 +08:00
tx.WorkOrder = NewWorkOrderClient(tx.config)
tx.Workpiece = NewWorkpieceClient(tx.config)
tx.WorkpieceProcess = NewWorkpieceProcessClient(tx.config)
}
// txDriver wraps the given dialect.Tx with a nop dialect.Driver implementation.
// The idea is to support transactions without adding any extra code to the builders.
// When a builder calls to driver.Tx(), it gets the same dialect.Tx instance.
// Commit and Rollback are nop for the internal builders and the user must call one
// of them in order to commit or rollback the transaction.
//
// If a closed transaction is embedded in one of the generated entities, and the entity
// applies a query, for example: AssociationTrace.QueryXXX(), the query will be executed
// through the driver which created this transaction.
//
// Note that txDriver is not goroutine safe.
type txDriver struct {
// the driver we started the transaction from.
drv dialect.Driver
// tx is the underlying transaction.
tx dialect.Tx
// completion hooks.
mu sync.Mutex
onCommit []CommitHook
onRollback []RollbackHook
}
// newTx creates a new transactional driver.
func newTx(ctx context.Context, drv dialect.Driver) (*txDriver, error) {
tx, err := drv.Tx(ctx)
if err != nil {
return nil, err
}
return &txDriver{tx: tx, drv: drv}, nil
}
// Tx returns the transaction wrapper (txDriver) to avoid Commit or Rollback calls
// from the internal builders. Should be called only by the internal builders.
func (tx *txDriver) Tx(context.Context) (dialect.Tx, error) { return tx, nil }
// Dialect returns the dialect of the driver we started the transaction from.
func (tx *txDriver) Dialect() string { return tx.drv.Dialect() }
// Close is a nop close.
func (*txDriver) Close() error { return nil }
// Commit is a nop commit for the internal builders.
// User must call `Tx.Commit` in order to commit the transaction.
func (*txDriver) Commit() error { return nil }
// Rollback is a nop rollback for the internal builders.
// User must call `Tx.Rollback` in order to rollback the transaction.
func (*txDriver) Rollback() error { return nil }
// Exec calls tx.Exec.
func (tx *txDriver) Exec(ctx context.Context, query string, args, v any) error {
return tx.tx.Exec(ctx, query, args, v)
}
// Query calls tx.Query.
func (tx *txDriver) Query(ctx context.Context, query string, args, v any) error {
return tx.tx.Query(ctx, query, args, v)
}
var _ dialect.Driver = (*txDriver)(nil)
// ExecContext allows calling the underlying ExecContext method of the transaction if it is supported by it.
// See, database/sql#Tx.ExecContext for more information.
func (tx *txDriver) ExecContext(ctx context.Context, query string, args ...any) (stdsql.Result, error) {
ex, ok := tx.tx.(interface {
ExecContext(context.Context, string, ...any) (stdsql.Result, error)
})
if !ok {
return nil, fmt.Errorf("Tx.ExecContext is not supported")
}
return ex.ExecContext(ctx, query, args...)
}
// QueryContext allows calling the underlying QueryContext method of the transaction if it is supported by it.
// See, database/sql#Tx.QueryContext for more information.
func (tx *txDriver) QueryContext(ctx context.Context, query string, args ...any) (*stdsql.Rows, error) {
q, ok := tx.tx.(interface {
QueryContext(context.Context, string, ...any) (*stdsql.Rows, error)
})
if !ok {
return nil, fmt.Errorf("Tx.QueryContext is not supported")
}
return q.QueryContext(ctx, query, args...)
}