tx.go 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  1. // Code generated by ent, DO NOT EDIT.
  2. package ent
  3. import (
  4. "context"
  5. stdsql "database/sql"
  6. "fmt"
  7. "sync"
  8. "entgo.io/ent/dialect"
  9. )
  10. // Tx is a transactional client that is created by calling Client.Tx().
  11. type Tx struct {
  12. config
  13. // Agent is the client for interacting with the Agent builders.
  14. Agent *AgentClient
  15. // BatchMsg is the client for interacting with the BatchMsg builders.
  16. BatchMsg *BatchMsgClient
  17. // Contact is the client for interacting with the Contact builders.
  18. Contact *ContactClient
  19. // Employee is the client for interacting with the Employee builders.
  20. Employee *EmployeeClient
  21. // EmployeeConfig is the client for interacting with the EmployeeConfig builders.
  22. EmployeeConfig *EmployeeConfigClient
  23. // Label is the client for interacting with the Label builders.
  24. Label *LabelClient
  25. // LabelRelationship is the client for interacting with the LabelRelationship builders.
  26. LabelRelationship *LabelRelationshipClient
  27. // Message is the client for interacting with the Message builders.
  28. Message *MessageClient
  29. // MessageRecords is the client for interacting with the MessageRecords builders.
  30. MessageRecords *MessageRecordsClient
  31. // Msg is the client for interacting with the Msg builders.
  32. Msg *MsgClient
  33. // Server is the client for interacting with the Server builders.
  34. Server *ServerClient
  35. // SopNode is the client for interacting with the SopNode builders.
  36. SopNode *SopNodeClient
  37. // SopStage is the client for interacting with the SopStage builders.
  38. SopStage *SopStageClient
  39. // SopTask is the client for interacting with the SopTask builders.
  40. SopTask *SopTaskClient
  41. // Token is the client for interacting with the Token builders.
  42. Token *TokenClient
  43. // Tutorial is the client for interacting with the Tutorial builders.
  44. Tutorial *TutorialClient
  45. // WorkExperience is the client for interacting with the WorkExperience builders.
  46. WorkExperience *WorkExperienceClient
  47. // Wx is the client for interacting with the Wx builders.
  48. Wx *WxClient
  49. // lazily loaded.
  50. client *Client
  51. clientOnce sync.Once
  52. // ctx lives for the life of the transaction. It is
  53. // the same context used by the underlying connection.
  54. ctx context.Context
  55. }
  56. type (
  57. // Committer is the interface that wraps the Commit method.
  58. Committer interface {
  59. Commit(context.Context, *Tx) error
  60. }
  61. // The CommitFunc type is an adapter to allow the use of ordinary
  62. // function as a Committer. If f is a function with the appropriate
  63. // signature, CommitFunc(f) is a Committer that calls f.
  64. CommitFunc func(context.Context, *Tx) error
  65. // CommitHook defines the "commit middleware". A function that gets a Committer
  66. // and returns a Committer. For example:
  67. //
  68. // hook := func(next ent.Committer) ent.Committer {
  69. // return ent.CommitFunc(func(ctx context.Context, tx *ent.Tx) error {
  70. // // Do some stuff before.
  71. // if err := next.Commit(ctx, tx); err != nil {
  72. // return err
  73. // }
  74. // // Do some stuff after.
  75. // return nil
  76. // })
  77. // }
  78. //
  79. CommitHook func(Committer) Committer
  80. )
  81. // Commit calls f(ctx, m).
  82. func (f CommitFunc) Commit(ctx context.Context, tx *Tx) error {
  83. return f(ctx, tx)
  84. }
  85. // Commit commits the transaction.
  86. func (tx *Tx) Commit() error {
  87. txDriver := tx.config.driver.(*txDriver)
  88. var fn Committer = CommitFunc(func(context.Context, *Tx) error {
  89. return txDriver.tx.Commit()
  90. })
  91. txDriver.mu.Lock()
  92. hooks := append([]CommitHook(nil), txDriver.onCommit...)
  93. txDriver.mu.Unlock()
  94. for i := len(hooks) - 1; i >= 0; i-- {
  95. fn = hooks[i](fn)
  96. }
  97. return fn.Commit(tx.ctx, tx)
  98. }
  99. // OnCommit adds a hook to call on commit.
  100. func (tx *Tx) OnCommit(f CommitHook) {
  101. txDriver := tx.config.driver.(*txDriver)
  102. txDriver.mu.Lock()
  103. txDriver.onCommit = append(txDriver.onCommit, f)
  104. txDriver.mu.Unlock()
  105. }
  106. type (
  107. // Rollbacker is the interface that wraps the Rollback method.
  108. Rollbacker interface {
  109. Rollback(context.Context, *Tx) error
  110. }
  111. // The RollbackFunc type is an adapter to allow the use of ordinary
  112. // function as a Rollbacker. If f is a function with the appropriate
  113. // signature, RollbackFunc(f) is a Rollbacker that calls f.
  114. RollbackFunc func(context.Context, *Tx) error
  115. // RollbackHook defines the "rollback middleware". A function that gets a Rollbacker
  116. // and returns a Rollbacker. For example:
  117. //
  118. // hook := func(next ent.Rollbacker) ent.Rollbacker {
  119. // return ent.RollbackFunc(func(ctx context.Context, tx *ent.Tx) error {
  120. // // Do some stuff before.
  121. // if err := next.Rollback(ctx, tx); err != nil {
  122. // return err
  123. // }
  124. // // Do some stuff after.
  125. // return nil
  126. // })
  127. // }
  128. //
  129. RollbackHook func(Rollbacker) Rollbacker
  130. )
  131. // Rollback calls f(ctx, m).
  132. func (f RollbackFunc) Rollback(ctx context.Context, tx *Tx) error {
  133. return f(ctx, tx)
  134. }
  135. // Rollback rollbacks the transaction.
  136. func (tx *Tx) Rollback() error {
  137. txDriver := tx.config.driver.(*txDriver)
  138. var fn Rollbacker = RollbackFunc(func(context.Context, *Tx) error {
  139. return txDriver.tx.Rollback()
  140. })
  141. txDriver.mu.Lock()
  142. hooks := append([]RollbackHook(nil), txDriver.onRollback...)
  143. txDriver.mu.Unlock()
  144. for i := len(hooks) - 1; i >= 0; i-- {
  145. fn = hooks[i](fn)
  146. }
  147. return fn.Rollback(tx.ctx, tx)
  148. }
  149. // OnRollback adds a hook to call on rollback.
  150. func (tx *Tx) OnRollback(f RollbackHook) {
  151. txDriver := tx.config.driver.(*txDriver)
  152. txDriver.mu.Lock()
  153. txDriver.onRollback = append(txDriver.onRollback, f)
  154. txDriver.mu.Unlock()
  155. }
  156. // Client returns a Client that binds to current transaction.
  157. func (tx *Tx) Client() *Client {
  158. tx.clientOnce.Do(func() {
  159. tx.client = &Client{config: tx.config}
  160. tx.client.init()
  161. })
  162. return tx.client
  163. }
  164. func (tx *Tx) init() {
  165. tx.Agent = NewAgentClient(tx.config)
  166. tx.BatchMsg = NewBatchMsgClient(tx.config)
  167. tx.Contact = NewContactClient(tx.config)
  168. tx.Employee = NewEmployeeClient(tx.config)
  169. tx.EmployeeConfig = NewEmployeeConfigClient(tx.config)
  170. tx.Label = NewLabelClient(tx.config)
  171. tx.LabelRelationship = NewLabelRelationshipClient(tx.config)
  172. tx.Message = NewMessageClient(tx.config)
  173. tx.MessageRecords = NewMessageRecordsClient(tx.config)
  174. tx.Msg = NewMsgClient(tx.config)
  175. tx.Server = NewServerClient(tx.config)
  176. tx.SopNode = NewSopNodeClient(tx.config)
  177. tx.SopStage = NewSopStageClient(tx.config)
  178. tx.SopTask = NewSopTaskClient(tx.config)
  179. tx.Token = NewTokenClient(tx.config)
  180. tx.Tutorial = NewTutorialClient(tx.config)
  181. tx.WorkExperience = NewWorkExperienceClient(tx.config)
  182. tx.Wx = NewWxClient(tx.config)
  183. }
  184. // txDriver wraps the given dialect.Tx with a nop dialect.Driver implementation.
  185. // The idea is to support transactions without adding any extra code to the builders.
  186. // When a builder calls to driver.Tx(), it gets the same dialect.Tx instance.
  187. // Commit and Rollback are nop for the internal builders and the user must call one
  188. // of them in order to commit or rollback the transaction.
  189. //
  190. // If a closed transaction is embedded in one of the generated entities, and the entity
  191. // applies a query, for example: Agent.QueryXXX(), the query will be executed
  192. // through the driver which created this transaction.
  193. //
  194. // Note that txDriver is not goroutine safe.
  195. type txDriver struct {
  196. // the driver we started the transaction from.
  197. drv dialect.Driver
  198. // tx is the underlying transaction.
  199. tx dialect.Tx
  200. // completion hooks.
  201. mu sync.Mutex
  202. onCommit []CommitHook
  203. onRollback []RollbackHook
  204. }
  205. // newTx creates a new transactional driver.
  206. func newTx(ctx context.Context, drv dialect.Driver) (*txDriver, error) {
  207. tx, err := drv.Tx(ctx)
  208. if err != nil {
  209. return nil, err
  210. }
  211. return &txDriver{tx: tx, drv: drv}, nil
  212. }
  213. // Tx returns the transaction wrapper (txDriver) to avoid Commit or Rollback calls
  214. // from the internal builders. Should be called only by the internal builders.
  215. func (tx *txDriver) Tx(context.Context) (dialect.Tx, error) { return tx, nil }
  216. // Dialect returns the dialect of the driver we started the transaction from.
  217. func (tx *txDriver) Dialect() string { return tx.drv.Dialect() }
  218. // Close is a nop close.
  219. func (*txDriver) Close() error { return nil }
  220. // Commit is a nop commit for the internal builders.
  221. // User must call `Tx.Commit` in order to commit the transaction.
  222. func (*txDriver) Commit() error { return nil }
  223. // Rollback is a nop rollback for the internal builders.
  224. // User must call `Tx.Rollback` in order to rollback the transaction.
  225. func (*txDriver) Rollback() error { return nil }
  226. // Exec calls tx.Exec.
  227. func (tx *txDriver) Exec(ctx context.Context, query string, args, v any) error {
  228. return tx.tx.Exec(ctx, query, args, v)
  229. }
  230. // Query calls tx.Query.
  231. func (tx *txDriver) Query(ctx context.Context, query string, args, v any) error {
  232. return tx.tx.Query(ctx, query, args, v)
  233. }
  234. var _ dialect.Driver = (*txDriver)(nil)
  235. // ExecContext allows calling the underlying ExecContext method of the transaction if it is supported by it.
  236. // See, database/sql#Tx.ExecContext for more information.
  237. func (tx *txDriver) ExecContext(ctx context.Context, query string, args ...any) (stdsql.Result, error) {
  238. ex, ok := tx.tx.(interface {
  239. ExecContext(context.Context, string, ...any) (stdsql.Result, error)
  240. })
  241. if !ok {
  242. return nil, fmt.Errorf("Tx.ExecContext is not supported")
  243. }
  244. return ex.ExecContext(ctx, query, args...)
  245. }
  246. // QueryContext allows calling the underlying QueryContext method of the transaction if it is supported by it.
  247. // See, database/sql#Tx.QueryContext for more information.
  248. func (tx *txDriver) QueryContext(ctx context.Context, query string, args ...any) (*stdsql.Rows, error) {
  249. q, ok := tx.tx.(interface {
  250. QueryContext(context.Context, string, ...any) (*stdsql.Rows, error)
  251. })
  252. if !ok {
  253. return nil, fmt.Errorf("Tx.QueryContext is not supported")
  254. }
  255. return q.QueryContext(ctx, query, args...)
  256. }