blob: 000c08513bb2e6fb68ffe51fb8f330dc21981f48 (
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
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/crt/io/EventLoopGroup.h>
#include <iostream>
namespace Aws
{
namespace Crt
{
namespace Io
{
EventLoopGroup::EventLoopGroup(uint16_t threadCount, Allocator *allocator) noexcept
: m_eventLoopGroup(nullptr), m_lastError(AWS_ERROR_SUCCESS)
{
m_eventLoopGroup = aws_event_loop_group_new_default(allocator, threadCount, NULL);
if (m_eventLoopGroup == nullptr)
{
m_lastError = aws_last_error();
}
}
EventLoopGroup::EventLoopGroup(uint16_t cpuGroup, uint16_t threadCount, Allocator *allocator) noexcept
: m_eventLoopGroup(nullptr), m_lastError(AWS_ERROR_SUCCESS)
{
m_eventLoopGroup =
aws_event_loop_group_new_default_pinned_to_cpu_group(allocator, threadCount, cpuGroup, NULL);
if (m_eventLoopGroup == nullptr)
{
m_lastError = aws_last_error();
}
}
EventLoopGroup::~EventLoopGroup() { aws_event_loop_group_release(m_eventLoopGroup); }
EventLoopGroup::EventLoopGroup(EventLoopGroup &&toMove) noexcept
: m_eventLoopGroup(toMove.m_eventLoopGroup), m_lastError(toMove.m_lastError)
{
toMove.m_lastError = AWS_ERROR_UNKNOWN;
toMove.m_eventLoopGroup = nullptr;
}
EventLoopGroup &EventLoopGroup::operator=(EventLoopGroup &&toMove) noexcept
{
m_eventLoopGroup = toMove.m_eventLoopGroup;
m_lastError = toMove.m_lastError;
toMove.m_lastError = AWS_ERROR_UNKNOWN;
toMove.m_eventLoopGroup = nullptr;
return *this;
}
int EventLoopGroup::LastError() const { return m_lastError; }
EventLoopGroup::operator bool() const { return m_lastError == AWS_ERROR_SUCCESS; }
aws_event_loop_group *EventLoopGroup::GetUnderlyingHandle() noexcept
{
if (*this)
{
return m_eventLoopGroup;
}
return nullptr;
}
} // namespace Io
} // namespace Crt
} // namespace Aws
|