tx.go 9.2 KB

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