2014-05-13 18:00:26 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright 2014 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "rtc_base/asyncinvoker.h"
|
2014-05-13 18:00:26 +00:00
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "rtc_base/checks.h"
|
|
|
|
|
#include "rtc_base/logging.h"
|
2015-04-02 12:30:51 +02:00
|
|
|
|
2014-05-13 18:00:26 +00:00
|
|
|
namespace rtc {
|
|
|
|
|
|
2017-08-08 17:59:47 -07:00
|
|
|
AsyncInvoker::AsyncInvoker()
|
|
|
|
|
: pending_invocations_(0),
|
2018-11-07 08:43:50 +01:00
|
|
|
invocation_complete_(new RefCountedObject<Event>()),
|
2017-08-08 17:59:47 -07:00
|
|
|
destroying_(false) {}
|
2014-05-13 18:00:26 +00:00
|
|
|
|
|
|
|
|
AsyncInvoker::~AsyncInvoker() {
|
2017-08-08 17:59:47 -07:00
|
|
|
destroying_.store(true, std::memory_order_relaxed);
|
2014-05-13 18:00:26 +00:00
|
|
|
// Messages for this need to be cleared *before* our destructor is complete.
|
|
|
|
|
MessageQueueManager::Clear(this);
|
2017-02-23 17:10:07 -08:00
|
|
|
// And we need to wait for any invocations that are still in progress on
|
2017-08-08 17:59:47 -07:00
|
|
|
// other threads. Using memory_order_acquire for synchronization with
|
|
|
|
|
// AsyncClosure destructors.
|
|
|
|
|
while (pending_invocations_.load(std::memory_order_acquire) > 0) {
|
2017-02-23 17:10:07 -08:00
|
|
|
// If the destructor was called while AsyncInvoke was being called by
|
|
|
|
|
// another thread, WITHIN an AsyncInvoked functor, it may do another
|
|
|
|
|
// Thread::Post even after we called MessageQueueManager::Clear(this). So
|
|
|
|
|
// we need to keep calling Clear to discard these posts.
|
2017-08-08 17:59:47 -07:00
|
|
|
Thread::Current()->Clear(this);
|
|
|
|
|
invocation_complete_->Wait(Event::kForever);
|
2017-02-23 17:10:07 -08:00
|
|
|
}
|
2014-05-13 18:00:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AsyncInvoker::OnMessage(Message* msg) {
|
|
|
|
|
// Get the AsyncClosure shared ptr from this message's data.
|
2017-02-17 18:06:26 -08:00
|
|
|
ScopedMessageData<AsyncClosure>* data =
|
|
|
|
|
static_cast<ScopedMessageData<AsyncClosure>*>(msg->pdata);
|
2014-05-13 18:00:26 +00:00
|
|
|
// Execute the closure and trigger the return message if needed.
|
2017-02-17 18:06:26 -08:00
|
|
|
data->inner_data().Execute();
|
|
|
|
|
delete data;
|
2014-05-13 18:00:26 +00:00
|
|
|
}
|
|
|
|
|
|
Use suffixed {uint,int}{8,16,32,64}_t types.
Removes the use of uint8, etc. in favor of uint8_t.
BUG=webrtc:5024
R=henrik.lundin@webrtc.org, henrikg@webrtc.org, perkj@webrtc.org, solenberg@webrtc.org, stefan@webrtc.org, tina.legrand@webrtc.org
Review URL: https://codereview.webrtc.org/1362503003 .
Cr-Commit-Position: refs/heads/master@{#10196}
2015-10-07 12:23:21 +02:00
|
|
|
void AsyncInvoker::Flush(Thread* thread, uint32_t id /*= MQID_ANY*/) {
|
2017-08-08 17:59:47 -07:00
|
|
|
// If the destructor is waiting for invocations to finish, don't start
|
|
|
|
|
// running even more tasks.
|
|
|
|
|
if (destroying_.load(std::memory_order_relaxed))
|
|
|
|
|
return;
|
2014-05-13 18:00:26 +00:00
|
|
|
|
|
|
|
|
// Run this on |thread| to reduce the number of context switches.
|
|
|
|
|
if (Thread::Current() != thread) {
|
2016-06-10 14:17:27 -07:00
|
|
|
thread->Invoke<void>(RTC_FROM_HERE,
|
|
|
|
|
Bind(&AsyncInvoker::Flush, this, thread, id));
|
2014-05-13 18:00:26 +00:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MessageList removed;
|
|
|
|
|
thread->Clear(this, id, &removed);
|
|
|
|
|
for (MessageList::iterator it = removed.begin(); it != removed.end(); ++it) {
|
|
|
|
|
// This message was pending on this thread, so run it now.
|
2016-06-10 14:17:27 -07:00
|
|
|
thread->Send(it->posted_from, it->phandler, it->message_id, it->pdata);
|
2014-05-13 18:00:26 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-31 12:52:24 -08:00
|
|
|
void AsyncInvoker::Clear() {
|
|
|
|
|
MessageQueueManager::Clear(this);
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-10 14:17:27 -07:00
|
|
|
void AsyncInvoker::DoInvoke(const Location& posted_from,
|
|
|
|
|
Thread* thread,
|
2017-02-17 18:06:26 -08:00
|
|
|
std::unique_ptr<AsyncClosure> closure,
|
Use suffixed {uint,int}{8,16,32,64}_t types.
Removes the use of uint8, etc. in favor of uint8_t.
BUG=webrtc:5024
R=henrik.lundin@webrtc.org, henrikg@webrtc.org, perkj@webrtc.org, solenberg@webrtc.org, stefan@webrtc.org, tina.legrand@webrtc.org
Review URL: https://codereview.webrtc.org/1362503003 .
Cr-Commit-Position: refs/heads/master@{#10196}
2015-10-07 12:23:21 +02:00
|
|
|
uint32_t id) {
|
2017-08-08 17:59:47 -07:00
|
|
|
if (destroying_.load(std::memory_order_relaxed)) {
|
|
|
|
|
// Note that this may be expected, if the application is AsyncInvoking
|
|
|
|
|
// tasks that AsyncInvoke other tasks. But otherwise it indicates a race
|
|
|
|
|
// between a thread destroying the AsyncInvoker and a thread still trying
|
|
|
|
|
// to use it.
|
2017-11-09 11:09:25 +01:00
|
|
|
RTC_LOG(LS_WARNING) << "Tried to invoke while destroying the invoker.";
|
2014-05-13 18:00:26 +00:00
|
|
|
return;
|
|
|
|
|
}
|
2016-06-10 14:17:27 -07:00
|
|
|
thread->Post(posted_from, this, id,
|
2017-02-17 18:06:26 -08:00
|
|
|
new ScopedMessageData<AsyncClosure>(std::move(closure)));
|
2014-05-13 18:00:26 +00:00
|
|
|
}
|
|
|
|
|
|
2016-06-10 14:17:27 -07:00
|
|
|
void AsyncInvoker::DoInvokeDelayed(const Location& posted_from,
|
|
|
|
|
Thread* thread,
|
2017-02-17 18:06:26 -08:00
|
|
|
std::unique_ptr<AsyncClosure> closure,
|
Use suffixed {uint,int}{8,16,32,64}_t types.
Removes the use of uint8, etc. in favor of uint8_t.
BUG=webrtc:5024
R=henrik.lundin@webrtc.org, henrikg@webrtc.org, perkj@webrtc.org, solenberg@webrtc.org, stefan@webrtc.org, tina.legrand@webrtc.org
Review URL: https://codereview.webrtc.org/1362503003 .
Cr-Commit-Position: refs/heads/master@{#10196}
2015-10-07 12:23:21 +02:00
|
|
|
uint32_t delay_ms,
|
|
|
|
|
uint32_t id) {
|
2017-08-08 17:59:47 -07:00
|
|
|
if (destroying_.load(std::memory_order_relaxed)) {
|
|
|
|
|
// See above comment.
|
2017-11-09 11:09:25 +01:00
|
|
|
RTC_LOG(LS_WARNING) << "Tried to invoke while destroying the invoker.";
|
2015-06-18 14:44:41 -07:00
|
|
|
return;
|
|
|
|
|
}
|
2016-06-10 14:17:27 -07:00
|
|
|
thread->PostDelayed(posted_from, delay_ms, this, id,
|
2017-02-17 18:06:26 -08:00
|
|
|
new ScopedMessageData<AsyncClosure>(std::move(closure)));
|
2015-06-18 14:44:41 -07:00
|
|
|
}
|
|
|
|
|
|
2015-08-20 16:42:42 +02:00
|
|
|
GuardedAsyncInvoker::GuardedAsyncInvoker() : thread_(Thread::Current()) {
|
|
|
|
|
thread_->SignalQueueDestroyed.connect(this,
|
|
|
|
|
&GuardedAsyncInvoker::ThreadDestroyed);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GuardedAsyncInvoker::~GuardedAsyncInvoker() {}
|
|
|
|
|
|
Use suffixed {uint,int}{8,16,32,64}_t types.
Removes the use of uint8, etc. in favor of uint8_t.
BUG=webrtc:5024
R=henrik.lundin@webrtc.org, henrikg@webrtc.org, perkj@webrtc.org, solenberg@webrtc.org, stefan@webrtc.org, tina.legrand@webrtc.org
Review URL: https://codereview.webrtc.org/1362503003 .
Cr-Commit-Position: refs/heads/master@{#10196}
2015-10-07 12:23:21 +02:00
|
|
|
bool GuardedAsyncInvoker::Flush(uint32_t id) {
|
2017-08-08 17:59:47 -07:00
|
|
|
CritScope cs(&crit_);
|
2015-08-20 16:42:42 +02:00
|
|
|
if (thread_ == nullptr)
|
|
|
|
|
return false;
|
|
|
|
|
invoker_.Flush(thread_, id);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void GuardedAsyncInvoker::ThreadDestroyed() {
|
2017-08-08 17:59:47 -07:00
|
|
|
CritScope cs(&crit_);
|
2015-08-20 16:42:42 +02:00
|
|
|
// We should never get more than one notification about the thread dying.
|
2015-09-17 00:24:34 -07:00
|
|
|
RTC_DCHECK(thread_ != nullptr);
|
2015-08-20 16:42:42 +02:00
|
|
|
thread_ = nullptr;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-08 17:59:47 -07:00
|
|
|
AsyncClosure::AsyncClosure(AsyncInvoker* invoker)
|
|
|
|
|
: invoker_(invoker), invocation_complete_(invoker_->invocation_complete_) {
|
|
|
|
|
invoker_->pending_invocations_.fetch_add(1, std::memory_order_relaxed);
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-23 17:10:07 -08:00
|
|
|
AsyncClosure::~AsyncClosure() {
|
2017-08-08 17:59:47 -07:00
|
|
|
// Using memory_order_release for synchronization with the AsyncInvoker
|
|
|
|
|
// destructor.
|
|
|
|
|
invoker_->pending_invocations_.fetch_sub(1, std::memory_order_release);
|
|
|
|
|
|
|
|
|
|
// After |pending_invocations_| is decremented, we may need to signal
|
|
|
|
|
// |invocation_complete_| in case the AsyncInvoker is being destroyed and
|
|
|
|
|
// waiting for pending tasks to complete.
|
|
|
|
|
//
|
|
|
|
|
// It's also possible that the destructor finishes before "Set()" is called,
|
|
|
|
|
// which is safe because the event is reference counted (and in a thread-safe
|
|
|
|
|
// way).
|
|
|
|
|
invocation_complete_->Set();
|
2017-02-23 17:10:07 -08:00
|
|
|
}
|
|
|
|
|
|
2014-05-13 18:00:26 +00:00
|
|
|
} // namespace rtc
|