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

中间件编程

开发平台:

Java

  1. /*
  2.  * JBoss, Home of Professional Open Source
  3.  * Copyright 2009, 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. #include "TxManager.h"
  19. #include "OrbManagement.h"
  20. #include "ThreadLocalStorage.h"
  21. using namespace atmibroker::tx;
  22. log4cxx::LoggerPtr txmclogger(log4cxx::Logger::getLogger("TxLogManagerc"));
  23. /* Blacktie tx interface additions */
  24. int txx_rollback_only() {
  25. FTRACE(txmclogger, "ENTER");
  26. return (getSpecific(TSS_KEY) == NULL ? TX_OK : TxManager::get_instance()->rollback_only());
  27. }
  28. void txx_stop(void) {
  29. FTRACE(txmclogger, "ENTER");
  30. TxManager::discard_instance();
  31. FTRACE(txmclogger, "<");
  32. }
  33. int txx_associate_serialized(char* ctrlIOR, long ttl) {
  34. FTRACE(txmclogger, "ENTER" << ctrlIOR);
  35. CORBA::Object_ptr p =
  36. TxManager::get_instance()->getOrb()->string_to_object(ctrlIOR);
  37. LOG4CXX_DEBUG(txmclogger, (char*) "tx_resume IOR=" << ctrlIOR << " ptr="
  38. << p);
  39. if (!CORBA::is_nil(p)) {
  40. CosTransactions::Control_ptr cptr =
  41. CosTransactions::Control::_narrow(p);
  42. CORBA::release(p); // dispose of it now that we have narrowed the object reference
  43. return TxManager::get_instance()->tx_resume(cptr, ttl, TMJOIN);
  44. } else {
  45. LOG4CXX_WARN(txmclogger, (char*) "tx_resume: invalid control IOR: "
  46. << ctrlIOR);
  47. }
  48. return TMER_INVAL;
  49. }
  50. void *txx_unbind(bool rollback) {
  51. FTRACE(txmclogger, "ENTER rollback=" << rollback);
  52. if (getSpecific(TSS_KEY) == NULL)
  53. return NULL;
  54. if (rollback)
  55. (void) TxManager::get_instance()->rollback_only();
  56. return (void *) TxManager::get_instance()->tx_suspend((TMSUSPEND | TMMIGRATE), TMSUCCESS);
  57. }
  58. void *txx_get_control() {
  59. FTRACE(txmclogger, "ENTER");
  60. void *ctrl = (void *) TxManager::get_ots_control(NULL);
  61. FTRACE(txmclogger, "< with control " << ctrl);
  62. return ctrl;
  63. }
  64. void txx_release_control(void *control) {
  65. FTRACE(txmclogger, "ENTER");
  66. CosTransactions::Control_ptr cp = (CosTransactions::Control_ptr) control;
  67. try {
  68. if (!CORBA::is_nil(cp))
  69. CORBA::release(cp);
  70. else
  71. FTRACE(txmclogger, "< nothing to release");
  72. } catch (...) {
  73. }
  74. }
  75. char* txx_serialize(long* ttl) {
  76. FTRACE(txmclogger, "ENTER");
  77. char* toReturn = NULL;
  78. CosTransactions::Control_ptr ctrl = TxManager::get_ots_control(ttl);
  79. if (!CORBA::is_nil(ctrl)) {
  80. CORBA::ORB_ptr orb = TxManager::get_instance()->getOrb();
  81. CORBA::String_var cs = orb->object_to_string(ctrl);
  82. toReturn = ACE_OS::strdup(cs);
  83. }
  84. CORBA::release(ctrl);
  85. FTRACE(txmclogger, "< No tx ior");
  86. return toReturn;
  87. }
  88. int txx_suspend(int cd, int (*invalidate)(int cd)) {
  89. FTRACE(txmclogger, "ENTER");
  90. return TxManager::get_instance()->suspend(cd, invalidate);
  91. }
  92. int txx_resume(int cd) {
  93. FTRACE(txmclogger, "ENTER");
  94. return TxManager::get_instance()->resume(cd);
  95. }
  96. bool txx_isCdTransactional(int cd) {
  97. return TxManager::get_instance()->isCdTransactional(cd);
  98. }
  99. int txx_ttl(long* ttl) {
  100. TxControl *tx = (TxControl*) getSpecific(TSS_KEY);
  101. LOG4CXX_TRACE(txmclogger, (char*) "txx_ttl tx=" << tx);
  102. if (tx == NULL)
  103. return -1; /* indicates no txn is bound to the callers thread */
  104. *ttl = tx->ttl();
  105. LOG4CXX_TRACE(txmclogger, (char*) "tx->ttl()=" << *ttl);
  106. if (*ttl < 0l)
  107. return 1; /* indicates the txn is not subject to timeouts */
  108. return 0; /* indicates that *ttl corresponds to the time left for the txn to complete */
  109. }