2020-12-26 14:12:05 -08:00
|
|
|
// Copyright (c) FIRST and other WPILib contributors.
|
|
|
|
|
// Open Source Software; you can modify and/or share it under the terms of
|
|
|
|
|
// the WPILib BSD license file in the root directory of this project.
|
2018-10-05 16:32:43 -07:00
|
|
|
|
|
|
|
|
#include "wpi/SafeThread.h"
|
|
|
|
|
|
|
|
|
|
using namespace wpi;
|
|
|
|
|
|
|
|
|
|
detail::SafeThreadProxyBase::SafeThreadProxyBase(
|
|
|
|
|
std::shared_ptr<SafeThread> thr)
|
|
|
|
|
: m_thread(std::move(thr)) {
|
2020-12-28 12:58:06 -08:00
|
|
|
if (!m_thread) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2018-10-05 16:32:43 -07:00
|
|
|
m_lock = std::unique_lock<wpi::mutex>(m_thread->m_mutex);
|
|
|
|
|
if (!m_thread->m_active) {
|
|
|
|
|
m_lock.unlock();
|
|
|
|
|
m_thread = nullptr;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-06 15:17:13 -07:00
|
|
|
detail::SafeThreadOwnerBase::~SafeThreadOwnerBase() {
|
2020-12-28 12:58:06 -08:00
|
|
|
if (m_joinAtExit) {
|
2018-10-06 15:17:13 -07:00
|
|
|
Join();
|
2020-12-28 12:58:06 -08:00
|
|
|
} else {
|
2018-10-06 15:17:13 -07:00
|
|
|
Stop();
|
2020-12-28 12:58:06 -08:00
|
|
|
}
|
2018-10-06 15:17:13 -07:00
|
|
|
}
|
|
|
|
|
|
2018-10-05 16:32:43 -07:00
|
|
|
void detail::SafeThreadOwnerBase::Start(std::shared_ptr<SafeThread> thr) {
|
2019-07-08 22:58:39 -07:00
|
|
|
std::scoped_lock lock(m_mutex);
|
2020-12-28 12:58:06 -08:00
|
|
|
if (auto thr = m_thread.lock()) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2018-10-06 15:17:13 -07:00
|
|
|
m_stdThread = std::thread([=] { thr->Main(); });
|
2019-06-20 19:51:09 -07:00
|
|
|
thr->m_threadId = m_stdThread.get_id();
|
2018-10-05 16:32:43 -07:00
|
|
|
m_thread = thr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void detail::SafeThreadOwnerBase::Stop() {
|
2019-07-08 22:58:39 -07:00
|
|
|
std::scoped_lock lock(m_mutex);
|
2018-10-05 16:32:43 -07:00
|
|
|
if (auto thr = m_thread.lock()) {
|
|
|
|
|
thr->m_active = false;
|
2018-10-06 15:17:13 -07:00
|
|
|
thr->m_cond.notify_all();
|
|
|
|
|
m_thread.reset();
|
|
|
|
|
}
|
2020-12-28 12:58:06 -08:00
|
|
|
if (m_stdThread.joinable()) {
|
|
|
|
|
m_stdThread.detach();
|
|
|
|
|
}
|
2018-10-06 15:17:13 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void detail::SafeThreadOwnerBase::Join() {
|
2019-07-07 19:17:14 -07:00
|
|
|
std::unique_lock lock(m_mutex);
|
2018-10-06 15:17:13 -07:00
|
|
|
if (auto thr = m_thread.lock()) {
|
|
|
|
|
auto stdThread = std::move(m_stdThread);
|
|
|
|
|
m_thread.reset();
|
|
|
|
|
lock.unlock();
|
|
|
|
|
thr->m_active = false;
|
|
|
|
|
thr->m_cond.notify_all();
|
|
|
|
|
stdThread.join();
|
2018-10-06 18:07:56 -07:00
|
|
|
} else if (m_stdThread.joinable()) {
|
|
|
|
|
m_stdThread.detach();
|
2018-10-05 16:32:43 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void detail::swap(SafeThreadOwnerBase& lhs, SafeThreadOwnerBase& rhs) noexcept {
|
|
|
|
|
using std::swap;
|
2020-12-28 12:58:06 -08:00
|
|
|
if (&lhs == &rhs) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2019-07-08 22:58:39 -07:00
|
|
|
std::scoped_lock lock(lhs.m_mutex, rhs.m_mutex);
|
2018-10-06 15:17:13 -07:00
|
|
|
std::swap(lhs.m_stdThread, rhs.m_stdThread);
|
2018-10-05 16:32:43 -07:00
|
|
|
std::swap(lhs.m_thread, rhs.m_thread);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
detail::SafeThreadOwnerBase::operator bool() const {
|
2019-07-08 22:58:39 -07:00
|
|
|
std::scoped_lock lock(m_mutex);
|
2018-10-05 16:32:43 -07:00
|
|
|
return !m_thread.expired();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::thread::native_handle_type
|
2018-10-06 15:17:13 -07:00
|
|
|
detail::SafeThreadOwnerBase::GetNativeThreadHandle() {
|
2019-07-08 22:58:39 -07:00
|
|
|
std::scoped_lock lock(m_mutex);
|
2018-10-06 15:17:13 -07:00
|
|
|
return m_stdThread.native_handle();
|
2018-10-05 16:32:43 -07:00
|
|
|
}
|
|
|
|
|
|
2019-06-20 19:51:09 -07:00
|
|
|
std::shared_ptr<SafeThread> detail::SafeThreadOwnerBase::GetThreadSharedPtr()
|
|
|
|
|
const {
|
2019-07-08 22:58:39 -07:00
|
|
|
std::scoped_lock lock(m_mutex);
|
2018-10-05 16:32:43 -07:00
|
|
|
return m_thread.lock();
|
|
|
|
|
}
|