Files
mongo/dbtests/threadedtests.cpp

222 lines
6.1 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 15:27:52 -04:00
#include "pch.h"
2010-04-24 19:24:07 -04:00
#include "../bson/util/atomic_int.h"
#include "../util/concurrency/mvar.h"
#include "../util/concurrency/thread_pool.h"
#include <boost/thread.hpp>
#include <boost/bind.hpp>
#include "dbtests.h"
namespace ThreadedTests {
template <int nthreads_param=10>
2011-01-04 00:40:41 -05:00
class ThreadedTest {
public:
virtual void setup() {} //optional
virtual void subthread() = 0;
virtual void validate() = 0;
2011-01-04 00:40:41 -05:00
static const int nthreads = nthreads_param;
2011-01-04 00:40:41 -05:00
void run() {
setup();
launch_subthreads(nthreads);
validate();
}
2011-01-04 00:40:41 -05:00
virtual ~ThreadedTest() {}; // not necessary, but makes compilers happy
2009-12-02 15:15:24 -05:00
2011-01-04 00:40:41 -05:00
private:
void launch_subthreads(int remaining) {
if (!remaining) return;
2009-12-02 15:15:24 -05:00
2011-01-04 00:40:41 -05:00
boost::thread athread(boost::bind(&ThreadedTest::subthread, this));
2009-12-02 15:15:24 -05:00
2011-01-04 00:40:41 -05:00
launch_subthreads(remaining - 1);
2009-12-02 15:15:24 -05:00
2011-01-04 00:40:41 -05:00
athread.join();
}
};
2011-01-05 00:43:04 -05:00
class MongoMutexTest : public ThreadedTest<135> {
enum { N = 80000 };
2011-01-04 16:14:31 -05:00
MongoMutex *mm;
2011-01-05 00:32:30 -05:00
virtual void setup() {
2011-01-04 16:14:31 -05:00
mm = new MongoMutex("MongoMutexTest");
}
2011-01-05 00:32:30 -05:00
virtual void subthread() {
2011-01-04 16:14:31 -05:00
Client::initThread("mongomutextest");
sleepmillis(0);
for( int i = 0; i < N; i++ ) {
if( i % 7 == 0 ) {
mm->lock_shared();
mm->lock_shared();
mm->unlock_shared();
mm->unlock_shared();
}
2011-01-05 00:32:30 -05:00
else if( i % 7 == 1 ) {
2011-01-04 16:14:31 -05:00
mm->lock_shared();
ASSERT( mm->atLeastReadLocked() );
mm->unlock_shared();
}
2011-01-05 00:32:30 -05:00
else if( i % 7 == 2 ) {
2011-01-04 16:14:31 -05:00
mm->lock();
ASSERT( mm->isWriteLocked() );
mm->unlock();
}
2011-01-05 00:32:30 -05:00
else if( i % 7 == 3 ) {
2011-01-04 16:14:31 -05:00
mm->lock();
mm->lock_shared();
ASSERT( mm->isWriteLocked() );
mm->unlock_shared();
mm->unlock();
}
2011-01-05 00:32:30 -05:00
else if( i % 7 == 4 ) {
2011-01-04 16:14:31 -05:00
mm->lock();
mm->releaseEarly();
mm->unlock();
}
2011-01-05 00:32:30 -05:00
else if( i % 7 == 5 ) {
if( mm->lock_try(1) ) {
2011-01-04 16:14:31 -05:00
mm->unlock();
}
}
2011-01-05 00:32:30 -05:00
else if( i % 7 == 6 ) {
if( mm->lock_shared_try(0) ) {
2011-01-04 16:14:31 -05:00
mm->unlock_shared();
}
}
2011-01-05 00:32:30 -05:00
else {
2011-01-04 16:14:31 -05:00
mm->lock_shared();
mm->unlock_shared();
}
}
cc().shutdown();
}
2011-01-05 00:32:30 -05:00
virtual void validate() {
2011-01-04 16:14:31 -05:00
ASSERT( !mm->atLeastReadLocked() );
mm->lock();
mm->unlock();
mm->lock_shared();
mm->unlock_shared();
}
};
2009-12-02 15:15:24 -05:00
// Tested with up to 30k threads
class IsAtomicUIntAtomic : public ThreadedTest<> {
static const int iterations = 1000000;
AtomicUInt target;
2011-01-04 00:40:41 -05:00
void subthread() {
for(int i=0; i < iterations; i++) {
//target.x++; // verified to fail with this version
target++;
}
}
2011-01-04 00:40:41 -05: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 14:35:33 -05:00
class MVarTest : public ThreadedTest<> {
static const int iterations = 10000;
MVar<int> target;
2011-01-04 00:40:41 -05:00
public:
2009-12-16 14:35:33 -05:00
MVarTest() : target(0) {}
2011-01-04 00:40:41 -05:00
void subthread() {
for(int i=0; i < iterations; i++) {
2009-12-16 14:35:33 -05: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 00:40:41 -05:00
void validate() {
2009-12-16 14:35:33 -05:00
ASSERT_EQUALS(target.take() , nthreads * iterations);
}
};
2011-01-04 00:40:41 -05:00
class ThreadPoolTest {
2009-12-22 12:13:40 -05:00
static const int iterations = 10000;
static const int nThreads = 8;
AtomicUInt counter;
2011-01-04 00:40:41 -05:00
void increment(int n) {
for (int i=0; i<n; i++) {
counter++;
2009-12-22 12:13:40 -05:00
}
}
2011-01-04 00:40:41 -05:00
public:
void run() {
2009-12-22 12:13:40 -05:00
ThreadPool tp(nThreads);
2011-01-04 00:40:41 -05:00
for (int i=0; i < iterations; i++) {
2009-12-22 12:13:40 -05:00
tp.schedule(&ThreadPoolTest::increment, this, 2);
}
2011-01-04 00:40:41 -05:00
2009-12-22 12:13:40 -05:00
tp.join();
ASSERT(counter == (unsigned)(iterations * 2));
2009-12-22 12:13:40 -05:00
}
};
2010-06-10 10:40:34 -04:00
class LockTest {
public:
2011-01-04 00:40:41 -05:00
void run() {
2010-07-23 09:58:43 -04:00
// quick atomicint wrap test
// MSGID likely assumes this semantic
AtomicUInt counter = 0xffffffff;
counter++;
ASSERT( counter == 0 );
2010-06-10 10:40:34 -04:00
writelocktry lk( "" , 0 );
ASSERT( lk.got() );
}
};
class All : public Suite {
public:
2011-01-04 00:40:41 -05:00
All() : Suite( "threading" ) {
}
2011-01-04 00:40:41 -05:00
void setupTests() {
add< IsAtomicUIntAtomic >();
2009-12-16 14:35:33 -05:00
add< MVarTest >();
2009-12-22 12:13:40 -05:00
add< ThreadPoolTest >();
2010-06-10 10:40:34 -04:00
add< LockTest >();
2011-01-04 16:14:31 -05:00
add< MongoMutexTest >();
}
} myall;
}