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