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 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
|
/*
* Copyright (C) 2005-2018 Team Kodi
* This file is part of Kodi - https://kodi.tv
*
* SPDX-License-Identifier: GPL-2.0-or-later
* See LICENSES/README.md for more information.
*/
#include "threads/Event.h"
#include "threads/IRunnable.h"
#include "threads/SharedSection.h"
#include "threads/test/TestHelpers.h"
#include <mutex>
#include <shared_mutex>
#include <stdio.h>
using namespace std::chrono_literals;
//=============================================================================
// Helper classes
//=============================================================================
template<class L>
class locker : public IRunnable
{
CSharedSection& sec;
CEvent* wait;
std::atomic<long>* mutex;
public:
volatile bool haslock;
volatile bool obtainedlock;
inline locker(CSharedSection& o, std::atomic<long>* mutex_ = NULL, CEvent* wait_ = NULL) :
sec(o), wait(wait_), mutex(mutex_), haslock(false), obtainedlock(false) {}
inline locker(CSharedSection& o, CEvent* wait_ = NULL) :
sec(o), wait(wait_), mutex(NULL), haslock(false), obtainedlock(false) {}
void Run() override
{
AtomicGuard g(mutex);
L lock(sec);
haslock = true;
obtainedlock = true;
if (wait)
wait->Wait();
haslock = false;
}
};
TEST(TestCritSection, General)
{
CCriticalSection sec;
std::unique_lock<CCriticalSection> l1(sec);
std::unique_lock<CCriticalSection> l2(sec);
}
TEST(TestSharedSection, General)
{
CSharedSection sec;
std::shared_lock<CSharedSection> l1(sec);
std::shared_lock<CSharedSection> l2(sec);
}
TEST(TestSharedSection, GetSharedLockWhileTryingExclusiveLock)
{
std::atomic<long> mutex(0L);
CEvent event;
CSharedSection sec;
std::shared_lock<CSharedSection> l1(sec); // get a shared lock
locker<std::unique_lock<CSharedSection>> l2(sec, &mutex);
thread waitThread1(l2); // try to get an exclusive lock
EXPECT_TRUE(waitForThread(mutex, 1, 10000ms));
std::this_thread::sleep_for(10ms); // still need to give it a chance to move ahead
EXPECT_TRUE(!l2.haslock); // this thread is waiting ...
EXPECT_TRUE(!l2.obtainedlock); // this thread is waiting ...
// now try and get a SharedLock
locker<std::shared_lock<CSharedSection>> l3(sec, &mutex, &event);
thread waitThread3(l3); // try to get a shared lock
EXPECT_TRUE(waitForThread(mutex, 2, 10000ms));
std::this_thread::sleep_for(10ms);
EXPECT_TRUE(l3.haslock);
event.Set();
EXPECT_TRUE(waitThread3.timed_join(10000ms));
// l3 should have released.
EXPECT_TRUE(!l3.haslock);
// but the exclusive lock should still not have happened
EXPECT_TRUE(!l2.haslock); // this thread is waiting ...
EXPECT_TRUE(!l2.obtainedlock); // this thread is waiting ...
// let it go
l1.unlock(); // the last shared lock leaves.
EXPECT_TRUE(waitThread1.timed_join(10000ms));
EXPECT_TRUE(l2.obtainedlock); // the exclusive lock was captured
EXPECT_TRUE(!l2.haslock); // ... but it doesn't have it anymore
}
TEST(TestSharedSection, TwoCase)
{
CSharedSection sec;
CEvent event;
std::atomic<long> mutex(0L);
locker<std::shared_lock<CSharedSection>> l1(sec, &mutex, &event);
{
std::shared_lock<CSharedSection> lock(sec);
thread waitThread1(l1);
EXPECT_TRUE(waitForWaiters(event, 1, 10000ms));
EXPECT_TRUE(l1.haslock);
event.Set();
EXPECT_TRUE(waitThread1.timed_join(10000ms));
}
locker<std::shared_lock<CSharedSection>> l2(sec, &mutex, &event);
{
std::unique_lock<CSharedSection> lock(sec); // get exclusive lock
thread waitThread2(l2); // thread should block
EXPECT_TRUE(waitForThread(mutex, 1, 10000ms));
std::this_thread::sleep_for(10ms);
EXPECT_TRUE(!l2.haslock);
lock.unlock();
EXPECT_TRUE(waitForWaiters(event, 1, 10000ms));
std::this_thread::sleep_for(10ms);
EXPECT_TRUE(l2.haslock);
event.Set();
EXPECT_TRUE(waitThread2.timed_join(10000ms));
}
}
TEST(TestMultipleSharedSection, General)
{
CSharedSection sec;
CEvent event;
std::atomic<long> mutex(0L);
locker<std::shared_lock<CSharedSection>> l1(sec, &mutex, &event);
{
std::shared_lock<CSharedSection> lock(sec);
thread waitThread1(l1);
EXPECT_TRUE(waitForThread(mutex, 1, 10000ms));
std::this_thread::sleep_for(10ms);
EXPECT_TRUE(l1.haslock);
event.Set();
EXPECT_TRUE(waitThread1.timed_join(10000ms));
}
locker<std::shared_lock<CSharedSection>> l2(sec, &mutex, &event);
locker<std::shared_lock<CSharedSection>> l3(sec, &mutex, &event);
locker<std::shared_lock<CSharedSection>> l4(sec, &mutex, &event);
locker<std::shared_lock<CSharedSection>> l5(sec, &mutex, &event);
{
std::unique_lock<CSharedSection> lock(sec);
thread waitThread1(l2);
thread waitThread2(l3);
thread waitThread3(l4);
thread waitThread4(l5);
EXPECT_TRUE(waitForThread(mutex, 4, 10000ms));
std::this_thread::sleep_for(10ms);
EXPECT_TRUE(!l2.haslock);
EXPECT_TRUE(!l3.haslock);
EXPECT_TRUE(!l4.haslock);
EXPECT_TRUE(!l5.haslock);
lock.unlock();
EXPECT_TRUE(waitForWaiters(event, 4, 10000ms));
EXPECT_TRUE(l2.haslock);
EXPECT_TRUE(l3.haslock);
EXPECT_TRUE(l4.haslock);
EXPECT_TRUE(l5.haslock);
event.Set();
EXPECT_TRUE(waitThread1.timed_join(10000ms));
EXPECT_TRUE(waitThread2.timed_join(10000ms));
EXPECT_TRUE(waitThread3.timed_join(10000ms));
EXPECT_TRUE(waitThread4.timed_join(10000ms));
}
}
|