-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathEventLoopGroup.cpp
80 lines (68 loc) · 2.51 KB
/
EventLoopGroup.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
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
/**
* 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