1
0
mirror of https://github.com/wqking/eventpp.git synced 2024-12-27 16:41:11 +08:00
eventpp/tests/test_callbacklist.cpp

667 lines
16 KiB
C++
Raw Normal View History

2018-05-13 12:26: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"
#define private public
#include "eventpp/callbacklist.h"
#undef private
#include <vector>
#include <thread>
#include <chrono>
#include <numeric>
#include <random>
#include <algorithm>
using namespace eventpp;
namespace {
template <typename CL, typename T>
void verifyLinkedList(CL & callbackList, const std::vector<T> & dataList)
{
const int count = (int)dataList.size();
if(count == 0) {
REQUIRE(! callbackList.head);
REQUIRE(! callbackList.tail);
return;
}
REQUIRE(! callbackList.head->previous);
REQUIRE(! callbackList.tail->next);
if(count == 1) {
REQUIRE(callbackList.head);
REQUIRE(callbackList.head == callbackList.tail);
}
auto node = callbackList.head;
for(int i = 0; i < count; ++i) {
REQUIRE(node);
if(i == 0) {
REQUIRE(! node->previous);
REQUIRE(node == callbackList.head);
}
if(i == count - 1) {
REQUIRE(! node->next);
REQUIRE(node == callbackList.tail);
}
REQUIRE(node->callback == dataList[i]);
node = node->next;
}
}
template <typename CL, typename T>
void verifyDisorderedLinkedList(CL & callbackList, std::vector<T> dataList)
{
std::vector<T> buffer;
auto node = callbackList.head;
while(node) {
buffer.push_back(node->callback);
node = node->next;
}
std::sort(buffer.begin(), buffer.end());
std::sort(dataList.begin(), dataList.end());
REQUIRE(buffer == dataList);
}
template <typename CL>
auto extractCallbackListHandles(CL & callbackList)
-> std::vector<typename CL::Handle>
{
std::vector<typename CL::Handle> result;
auto node = callbackList.head;
while(node) {
result.push_back(typename CL::Handle(node));
node = node->next;
}
return result;
}
template <typename T>
void verifyNoMemoryLeak(const std::vector<T> & nodeList)
{
for(const auto & node : nodeList) {
REQUIRE(! node.lock());
}
}
struct RemovalTester
{
RemovalTester(
const int callbackCount,
const int removerIndex,
const std::vector<int> & indexesToBeRemoved
)
:
callbackCount(callbackCount),
removerIndex(removerIndex),
indexesToBeRemoved(indexesToBeRemoved)
{
}
void test()
{
using CL = CallbackList<void()>;
CL callbackList;
std::vector<CL::Handle> handleList(callbackCount);
std::vector<int> dataList(callbackCount);
for(int i = 0; i < callbackCount; ++i) {
if(i == removerIndex) {
handleList[i] = callbackList.append([this, &dataList, &handleList, &callbackList, i]() {
dataList[i] = i + 1;
for(auto index : indexesToBeRemoved) {
callbackList.remove(handleList[index]);
}
});
}
else {
handleList[i] = callbackList.append([&dataList, i]() {
dataList[i] = i + 1;
});
}
}
callbackList();
std::vector<int> compareList(callbackCount);
std::iota(compareList.begin(), compareList.end(), 1);
for (auto index : indexesToBeRemoved) {
if(index > removerIndex) {
compareList[index] = 0;
}
}
REQUIRE(dataList == compareList);
}
const int callbackCount;
const int removerIndex;
const std::vector<int> indexesToBeRemoved;
};
2018-05-13 12:26:27 +08:00
} //unnamed namespace
TEST_CASE("CallbackList, nested callbacks, new callbacks should not be triggered")
{
using CL = CallbackList<void()>;
CL callbackList;
int a = 0, b = 0;
callbackList.append([&callbackList, &a, &b]() {
a = 1;
auto h1 = callbackList.append([&callbackList, &b] {
++b;
callbackList.append([&callbackList, &b] {
++b;
});
auto h2 = callbackList.prepend([&callbackList, &b] {
++b;
callbackList.append([&callbackList, &b] {
++b;
});
});
callbackList.append([&callbackList, &b] {
++b;
});
callbackList.insert([&callbackList, &b] {
++b;
}, h2);
callbackList.prepend([&callbackList, &b] {
++b;
});
});
callbackList.prepend([&callbackList, &b] {
++b;
});
callbackList.insert([&callbackList, &b] {
++b;
}, h1);
});
REQUIRE(a == 0);
REQUIRE(b == 0);
callbackList();
REQUIRE(a == 1);
REQUIRE(b == 0);
callbackList();
REQUIRE(a == 1);
REQUIRE(b == 3); // there are 3 new top level callback
b = 0;
callbackList();
REQUIRE(a == 1);
REQUIRE(b > 3);
}
TEST_CASE("CallbackList, remove inside callback")
{
RemovalTester(7, 3, { 0 }).test();
RemovalTester(7, 3, { 1 }).test();
RemovalTester(7, 3, { 2 }).test();
RemovalTester(7, 3, { 3 }).test();
RemovalTester(7, 3, { 4 }).test();
RemovalTester(7, 3, { 5 }).test();
RemovalTester(7, 3, { 6 }).test();
RemovalTester(7, 3, { 0, 3 }).test();
RemovalTester(7, 3, { 3, 0 }).test();
RemovalTester(7, 3, { 1, 3 }).test();
RemovalTester(7, 3, { 3, 1 }).test();
RemovalTester(7, 3, { 2, 3 }).test();
RemovalTester(7, 3, { 3, 2 }).test();
RemovalTester(7, 3, { 3, 4 }).test();
RemovalTester(7, 3, { 4, 3 }).test();
RemovalTester(7, 3, { 3, 5 }).test();
RemovalTester(7, 3, { 5, 3 }).test();
RemovalTester(7, 3, { 3, 6 }).test();
RemovalTester(7, 3, { 6, 3 }).test();
RemovalTester(7, 3, { 2, 4 }).test();
RemovalTester(7, 3, { 4, 2 }).test();
RemovalTester(7, 3, { 0, 6 }).test();
RemovalTester(7, 3, { 0, 0 }).test();
RemovalTester(7, 3, { 4, 5 }).test();
RemovalTester(7, 3, { 5, 4 }).test();
RemovalTester(7, 3, { 3, 4, 5 }).test();
RemovalTester(7, 3, { 3, 5, 4 }).test();
RemovalTester(7, 3, { 0, 1, 2, 3, 4, 5, 6 }).test();
RemovalTester(7, 3, { 6, 5, 4, 3, 2, 1, 0 }).test();
RemovalTester(7, 3, { 0, 2, 1, 3, 5, 4, 6 }).test();
RemovalTester(7, 3, { 6, 4, 5, 3, 1, 2, 0 }).test();
}
2018-05-13 12:26:27 +08:00
TEST_CASE("CallbackList, no memory leak after callback list is freed")
{
using CL = CallbackList<void(), int>;
2018-05-13 12:26:27 +08:00
std::vector<CL::Handle> nodeList;
{
CL callbackList;
for(int i = 100; i < 200; ++i) {
callbackList.append(i);
}
nodeList = extractCallbackListHandles(callbackList);
}
verifyNoMemoryLeak(nodeList);
}
TEST_CASE("CallbackList, no memory leak after all callbacks are removed")
{
using CL = CallbackList<void(), int>;
2018-05-13 12:26:27 +08:00
std::vector<CL::Handle> nodeList;
std::vector<CL::Handle> handleList;
CL callbackList;
for(int i = 100; i < 200; ++i) {
handleList.push_back(callbackList.append(i));
}
nodeList = extractCallbackListHandles(callbackList);
for(auto & handle : handleList) {
callbackList.remove(handle);
}
verifyNoMemoryLeak(nodeList);
}
TEST_CASE("CallbackList, append/remove/insert")
{
using CL = CallbackList<void(), int>;
2018-05-13 12:26:27 +08:00
CL callbackList;
REQUIRE(! callbackList.head);
REQUIRE(! callbackList.tail);
CL::Handle h100, h101, h102, h103, h104, h105, h106, h107;
{
auto handle = callbackList.append(100);
h100 = handle;
verifyLinkedList(callbackList, std::vector<int>{ 100 });
}
{
auto handle = callbackList.append(101);
h101 = handle;
verifyLinkedList(callbackList, std::vector<int>{ 100, 101 });
}
{
auto handle = callbackList.append(102);
h102 = handle;
verifyLinkedList(callbackList, std::vector<int>{ 100, 101, 102 });
}
{
auto handle = callbackList.append(103);
h103 = handle;
verifyLinkedList(callbackList, std::vector<int>{ 100, 101, 102, 103 });
}
{
auto handle = callbackList.append(104);
h104 = handle;
verifyLinkedList(callbackList, std::vector<int>{ 100, 101, 102, 103, 104 });
}
{
auto handle = callbackList.insert(105, h103); // before 103
h105 = handle;
verifyLinkedList(callbackList, std::vector<int>{ 100, 101, 102, 105, 103, 104 });
h107 = callbackList.insert(107, h100); // before 100
verifyLinkedList(callbackList, std::vector<int>{ 107, 100, 101, 102, 105, 103, 104 });
h106 = callbackList.insert(106, handle); // before 105
verifyLinkedList(callbackList, std::vector<int>{ 107, 100, 101, 102, 106, 105, 103, 104 });
}
callbackList.remove(h100);
verifyLinkedList(callbackList, std::vector<int>{ 107, 101, 102, 106, 105, 103, 104 });
callbackList.remove(h103);
callbackList.remove(h102);
verifyLinkedList(callbackList, std::vector<int>{ 107, 101, 106, 105, 104 });
callbackList.remove(h105);
callbackList.remove(h104);
callbackList.remove(h106);
callbackList.remove(h101);
callbackList.remove(h107);
verifyLinkedList(callbackList, std::vector<int>{});
}
TEST_CASE("CallbackList, insert")
{
using CL = CallbackList<void(), int>;
2018-05-13 12:26:27 +08:00
CL callbackList;
auto h100 = callbackList.append(100);
auto h101 = callbackList.append(101);
auto h102 = callbackList.append(102);
auto h103 = callbackList.append(103);
auto h104 = callbackList.append(104);
SECTION("before front") {
callbackList.insert(105, h100);
verifyLinkedList(callbackList, std::vector<int>{ 105, 100, 101, 102, 103, 104 });
}
SECTION("before second") {
callbackList.insert(105, h101);
verifyLinkedList(callbackList, std::vector<int>{ 100, 105, 101, 102, 103, 104 });
}
SECTION("before nonexist") {
2018-05-13 12:26:27 +08:00
callbackList.insert(105, CL::Handle());
verifyLinkedList(callbackList, std::vector<int>{ 100, 101, 102, 103, 104, 105 });
}
}
TEST_CASE("CallbackList, remove")
{
using CL = CallbackList<void(), int>;
2018-05-13 12:26:27 +08:00
CL callbackList;
auto h100 = callbackList.append(100);
auto h101 = callbackList.append(101);
auto h102 = callbackList.append(102);
auto h103 = callbackList.append(103);
auto h104 = callbackList.append(104);
SECTION("remove front") {
callbackList.remove(h100);
verifyLinkedList(callbackList, std::vector<int>{ 101, 102, 103, 104 });
callbackList.remove(h100);
verifyLinkedList(callbackList, std::vector<int>{ 101, 102, 103, 104 });
}
SECTION("remove second") {
callbackList.remove(h101);
verifyLinkedList(callbackList, std::vector<int>{ 100, 102, 103, 104 });
callbackList.remove(h101);
verifyLinkedList(callbackList, std::vector<int>{ 100, 102, 103, 104 });
}
SECTION("remove end") {
callbackList.remove(h104);
verifyLinkedList(callbackList, std::vector<int>{ 100, 101, 102, 103 });
callbackList.remove(h104);
verifyLinkedList(callbackList, std::vector<int>{ 100, 101, 102, 103 });
}
SECTION("remove nonexist") {
callbackList.remove(CL::Handle());
verifyLinkedList(callbackList, std::vector<int>{ 100, 101, 102, 103, 104 });
callbackList.remove(CL::Handle());
verifyLinkedList(callbackList, std::vector<int>{ 100, 101, 102, 103, 104 });
}
SECTION("remove all") {
callbackList.remove(h102);
callbackList.remove(h104);
callbackList.remove(h103);
callbackList.remove(h101);
callbackList.remove(h100);
verifyLinkedList(callbackList, std::vector<int>{ });
}
}
TEST_CASE("CallbackList, multi threading, append")
{
using CL = CallbackList<void(), int>;
2018-05-13 12:26:27 +08:00
CL callbackList;
constexpr int threadCount = 256;
constexpr int taskCountPerThread = 1024 * 4;
constexpr int itemCount = threadCount * taskCountPerThread;
std::vector<int> taskList(itemCount);
std::iota(taskList.begin(), taskList.end(), 0);
std::shuffle(taskList.begin(), taskList.end(), std::mt19937(std::random_device()()));
std::vector<std::thread> threadList;
for(int i = 0; i < threadCount; ++i) {
threadList.emplace_back([i, taskCountPerThread, &callbackList, &taskList]() {
for(int k = i * taskCountPerThread; k < (i + 1) * taskCountPerThread; ++k) {
callbackList.append(taskList[k]);
}
});
}
for(auto & thread : threadList) {
thread.join();
}
taskList.clear();
std::vector<int> compareList(itemCount);
std::iota(compareList.begin(), compareList.end(), 0);
verifyDisorderedLinkedList(callbackList, compareList);
}
TEST_CASE("CallbackList, multi threading, remove")
{
using CL = CallbackList<void(), int>;
2018-05-13 12:26:27 +08:00
CL callbackList;
constexpr int threadCount = 256;
constexpr int taskCountPerThread = 1024 * 4;
constexpr int itemCount = threadCount * taskCountPerThread;
std::vector<int> taskList(itemCount);
std::iota(taskList.begin(), taskList.end(), 0);
std::shuffle(taskList.begin(), taskList.end(), std::mt19937(std::random_device()()));
std::vector<CL::Handle> handleList;
for(const auto & item : taskList) {
handleList.push_back(callbackList.append(item));
}
std::vector<std::thread> threadList;
for(int i = 0; i < threadCount; ++i) {
threadList.emplace_back([i, taskCountPerThread, &callbackList, &handleList]() {
for(int k = i * taskCountPerThread; k < (i + 1) * taskCountPerThread; ++k) {
callbackList.remove(handleList[k]);
}
});
}
for(auto & thread : threadList) {
thread.join();
}
taskList.clear();
REQUIRE(! callbackList.head);
REQUIRE(! callbackList.tail);
}
TEST_CASE("CallbackList, multi threading, double remove")
2018-05-13 12:26:27 +08:00
{
using CL = CallbackList<void(), int>;
2018-05-13 12:26:27 +08:00
CL callbackList;
constexpr int threadCount = 256;
constexpr int taskCountPerThread = 1024 * 4;
constexpr int itemCount = threadCount * taskCountPerThread;
std::vector<int> taskList(itemCount);
std::iota(taskList.begin(), taskList.end(), 0);
std::shuffle(taskList.begin(), taskList.end(), std::mt19937(std::random_device()()));
std::vector<CL::Handle> handleList;
for(const auto & item : taskList) {
handleList.push_back(callbackList.append(item));
}
std::vector<std::thread> threadList;
for(int i = 0; i < threadCount; ++i) {
threadList.emplace_back([i, taskCountPerThread, &callbackList, &handleList, threadCount]() {
int start = i;
int end = i + 1;
if(i > 0) {
--start;
}
else if(i < threadCount - 1) {
++end;
}
for(int k = start * taskCountPerThread; k < end * taskCountPerThread; ++k) {
callbackList.remove(handleList[k]);
}
});
}
for(auto & thread : threadList) {
thread.join();
}
taskList.clear();
REQUIRE(! callbackList.head);
REQUIRE(! callbackList.tail);
}
TEST_CASE("CallbackList, multi threading, append/double remove")
2018-05-13 12:26:27 +08:00
{
using CL = CallbackList<void(), int>;
2018-05-13 12:26:27 +08:00
CL callbackList;
constexpr int threadCount = 256;
constexpr int taskCountPerThread = 1024 * 4;
constexpr int itemCount = threadCount * taskCountPerThread;
std::vector<int> taskList(itemCount);
std::iota(taskList.begin(), taskList.end(), 0);
std::shuffle(taskList.begin(), taskList.end(), std::mt19937(std::random_device()()));
std::vector<CL::Handle> handleList(taskList.size());
std::vector<std::thread> threadList;
for(int i = 0; i < threadCount; ++i) {
threadList.emplace_back([i, taskCountPerThread, &callbackList, &handleList, threadCount, &taskList]() {
for(int k = i * taskCountPerThread; k < (i + 1) * taskCountPerThread; ++k) {
handleList[k] = callbackList.append(taskList[k]);
}
int start = i;
int end = i + 1;
if(i > 0) {
--start;
}
else if(i < threadCount - 1) {
++end;
}
for(int k = start * taskCountPerThread; k < end * taskCountPerThread; ++k) {
callbackList.remove(handleList[k]);
}
});
}
for(auto & thread : threadList) {
thread.join();
}
taskList.clear();
REQUIRE(! callbackList.head);
REQUIRE(! callbackList.tail);
}
TEST_CASE("CallbackList, multi threading, insert")
{
using CL = CallbackList<void(), int>;
2018-05-13 12:26:27 +08:00
CL callbackList;
constexpr int threadCount = 256;
constexpr int taskCountPerThread = 1024;
constexpr int itemCount = threadCount * taskCountPerThread;
std::vector<int> taskList(itemCount);
std::iota(taskList.begin(), taskList.end(), 0);
std::shuffle(taskList.begin(), taskList.end(), std::mt19937(std::random_device()()));
std::vector<CL::Handle> handleList(taskList.size());
std::vector<std::thread> threadList;
for(int i = 0; i < threadCount; ++i) {
threadList.emplace_back([i, taskCountPerThread, &callbackList, &taskList, &handleList]() {
int k = i * taskCountPerThread;
for(; k < (i + 1) * taskCountPerThread / 2; ++k) {
handleList[k] = callbackList.append(taskList[k]);
}
int offset = 0;
for(; k < (i + 1) * taskCountPerThread / 2 + (i + 1) * taskCountPerThread / 4; ++k) {
handleList[k] = callbackList.insert(taskList[k], handleList[offset++]);
}
for(; k < (i + 1) * taskCountPerThread; ++k) {
handleList[k] = callbackList.insert(taskList[k], handleList[offset++]);
}
});
}
for(auto & thread : threadList) {
thread.join();
}
taskList.clear();
std::vector<int> compareList(itemCount);
std::iota(compareList.begin(), compareList.end(), 0);
verifyDisorderedLinkedList(callbackList, compareList);
}