aboutsummaryrefslogtreecommitdiff
path: root/test/test_queue.cpp
blob: 7b0695100d853e310c267870d6a0b36ef3573981 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
#include <cstdio>
#include <thread>
#include <atomic>

#include "salticidae/event.h"

using salticidae::TimerEvent;

void test_mpsc(int nproducers = 16, int nops = 100000, size_t burst_size = 128) {
    size_t total = nproducers * nops;
    salticidae::EventContext ec;
    std::atomic<size_t> collected(0);
    using queue_t = salticidae::MPSCQueueEventDriven<int>;
    queue_t q;
    q.reg_handler(ec, [&collected, burst_size](queue_t &q) {
        size_t cnt = burst_size;
        int x;
        while (q.try_dequeue(x))
        {
            printf("%d\n", x);
            collected.fetch_add(1);
            if (!--cnt) return true;
        }
        return false;
    });
    std::vector<std::thread> producers;
    std::thread consumer([&collected, total, &ec]() {
        TimerEvent timer(ec, [&ec, &collected, total](TimerEvent &) {
            if (collected.load() == total) ec.stop();
        });
        timer.add(1);
        ec.dispatch();
    });
    for (int i = 0; i < nproducers; i++)
    {
        producers.emplace(producers.end(), std::thread([&q, nops, i, nproducers]() {
            int x = i;
            for (int j = 0; j < nops; j++)
            {
                //usleep(rand() / double(RAND_MAX) * 100);
                q.enqueue(x);
                x += nproducers;
            }
        }));
    }
    for (auto &t: producers) t.join();
    fprintf(stderr, "producers terminate\n");
    consumer.join();
    fprintf(stderr, "consumers terminate\n");
}

/*
void test_mpmc(int nproducers = 16, int nconsumers = 4, int nops = 100000) {
    size_t total = nproducers * nops;
    salticidae::MPMCQueueEventDriven<int> q;
    std::vector<std::thread> producers;
    std::vector<std::thread> consumers;
    std::vector<salticidae::EventContext> ecs;
    std::atomic<size_t> collected(0);
    ecs.resize(nconsumers);
    for (int i = 0; i < nconsumers; i++)
    {
        q.listen(ecs[i], [&collected](int x) {
            //usleep(10);
            printf("%d\n", x);
            collected.fetch_add(1);
        });
    }
    for (int i = 0; i < nconsumers; i++)
    {
        consumers.emplace(consumers.end(), std::thread(
                [&collected, total, &ec = ecs[i]]() {
            salticidae::Event timer(ec, -1, EV_TIMEOUT | EV_PERSIST,
                [&ec, &collected, total](int, short) {
                if (collected.load() == total) ec.stop();
            });
            timer.add_with_timeout(1);
            ec.dispatch();
        }));
    }
    for (int i = 0; i < nproducers; i++)
    {
        producers.emplace(producers.end(), std::thread([&q, nops, i, nproducers]() {
            int x = i;
            for (int j = 0; j < nops; j++)
            {
                //usleep(rand() / double(RAND_MAX) * 100);
                q.enqueue(x);
                x += nproducers;
            }
        }));
    }
    for (auto &t: producers) t.join();
    fprintf(stderr, "producers terminate\n");
    for (auto &t: consumers) t.join();
    fprintf(stderr, "consumers terminate\n");
}
*/

int main() {
    test_mpsc();
    //test_mpmc();
    return 0;
}