Move rtc::NewClosure into own build target as ToQueuedTask

to make it usable without need to depend on rtc_task_queue

Bug: webrtc:10191
Change-Id: I2ae1445cf5d498aa6928d66b6823f2f940987767
Reviewed-on: https://webrtc-review.googlesource.com/c/125084
Reviewed-by: Karl Wiberg <kwiberg@webrtc.org>
Reviewed-by: Sebastian Jansson <srte@webrtc.org>
Commit-Queue: Danil Chapovalov <danilchap@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#26942}
This commit is contained in:
Danil Chapovalov
2019-03-01 14:58:44 +01:00
committed by Commit Bot
parent b2c4700d39
commit 3b548ddb1c
9 changed files with 249 additions and 173 deletions

View File

@ -492,6 +492,7 @@ if (rtc_include_tests) {
"rtc_base:sigslot_unittest", "rtc_base:sigslot_unittest",
"rtc_base:weak_ptr_unittests", "rtc_base:weak_ptr_unittests",
"rtc_base/experiments:experiments_unittests", "rtc_base/experiments:experiments_unittests",
"rtc_base/task_utils:to_queued_task_unittests",
"sdk:sdk_tests", "sdk:sdk_tests",
"test/scenario/network:network_emulation_unittests", "test/scenario/network:network_emulation_unittests",
] ]

View File

