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

中间件编程

开发平台:

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. #include <string.h>
  19. #include "userlogc.h"
  20. #include "xatmi.h"
  21. #include "tx.h"
  22. #include "Sleeper.h"
  23. extern void test_tpcall_TPETIME_service(TPSVCINFO *svcinfo) {
  24. ::sleeper(8);
  25. int len = 60;
  26. char *toReturn = ::tpalloc((char*) "X_OCTET", NULL, len);
  27. strcpy(toReturn, "test_tpcall_TPETIME_service");
  28. tpreturn(TPSUCCESS, 0, toReturn, len, 0);
  29. }
  30. extern void test_tpcall_TPEOTYPE_service(TPSVCINFO *svcinfo) {
  31. userlogc((char*) "test_tpcall_TPEOTYPE_service");
  32. char *toReturn = ::tpalloc((char*) "X_C_TYPE", (char*) "test", 0);
  33. strcpy(toReturn, "TPEOTYPE");
  34. tpreturn(TPSUCCESS, 0, toReturn, 0, 0);
  35. }
  36. extern void test_tpcall_TPESVCFAIL_service(TPSVCINFO *svcinfo) {
  37. userlogc((char*) "test_tpcall_TPESVCFAIL_service");
  38. int len = 60;
  39. char *toReturn = ::tpalloc((char*) "X_OCTET", NULL, len);
  40. strcpy(toReturn, "test_tpcall_TPESVCFAIL_service");
  41. tpreturn(TPFAIL, 0, toReturn, len, 0);
  42. }
  43. extern void test_tprecv_TPEV_DISCONIMM_service(TPSVCINFO *svcinfo) {
  44. userlogc((char*) "test_tprecv_TPEV_DISCONIMM_service");
  45. long rcvlen = 60;
  46. long revent = 0;
  47. char* rcvbuf = (char *) tpalloc((char*) "X_OCTET", NULL, rcvlen);
  48. int status = ::tprecv(svcinfo->cd, (char **) &rcvbuf, &rcvlen, (long) 0,
  49. &revent);
  50. TXINFO txinfo;
  51. int inTx = ::tx_info(&txinfo);
  52. bool rbkOnly = (txinfo.transaction_state == TX_ROLLBACK_ONLY);
  53. userlogc((char*) "status=%d, inTx=%d, rbkOnly=%d", status, inTx, rbkOnly);
  54. }
  55. extern void test_tprecv_TPEV_SVCFAIL_service(TPSVCINFO *svcinfo) {
  56. userlogc((char*) "test_tprecv_TPEV_SVCFAIL_service");
  57. int len = 60;
  58. char *toReturn = ::tpalloc((char*) "X_OCTET", NULL, len);
  59. strcpy(toReturn, "test_tprecv_TPEV_SVCFAIL_service");
  60. tpreturn(TPFAIL, 0, toReturn, len, 0);
  61. }
  62. extern void test_no_tpreturn_service(TPSVCINFO *svcinfo) {
  63. userlogc((char*) "test_no_tpreturn_service");
  64. }