pipewire/spa/tests/stress-ringbuffer.c

149 lines
3.1 KiB
C
Raw Normal View History

2017-04-25 19:22:06 +02:00
#include <unistd.h>
#include <pthread.h>
#include <stdio.h>
#include <sched.h>
#include <errno.h>
#include <semaphore.h>
2017-04-25 19:22:06 +02:00
#include <spa/utils/ringbuffer.h>
2017-04-25 19:22:06 +02:00
#define DEFAULT_SIZE 0x2000
#define ARRAY_SIZE 63
2017-04-25 19:22:06 +02:00
#define MAX_VALUE 0x10000
2023-09-24 16:17:12 +02:00
#if defined(__FreeBSD__) || defined(__MidnightBSD__) || defined (__GNU__)
#include <sys/param.h>
2022-01-26 14:32:47 +03:00
#if (__FreeBSD_version >= 1400000 && __FreeBSD_version < 1400043) \
2023-09-24 16:17:12 +02:00
|| (__FreeBSD_version < 1300523) || defined(__MidnightBSD__) \
|| defined (__GNU__)
static int sched_getcpu(void) { return -1; };
#endif
#endif
static struct spa_ringbuffer rb;
static uint32_t size;
static void *data;
static sem_t sem;
2017-04-25 19:22:06 +02:00
2017-05-26 08:05:01 +02:00
static int fill_int_array(int *array, int start, int count)
2017-04-25 19:22:06 +02:00
{
2017-05-26 08:05:01 +02:00
int i, j = start;
for (i = 0; i < count; i++) {
array[i] = j;
j = (j + 1) % MAX_VALUE;
}
return j;
2017-04-25 19:22:06 +02:00
}
2017-05-26 08:05:01 +02:00
static int cmp_array(int *array1, int *array2, int count)
2017-04-25 19:22:06 +02:00
{
2017-05-26 08:05:01 +02:00
int i;
for (i = 0; i < count; i++)
if (array1[i] != array2[i]) {
printf("%d != %d at offset %d\n", array1[i], array2[i], i);
return 0;
}
return 1;
2017-04-25 19:22:06 +02:00
}
2017-05-26 08:05:01 +02:00
static void *reader_start(void *arg)
2017-04-25 19:22:06 +02:00
{
2017-05-26 08:05:01 +02:00
int i = 0, a[ARRAY_SIZE], b[ARRAY_SIZE];
2017-04-25 19:22:06 +02:00
2017-05-26 08:05:01 +02:00
printf("reader started on cpu: %d\n", sched_getcpu());
2017-04-25 19:22:06 +02:00
2017-05-26 08:05:01 +02:00
i = fill_int_array(a, i, ARRAY_SIZE);
2017-04-25 19:22:06 +02:00
2017-05-26 08:05:01 +02:00
while (1) {
uint32_t index;
int32_t avail;
2017-04-25 19:22:06 +02:00
avail = spa_ringbuffer_get_read_index(&rb, &index);
if (avail >= (int32_t)(sizeof(b))) {
spa_ringbuffer_read_data(&rb, data, size, index % size, b, sizeof(b));
spa_ringbuffer_read_update(&rb, index + sizeof(b));
2017-04-25 19:22:06 +02:00
if (index >= INT32_MAX - sizeof(a))
break;
spa_assert(cmp_array(a, b, ARRAY_SIZE));
i = fill_int_array(a, i, ARRAY_SIZE);
2017-05-26 08:05:01 +02:00
}
}
sem_post(&sem);
2017-04-25 19:22:06 +02:00
2017-05-26 08:05:01 +02:00
return NULL;
2017-04-25 19:22:06 +02:00
}
2017-05-26 08:05:01 +02:00
static void *writer_start(void *arg)
2017-04-25 19:22:06 +02:00
{
2017-05-26 08:05:01 +02:00
int i = 0, a[ARRAY_SIZE];
printf("writer started on cpu: %d\n", sched_getcpu());
2017-04-25 19:22:06 +02:00
2017-05-26 08:05:01 +02:00
i = fill_int_array(a, i, ARRAY_SIZE);
2017-04-25 19:22:06 +02:00
2017-05-26 08:05:01 +02:00
while (1) {
uint32_t index;
int32_t avail;
2017-04-25 19:22:06 +02:00
avail = size - spa_ringbuffer_get_write_index(&rb, &index);
if (avail >= (int32_t)(sizeof(a))) {
spa_ringbuffer_write_data(&rb, data, size, index % size, a, sizeof(a));
spa_ringbuffer_write_update(&rb, index + sizeof(a));
2017-04-25 19:22:06 +02:00
if (index >= INT32_MAX - sizeof(a))
break;
2017-05-26 08:05:01 +02:00
i = fill_int_array(a, i, ARRAY_SIZE);
}
}
sem_post(&sem);
2017-04-25 19:22:06 +02:00
2017-05-26 08:05:01 +02:00
return NULL;
2017-04-25 19:22:06 +02:00
}
#define exit_error(msg) \
do { perror(msg); exit(EXIT_FAILURE); } while (0)
2017-04-25 19:22:06 +02:00
int main(int argc, char *argv[])
{
pthread_t reader_thread, writer_thread;
struct timespec ts;
2017-05-26 08:05:01 +02:00
printf("starting ringbuffer stress test\n");
2017-04-25 19:22:06 +02:00
if (argc > 1)
sscanf(argv[1], "%d", &size);
else
size = DEFAULT_SIZE;
2017-04-25 19:22:06 +02:00
2017-05-26 08:05:01 +02:00
printf("buffer size (bytes): %d\n", size);
2019-06-07 17:16:02 +02:00
printf("array size (bytes): %zd\n", sizeof(int) * ARRAY_SIZE);
2017-04-25 19:22:06 +02:00
spa_ringbuffer_init(&rb);
2017-05-26 08:05:01 +02:00
data = malloc(size);
2017-04-25 19:22:06 +02:00
if (sem_init(&sem, 0, 0) != 0)
exit_error("init_sem");
2017-05-26 08:05:01 +02:00
pthread_create(&reader_thread, NULL, reader_start, NULL);
pthread_create(&writer_thread, NULL, writer_start, NULL);
2017-04-25 19:22:06 +02:00
if (clock_gettime(CLOCK_REALTIME, &ts) != 0)
exit_error("clock_gettime");
ts.tv_sec += 2;
2020-05-20 13:52:10 +02:00
while (sem_timedwait(&sem, &ts) == -1 && errno == EINTR)
continue;
2020-05-20 13:52:10 +02:00
while (sem_timedwait(&sem, &ts) == -1 && errno == EINTR)
continue;
printf("read %u, written %u\n", rb.readindex, rb.writeindex);
2017-04-25 19:22:06 +02:00
2017-05-26 08:05:01 +02:00
return 0;
2017-04-25 19:22:06 +02:00
}