xa.h
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:6k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1998-2002
  5.  * Sleepycat Software.  All rights reserved.
  6.  *
  7.  * $Id: xa.h,v 11.5 2002/01/11 15:52:30 bostic Exp $
  8.  */
  9. /*
  10.  * Start of xa.h header
  11.  *
  12.  * Define a symbol to prevent multiple inclusions of this header file
  13.  */
  14. #ifndef XA_H
  15. #define XA_H
  16. /*
  17.  * Transaction branch identification: XID and NULLXID:
  18.  */
  19. #define XIDDATASIZE 128 /* size in bytes */
  20. #define MAXGTRIDSIZE  64 /* maximum size in bytes of gtrid */
  21. #define MAXBQUALSIZE  64 /* maximum size in bytes of bqual */
  22. struct xid_t {
  23. long formatID; /* format identifier */
  24. long gtrid_length; /* value from 1 through 64 */
  25. long bqual_length; /* value from 1 through 64 */
  26. char data[XIDDATASIZE];
  27. };
  28. typedef struct xid_t XID;
  29. /*
  30.  * A value of -1 in formatID means that the XID is null.
  31.  */
  32. /*
  33.  * Declarations of routines by which RMs call TMs:
  34.  */
  35. extern int ax_reg __P((int, XID *, long));
  36. extern int ax_unreg __P((int, long));
  37. /*
  38.  * XA Switch Data Structure
  39.  */
  40. #define RMNAMESZ 32 /* length of resource manager name, */
  41. /* including the null terminator */
  42. #define MAXINFOSIZE 256 /* maximum size in bytes of xa_info */
  43. /* strings, including the null
  44. terminator */
  45. struct xa_switch_t {
  46. char name[RMNAMESZ]; /* name of resource manager */
  47. long flags; /* resource manager specific options */
  48. long version; /* must be 0 */
  49. int (*xa_open_entry) /* xa_open function pointer */
  50.     __P((char *, int, long));
  51. int (*xa_close_entry) /* xa_close function pointer */
  52.     __P((char *, int, long));
  53. int (*xa_start_entry) /* xa_start function pointer */
  54.     __P((XID *, int, long));
  55. int (*xa_end_entry) /* xa_end function pointer */
  56.     __P((XID *, int, long));
  57. int (*xa_rollback_entry) /* xa_rollback function pointer */
  58.     __P((XID *, int, long));
  59. int (*xa_prepare_entry) /* xa_prepare function pointer */
  60.     __P((XID *, int, long));
  61. int (*xa_commit_entry) /* xa_commit function pointer */
  62.     __P((XID *, int, long));
  63. int (*xa_recover_entry) /* xa_recover function pointer */
  64.     __P((XID *, long, int, long));
  65. int (*xa_forget_entry) /* xa_forget function pointer */
  66.     __P((XID *, int, long));
  67. int (*xa_complete_entry) /* xa_complete function pointer */
  68.     __P((int *, int *, int, long));
  69. };
  70. /*
  71.  * Flag definitions for the RM switch
  72.  */
  73. #define TMNOFLAGS 0x00000000L /* no resource manager features
  74. selected */
  75. #define TMREGISTER 0x00000001L /* resource manager dynamically
  76. registers */
  77. #define TMNOMIGRATE 0x00000002L /* resource manager does not support
  78. association migration */
  79. #define TMUSEASYNC 0x00000004L /* resource manager supports
  80. asynchronous operations */
  81. /*
  82.  * Flag definitions for xa_ and ax_ routines
  83.  */
  84. /* use TMNOFLAGGS, defined above, when not specifying other flags */
  85. #define TMASYNC 0x80000000L /* perform routine asynchronously */
  86. #define TMONEPHASE 0x40000000L /* caller is using one-phase commit
  87. optimisation */
  88. #define TMFAIL 0x20000000L /* dissociates caller and marks
  89. transaction branch rollback-only */
  90. #define TMNOWAIT 0x10000000L /* return if blocking condition
  91. exists */
  92. #define TMRESUME 0x08000000L /* caller is resuming association with
  93. suspended transaction branch */
  94. #define TMSUCCESS 0x04000000L /* dissociate caller from transaction
  95. branch */
  96. #define TMSUSPEND 0x02000000L /* caller is suspending, not ending,
  97. association */
  98. #define TMSTARTRSCAN 0x01000000L /* start a recovery scan */
  99. #define TMENDRSCAN 0x00800000L /* end a recovery scan */
  100. #define TMMULTIPLE 0x00400000L /* wait for any asynchronous
  101. operation */
  102. #define TMJOIN 0x00200000L /* caller is joining existing
  103. transaction branch */
  104. #define TMMIGRATE 0x00100000L /* caller intends to perform
  105. migration */
  106. /*
  107.  * ax_() return codes (transaction manager reports to resource manager)
  108.  */
  109. #define TM_JOIN 2 /* caller is joining existing
  110. transaction branch */
  111. #define TM_RESUME 1 /* caller is resuming association with
  112. suspended transaction branch */
  113. #define TM_OK 0 /* normal execution */
  114. #define TMER_TMERR -1 /* an error occurred in the transaction
  115. manager */
  116. #define TMER_INVAL -2 /* invalid arguments were given */
  117. #define TMER_PROTO -3 /* routine invoked in an improper
  118. context */
  119. /*
  120.  * xa_() return codes (resource manager reports to transaction manager)
  121.  */
  122. #define XA_RBBASE 100 /* The inclusive lower bound of the
  123. rollback codes */
  124. #define XA_RBROLLBACK XA_RBBASE /* The rollback was caused by an
  125. unspecified reason */
  126. #define XA_RBCOMMFAIL XA_RBBASE+1 /* The rollback was caused by a
  127. communication failure */
  128. #define XA_RBDEADLOCK XA_RBBASE+2 /* A deadlock was detected */
  129. #define XA_RBINTEGRITY XA_RBBASE+3 /* A condition that violates the
  130. integrity of the resources was
  131. detected */
  132. #define XA_RBOTHER XA_RBBASE+4 /* The resource manager rolled back the
  133. transaction branch for a reason not
  134. on this list */
  135. #define XA_RBPROTO XA_RBBASE+5 /* A protocol error occurred in the
  136. resource manager */
  137. #define XA_RBTIMEOUT XA_RBBASE+6 /* A transaction branch took too long */
  138. #define XA_RBTRANSIENT XA_RBBASE+7 /* May retry the transaction branch */
  139. #define XA_RBEND XA_RBTRANSIENT /* The inclusive upper bound of the
  140. rollback codes */
  141. #define XA_NOMIGRATE 9 /* resumption must occur where
  142. suspension occurred */
  143. #define XA_HEURHAZ 8 /* the transaction branch may have
  144. been heuristically completed */
  145. #define XA_HEURCOM 7 /* the transaction branch has been
  146. heuristically committed */
  147. #define XA_HEURRB 6 /* the transaction branch has been
  148. heuristically rolled back */
  149. #define XA_HEURMIX 5 /* the transaction branch has been
  150. heuristically committed and rolled
  151. back */
  152. #define XA_RETRY 4 /* routine returned with no effect and
  153. may be re-issued */
  154. #define XA_RDONLY 3 /* the transaction branch was read-only
  155. and has been committed */
  156. #define XA_OK 0 /* normal execution */
  157. #define XAER_ASYNC -2 /* asynchronous operation already
  158. outstanding */
  159. #define XAER_RMERR -3 /* a resource manager error occurred in
  160.  the transaction branch */
  161. #define XAER_NOTA -4 /* the XID is not valid */
  162. #define XAER_INVAL -5 /* invalid arguments were given */
  163. #define XAER_PROTO -6 /* routine invoked in an improper
  164. context */
  165. #define XAER_RMFAIL -7 /* resource manager unavailable */
  166. #define XAER_DUPID -8 /* the XID already exists */
  167. #define XAER_OUTSIDE -9 /* resource manager doing work outside
  168. transaction */
  169. #endif /* ifndef XA_H */
  170. /*
  171.  * End of xa.h header
  172.  */