@ -42,8 +42,8 @@ rtc_source_set("task_queue_test") {
deps = [ deps = [
":task_queue", ":task_queue",
"../../rtc_base:rtc_event", "../../rtc_base:rtc_event",
"../../rtc_base:rtc_task_queue_api",
"../../rtc_base:timeutils", "../../rtc_base:timeutils",
"../../rtc_base/task_utils:to_queued_task",
"../../test:test_support", "../../test:test_support",
"//third_party/abseil-cpp/absl/memory", "//third_party/abseil-cpp/absl/memory",
"//third_party/abseil-cpp/absl/strings", "//third_party/abseil-cpp/absl/strings",

View File

@ -12,7 +12,7 @@
#include "absl/memory/memory.h" #include "absl/memory/memory.h"
#include "absl/strings/string_view.h" #include "absl/strings/string_view.h"
#include "rtc_base/event.h" #include "rtc_base/event.h"
#include "rtc_base/task_queue.h" #include "rtc_base/task_utils/to_queued_task.h"
#include "rtc_base/time_utils.h" #include "rtc_base/time_utils.h"
namespace webrtc { namespace webrtc {
@ -40,7 +40,7 @@ TEST_P(TaskQueueTest, PostAndCheckCurrent) {
EXPECT_FALSE(queue->IsCurrent()); EXPECT_FALSE(queue->IsCurrent());
EXPECT_FALSE(TaskQueueBase::Current()); EXPECT_FALSE(TaskQueueBase::Current());
queue->PostTask(rtc::NewClosure([&event, &queue] { queue->PostTask(ToQueuedTask([&event, &queue] {
EXPECT_TRUE(queue->IsCurrent()); EXPECT_TRUE(queue->IsCurrent());
event.Set(); event.Set();
})); }));
@ -74,7 +74,7 @@ TEST_P(TaskQueueTest, PostDelayedZero) {
rtc::Event event; rtc::Event event;
auto queue = CreateTaskQueue(factory, "PostDelayedZero"); auto queue = CreateTaskQueue(factory, "PostDelayedZero");
queue->PostDelayedTask(rtc::NewClosure([&event] { event.Set(); }), 0); queue->PostDelayedTask(ToQueuedTask([&event] { event.Set(); }), 0);
EXPECT_TRUE(event.Wait(1000)); EXPECT_TRUE(event.Wait(1000));
} }
@ -83,8 +83,8 @@ TEST_P(TaskQueueTest, PostFromQueue) {
rtc::Event event; rtc::Event event;
auto queue = CreateTaskQueue(factory, "PostFromQueue"); auto queue = CreateTaskQueue(factory, "PostFromQueue");
queue->PostTask(rtc::NewClosure([&event, &queue] { queue->PostTask(ToQueuedTask([&event, &queue] {
queue->PostTask(rtc::NewClosure([&event] { event.Set(); })); queue->PostTask(ToQueuedTask([&event] { event.Set(); }));
})); }));
EXPECT_TRUE(event.Wait(1000)); EXPECT_TRUE(event.Wait(1000));
} }
@ -96,7 +96,7 @@ TEST_P(TaskQueueTest, PostDelayed) {
CreateTaskQueue(factory, "PostDelayed", TaskQueueFactory::Priority::HIGH); CreateTaskQueue(factory, "PostDelayed", TaskQueueFactory::Priority::HIGH);
int64_t start = rtc::TimeMillis(); int64_t start = rtc::TimeMillis();
queue->PostDelayedTask(rtc::NewClosure([&event, &queue] { queue->PostDelayedTask(ToQueuedTask([&event, &queue] {
EXPECT_TRUE(queue->IsCurrent()); EXPECT_TRUE(queue->IsCurrent());
event.Set(); event.Set();
}), }),
@ -117,7 +117,7 @@ TEST_P(TaskQueueTest, PostMultipleDelayed) {
std::vector<rtc::Event> events(100); std::vector<rtc::Event> events(100);
for (int i = 0; i < 100; ++i) { for (int i = 0; i < 100; ++i) {
rtc::Event* event = &events[i]; rtc::Event* event = &events[i];
queue->PostDelayedTask(rtc::NewClosure([event, &queue] { queue->PostDelayedTask(ToQueuedTask([event, &queue] {
EXPECT_TRUE(queue->IsCurrent()); EXPECT_TRUE(queue->IsCurrent());
event->Set(); event->Set();
}), }),
@ -134,8 +134,7 @@ TEST_P(TaskQueueTest, PostDelayedAfterDestruct) {
rtc::Event deleted; rtc::Event deleted;
auto queue = CreateTaskQueue(factory, "PostDelayedAfterDestruct"); auto queue = CreateTaskQueue(factory, "PostDelayedAfterDestruct");
queue->PostDelayedTask( queue->PostDelayedTask(
rtc::NewClosure([&run] { run.Set(); }, [&deleted] { deleted.Set(); }), ToQueuedTask([&run] { run.Set(); }, [&deleted] { deleted.Set(); }), 100);
100);
// Destroy the queue. // Destroy the queue.
queue = nullptr; queue = nullptr;
// Task might outlive the TaskQueue, but still should be deleted. // Task might outlive the TaskQueue, but still should be deleted.
@ -206,11 +205,11 @@ TEST_P(TaskQueueTest, PostALot) {
// case inside of the libevent queue implementation. // case inside of the libevent queue implementation.
queue->PostTask( queue->PostTask(
rtc::NewClosure([&event] { event.Wait(rtc::Event::kForever); })); ToQueuedTask([&event] { event.Wait(rtc::Event::kForever); }));
for (int i = 0; i < kTaskCount; ++i) for (int i = 0; i < kTaskCount; ++i)
queue->PostTask( queue->PostTask(
rtc::NewClosure([&tasks_executed] { ++tasks_executed; }, ToQueuedTask([&tasks_executed] { ++tasks_executed; },
[&tasks_cleaned_up] { ++tasks_cleaned_up; })); [&tasks_cleaned_up] { ++tasks_cleaned_up; }));
event.Set(); // Unblock the first task. event.Set(); // Unblock the first task.
} }
@ -237,11 +236,11 @@ TEST_P(TaskQueueTest, PostTwoWithSharedUnprotectedState) {
auto queue = CreateTaskQueue(factory, "PostTwoWithSharedUnprotectedState"); auto queue = CreateTaskQueue(factory, "PostTwoWithSharedUnprotectedState");
rtc::Event done; rtc::Event done;
queue->PostTask(rtc::NewClosure([&state, &queue, &done] { queue->PostTask(ToQueuedTask([&state, &queue, &done] {
// Post tasks from queue to guarantee, that 1st task won't be // Post tasks from queue to guarantee, that 1st task won't be
// executed before the second one will be posted. // executed before the second one will be posted.
queue->PostTask(rtc::NewClosure([&state] { state.state = 1; })); queue->PostTask(ToQueuedTask([&state] { state.state = 1; }));
queue->PostTask(rtc::NewClosure([&state, &done] { queue->PostTask(ToQueuedTask([&state, &done] {
EXPECT_EQ(state.state, 1); EXPECT_EQ(state.state, 1);
done.Set(); done.Set();
})); }));

View File

@ -500,6 +500,7 @@ rtc_source_set("rtc_task_queue_api") {
":macromagic", ":macromagic",
"../api/task_queue", "../api/task_queue",
"system:rtc_export", "system:rtc_export",
"task_utils:to_queued_task",
"//third_party/abseil-cpp/absl/memory", "//third_party/abseil-cpp/absl/memory",
] ]
} }

View File

@ -13,7 +13,6 @@
#include <stdint.h> #include <stdint.h>
#include <memory> #include <memory>
#include <type_traits>
#include <utility> #include <utility>
#include "absl/memory/memory.h" #include "absl/memory/memory.h"
@ -22,6 +21,7 @@
#include "api/task_queue/task_queue_factory.h" #include "api/task_queue/task_queue_factory.h"
#include "rtc_base/constructor_magic.h" #include "rtc_base/constructor_magic.h"
#include "rtc_base/system/rtc_export.h" #include "rtc_base/system/rtc_export.h"
#include "rtc_base/task_utils/to_queued_task.h"
#include "rtc_base/thread_annotations.h" #include "rtc_base/thread_annotations.h"
namespace rtc { namespace rtc {
@ -29,54 +29,11 @@ namespace rtc {
// TODO(danilchap): Remove the alias when all of webrtc is updated to use // TODO(danilchap): Remove the alias when all of webrtc is updated to use
// webrtc::QueuedTask directly. // webrtc::QueuedTask directly.
using ::webrtc::QueuedTask; using ::webrtc::QueuedTask;
// TODO(danilchap): Remove the alias when all of webrtc is updated to use
// Simple implementation of QueuedTask for use with rtc::Bind and lambdas. // webrtc::ToQueuedTask directly.
template <class Closure> template <typename... Args>
class ClosureTask : public QueuedTask { std::unique_ptr<QueuedTask> NewClosure(Args&&... args) {
public: return webrtc::ToQueuedTask(std::forward<Args>(args)...);
explicit ClosureTask(Closure&& closure)
: closure_(std::forward<Closure>(closure)) {}
private:
bool Run() override {
closure_();
return true;
}
typename std::remove_const<
typename std::remove_reference<Closure>::type>::type closure_;
};
// Extends ClosureTask to also allow specifying cleanup code.
// This is useful when using lambdas if guaranteeing cleanup, even if a task
// was dropped (queue is too full), is required.
template <class Closure, class Cleanup>
class ClosureTaskWithCleanup : public ClosureTask<Closure> {
public:
ClosureTaskWithCleanup(Closure&& closure, Cleanup&& cleanup)
: ClosureTask<Closure>(std::forward<Closure>(closure)),
cleanup_(std::forward<Cleanup>(cleanup)) {}
~ClosureTaskWithCleanup() { cleanup_(); }
private:
typename std::remove_const<
typename std::remove_reference<Cleanup>::type>::type cleanup_;
};
// Convenience function to construct closures that can be passed directly
// to methods that support std::unique_ptr<QueuedTask> but not template
// based parameters.
template <class Closure>
static std::unique_ptr<QueuedTask> NewClosure(Closure&& closure) {
return absl::make_unique<ClosureTask<Closure>>(
std::forward<Closure>(closure));
}
template <class Closure, class Cleanup>
static std::unique_ptr<QueuedTask> NewClosure(Closure&& closure,
Cleanup&& cleanup) {
return absl::make_unique<ClosureTaskWithCleanup<Closure, Cleanup>>(
std::forward<Closure>(closure), std::forward<Cleanup>(cleanup));
} }
// Implements a task queue that asynchronously executes tasks in a way that // Implements a task queue that asynchronously executes tasks in a way that

View File

@ -77,112 +77,4 @@ TEST(TaskQueueTest, DISABLED_PostDelayedHighRes) {
EXPECT_NEAR(end - start, 3, 3u); EXPECT_NEAR(end - start, 3, 3u);
} }
// TODO(danilchap): Reshape and rename tests below to show they are verifying
// rtc::NewClosure helper rather than TaskQueue implementation.
TEST(TaskQueueTest, PostLambda) {
TaskQueue queue("PostLambda");
Event ran;
queue.PostTask([&ran] { ran.Set(); });
EXPECT_TRUE(ran.Wait(1000));
}
TEST(TaskQueueTest, PostCopyableClosure) {
struct CopyableClosure {
CopyableClosure(int* num_copies, int* num_moves, Event* event)
: num_copies(num_copies), num_moves(num_moves), event(event) {}
CopyableClosure(const CopyableClosure& other)
: num_copies(other.num_copies),
num_moves(other.num_moves),
event(other.event) {
++*num_copies;
}
CopyableClosure(CopyableClosure&& other)
: num_copies(other.num_copies),
num_moves(other.num_moves),
event(other.event) {
++*num_moves;
}
void operator()() { event->Set(); }
int* num_copies;
int* num_moves;
Event* event;
};
int num_copies = 0;
int num_moves = 0;
Event event;
static const char kPostQueue[] = "PostCopyableClosure";
TaskQueue post_queue(kPostQueue);
{
CopyableClosure closure(&num_copies, &num_moves, &event);
post_queue.PostTask(closure);
// Destroy closure to check with msan and tsan posted task has own copy.
}
EXPECT_TRUE(event.Wait(1000));
EXPECT_EQ(num_copies, 1);
EXPECT_EQ(num_moves, 0);
}
TEST(TaskQueueTest, PostMoveOnlyClosure) {
struct SomeState {
explicit SomeState(Event* event) : event(event) {}
~SomeState() { event->Set(); }
Event* event;
};
struct MoveOnlyClosure {
MoveOnlyClosure(int* num_moves, std::unique_ptr<SomeState> state)
: num_moves(num_moves), state(std::move(state)) {}
MoveOnlyClosure(const MoveOnlyClosure&) = delete;
MoveOnlyClosure(MoveOnlyClosure&& other)
: num_moves(other.num_moves), state(std::move(other.state)) {
++*num_moves;
}
void operator()() { state.reset(); }
int* num_moves;
std::unique_ptr<SomeState> state;
};
int num_moves = 0;
Event event;
std::unique_ptr<SomeState> state(new SomeState(&event));
static const char kPostQueue[] = "PostMoveOnlyClosure";
TaskQueue post_queue(kPostQueue);
post_queue.PostTask(MoveOnlyClosure(&num_moves, std::move(state)));
EXPECT_TRUE(event.Wait(1000));
EXPECT_EQ(num_moves, 1);
}
TEST(TaskQueueTest, PostMoveOnlyCleanup) {
struct SomeState {
explicit SomeState(Event* event) : event(event) {}
~SomeState() { event->Set(); }
Event* event;
};
struct MoveOnlyClosure {
void operator()() { state.reset(); }
std::unique_ptr<SomeState> state;
};
Event event_run;
Event event_cleanup;
std::unique_ptr<SomeState> state_run(new SomeState(&event_run));
std::unique_ptr<SomeState> state_cleanup(new SomeState(&event_cleanup));
static const char kPostQueue[] = "PostMoveOnlyCleanup";
TaskQueue post_queue(kPostQueue);
post_queue.PostTask(NewClosure(MoveOnlyClosure{std::move(state_run)},
MoveOnlyClosure{std::move(state_cleanup)}));
EXPECT_TRUE(event_cleanup.Wait(1000));
// Expect run closure to complete before cleanup closure.
EXPECT_TRUE(event_run.Wait(0));
}
} // namespace rtc } // namespace rtc

View File

@ -25,6 +25,16 @@ rtc_source_set("repeating_task") {
] ]
} }
rtc_source_set("to_queued_task") {
sources = [
"to_queued_task.h",
]
deps = [
"../../api/task_queue",
"//third_party/abseil-cpp/absl/memory",
]
}
if (rtc_include_tests) { if (rtc_include_tests) {
rtc_source_set("repeating_task_unittests") { rtc_source_set("repeating_task_unittests") {
testonly = true testonly = true
@ -38,4 +48,17 @@ if (rtc_include_tests) {
"//third_party/abseil-cpp/absl/memory", "//third_party/abseil-cpp/absl/memory",
] ]
} }
rtc_source_set("to_queued_task_unittests") {
testonly = true
sources = [
"to_queued_task_unittest.cc",
]
deps = [
":to_queued_task",
"../../api/task_queue",
"../../test:test_support",
"//third_party/abseil-cpp/absl/memory",
]
}
} }

View File

@ -0,0 +1,73 @@
/*
* 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.
*/
#ifndef RTC_BASE_TASK_UTILS_TO_QUEUED_TASK_H_
#define RTC_BASE_TASK_UTILS_TO_QUEUED_TASK_H_
#include <memory>
#include <type_traits>
#include <utility>
#include "absl/memory/memory.h"
#include "api/task_queue/queued_task.h"
namespace webrtc {
namespace webrtc_new_closure_impl {
// Simple implementation of QueuedTask for use with rtc::Bind and lambdas.
template <typename Closure>
class ClosureTask : public QueuedTask {
public:
explicit ClosureTask(Closure&& closure)
: closure_(std::forward<Closure>(closure)) {}
private:
bool Run() override {
closure_();
return true;
}
typename std::decay<Closure>::type closure_;
};
// Extends ClosureTask to also allow specifying cleanup code.
// This is useful when using lambdas if guaranteeing cleanup, even if a task
// was dropped (queue is too full), is required.
template <typename Closure, typename Cleanup>
class ClosureTaskWithCleanup : public ClosureTask<Closure> {
public:
ClosureTaskWithCleanup(Closure&& closure, Cleanup&& cleanup)
: ClosureTask<Closure>(std::forward<Closure>(closure)),
cleanup_(std::forward<Cleanup>(cleanup)) {}
~ClosureTaskWithCleanup() override { cleanup_(); }
private:
typename std::decay<Cleanup>::type cleanup_;
};
} // namespace webrtc_new_closure_impl
// Convenience function to construct closures that can be passed directly
// to methods that support std::unique_ptr<QueuedTask> but not template
// based parameters.
template <typename Closure>
std::unique_ptr<QueuedTask> ToQueuedTask(Closure&& closure) {
return absl::make_unique<webrtc_new_closure_impl::ClosureTask<Closure>>(
std::forward<Closure>(closure));
}
template <typename Closure, typename Cleanup>
std::unique_ptr<QueuedTask> ToQueuedTask(Closure&& closure, Cleanup&& cleanup) {
return absl::make_unique<
webrtc_new_closure_impl::ClosureTaskWithCleanup<Closure, Cleanup>>(
std::forward<Closure>(closure), std::forward<Cleanup>(cleanup));
}
} // namespace webrtc
#endif // RTC_BASE_TASK_UTILS_TO_QUEUED_TASK_H_

View File

@ -0,0 +1,130 @@
/*
* 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/task_utils/to_queued_task.h"
#include <memory>
#include "absl/memory/memory.h"
#include "api/task_queue/queued_task.h"
#include "test/gmock.h"
#include "test/gtest.h"
namespace webrtc {
namespace {
using ::testing::InSequence;
using ::testing::MockFunction;
void RunTask(std::unique_ptr<QueuedTask> task) {
// Simulate how task queue suppose to run tasks.
QueuedTask* raw = task.release();
if (raw->Run())
delete raw;
}
TEST(ToQueuedTaskTest, AcceptsLambda) {
bool run = false;
std::unique_ptr<QueuedTask> task = ToQueuedTask([&run] { run = true; });
EXPECT_FALSE(run);
RunTask(std::move(task));
EXPECT_TRUE(run);
}
TEST(ToQueuedTaskTest, AcceptsCopyableClosure) {
struct CopyableClosure {
CopyableClosure(int* num_copies, int* num_moves, int* num_runs)
: num_copies(num_copies), num_moves(num_moves), num_runs(num_runs) {}
CopyableClosure(const CopyableClosure& other)
: num_copies(other.num_copies),
num_moves(other.num_moves),
num_runs(other.num_runs) {
++*num_copies;
}
CopyableClosure(CopyableClosure&& other)
: num_copies(other.num_copies),
num_moves(other.num_moves),
num_runs(other.num_runs) {
++*num_moves;
}
void operator()() { ++*num_runs; }
int* num_copies;
int* num_moves;
int* num_runs;
};
int num_copies = 0;
int num_moves = 0;
int num_runs = 0;
std::unique_ptr<QueuedTask> task;
{
CopyableClosure closure(&num_copies, &num_moves, &num_runs);
task = ToQueuedTask(closure);
// Destroy closure to check with msan task has own copy.
}
EXPECT_EQ(num_copies, 1);
EXPECT_EQ(num_runs, 0);
RunTask(std::move(task));
EXPECT_EQ(num_copies, 1);
EXPECT_EQ(num_moves, 0);
EXPECT_EQ(num_runs, 1);
}
TEST(ToQueuedTaskTest, AcceptsMoveOnlyClosure) {
struct MoveOnlyClosure {
MoveOnlyClosure(int* num_moves, std::function<void()> trigger)
: num_moves(num_moves), trigger(std::move(trigger)) {}
MoveOnlyClosure(const MoveOnlyClosure&) = delete;
MoveOnlyClosure(MoveOnlyClosure&& other)
: num_moves(other.num_moves), trigger(std::move(other.trigger)) {
++*num_moves;
}
void operator()() { trigger(); }
int* num_moves;
std::function<void()> trigger;
};
int num_moves = 0;
MockFunction<void()> run;
auto task = ToQueuedTask(MoveOnlyClosure(&num_moves, run.AsStdFunction()));
EXPECT_EQ(num_moves, 1);
EXPECT_CALL(run, Call);
RunTask(std::move(task));
EXPECT_EQ(num_moves, 1);
}
TEST(ToQueuedTaskTest, AcceptsMoveOnlyCleanup) {
struct MoveOnlyClosure {
MoveOnlyClosure(const MoveOnlyClosure&) = delete;
MoveOnlyClosure(MoveOnlyClosure&&) = default;
void operator()() { trigger(); }
std::function<void()> trigger;
};
MockFunction<void()> run;
MockFunction<void()> cleanup;
auto task = ToQueuedTask(MoveOnlyClosure{run.AsStdFunction()},
MoveOnlyClosure{cleanup.AsStdFunction()});
// Expect run closure to complete before cleanup closure.
InSequence in_sequence;
EXPECT_CALL(run, Call);
EXPECT_CALL(cleanup, Call);
RunTask(std::move(task));
}
} // namespace
} // namespace webrtc