mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 05:40:42 +01:00

Bug: webrtc:13065 Change-Id: I13afee2386ea9c4de0e4fa95133f0c4d3ec826e8 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/227031 Reviewed-by: Harald Alvestrand <hta@webrtc.org> Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Commit-Queue: Niels Moller <nisse@webrtc.org> Cr-Commit-Position: refs/heads/master@{#34787}
79 lines
2 KiB
C++
79 lines
2 KiB
C++
/*
|
|
* Copyright (c) 2013 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 TEST_RUN_LOOP_H_
|
|
#define TEST_RUN_LOOP_H_
|
|
|
|
#include "rtc_base/task_utils/to_queued_task.h"
|
|
#include "rtc_base/thread.h"
|
|
|
|
namespace webrtc {
|
|
namespace test {
|
|
|
|
// This utility class allows you to run a TaskQueue supported interface on the
|
|
// main test thread, call Run() while doing things asynchonously and break
|
|
// the loop (from the same thread) from a callback by calling Quit().
|
|
class RunLoop {
|
|
public:
|
|
RunLoop();
|
|
~RunLoop();
|
|
|
|
TaskQueueBase* task_queue();
|
|
|
|
void Run();
|
|
void Quit();
|
|
|
|
void Flush();
|
|
|
|
// Convenience methods since TaskQueueBase doesn't support this sort of magic.
|
|
template <typename Closure>
|
|
void PostTask(Closure&& task) {
|
|
task_queue()->PostTask(ToQueuedTask(std::forward<Closure>(task)));
|
|
}
|
|
|
|
template <typename Closure>
|
|
void PostDelayedTask(Closure&& task, uint32_t milliseconds) {
|
|
task_queue()->PostDelayedTask(ToQueuedTask(std::forward<Closure>(task)),
|
|
milliseconds);
|
|
}
|
|
|
|
private:
|
|
class FakeSocketServer : public rtc::SocketServer {
|
|
public:
|
|
FakeSocketServer();
|
|
~FakeSocketServer();
|
|
|
|
void FailNextWait();
|
|
|
|
private:
|
|
bool Wait(int cms, bool process_io) override;
|
|
void WakeUp() override;
|
|
|
|
rtc::Socket* CreateSocket(int family, int type) override;
|
|
|
|
private:
|
|
bool fail_next_wait_ = false;
|
|
};
|
|
|
|
class WorkerThread : public rtc::Thread {
|
|
public:
|
|
explicit WorkerThread(rtc::SocketServer* ss);
|
|
|
|
private:
|
|
CurrentTaskQueueSetter tq_setter_;
|
|
};
|
|
|
|
FakeSocketServer socket_server_;
|
|
WorkerThread worker_thread_{&socket_server_};
|
|
};
|
|
|
|
} // namespace test
|
|
} // namespace webrtc
|
|
|
|
#endif // TEST_RUN_LOOP_H_
|