mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-14 14:20:45 +01:00

Introduces SequenceChecker, merging the functionality of ThreadChecker and SequencedTaskChecker. Also making the two latter use the former as the underlying implementation for backwards compatibility. This allows code that uses thread checker to accept running on a thread pool backed task queue. Bug: webrtc:10365 Change-Id: Ifefc4925694f263088a8a095fdf98a2407c62081 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/129721 Commit-Queue: Sebastian Jansson <srte@webrtc.org> Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Reviewed-by: Niels Moller <nisse@webrtc.org> Cr-Commit-Position: refs/heads/master@{#27365}
65 lines
2 KiB
C++
65 lines
2 KiB
C++
/*
|
|
* Copyright 2019 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
#include "rtc_base/synchronization/sequence_checker.h"
|
|
|
|
#if defined(WEBRTC_MAC)
|
|
#include <dispatch/dispatch.h>
|
|
#endif
|
|
|
|
namespace webrtc {
|
|
namespace {
|
|
// On Mac, returns the label of the current dispatch queue; elsewhere, return
|
|
// null.
|
|
const void* GetSystemQueueRef() {
|
|
#if defined(WEBRTC_MAC)
|
|
return dispatch_queue_get_label(DISPATCH_CURRENT_QUEUE_LABEL);
|
|
#else
|
|
return nullptr;
|
|
#endif
|
|
}
|
|
} // namespace
|
|
|
|
SequenceCheckerImpl::SequenceCheckerImpl()
|
|
: attached_(true),
|
|
valid_thread_(rtc::CurrentThreadRef()),
|
|
valid_queue_(TaskQueueBase::Current()),
|
|
valid_system_queue_(GetSystemQueueRef()) {}
|
|
|
|
SequenceCheckerImpl::~SequenceCheckerImpl() = default;
|
|
|
|
bool SequenceCheckerImpl::IsCurrent() const {
|
|
const TaskQueueBase* const current_queue = TaskQueueBase::Current();
|
|
const rtc::PlatformThreadRef current_thread = rtc::CurrentThreadRef();
|
|
const void* const current_system_queue = GetSystemQueueRef();
|
|
rtc::CritScope scoped_lock(&lock_);
|
|
if (!attached_) { // Previously detached.
|
|
attached_ = true;
|
|
valid_thread_ = current_thread;
|
|
valid_queue_ = current_queue;
|
|
valid_system_queue_ = current_system_queue;
|
|
return true;
|
|
}
|
|
if (valid_queue_ || current_queue) {
|
|
return valid_queue_ == current_queue;
|
|
}
|
|
if (valid_system_queue_ && valid_system_queue_ == current_system_queue) {
|
|
return true;
|
|
}
|
|
return rtc::IsThreadRefEqual(valid_thread_, current_thread);
|
|
}
|
|
|
|
void SequenceCheckerImpl::Detach() {
|
|
rtc::CritScope scoped_lock(&lock_);
|
|
attached_ = false;
|
|
// We don't need to touch the other members here, they will be
|
|
// reset on the next call to IsCurrent().
|
|
}
|
|
|
|
} // namespace webrtc
|