forked from aws/aws-sdk-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathThreadTask.cpp
47 lines (39 loc) · 1.07 KB
/
ThreadTask.cpp
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
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/core/utils/threading/ThreadTask.h>
#include <aws/core/utils/threading/Executor.h>
using namespace Aws::Utils;
using namespace Aws::Utils::Threading;
ThreadTask::ThreadTask(PooledThreadExecutor& executor) : m_continue(true), m_executor(executor), m_thread(std::bind(&ThreadTask::MainTaskRunner, this))
{
}
ThreadTask::~ThreadTask()
{
StopProcessingWork();
m_thread.join();
}
void ThreadTask::MainTaskRunner()
{
std::unique_lock lock(m_executor.m_queueLock);
while (m_continue)
{
if (m_executor.HasTasks())
{
auto fn = m_executor.PopTask();
lock.unlock();
if(fn)
{
(*fn)();
Aws::Delete(fn);
}
lock.lock();
}
m_executor.m_sync.wait(lock, [this] { return !m_continue || m_executor.HasTasks(); });
}
}
void ThreadTask::StopProcessingWork()
{
m_continue = false;
}