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

中间件编程

开发平台:

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. #ifdef UNITTEST
  19. #include "TestTxRMTPCall.h"
  20. extern "C" {
  21. #include "tx/request.h"
  22. }
  23. #else
  24. #include "tx/request.h"
  25. #endif
  26. extern int run_tests(product_t *prod_array);
  27. static product_t *get_product(const char *pid) {
  28.     int id = atoi((char *) pid);
  29.     product_t *p;
  30.     for (p = products; p->id != -1; p++)
  31.         if (p->id == id)
  32.             return p;
  33.     return 0;
  34. }
  35. int main(int argc, char **argv)
  36. {
  37.     product_t prods[8];
  38. int rv = -1;
  39. int i;
  40.     userlogc_debug( "TxLog %s:%d", __FUNCTION__, __LINE__);
  41.     if (argc > 1) {
  42.         for (i = 1; i < argc; i++) {
  43.             product_t *p = get_product(argv[i]);
  44.             if (p == NULL)
  45. return fatal("Requested db is not supportedn");
  46.             prods[i - 1] = *p;
  47.         }
  48.         prods[i - 1].id = -1;
  49.         prods[i - 1].access = 0;
  50.         prods[i - 1].xaflags = 0;
  51.     } else {
  52.         for (i = 0; products[i].id != -1; i++)
  53.             prods[i] = products[i];
  54. prods[i] = products[i];
  55.     }
  56. for (i = 0; prods[i].id != -1; i++) {
  57. userlogc_debug("TxLog INFO: %s (%s) id=%d flags=0x%x",
  58.             prods[i].pname, prods[i].dbname, prods[i].id, prods[i].xaflags());
  59.     }
  60. rv = run_tests(prods);
  61. userlogc("TxLog Test %s (%d)n", (rv ? "failed" : "passed"), rv);
  62. return rv;
  63. }