hugoLockRecords.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  _percentVal = 1;
  26.   int _lockTime = 1000;
  27.   const char* _tabname = NULL;
  28.   int _help = 0;
  29.   
  30.   struct getargs args[] = {
  31.     { "loops", 'l', arg_integer, &_loops, "number of times to run this program(0=infinite loop)", "loops" },
  32.     { "records", 'r', arg_integer, &_records, "Number of records", "recs" },
  33.     { "locktime", 't', arg_integer, &_lockTime, "Time in ms to hold lock(default=1000)", "ms" },
  34.     { "percent", 'p', arg_integer, &_percentVal, "Percent of records to lock(default=1%)", "%" },
  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 lock p% of the records in the table for x millisecondsn"
  42.     "then it will lock the next 1% and continue to do so until it has locked n"
  43.     "all records in the tablen";
  44.   
  45.   if(getarg(args, num_args, argc, argv, &optind) ||
  46.      argv[optind] == NULL || _records == 0 || _help) {
  47.     arg_printusage(args, num_args, argv[0], desc);
  48.     return NDBT_ProgramExit(NDBT_WRONGARGS);
  49.   }
  50.   _tabname = argv[optind];
  51.   // Connect to Ndb
  52.   Ndb MyNdb( "TEST_DB" );
  53.   if(MyNdb.init() != 0){
  54.     ERR(MyNdb.getNdbError());
  55.     return NDBT_ProgramExit(NDBT_FAILED);
  56.   }
  57.   while(MyNdb.waitUntilReady() != 0)
  58.     ndbout << "Waiting for ndb to become ready..." << endl;
  59.    
  60.   // Check if table exists in db
  61.   const NdbDictionary::Table * pTab = NDBT_Table::discoverTableFromDb(&MyNdb, _tabname);
  62.   if(pTab == NULL){
  63.     ndbout << " Table " << _tabname << " does not exist!" << endl;
  64.     return NDBT_ProgramExit(NDBT_WRONGARGS);
  65.   }
  66.   HugoTransactions hugoTrans(*pTab);
  67.   int i = 0;
  68.   while (i<_loops || _loops==0) {
  69.     ndbout << i << ": ";
  70.     if (hugoTrans.lockRecords(&MyNdb, _records, _percentVal, _lockTime) != 0){
  71.       return NDBT_ProgramExit(NDBT_FAILED);
  72.     }
  73.     i++;
  74.   }
  75.   return NDBT_ProgramExit(NDBT_OK);
  76. }