⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 testbasic.cpp

📁 mysql-5.0.22.tar.gz源码包
💻 CPP
📖 第 1 页 / 共 3 页
字号:
/* Copyright (C) 2003 MySQL AB   This program is free software; you can redistribute it and/or modify   it under the terms of the GNU General Public License as published by   the Free Software Foundation; either version 2 of the License, or   (at your option) any later version.   This program is distributed in the hope that it will be useful,   but WITHOUT ANY WARRANTY; without even the implied warranty of   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the   GNU General Public License for more details.   You should have received a copy of the GNU General Public License   along with this program; if not, write to the Free Software   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */#include <NDBT_Test.hpp>#include <NDBT_ReturnCodes.h>#include <HugoTransactions.hpp>#include <UtilTransactions.hpp>#include <NdbRestarter.hpp>#define GETNDB(ps) ((NDBT_NdbApiStep*)ps)->getNdb()/** * TODO  *  dirtyWrite, write, dirtyUpdate *  delete should be visible to same transaction *   */int runLoadTable2(NDBT_Context* ctx, NDBT_Step* step){  int records = ctx->getNumRecords();  HugoTransactions hugoTrans(*ctx->getTab());  if (hugoTrans.loadTable(GETNDB(step), records, 512, false, 0, true) != 0){    return NDBT_FAILED;  }  return NDBT_OK;}int runLoadTable(NDBT_Context* ctx, NDBT_Step* step){  int records = ctx->getNumRecords();  HugoTransactions hugoTrans(*ctx->getTab());  if (hugoTrans.loadTable(GETNDB(step), records) != 0){    return NDBT_FAILED;  }  return NDBT_OK;}int runInsert(NDBT_Context* ctx, NDBT_Step* step){  int records = ctx->getNumRecords();  HugoTransactions hugoTrans(*ctx->getTab());  // Insert records, dont allow any   // errors(except temporary) while inserting  if (hugoTrans.loadTable(GETNDB(step), records, 1, false) != 0){    return NDBT_FAILED;  }  return NDBT_OK;}int runInsertTwice(NDBT_Context* ctx, NDBT_Step* step){  int records = ctx->getNumRecords();  HugoTransactions hugoTrans(*ctx->getTab());  // Insert records, expect primary key violation 630  if (hugoTrans.loadTable(GETNDB(step), records, 1, false) != 630){    return NDBT_FAILED;  }  return NDBT_OK;}int runVerifyInsert(NDBT_Context* ctx, NDBT_Step* step){  int records = ctx->getNumRecords();    HugoTransactions hugoTrans(*ctx->getTab());  if (hugoTrans.pkDelRecords(GETNDB(step),  records, 1, false) != 0){    return NDBT_FAILED;  }  return NDBT_OK;}int runInsertUntilStopped(NDBT_Context* ctx, NDBT_Step* step){  int records = ctx->getNumRecords();  int i = 0;  HugoTransactions hugoTrans(*ctx->getTab());  while (ctx->isTestStopped() == false) {    g_info << i << ": ";        if (hugoTrans.loadTable(GETNDB(step), records) != 0){      g_info << endl;      return NDBT_FAILED;    }    i++;  }  g_info << endl;  return NDBT_OK;}int runClearTable(NDBT_Context* ctx, NDBT_Step* step){  int records = ctx->getNumRecords();  int batchSize = ctx->getProperty("BatchSize", 1);    HugoTransactions hugoTrans(*ctx->getTab());  if (hugoTrans.pkDelRecords(GETNDB(step),  records, batchSize) != 0){    return NDBT_FAILED;  }  return NDBT_OK;}int runPkDelete(NDBT_Context* ctx, NDBT_Step* step){  int loops = ctx->getNumLoops();  int records = ctx->getNumRecords();  int i = 0;  HugoTransactions hugoTrans(*ctx->getTab());  while (i<loops) {    g_info << i << ": ";    if (hugoTrans.pkDelRecords(GETNDB(step),  records) != 0){      g_info << endl;      return NDBT_FAILED;    }    // Load table, don't allow any primary key violations    if (hugoTrans.loadTable(GETNDB(step), records, 512, false) != 0){      g_info << endl;      return NDBT_FAILED;    }    i++;  }    g_info << endl;  return NDBT_OK;}int runPkRead(NDBT_Context* ctx, NDBT_Step* step){  int loops = ctx->getNumLoops();  int records = ctx->getNumRecords();  int batchSize = ctx->getProperty("BatchSize", 1);  int i = 0;  HugoTransactions hugoTrans(*ctx->getTab());  while (i<loops) {    g_info << i << ": ";    if (hugoTrans.pkReadRecords(GETNDB(step), records, batchSize) != NDBT_OK){      g_info << endl;      return NDBT_FAILED;    }    i++;  }  g_info << endl;  return NDBT_OK;}int runPkDirtyRead(NDBT_Context* ctx, NDBT_Step* step){  int loops = ctx->getNumLoops();  int records = ctx->getNumRecords();  int batchSize = ctx->getProperty("BatchSize", 1);  int i = 0;  bool dirty = true;  HugoTransactions hugoTrans(*ctx->getTab());  while (i<loops) {    g_info << i << ": ";    if (hugoTrans.pkReadRecords(GETNDB(step), records, batchSize, 				NdbOperation::LM_CommittedRead) != NDBT_OK){      g_info << endl;      return NDBT_FAILED;    }    i++;  }  g_info << endl;  return NDBT_OK;}int runPkReadUntilStopped(NDBT_Context* ctx, NDBT_Step* step){  int records = ctx->getNumRecords();  int batchSize = ctx->getProperty("BatchSize", 1);  int i = 0;  HugoTransactions hugoTrans(*ctx->getTab());  while (ctx->isTestStopped() == false) {    g_info << i << ": ";    if (hugoTrans.pkReadRecords(GETNDB(step), records, batchSize) != 0){      g_info << endl;      return NDBT_FAILED;    }    i++;  }  g_info << endl;  return NDBT_OK;}int runPkUpdate(NDBT_Context* ctx, NDBT_Step* step){  int loops = ctx->getNumLoops();  int records = ctx->getNumRecords();  int batchSize = ctx->getProperty("BatchSize", 1);  int i = 0;  HugoTransactions hugoTrans(*ctx->getTab());  while (i<loops) {    g_info << "|- " << i << ": ";    if (hugoTrans.pkUpdateRecords(GETNDB(step), records, batchSize) != 0){      g_info << endl;      return NDBT_FAILED;    }    i++;  }  g_info << endl;  return NDBT_OK;}int runPkUpdateUntilStopped(NDBT_Context* ctx, NDBT_Step* step){  int records = ctx->getNumRecords();  int batchSize = ctx->getProperty("BatchSize", 1);  int i = 0;  HugoTransactions hugoTrans(*ctx->getTab());  while (ctx->isTestStopped()) {    g_info << i << ": ";    if (hugoTrans.pkUpdateRecords(GETNDB(step), records, batchSize) != 0){      g_info << endl;      return NDBT_FAILED;    }    i++;  }  g_info << endl;  return NDBT_OK;}int runLocker(NDBT_Context* ctx, NDBT_Step* step){  int result = NDBT_OK;  int records = ctx->getNumRecords();  HugoTransactions hugoTrans(*ctx->getTab());    if (hugoTrans.lockRecords(GETNDB(step), records, 10, 500) != 0){    result = NDBT_FAILED;  }  ctx->stopTest();    return result;}intrunInsertOne(NDBT_Context* ctx, NDBT_Step* step){    if(ctx->getProperty("InsertCommitted", (Uint32)0) != 0){    abort();  }  while(ctx->getProperty("Read1Performed", (Uint32)0) == 0){    NdbSleep_MilliSleep(20);  }    HugoTransactions hugoTrans(*ctx->getTab());    if (hugoTrans.loadTable(GETNDB(step), 1, 1) != 0){    return NDBT_FAILED;  }  ctx->setProperty("InsertCommitted", 1);  NdbSleep_SecSleep(2);  return NDBT_OK;}staticintreadOneNoCommit(Ndb* pNdb, NdbConnection* pTrans, 		const NdbDictionary::Table* tab,NDBT_ResultRow * row){  int a;  NdbOperation * pOp = pTrans->getNdbOperation(tab->getName());  if (pOp == NULL){    ERR(pTrans->getNdbError());    return NDBT_FAILED;  }    HugoTransactions tmp(*tab);  int check = pOp->readTuple();  if( check == -1 ) {    ERR(pTrans->getNdbError());    return NDBT_FAILED;  }    // Define primary keys  for(a = 0; a<tab->getNoOfColumns(); a++){    if (tab->getColumn(a)->getPrimaryKey() == true){      if(tmp.equalForAttr(pOp, a, 0) != 0){	ERR(pTrans->getNdbError());	return NDBT_FAILED;      }    }  }    // Define attributes to read    for(a = 0; a<tab->getNoOfColumns(); a++){    if((row->attributeStore(a) = 	pOp->getValue(tab->getColumn(a)->getName())) == 0) {      ERR(pTrans->getNdbError());      return NDBT_FAILED;    }  }  check = pTrans->execute(NoCommit);       if( check == -1 ) {    const NdbError err = pTrans->getNdbError();     ERR(err);    return err.code;  }  return NDBT_OK;}intrunReadOne(NDBT_Context* ctx, NDBT_Step* step){  Ndb* pNdb = GETNDB(step);  const NdbDictionary::Table* tab = ctx->getTab();  NDBT_ResultRow row1(*tab);  NDBT_ResultRow row2(*tab);    if(ctx->getProperty("Read1Performed", (Uint32)0) != 0){    abort();  }  if(ctx->getProperty("InsertCommitted", (Uint32)0) != 0){    abort();  }    NdbConnection * pTrans = pNdb->startTransaction();  if (pTrans == NULL) {    abort();  }      // Read a record with NoCommit  // Since the record isn't inserted yet it wil return 626  const int res1 = readOneNoCommit(pNdb, pTrans, tab, &row1);  g_info << "|- res1 = " << res1 << endl;  ctx->setProperty("Read1Performed", 1);    while(ctx->getProperty("InsertCommitted", (Uint32)0) == 0 && 	!ctx->isTestStopped()){    g_info << "|- Waiting for insert" << endl;    NdbSleep_MilliSleep(20);  }    if(ctx->isTestStopped()){    abort();  }  // Now the record should have been inserted  // Read it once again in the same transaction  // Should also reutrn 626 if reads are consistent  // NOTE! Currently it's not possible to start a new operation  // on a transaction that has returned an error code  // This is wat fail in this test  // MASV 20030624  const int res2 = readOneNoCommit(pNdb, pTrans, tab, &row2);  pTrans->execute(Commit);  pNdb->closeTransaction(pTrans);  g_info << "|- res2 = " << res2 << endl;  if (res2 == 626 && res1 == res2)        return NDBT_OK;  else    return NDBT_FAILED;}int runFillTable(NDBT_Context* ctx, NDBT_Step* step){  int batch = 512; //4096;  HugoTransactions hugoTrans(*ctx->getTab());  if (hugoTrans.fillTable(GETNDB(step), batch ) != 0){    return NDBT_FAILED;  }  return NDBT_OK;}int runClearTable2(NDBT_Context* ctx, NDBT_Step* step){  int records = ctx->getNumRecords();    UtilTransactions utilTrans(*ctx->getTab());  if (utilTrans.clearTable2(GETNDB(step), records, 240) != 0){    return NDBT_FAILED;  }  return NDBT_OK;}#define CHECK(b) if (!(b)) { \  ndbout << "ERR: "<< step->getName() \         << " failed on line " << __LINE__ << endl; \  result = NDBT_FAILED; \  break; }int runNoCommitSleep(NDBT_Context* ctx, NDBT_Step* step){  int result = NDBT_OK;  HugoOperations hugoOps(*ctx->getTab());  Ndb* pNdb = GETNDB(step);  int sleepTime = 100; // ms  for (int i = 2; i < 8; i++){    CHECK(hugoOps.startTransaction(pNdb) == 0);    CHECK(hugoOps.pkReadRecord(pNdb, 1, 1, NdbOperation::LM_Exclusive) == 0);    CHECK(hugoOps.execute_NoCommit(pNdb) == 0);    ndbout << i <<": Sleeping for " << sleepTime << " ms" << endl;    NdbSleep_MilliSleep(sleepTime);    // Dont care about result of these ops    hugoOps.pkReadRecord(pNdb, 1, 1, NdbOperation::LM_Exclusive);    hugoOps.closeTransaction(pNdb);    sleepTime = sleepTime *i;  }  hugoOps.closeTransaction(pNdb);  return result;}int runCommit626(NDBT_Context* ctx, NDBT_Step* step){  int result = NDBT_OK;  HugoOperations hugoOps(*ctx->getTab());  Ndb* pNdb = GETNDB(step);  do{    // Commit transaction    CHECK(hugoOps.startTransaction(pNdb) == 0);    CHECK(hugoOps.pkReadRecord(pNdb, 1, 1, NdbOperation::LM_Exclusive) == 0);    CHECK(hugoOps.execute_Commit(pNdb) == 626);    CHECK(hugoOps.closeTransaction(pNdb) == 0);    // Commit transaction    // Multiple operations    CHECK(hugoOps.startTransaction(pNdb) == 0);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -