tx.go 12 KB

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