mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 23:04:20 +01:00
8f2b0a7e11
Several fixes are included, particulary db remove after db truncate (with descriptor) does not crash anymore. svn merge -r 10931:11019 ../tokudb.1510 git-svn-id: file:///svn/toku/tokudb@11020 c7de825b-a66e-492c-adef-691d508d4ae1
191 lines
5.2 KiB
C
191 lines
5.2 KiB
C
#include "includes.h"
|
|
|
|
|
|
#include "test.h"
|
|
|
|
// test create and destroy
|
|
|
|
static void
|
|
test_create_destroy (void) {
|
|
struct rwlock the_rwlock, *rwlock = &the_rwlock;
|
|
|
|
rwlock_init(rwlock);
|
|
rwlock_destroy(rwlock);
|
|
}
|
|
|
|
// test read lock and unlock with no writers
|
|
|
|
static void
|
|
test_simple_read_lock (int n) {
|
|
struct rwlock the_rwlock, *rwlock = &the_rwlock;
|
|
|
|
rwlock_init(rwlock);
|
|
assert(rwlock_readers(rwlock) == 0);
|
|
int i;
|
|
for (i=1; i<=n; i++) {
|
|
rwlock_read_lock(rwlock, 0);
|
|
assert(rwlock_readers(rwlock) == i);
|
|
assert(rwlock_users(rwlock) == i);
|
|
}
|
|
for (i=n-1; i>=0; i--) {
|
|
rwlock_read_unlock(rwlock);
|
|
assert(rwlock_readers(rwlock) == i);
|
|
assert(rwlock_users(rwlock) == i);
|
|
}
|
|
rwlock_destroy(rwlock);
|
|
}
|
|
|
|
// test write lock and unlock with no readers
|
|
|
|
static void
|
|
test_simple_write_lock (void) {
|
|
struct rwlock the_rwlock, *rwlock = &the_rwlock;
|
|
|
|
rwlock_init(rwlock);
|
|
assert(rwlock_users(rwlock) == 0);
|
|
rwlock_write_lock(rwlock, 0);
|
|
assert(rwlock_writers(rwlock) == 1);
|
|
assert(rwlock_users(rwlock) == 1);
|
|
rwlock_write_unlock(rwlock);
|
|
assert(rwlock_users(rwlock) == 0);
|
|
rwlock_destroy(rwlock);
|
|
}
|
|
|
|
struct rw_event {
|
|
int e;
|
|
struct rwlock the_rwlock;
|
|
toku_pthread_mutex_t mutex;
|
|
};
|
|
|
|
static void
|
|
rw_event_init (struct rw_event *rwe) {
|
|
rwe->e = 0;
|
|
rwlock_init(&rwe->the_rwlock);
|
|
int r = toku_pthread_mutex_init(&rwe->mutex, 0); assert(r == 0);
|
|
}
|
|
|
|
static void
|
|
rw_event_destroy (struct rw_event *rwe) {
|
|
rwlock_destroy(&rwe->the_rwlock);
|
|
int r = toku_pthread_mutex_destroy(&rwe->mutex); assert(r == 0);
|
|
}
|
|
|
|
static void *
|
|
test_writer_priority_thread (void *arg) {
|
|
struct rw_event *rwe = arg;
|
|
int r;
|
|
|
|
r = toku_pthread_mutex_lock(&rwe->mutex); assert(r == 0);
|
|
rwlock_write_lock(&rwe->the_rwlock, &rwe->mutex);
|
|
rwe->e++; assert(rwe->e == 3);
|
|
r = toku_pthread_mutex_unlock(&rwe->mutex); assert(r == 0);
|
|
sleep(1);
|
|
r = toku_pthread_mutex_lock(&rwe->mutex); assert(r == 0);
|
|
rwe->e++; assert(rwe->e == 4);
|
|
rwlock_write_unlock(&rwe->the_rwlock);
|
|
r = toku_pthread_mutex_unlock(&rwe->mutex); assert(r == 0);
|
|
|
|
return arg;
|
|
}
|
|
|
|
// test writer priority over new readers
|
|
|
|
static void
|
|
test_writer_priority (void) {
|
|
struct rw_event rw_event, *rwe = &rw_event;
|
|
int r;
|
|
|
|
rw_event_init(rwe);
|
|
r = toku_pthread_mutex_lock(&rwe->mutex); assert(r == 0);
|
|
rwlock_read_lock(&rwe->the_rwlock, &rwe->mutex);
|
|
sleep(1);
|
|
rwe->e++; assert(rwe->e == 1);
|
|
r = toku_pthread_mutex_unlock(&rwe->mutex); assert(r == 0);
|
|
|
|
toku_pthread_t tid;
|
|
r = toku_pthread_create(&tid, 0, test_writer_priority_thread, rwe);
|
|
sleep(1);
|
|
r = toku_pthread_mutex_lock(&rwe->mutex); assert(r == 0);
|
|
rwe->e++; assert(rwe->e == 2);
|
|
r = toku_pthread_mutex_unlock(&rwe->mutex); assert(r == 0);
|
|
|
|
sleep(1);
|
|
r = toku_pthread_mutex_lock(&rwe->mutex); assert(r == 0);
|
|
rwlock_read_unlock(&rwe->the_rwlock);
|
|
r = toku_pthread_mutex_unlock(&rwe->mutex); assert(r == 0);
|
|
sleep(1);
|
|
r = toku_pthread_mutex_lock(&rwe->mutex); assert(r == 0);
|
|
rwlock_read_lock(&rwe->the_rwlock, &rwe->mutex);
|
|
rwe->e++; assert(rwe->e == 5);
|
|
r = toku_pthread_mutex_unlock(&rwe->mutex); assert(r == 0);
|
|
sleep(1);
|
|
r = toku_pthread_mutex_lock(&rwe->mutex); assert(r == 0);
|
|
rwlock_read_unlock(&rwe->the_rwlock);
|
|
r = toku_pthread_mutex_unlock(&rwe->mutex); assert(r == 0);
|
|
|
|
void *ret;
|
|
r = toku_pthread_join(tid, &ret); assert(r == 0);
|
|
|
|
rw_event_destroy(rwe);
|
|
}
|
|
|
|
// test single writer
|
|
|
|
static void *
|
|
test_single_writer_thread (void *arg) {
|
|
struct rw_event *rwe = arg;
|
|
int r;
|
|
|
|
r = toku_pthread_mutex_lock(&rwe->mutex); assert(r == 0);
|
|
rwlock_write_lock(&rwe->the_rwlock, &rwe->mutex);
|
|
rwe->e++; assert(rwe->e == 3);
|
|
assert(rwlock_writers(&rwe->the_rwlock) == 1);
|
|
rwlock_write_unlock(&rwe->the_rwlock);
|
|
r = toku_pthread_mutex_unlock(&rwe->mutex); assert(r == 0);
|
|
|
|
return arg;
|
|
}
|
|
|
|
static void
|
|
test_single_writer (void) {
|
|
struct rw_event rw_event, *rwe = &rw_event;
|
|
int r;
|
|
|
|
rw_event_init(rwe);
|
|
assert(rwlock_writers(&rwe->the_rwlock) == 0);
|
|
r = toku_pthread_mutex_lock(&rwe->mutex); assert(r == 0);
|
|
rwlock_write_lock(&rwe->the_rwlock, &rwe->mutex);
|
|
assert(rwlock_writers(&rwe->the_rwlock) == 1);
|
|
sleep(1);
|
|
rwe->e++; assert(rwe->e == 1);
|
|
r = toku_pthread_mutex_unlock(&rwe->mutex); assert(r == 0);
|
|
|
|
toku_pthread_t tid;
|
|
r = toku_pthread_create(&tid, 0, test_single_writer_thread, rwe);
|
|
sleep(1);
|
|
r = toku_pthread_mutex_lock(&rwe->mutex); assert(r == 0);
|
|
rwe->e++; assert(rwe->e == 2);
|
|
assert(rwlock_writers(&rwe->the_rwlock) == 1);
|
|
assert(rwlock_users(&rwe->the_rwlock) == 2);
|
|
rwlock_write_unlock(&rwe->the_rwlock);
|
|
r = toku_pthread_mutex_unlock(&rwe->mutex); assert(r == 0);
|
|
|
|
void *ret;
|
|
r = toku_pthread_join(tid, &ret); assert(r == 0);
|
|
|
|
assert(rwlock_writers(&rwe->the_rwlock) == 0);
|
|
rw_event_destroy(rwe);
|
|
}
|
|
|
|
int
|
|
test_main(int argc, const char *argv[]) {
|
|
default_parse_args(argc, argv);
|
|
test_create_destroy();
|
|
test_simple_read_lock(0);
|
|
test_simple_read_lock(42);
|
|
test_simple_write_lock();
|
|
test_writer_priority();
|
|
test_single_writer();
|
|
|
|
return 0;
|
|
}
|