2018-02-13 19:47:50 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright 2018 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_QUEUE_FOR_TEST_H_
|
|
|
|
|
#define RTC_BASE_TASK_QUEUE_FOR_TEST_H_
|
|
|
|
|
|
2019-03-19 18:08:37 +01:00
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
|
|
#include "absl/strings/string_view.h"
|
2019-10-15 10:04:57 +02:00
|
|
|
#include "api/task_queue/task_queue_base.h"
|
2018-02-13 19:47:50 +01:00
|
|
|
#include "rtc_base/checks.h"
|
|
|
|
|
#include "rtc_base/event.h"
|
2019-10-15 10:04:57 +02:00
|
|
|
#include "rtc_base/location.h"
|
2018-02-13 19:47:50 +01:00
|
|
|
#include "rtc_base/task_queue.h"
|
2019-03-05 11:11:35 +01:00
|
|
|
#include "rtc_base/task_utils/to_queued_task.h"
|
2018-11-28 16:47:49 +01:00
|
|
|
#include "rtc_base/thread_annotations.h"
|
2018-02-13 19:47:50 +01:00
|
|
|
|
2019-03-19 18:08:37 +01:00
|
|
|
namespace webrtc {
|
|
|
|
|
|
2019-10-15 10:04:57 +02:00
|
|
|
template <typename Closure>
|
|
|
|
|
void SendTask(TaskQueueBase* task_queue, Closure&& task, rtc::Location loc) {
|
|
|
|
|
RTC_CHECK(!task_queue->IsCurrent())
|
|
|
|
|
<< "Called SendTask to a queue from the same queue at " << loc.ToString();
|
|
|
|
|
rtc::Event event;
|
|
|
|
|
task_queue->PostTask(
|
|
|
|
|
ToQueuedTask(std::forward<Closure>(task), [&event] { event.Set(); }));
|
2019-10-16 19:39:09 +02:00
|
|
|
RTC_CHECK(event.Wait(/*give_up_after_ms=*/rtc::Event::kForever,
|
|
|
|
|
/*warn_after_ms=*/10'000))
|
2019-10-15 10:04:57 +02:00
|
|
|
<< "Waited too long at " << loc.ToString();
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-19 18:08:37 +01:00
|
|
|
class RTC_LOCKABLE TaskQueueForTest : public rtc::TaskQueue {
|
2018-02-13 19:47:50 +01:00
|
|
|
public:
|
2019-03-21 09:29:27 +01:00
|
|
|
using rtc::TaskQueue::TaskQueue;
|
2019-03-19 18:08:37 +01:00
|
|
|
explicit TaskQueueForTest(absl::string_view name = "TestQueue",
|
|
|
|
|
Priority priority = Priority::NORMAL);
|
|
|
|
|
TaskQueueForTest(const TaskQueueForTest&) = delete;
|
|
|
|
|
TaskQueueForTest& operator=(const TaskQueueForTest&) = delete;
|
|
|
|
|
~TaskQueueForTest() = default;
|
2018-02-13 19:47:50 +01:00
|
|
|
|
|
|
|
|
// A convenience, test-only method that blocks the current thread while
|
|
|
|
|
// a task executes on the task queue.
|
|
|
|
|
// This variant is specifically for posting custom QueuedTask derived
|
|
|
|
|
// implementations that tests do not want to pass ownership of over to the
|
|
|
|
|
// task queue (i.e. the Run() method always returns |false|.).
|
|
|
|
|
template <class Closure>
|
|
|
|
|
void SendTask(Closure* task) {
|
2019-10-15 10:04:57 +02:00
|
|
|
RTC_CHECK(!IsCurrent());
|
2018-11-07 08:43:50 +01:00
|
|
|
rtc::Event event;
|
2019-03-19 18:08:37 +01:00
|
|
|
PostTask(ToQueuedTask(
|
|
|
|
|
[&task] { RTC_CHECK_EQ(false, static_cast<QueuedTask*>(task)->Run()); },
|
|
|
|
|
[&event] { event.Set(); }));
|
2018-02-13 19:47:50 +01:00
|
|
|
event.Wait(rtc::Event::kForever);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// A convenience, test-only method that blocks the current thread while
|
|
|
|
|
// a task executes on the task queue.
|
|
|
|
|
template <class Closure>
|
2019-10-15 10:04:57 +02:00
|
|
|
void SendTask(Closure&& task, rtc::Location loc) {
|
|
|
|
|
::webrtc::SendTask(Get(), std::forward<Closure>(task), loc);
|
2018-02-13 19:47:50 +01:00
|
|
|
}
|
|
|
|
|
};
|
2019-03-19 18:08:37 +01:00
|
|
|
|
|
|
|
|
} // namespace webrtc
|
2018-02-13 19:47:50 +01:00
|
|
|
|
|
|
|
|
#endif // RTC_BASE_TASK_QUEUE_FOR_TEST_H_
|