mariadb/util/tests/test_circular_buffer.cc
Leif Walsh bf70bbb898 refs #5418 merge promotion to main
git-svn-id: file:///svn/toku/tokudb@49697 c7de825b-a66e-492c-adef-691d508d4ae1
2013-04-17 00:01:14 -04:00

113 lines
3 KiB
C++

/* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
// vim: ft=cpp:expandtab:ts=8:sw=4:softtabstop=4:
#ident "$Id$"
#ident "Copyright (c) 2007-2012 Tokutek Inc. All rights reserved."
#ident "The technology is licensed by the Massachusetts Institute of Technology, Rutgers State University of New Jersey, and the Research Foundation of State University of New York at Stony Brook under United States of America Serial No. 11/760379 and to the patents and/or patent applications resulting from it."
#include "test.h"
#include <util/circular_buffer.h>
#include <toku_assert.h>
#include <portability/toku_atomic.h>
#include <memory.h>
#include <toku_pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/time.h>
#include <unistd.h>
static volatile bool running;
static volatile bool producers_joined;
static void *producer(void *extra) {
toku::circular_buffer<uint32_t> *buf = static_cast<toku::circular_buffer<uint32_t> *>(extra);
while (running) {
buf->push(random());
if (running) {
usleep(random() % 1000);
}
}
return nullptr;
}
struct consumer_extra {
toku::circular_buffer<uint32_t> *buf;
uint32_t xorsum;
};
static void *consumer(void *extra) {
struct consumer_extra *e = static_cast<struct consumer_extra *>(extra);
while (!producers_joined) {
e->xorsum ^= e->buf->pop();
if (running) {
usleep(random() % 100);
}
}
uint32_t x;
while (e->buf->trypop(&x)) {
e->xorsum ^= x;
}
return nullptr;
}
static void test_with_threads(void) {
const size_t asize = 10000;
uint32_t array[asize];
toku::circular_buffer<uint32_t> buf;
ZERO_STRUCT(buf);
buf.init(array, asize);
bool swapped = toku_sync_bool_compare_and_swap(&running, false, true);
invariant(swapped);
struct consumer_extra extra = { .buf = &buf, .xorsum = 0 };
toku_pthread_t consumer_thd;
int r = toku_pthread_create(&consumer_thd, nullptr, consumer, &extra);
invariant_zero(r);
const int nproducers = 10;
toku_pthread_t producer_thds[nproducers];
for (int i = 0; i < nproducers; ++i) {
r = toku_pthread_create(&producer_thds[i], nullptr, producer, &buf);
invariant_zero(r);
}
usleep(20 * 1000 * 1000);
swapped = toku_sync_bool_compare_and_swap(&running, true, false);
invariant(swapped);
for (int i = 0; i < nproducers; ++i) {
r = toku_pthread_join(producer_thds[i], nullptr);
invariant_zero(r);
}
swapped = toku_sync_bool_compare_and_swap(&producers_joined, false, true);
invariant(swapped);
// kick it in case it's still waiting
bool pushed = buf.trypush(1);
(void) pushed; // yes, really ignore it
r = toku_pthread_join(consumer_thd, nullptr);
invariant_zero(r);
buf.deinit();
if (verbose) {
printf("%" PRIu32 "\n", extra.xorsum);
}
}
int test_main(int argc, const char *argv[]) {
default_parse_args(argc, argv);
test_with_threads();
return 0;
}