0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 00:56:44 +01:00
mongodb/dbtests/threadedtests.cpp

235 lines
6.5 KiB
C++
Raw Normal View History

// threadedtests.cpp - Tests for threaded code
//
/**
* Copyright (C) 2008 10gen Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
* 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2010-04-27 21:27:52 +02:00
#include "pch.h"
2010-04-25 01:24:07 +02:00
#include "../bson/util/atomic_int.h"
#include "../util/concurrency/mvar.h"
#include "../util/concurrency/thread_pool.h"
2011-01-08 19:22:45 +01:00
#include "../util/timer.h"
#include <boost/thread.hpp>
#include <boost/bind.hpp>
#include "dbtests.h"
namespace ThreadedTests {
template <int nthreads_param=10>
2011-01-04 06:40:41 +01:00
class ThreadedTest {
public:
virtual void setup() {} //optional
virtual void subthread() = 0;
virtual void validate() = 0;
2011-01-04 06:40:41 +01:00
static const int nthreads = nthreads_param;
2011-01-04 06:40:41 +01:00
void run() {
setup();
launch_subthreads(nthreads);
validate();
}
2011-01-04 06:40:41 +01:00
virtual ~ThreadedTest() {}; // not necessary, but makes compilers happy
2009-12-02 21:15:24 +01:00
2011-01-04 06:40:41 +01:00
private:
void launch_subthreads(int remaining) {
if (!remaining) return;
2009-12-02 21:15:24 +01:00
2011-01-04 06:40:41 +01:00
boost::thread athread(boost::bind(&ThreadedTest::subthread, this));
2009-12-02 21:15:24 +01:00
2011-01-04 06:40:41 +01:00
launch_subthreads(remaining - 1);
2009-12-02 21:15:24 +01:00
2011-01-04 06:40:41 +01:00
athread.join();
}
};
2011-01-05 18:59:33 +01:00
class MongoMutexTest : public ThreadedTest<135> {
2011-01-08 19:22:45 +01:00
#if defined(_DEBUG)
2011-01-08 23:37:28 +01:00
enum { N = 5000 };
2011-01-08 19:22:45 +01:00
#else
2011-01-08 23:37:28 +01:00
enum { N = 40000 };
2011-01-08 19:22:45 +01:00
#endif
2011-01-04 22:14:31 +01:00
MongoMutex *mm;
2011-01-08 19:22:45 +01:00
public:
void run() {
Timer t;
2011-01-08 23:37:28 +01:00
cout << "MongoMutexTest N:" << N << endl;
2011-01-08 19:22:45 +01:00
ThreadedTest<135>::run();
cout << "MongoMutexTest " << t.millis() << "ms" << endl;
}
private:
2011-01-05 06:32:30 +01:00
virtual void setup() {
2011-01-04 22:14:31 +01:00
mm = new MongoMutex("MongoMutexTest");
}
2011-01-05 06:32:30 +01:00
virtual void subthread() {
2011-01-04 22:14:31 +01:00
Client::initThread("mongomutextest");
sleepmillis(0);
2011-01-05 18:59:33 +01:00
for( int i = 0; i < N; i++ ) {
if( i % 7 == 0 ) {
2011-01-04 22:14:31 +01:00
mm->lock_shared();
mm->lock_shared();
mm->unlock_shared();
mm->unlock_shared();
}
2011-01-05 06:32:30 +01:00
else if( i % 7 == 1 ) {
2011-01-04 22:14:31 +01:00
mm->lock_shared();
ASSERT( mm->atLeastReadLocked() );
mm->unlock_shared();
}
2011-01-05 06:32:30 +01:00
else if( i % 7 == 2 ) {
2011-01-04 22:14:31 +01:00
mm->lock();
ASSERT( mm->isWriteLocked() );
mm->unlock();
}
2011-01-05 06:32:30 +01:00
else if( i % 7 == 3 ) {
2011-01-04 22:14:31 +01:00
mm->lock();
mm->lock_shared();
ASSERT( mm->isWriteLocked() );
mm->unlock_shared();
mm->unlock();
}
2011-01-05 06:32:30 +01:00
else if( i % 7 == 4 ) {
2011-01-04 22:14:31 +01:00
mm->lock();
mm->releaseEarly();
mm->unlock();
}
2011-01-05 06:32:30 +01:00
else if( i % 7 == 5 ) {
if( mm->lock_try(1) ) {
2011-01-04 22:14:31 +01:00
mm->unlock();
}
}
2011-01-05 06:32:30 +01:00
else if( i % 7 == 6 ) {
if( mm->lock_shared_try(0) ) {
2011-01-04 22:14:31 +01:00
mm->unlock_shared();
}
}
2011-01-05 06:32:30 +01:00
else {
2011-01-04 22:14:31 +01:00
mm->lock_shared();
mm->unlock_shared();
}
}
cc().shutdown();
}
2011-01-05 06:32:30 +01:00
virtual void validate() {
2011-01-04 22:14:31 +01:00
ASSERT( !mm->atLeastReadLocked() );
mm->lock();
mm->unlock();
mm->lock_shared();
mm->unlock_shared();
}
};
2009-12-02 21:15:24 +01:00
// Tested with up to 30k threads
class IsAtomicUIntAtomic : public ThreadedTest<> {
static const int iterations = 1000000;
AtomicUInt target;
2011-01-04 06:40:41 +01:00
void subthread() {
for(int i=0; i < iterations; i++) {
//target.x++; // verified to fail with this version
target++;
}
}
2011-01-04 06:40:41 +01:00
void validate() {
ASSERT_EQUALS(target.x , unsigned(nthreads * iterations));
AtomicUInt u;
ASSERT_EQUALS(0u, u);
ASSERT_EQUALS(0u, u++);
ASSERT_EQUALS(2u, ++u);
ASSERT_EQUALS(2u, u--);
ASSERT_EQUALS(0u, --u);
ASSERT_EQUALS(0u, u);
}
};
2009-12-16 20:35:33 +01:00
class MVarTest : public ThreadedTest<> {
static const int iterations = 10000;
MVar<int> target;
2011-01-04 06:40:41 +01:00
public:
2009-12-16 20:35:33 +01:00
MVarTest() : target(0) {}
2011-01-04 06:40:41 +01:00
void subthread() {
for(int i=0; i < iterations; i++) {
2009-12-16 20:35:33 +01:00
int val = target.take();
#if BOOST_VERSION >= 103500
//increase chances of catching failure
boost::this_thread::yield();
#endif
target.put(val+1);
}
}
2011-01-04 06:40:41 +01:00
void validate() {
2009-12-16 20:35:33 +01:00
ASSERT_EQUALS(target.take() , nthreads * iterations);
}
};
2011-01-04 06:40:41 +01:00
class ThreadPoolTest {
2009-12-22 18:13:40 +01:00
static const int iterations = 10000;
static const int nThreads = 8;
AtomicUInt counter;
2011-01-04 06:40:41 +01:00
void increment(int n) {
for (int i=0; i<n; i++) {
counter++;
2009-12-22 18:13:40 +01:00
}
}
2011-01-04 06:40:41 +01:00
public:
void run() {
2009-12-22 18:13:40 +01:00
ThreadPool tp(nThreads);
2011-01-04 06:40:41 +01:00
for (int i=0; i < iterations; i++) {
2009-12-22 18:13:40 +01:00
tp.schedule(&ThreadPoolTest::increment, this, 2);
}
2011-01-04 06:40:41 +01:00
2009-12-22 18:13:40 +01:00
tp.join();
ASSERT(counter == (unsigned)(iterations * 2));
2009-12-22 18:13:40 +01:00
}
};
2010-06-10 16:40:34 +02:00
class LockTest {
public:
2011-01-04 06:40:41 +01:00
void run() {
2010-07-23 15:58:43 +02:00
// quick atomicint wrap test
// MSGID likely assumes this semantic
AtomicUInt counter = 0xffffffff;
counter++;
ASSERT( counter == 0 );
2010-06-10 16:40:34 +02:00
writelocktry lk( "" , 0 );
ASSERT( lk.got() );
}
};
class All : public Suite {
public:
2011-01-04 06:40:41 +01:00
All() : Suite( "threading" ) {
}
2011-01-04 06:40:41 +01:00
void setupTests() {
add< IsAtomicUIntAtomic >();
2009-12-16 20:35:33 +01:00
add< MVarTest >();
2009-12-22 18:13:40 +01:00
add< ThreadPoolTest >();
2010-06-10 16:40:34 +02:00
add< LockTest >();
2011-01-04 22:14:31 +01:00
add< MongoMutexTest >();
}
} myall;
}