2020-04-19 21:18:27 +08:00
|
|
|
// eventpp library
|
|
|
|
// Copyright (C) 2018 Wang Qi (wqking)
|
|
|
|
// Github: https://github.com/wqking/eventpp
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
#include "test.h"
|
|
|
|
#include "eventpp/hetereventdispatcher.h"
|
|
|
|
|
|
|
|
#include <thread>
|
|
|
|
#include <numeric>
|
|
|
|
#include <random>
|
|
|
|
#include <algorithm>
|
|
|
|
|
|
|
|
TEST_CASE("HeterEventDispatcher, multi threading")
|
|
|
|
{
|
|
|
|
using ED = eventpp::HeterEventDispatcher<int, eventpp::HeterTuple<void (int), void (int, int)> >;
|
|
|
|
ED dispatcher;
|
|
|
|
|
|
|
|
constexpr int threadCount = 256;
|
|
|
|
constexpr int eventCountPerThread = 1024 * 4;
|
|
|
|
constexpr int itemCount = threadCount * eventCountPerThread;
|
|
|
|
|
|
|
|
std::vector<int> eventList(itemCount);
|
|
|
|
std::iota(eventList.begin(), eventList.end(), 0);
|
|
|
|
std::shuffle(eventList.begin(), eventList.end(), std::mt19937(std::random_device()()));
|
|
|
|
|
|
|
|
std::vector<int> dataList(itemCount);
|
|
|
|
std::vector<ED::Handle> handleList(itemCount * 2);
|
|
|
|
|
|
|
|
std::vector<std::thread> threadList;
|
|
|
|
|
|
|
|
for(int i = 0; i < threadCount; ++i) {
|
2020-07-01 14:10:02 +02:00
|
|
|
threadList.emplace_back([i, eventCountPerThread, &dispatcher, &eventList, &handleList, &dataList, itemCount]() {
|
2020-04-19 21:18:27 +08:00
|
|
|
for(int k = i * eventCountPerThread; k < (i + 1) * eventCountPerThread; ++k) {
|
|
|
|
handleList[k] = dispatcher.appendListener(eventList[k], [&dispatcher, k, &dataList, &eventList, &handleList](const int e) {
|
|
|
|
dataList[k] += e;
|
|
|
|
dispatcher.removeListener(eventList[k], handleList[k]);
|
|
|
|
});
|
|
|
|
handleList[k + itemCount] = dispatcher.appendListener(
|
2020-07-01 14:10:02 +02:00
|
|
|
eventList[k], [&dispatcher, k, &dataList, &eventList, &handleList, itemCount](const int /*e*/, const int n) {
|
2020-04-19 21:18:27 +08:00
|
|
|
dataList[k] += n;
|
|
|
|
dispatcher.removeListener(eventList[k], handleList[k + itemCount]);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
for(int i = 0; i < threadCount; ++i) {
|
|
|
|
threadList[i].join();
|
|
|
|
}
|
|
|
|
|
|
|
|
threadList.clear();
|
|
|
|
for(int i = 0; i < threadCount; ++i) {
|
|
|
|
threadList.emplace_back([i, eventCountPerThread, &dispatcher, &eventList]() {
|
|
|
|
for(int k = i * eventCountPerThread; k < (i + 1) * eventCountPerThread; ++k) {
|
|
|
|
dispatcher.dispatch(eventList[k], eventList[k]);
|
|
|
|
dispatcher.dispatch(eventList[k], eventList[k], 5);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
for(int i = 0; i < threadCount; ++i) {
|
|
|
|
threadList[i].join();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::sort(eventList.begin(), eventList.end());
|
|
|
|
std::sort(dataList.begin(), dataList.end());
|
|
|
|
for(int & e : eventList) {
|
|
|
|
e += 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
REQUIRE(eventList == dataList);
|
|
|
|
}
|
|
|
|
|