tx.go 11 KB

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