tx.go 14 KB

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