hugoPkRead.cpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:3k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. #include <ndb_global.h>
  14. #include <NdbOut.hpp>
  15. #include <NdbApi.hpp>
  16. #include <NdbMain.h>
  17. #include <NDBT.hpp> 
  18. #include <NdbSleep.h>
  19. #include <getarg.h>
  20. #include <HugoTransactions.hpp>
  21. int main(int argc, const char** argv){
  22.   ndb_init();
  23.   int _records = 0;
  24.   int _loops = 1;
  25.   int _abort = 0;
  26.   int _batch = 1;
  27.   const char* _tabname = NULL;
  28.   int _help = 0;
  29.   
  30.   struct getargs args[] = {
  31.     { "aborts", 'a', arg_integer, &_abort, "percent of transactions that are aborted", "abort%" },
  32.     { "loops", 'l', arg_integer, &_loops, "number of times to run this program(0=infinite loop)", "loops" },
  33.     { "batch", 'b', arg_integer, &_batch, "batch value(not 0)", "batch" },
  34.     { "records", 'r', arg_integer, &_records, "Number of records", "records" },
  35.     { "usage", '?', arg_flag, &_help, "Print help", "" }
  36.   };
  37.   int num_args = sizeof(args) / sizeof(args[0]);
  38.   int optind = 0;
  39.   char desc[] = 
  40.     "tabnamen"
  41.     "This program will read 'r' records from one table in Ndb. n"
  42.     "It will verify every column read by calculating the expected value.n";
  43.   
  44.   if(getarg(args, num_args, argc, argv, &optind) ||
  45.      argv[optind] == NULL || _records == 0 || _batch == 0 || _help) {
  46.     arg_printusage(args, num_args, argv[0], desc);
  47.     return NDBT_ProgramExit(NDBT_WRONGARGS);
  48.   }
  49.   _tabname = argv[optind];
  50.   // Connect to Ndb
  51.   Ndb MyNdb( "TEST_DB" );
  52.   if(MyNdb.init() != 0){
  53.     ERR(MyNdb.getNdbError());
  54.     return NDBT_ProgramExit(NDBT_FAILED);
  55.   }
  56.   while(MyNdb.waitUntilReady() != 0)
  57.     ndbout << "Waiting for ndb to become ready..." << endl;
  58.    
  59.   // Check if table exists in db
  60.   const NdbDictionary::Table * pTab = NDBT_Table::discoverTableFromDb(&MyNdb, _tabname);
  61.   if(pTab == NULL){
  62.     ndbout << " Table " << _tabname << " does not exist!" << endl;
  63.     return NDBT_ProgramExit(NDBT_WRONGARGS);
  64.   }
  65.   HugoTransactions hugoTrans(*pTab);
  66.   int i = 0;
  67.   while (i<_loops || _loops==0) {
  68.     ndbout << i << ": ";
  69.     if (hugoTrans.pkReadRecords(&MyNdb, _records, _batch) != 0){
  70.       return NDBT_ProgramExit(NDBT_FAILED);
  71.     }
  72.     i++;
  73.   }
  74.   return NDBT_ProgramExit(NDBT_OK);
  75. }