From: Martin Zaun Date: October 1 2010 8:58am Subject: bzr commit into mysql-5.1-telco-7.1 branch (martin.zaun:3855) List-Archive: http://lists.mysql.com/commits/119656 Message-Id: <201010010858.o8UG11pM006692@rcsinet15.oracle.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0475751776==" --===============0475751776== MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline #At file:///home/md/mysql/ndb-7.1-opt32/ based on revid:martin.zaun@stripped 3855 Martin Zaun 2010-10-01 crund - minor cleanups modified: storage/ndb/test/crund/build.xml storage/ndb/test/crund/src/crundndb/Driver.cpp storage/ndb/test/crund/src/crundndb/Makefile storage/ndb/test/crund/src/crundndb/Operations.cpp storage/ndb/test/crund/src/crundndb/Operations.hpp storage/ndb/test/crund/src/crundndb/com_mysql_cluster_crund_NdbApiLoad.cpp === modified file 'storage/ndb/test/crund/build.xml' --- a/storage/ndb/test/crund/build.xml 2010-03-01 19:10:54 +0000 +++ b/storage/ndb/test/crund/build.xml 2010-10-01 08:58:08 +0000 @@ -277,10 +277,6 @@ - - - - @@ -353,7 +349,7 @@ - + @@ -361,7 +357,6 @@ fork="true" failonerror="true" classpathref="classpath.ndbapi.run"> - === modified file 'storage/ndb/test/crund/src/crundndb/Driver.cpp' --- a/storage/ndb/test/crund/src/crundndb/Driver.cpp 2010-10-01 04:10:21 +0000 +++ b/storage/ndb/test/crund/src/crundndb/Driver.cpp 2010-10-01 08:58:08 +0000 @@ -18,6 +18,9 @@ #include "hrt_utils.h" #include "Operations.hpp" +// global type aliases +typedef const NdbDictionary::Table* NdbTable; + namespace crund_ndb { //using namespace std; @@ -31,18 +34,18 @@ using std::set; using utils::Properties; class Driver { - + public: /** * Creates a Driver instance. */ Driver(); - + /** * Parses the benchmark's command-line arguments. */ void parseArguments(int argc, const char* argv[]); - + /** * Runs the entire benchmark. */ @@ -87,7 +90,7 @@ protected: */ struct Op { const string name; - + virtual void run(int countA, int countB) const = 0; //void (*run)(int countA, int countB); @@ -129,7 +132,7 @@ protected: * Reads and initializes the benchmark's properties from a file. */ void initProperties(); - + /** * Prints the benchmark's properties. */ @@ -139,12 +142,12 @@ protected: * Opens the benchmark's data log file. */ void openLogFile(); - + /** * Closes the benchmark's data log file. */ void closeLogFile(); - + /** * Initializes the benchmark's resources. */ @@ -169,7 +172,7 @@ protected: * Runs a series of benchmark operations. */ void runOperations(int countA, int countB); - + /** * Runs a benchmark operation. */ @@ -179,7 +182,7 @@ protected: * Begins a benchmarked transaction. */ void begin(const string& name); - + /** * Closes a benchmarked transaction. */ @@ -192,7 +195,7 @@ protected: void closeConnection(); void initOperations(); - + template< bool feat > void initOperationsFeat(); void closeOperations(); @@ -208,27 +211,29 @@ protected: template< bool, bool > struct B0InsOp; - template< const char** opName, - void (crund_ndb::Operations::*OP)(const NdbDictionary::Table*, - int,int,bool), - bool batch > + template< const char**, + void (crund_ndb::Operations::*)(NdbTable,int,int,bool), + bool > struct AByPKOp; - template< const char** opName, - void (crund_ndb::Operations::*OP)(const NdbDictionary::Table*, - int,int,bool), - bool batch > + template< const char**, + void (crund_ndb::Operations::*)(NdbTable,int,int,bool), + bool > struct B0ByPKOp; - template< const char** opName, - void (crund_ndb::Operations::*OP)(const NdbDictionary::Table*, - int,int,bool,int), - bool batch > + template< const char**, + void (crund_ndb::Operations::*)(NdbTable,int,int,bool,int), + bool > struct LengthOp; - template< const char** opName, - void (crund_ndb::Operations::*OP)(int,int,bool), - bool forceSend > + template< const char**, + void (crund_ndb::Operations::*)(NdbTable,int,int,bool,int), + bool > + struct ZeroLengthOp; + + template< const char**, + void (crund_ndb::Operations::*)(int,int,bool), + bool > struct RelOp; }; @@ -268,7 +273,7 @@ Driver::run() { for (int i = 0; i < warmupRuns; i++) { runTests(); } - + // truncate log file, reset log buffers cout << endl << "++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++" << endl @@ -283,7 +288,7 @@ Driver::run() { // hot runs for (int i = 0; i < hotRuns; i++) { runTests(); - } + } // write log buffers if (logRealTime) { @@ -462,7 +467,7 @@ Driver::initProperties() { const wstring& s = estr.substr(beg, len - beg); exclude.insert(toString(s)); } - + // string properties mgmdConnect = toString(props[L"ndb.mgmdConnect"]); catalog = toString(props[L"ndb.catalog"]); @@ -483,11 +488,11 @@ Driver::initProperties() { void Driver::printProperties() { - const ios_base::fmtflags f = cout.flags(); + const ios_base::fmtflags f = cout.flags(); // no effect calling manipulator function, not sure why //cout << ios_base::boolalpha; cout.flags(ios_base::boolalpha); - + cout << endl << "main settings:" << endl; cout << "logRealTime: " << logRealTime << endl; cout << "logCpuTime: " << logCpuTime << endl; @@ -558,14 +563,14 @@ void Driver::runOperations(int countA, int countB) { cout << endl << "------------------------------------------------------------" << endl; - + if (countA > countB) { cout << "skipping operations ... " << "[A=" << countA << ", B=" << countB << "]" << endl; return; } cout << "running operations ... " - << "[A=" << countA << ", B=" << countB << "]" << endl; + << "[A=" << countA << ", B=" << countB << "]" << endl; // log buffers if (logRealTime) { @@ -576,7 +581,7 @@ Driver::runOperations(int countA, int co ctimes << "A=" << countA << ", B=" << countB; cta = 0L; } - + // pre-run cleanup if (renewConnection) { closeOperations(); @@ -638,7 +643,7 @@ Driver::runOp(const Op& op, int countA, commit(name); } } - + void Driver::begin(const string& name) { cout << endl; @@ -717,7 +722,7 @@ Driver::initOperations() { const bool feat = true; initOperationsFeat< !feat >(); - initOperationsFeat< feat >(); + initOperationsFeat< feat >(); cout << " [Op: " << operations.size() << "]" << endl; } @@ -725,111 +730,121 @@ Driver::initOperations() { // the operation invocation templates look a bit complex, but they help // a lot to factorize code over the operations' parameter signatures -template< bool batch > +template< bool OB > struct Driver::ADelAllOp : Op { ADelAllOp() : Op(string("delAllA") - + (batch ? "_batch" : "")) { + + (OB ? "_batch" : "")) { } - + virtual void run(int countA, int countB) const { int count; - ops->delByScan(ops->meta->table_A, count, batch); + ops->delByScan(ops->meta->table_A, count, OB); assert (count == countA); } }; -template< bool batch > +template< bool OB > struct Driver::B0DelAllOp : Op { B0DelAllOp() : Op(string("delAllB0") - + (batch ? "_batch" : "")) { + + (OB ? "_batch" : "")) { } - + virtual void run(int countA, int countB) const { int count; - ops->delByScan(ops->meta->table_B0, count, batch); + ops->delByScan(ops->meta->table_B0, count, OB); assert (count == countB); } }; -template< bool setAttrs, bool batch > +template< bool OSA, bool OB > struct Driver::AInsOp : Op { AInsOp() : Op(string("insA") - + (setAttrs ? "_attr" : "") - + (batch ? "_batch" : "")) { + + (OSA ? "_attr" : "") + + (OB ? "_batch" : "")) { } - + virtual void run(int countA, int countB) const { - ops->ins(ops->meta->table_A, 1, countA, setAttrs, batch); + ops->ins(ops->meta->table_A, 1, countA, OSA, OB); } }; -template< bool setAttrs, bool batch > +template< bool OSA, bool OB > struct Driver::B0InsOp : Op { B0InsOp() : Op(string("insB0") - + (setAttrs ? "_attr" : "") - + (batch ? "_batch" : "")) { + + (OSA ? "_attr" : "") + + (OB ? "_batch" : "")) { } - + virtual void run(int countA, int countB) const { - ops->ins(ops->meta->table_B0, 1, countB, setAttrs, batch); + ops->ins(ops->meta->table_B0, 1, countB, OSA, OB); } }; -template< const char** opName, - void (crund_ndb::Operations::*OP)(const NdbDictionary::Table*, - int,int,bool), - bool batch > +template< const char** ON, + void (crund_ndb::Operations::*OF)(NdbTable,int,int,bool), + bool OB > struct Driver::AByPKOp : Op { - AByPKOp() : Op(string(*opName) - + (batch ? "_batch" : "")) { + AByPKOp() : Op(string(*ON) + + (OB ? "_batch" : "")) { } - + virtual void run(int countA, int countB) const { - (ops->*OP)(ops->meta->table_A, 1, countA, batch); + (ops->*OF)(ops->meta->table_A, 1, countA, OB); } }; -template< const char** opName, - void (crund_ndb::Operations::*OP)(const NdbDictionary::Table*, - int,int,bool), - bool batch > +template< const char** ON, + void (crund_ndb::Operations::*OF)(NdbTable,int,int,bool), + bool OB > struct Driver::B0ByPKOp : Op { - B0ByPKOp() : Op(string(*opName) - + (batch ? "_batch" : "")) { + B0ByPKOp() : Op(string(*ON) + + (OB ? "_batch" : "")) { } - + virtual void run(int countA, int countB) const { - (ops->*OP)(ops->meta->table_B0, 1, countB, batch); + (ops->*OF)(ops->meta->table_B0, 1, countB, OB); } }; -template< const char** opName, - void (crund_ndb::Operations::*OP)(const NdbDictionary::Table*, - int,int,bool,int), - bool batch > +template< const char** ON, + void (crund_ndb::Operations::*OF)(NdbTable,int,int,bool,int), + bool OB > struct Driver::LengthOp : Op { const int length; - LengthOp(int length) : Op(string(*opName) + LengthOp(int length) : Op(string(*ON) + toString(length) - + (batch ? "_batch" : "")), + + (OB ? "_batch" : "")), length(length) { } - + + virtual void run(int countA, int countB) const { + (ops->*OF)(ops->meta->table_B0, 1, countB, OB, length); + } +}; + +template< const char** ON, + void (crund_ndb::Operations::*OF)(NdbTable,int,int,bool,int), + bool OB > +struct Driver::ZeroLengthOp : LengthOp< ON, OF, OB > { + ZeroLengthOp(int length) : LengthOp< ON, OF, OB >(length) { + } + virtual void run(int countA, int countB) const { - (ops->*OP)(ops->meta->table_B0, 1, countB, batch, length); + (ops->*OF)(ops->meta->table_B0, 1, countB, OB, 0); } }; -template< const char** opName, - void (crund_ndb::Operations::*OP)(int x,int y,bool z), - bool forceSend > +template< const char** ON, + void (crund_ndb::Operations::*OF)(int,int,bool), + bool OFS > struct Driver::RelOp : Op { - RelOp() : Op(string(*opName) + (forceSend ? "_forceSend" : "")) { + RelOp() : Op(string(*ON) + + (OFS ? "_forceSend" : "")) { } - + virtual void run(int countA, int countB) const { - (ops->*OP)(countA, countB, forceSend); + (ops->*OF)(countA, countB, OFS); } }; @@ -900,9 +915,9 @@ Driver::initOperationsFeat() { new LengthOp< &getVarbinary_s, &crund_ndb::Operations::getVarbinary, feat >(length)); operations.push_back( - new LengthOp< &clearVarbinary_s, &crund_ndb::Operations::setVarbinary, feat >(0)); + new ZeroLengthOp< &clearVarbinary_s, &crund_ndb::Operations::setVarbinary, feat >(length)); } - + for (int i = 1; i <= maxVarcharChars; i *= 10) { const int length = i; @@ -913,7 +928,7 @@ Driver::initOperationsFeat() { new LengthOp< &getVarchar_s, &crund_ndb::Operations::getVarchar, feat >(length)); operations.push_back( - new LengthOp< &clearVarchar_s, &crund_ndb::Operations::setVarchar, feat >(0)); + new ZeroLengthOp< &clearVarchar_s, &crund_ndb::Operations::setVarchar, feat >(length)); } operations.push_back( @@ -1005,17 +1020,17 @@ Driver::parseArguments(int argc, const c exitUsage(); } } - + if (logFileName.empty()) { logFileName = "log_"; // format, destination strings (static size) - const char format[] = "%Y%m%d_%H%M%S"; + const char format[] = "%Y%m%d_%H%M%S"; const int size = sizeof("yyyymmdd_HHMMSS"); char dest[size]; - + // get time, convert to timeinfo (statically allocated) then to string - const time_t now = time(0); + const time_t now = time(0); const int nchars = strftime(dest, size, format, localtime(&now)); assert (nchars == size-1); (void)nchars; @@ -1030,7 +1045,7 @@ int main(int argc, const char* argv[]) { TRACE("main()"); - + Driver d; d.parseArguments(argc, argv); d.run(); === modified file 'storage/ndb/test/crund/src/crundndb/Makefile' --- a/storage/ndb/test/crund/src/crundndb/Makefile 2010-02-14 05:05:31 +0000 +++ b/storage/ndb/test/crund/src/crundndb/Makefile 2010-10-01 08:58:08 +0000 @@ -58,8 +58,13 @@ run.driver: Driver LD_LIBRARY_PATH=${NDB_LIBDIR} ./Driver \ -p ../../crundRun.properties -p ../../crundNdbapi.properties +# for JVM processes, try running valgrind with +# --smc-check=all --trace-children=yes --leak-check=full --show-reachable=yes valgrind.driver: Driver - LD_LIBRARY_PATH=${NDB_LIBDIR} valgrind --leak-check=full --show-reachable=yes ./Driver -p ../../crund.properties + LD_LIBRARY_PATH=${NDB_LIBDIR} valgrind \ + --leak-check=full --show-reachable=yes --trace-children=yes \ + ./Driver \ + -p ../../crundRun.properties -p ../../crundNdbapi.properties Driver: libcrundndb.a === modified file 'storage/ndb/test/crund/src/crundndb/Operations.cpp' --- a/storage/ndb/test/crund/src/crundndb/Operations.cpp 2010-10-01 04:10:21 +0000 +++ b/storage/ndb/test/crund/src/crundndb/Operations.cpp 2010-10-01 08:58:08 +0000 @@ -708,7 +708,7 @@ Operations::setVar(const NdbDictionary:: //CDBG << "!!! buf[1]=" << toString(buf[1]) << endl; //CDBG << "!!! buf[" << toString(slen) << "]=" << toString(buf[slen]) << endl; } - + beginTransaction(); for (int i = from; i <= to; i++) { // get an insert operation for the table @@ -797,7 +797,7 @@ Operations::getVar(const NdbDictionary:: // move and 0-terminated string memmove(s, s + 1, n); s[n] = 0; - + // check fetched values VERIFY(strcmp(s, str) == 0); } === modified file 'storage/ndb/test/crund/src/crundndb/Operations.hpp' --- a/storage/ndb/test/crund/src/crundndb/Operations.hpp 2010-10-01 04:10:21 +0000 +++ b/storage/ndb/test/crund/src/crundndb/Operations.hpp 2010-10-01 08:58:08 +0000 @@ -110,34 +110,34 @@ public: void setVarbinary(const NdbDictionary::Table* table, int from, int to, bool batch, int length); - + void getVarbinary(const NdbDictionary::Table* table, int from, int to, bool batch, int length); void setVarchar(const NdbDictionary::Table* table, int from, int to, bool batch, int length); - + void getVarchar(const NdbDictionary::Table* table, int from, int to, bool batch, int length); void setB0ToA(int count_A, int count_B, bool batch); - + void navB0ToA(int count_A, int count_B, bool batch); - + void navB0ToAalt(int count_A, int count_B, bool batch); - + void navAToB0(int count_A, int count_B, bool forceSend); - + void navAToB0alt(int count_A, int count_B, bool forceSend); - + void nullB0ToA(int count_A, int count_B, bool batch); - + protected: // executes the operations in the current transaction void executeOperations(); @@ -147,7 +147,7 @@ protected: void setVar(const NdbDictionary::Table* table, int attr_cvar, int from, int to, bool batch, const char* str); - + void getVar(const NdbDictionary::Table* table, int attr_cvar, int from, int to, bool batch, const char* str); }; === modified file 'storage/ndb/test/crund/src/crundndb/com_mysql_cluster_crund_NdbApiLoad.cpp' --- a/storage/ndb/test/crund/src/crundndb/com_mysql_cluster_crund_NdbApiLoad.cpp 2010-10-01 04:10:21 +0000 +++ b/storage/ndb/test/crund/src/crundndb/com_mysql_cluster_crund_NdbApiLoad.cpp 2010-10-01 08:58:08 +0000 @@ -34,7 +34,7 @@ Java_com_mysql_cluster_crund_NdbApiLoad_ // location of cluster management server (ndb_mgmd) // get a native string from the Java string const char* mgmd_cstr = env->GetStringUTFChars(mgmd_jstr, NULL); - + // initialize the benchmark's resources ops = new Operations(); ops->init(mgmd_cstr); --===============0475751776== MIME-Version: 1.0 Content-Type: text/bzr-bundle; charset="us-ascii"; name="bzr/martin.zaun@stripped" Content-Transfer-Encoding: 7bit Content-Disposition: inline # Bazaar merge directive format 2 (Bazaar 0.90) # revision_id: martin.zaun@stripped # target_branch: file:///home/md/mysql/ndb-7.1-opt32/ # testament_sha1: a81923d8112c577cb12dd250bd22b4e6048154fc # timestamp: 2010-10-01 01:58:22 -0700 # base_revision_id: martin.zaun@stripped\ # 0sp0uix968jxcoez # # Begin bundle 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 p5VPmbA34th+Iu5IpwoSD8MO1OA= --===============0475751776==--