xa.h
上传用户:xfwatch
上传日期:2020-12-14
资源大小:872k
文件大小:7k
源码类别:

中间件编程

开发平台:

Java

  1. /*
  2.  * JBoss, Home of Professional Open Source
  3.  * Copyright 2008, Red Hat, Inc., and others contributors as indicated
  4.  * by the @authors tag. All rights reserved.
  5.  * See the copyright.txt in the distribution for a
  6.  * full listing of individual contributors.
  7.  * This copyrighted material is made available to anyone wishing to use,
  8.  * modify, copy, or redistribute it subject to the terms and conditions
  9.  * of the GNU Lesser General Public License, v. 2.1.
  10.  * This program is distributed in the hope that it will be useful, but WITHOUT A
  11.  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  12.  * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
  13.  * You should have received a copy of the GNU Lesser General Public License,
  14.  * v.2.1 along with this distribution; if not, write to the Free Software
  15.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  16.  * MA  02110-1301, USA.
  17.  */
  18. #ifndef XA_H
  19. #define XA_H
  20. #include "utilitiesMacro.h"
  21. #define XIDDATASIZE     128             /* size in bytes */
  22. struct UTILITIES_DLL 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 UTILITIES_DLL xid_t XID;
  29. /*
  30.  * XA Switch Data Structure
  31.  */
  32. #define RMNAMESZ 32 /* length of resource manager name, */
  33. /* including the null terminator */
  34. struct UTILITIES_DLL xa_switch_t {
  35. char name[RMNAMESZ]; /* name of resource manager */
  36. long flags; /* resource manager specific options */
  37. long version; /* must be 0 */
  38. int (*xa_open_entry) /* xa_open function pointer */
  39. (char *, int, long);
  40. int (*xa_close_entry) /* xa_close function pointer */
  41. (char *, int, long);
  42. int (*xa_start_entry) /* xa_start function pointer */
  43. (XID *, int, long);
  44. int (*xa_end_entry) /* xa_end function pointer */
  45. (XID *, int, long);
  46. int (*xa_rollback_entry) /* xa_rollback function pointer */
  47. (XID *, int, long);
  48. int (*xa_prepare_entry) /* xa_prepare function pointer */
  49. (XID *, int, long);
  50. int (*xa_commit_entry) /* xa_commit function pointer */
  51. (XID *, int, long);
  52. int (*xa_recover_entry) /* xa_recover function pointer */
  53. (XID *, long, int, long);
  54. int (*xa_forget_entry) /* xa_forget function pointer */
  55. (XID *, int, long);
  56. int (*xa_complete_entry) /* xa_complete function pointer */
  57. (int *, int *, int, long);
  58. };
  59. //namespace XA
  60. //{
  61. //typedef xa_switch_t XASwitch;
  62. //}
  63. /*
  64.  * XA Switch Data Structure
  65.  */
  66. #define MAXINFOSIZE 256 /* maximum size in bytes of xa_info strings, */
  67. /* including the null terminator */
  68. /*
  69.  * Flag definition for the RM switch
  70.  */
  71. #define TMNOFLAGS 0x00000000L /* no resource manager features
  72.    selected */
  73. #define TMREGISTER 0x00000001L /* resource manager dynamically
  74.    registers */
  75. #define TMNOMIGRATE 0x00000002L /* resource manager does not support
  76.    association migration */
  77. #define TMUSEASYNC 0x00000004L /* resource manager supports
  78.    asynchronous operations */
  79. /*
  80.  * Flag definitions for xa_ and ax_ routines
  81.  */
  82. /* Use TMNOFLAGS, defined above, when not specifying other flags */
  83. #define TMASYNC 0x80000000L /* perform routine asynchronously */
  84. #define TMONEPHASE 0x40000000L /* caller is using one-phase commit
  85. optimisation */
  86. #define TMFAIL 0x20000000L /* dissociates caller and marks
  87.    transaction branch rollback-only */
  88. #define TMNOWAIT 0x10000000L /* return if blocking condition
  89.    exists */
  90. #define TMRESUME 0x08000000L /* caller is resuming association
  91.    with suspended transaction branch */
  92. #define TMSUCCESS 0x04000000L /* dissociate caller from transaction
  93. branch */
  94. #define TMSUSPEND 0x02000000L /* caller is suspending, not ending,
  95.    association */
  96. #define TMSTARTRSCAN 0x01000000L /* start a recovery scan */
  97. #define TMENDRSCAN 0x00800000L /* end a recovery scan */
  98. #define TMMULTIPLE 0x00400000L /* wait for any asynchronous
  99.    operation */
  100. #define TMJOIN 0x00200000L /* caller is joining existing
  101. transaction branch */
  102. #define TMMIGRATE 0x00100000L /* caller intends to perform
  103. migration */
  104. /*
  105.  * ax_() return codes (transaction manager reports to resource manager)
  106.  */
  107. #define TM_JOIN 2 /* caller is joining existing transaction
  108. branch */
  109. #define TM_RESUME 1 /* caller is resuming association with
  110.    suspended transaction branch */
  111. #define TM_OK 0         /* normal execution */
  112. #define TMER_TMERR -1 /* an error occurred in the transaction
  113. manager */
  114. #define TMER_INVAL -2 /* invalid arguments were given */
  115. #define TMER_PROTO -3 /* routine invoked in an improper context */
  116. /*
  117.  * xa_() return codes (resource manager reports to transaction manager)
  118.  */
  119. #define XA_RBBASE 100 /* The inclusive lower bound of the
  120.    rollback codes */
  121. #define XA_RBROLLBACK XA_RBBASE /* The rollback was caused by an
  122.    unspecified reason */
  123. #define XA_RBCOMMFAIL XA_RBBASE+1 /* The rollback was caused by a
  124.    communication failure */
  125. #define XA_RBDEADLOCK XA_RBBASE+2 /* A deadlock was detected */
  126. #define XA_RBINTEGRITY XA_RBBASE+3 /* A condition that violates the
  127.    integrity of the resources was
  128.    detected */
  129. #define XA_RBOTHER XA_RBBASE+4 /* The resource manager rolled back the
  130.    transaction for a reason not on this
  131.    list */
  132. #define XA_RBPROTO XA_RBBASE+5 /* A protocal error occurred in the
  133.    resource manager */
  134. #define XA_RBTIMEOUT XA_RBBASE+6 /* A transaction branch took too long*/
  135. #define XA_RBTRANSIENT XA_RBBASE+7 /* May retry the transaction branch */
  136. #define XA_RBEND XA_RBTRANSIENT /* The inclusive upper bound of the
  137.    rollback codes */
  138. #define XA_NOMIGRATE 9 /* resumption must occur where
  139.    suspension occurred */
  140. #define XA_HEURHAZ 8 /* the transaction branch may have been
  141.    heuristically completed */
  142. #define XA_HEURCOM 7 /* the transaction branch has been
  143.    heuristically comitted */
  144. #define XA_HEURRB 6 /* the transaction branch has been
  145.    heuristically rolled back */
  146. #define XA_HEURMIX 5 /* the transaction branch has been
  147.    heuristically committed and rolled
  148.    back */
  149. #define XA_RETRY 4 /* routine returned with no effect
  150.    and may be re-issued */
  151. #define XA_RDONLY 3 /* the transaction was read-only
  152.    and has been committed */
  153. #define XA_OK 0 /* normal execution */
  154. #define XAER_ASYNC -2 /* asynchronous operation already
  155.    outstanding */
  156. #define XAER_RMERR -3 /* a resource manager error occurred
  157. in the transaction branch */
  158. #define XAER_NOTA -4 /* the XID is not valid */
  159. #define XAER_INVAL -5 /* invalid arguments were given */
  160. #define XAER_PROTO -6 /* routine invoked in an improper
  161.    context */
  162. #define XAER_RMFAIL -7 /* resource manager unavailable */
  163. #define XAER_DUPID -8 /* the XID already exists */
  164. #define XAER_OUTSIDE -9 /* resource manager doing work */
  165. /* outside global transaction */
  166. #endif  /*!XA_H*/