mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-14 06:10:40 +01:00

To be able to use them type-safely, they should support native operators (e.g. adding a time and a duration, or subtracting two time values), as the alternative is to manage them as numbers. Yes, this makes them behave a bit like absl::Time/absl::Duration. Bug: webrtc:12614 Change-Id: I4dea12e33698a46e71fb549f44c06f2f381c9201 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/215143 Reviewed-by: Tommi <tommi@webrtc.org> Commit-Queue: Victor Boivie <boivie@webrtc.org> Cr-Commit-Position: refs/heads/master@{#33725}
94 lines
2.6 KiB
C++
94 lines
2.6 KiB
C++
/*
|
|
* Copyright (c) 2021 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 NET_DCSCTP_TIMER_FAKE_TIMEOUT_H_
|
|
#define NET_DCSCTP_TIMER_FAKE_TIMEOUT_H_
|
|
|
|
#include <cstdint>
|
|
#include <functional>
|
|
#include <limits>
|
|
#include <memory>
|
|
#include <unordered_set>
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
#include "net/dcsctp/public/timeout.h"
|
|
|
|
namespace dcsctp {
|
|
|
|
// A timeout used in tests.
|
|
class FakeTimeout : public Timeout {
|
|
public:
|
|
explicit FakeTimeout(std::function<TimeMs()> get_time,
|
|
std::function<void(FakeTimeout*)> on_delete)
|
|
: get_time_(std::move(get_time)), on_delete_(std::move(on_delete)) {}
|
|
|
|
~FakeTimeout() override { on_delete_(this); }
|
|
|
|
void Start(DurationMs duration_ms, TimeoutID timeout_id) override {
|
|
timeout_id_ = timeout_id;
|
|
expiry_ = get_time_() + duration_ms;
|
|
}
|
|
void Stop() override { expiry_ = InfiniteFuture(); }
|
|
|
|
bool EvaluateHasExpired(TimeMs now) {
|
|
if (now >= expiry_) {
|
|
expiry_ = InfiniteFuture();
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
TimeoutID timeout_id() const { return timeout_id_; }
|
|
|
|
private:
|
|
static constexpr TimeMs InfiniteFuture() {
|
|
return TimeMs(std::numeric_limits<TimeMs::UnderlyingType>::max());
|
|
}
|
|
|
|
const std::function<TimeMs()> get_time_;
|
|
const std::function<void(FakeTimeout*)> on_delete_;
|
|
|
|
TimeoutID timeout_id_ = TimeoutID(0);
|
|
TimeMs expiry_ = InfiniteFuture();
|
|
};
|
|
|
|
class FakeTimeoutManager {
|
|
public:
|
|
// The `get_time` function must return the current time, relative to any
|
|
// epoch.
|
|
explicit FakeTimeoutManager(std::function<TimeMs()> get_time)
|
|
: get_time_(std::move(get_time)) {}
|
|
|
|
std::unique_ptr<Timeout> CreateTimeout() {
|
|
auto timer = std::make_unique<FakeTimeout>(
|
|
get_time_, [this](FakeTimeout* timer) { timers_.erase(timer); });
|
|
timers_.insert(timer.get());
|
|
return timer;
|
|
}
|
|
|
|
std::vector<TimeoutID> RunTimers() {
|
|
TimeMs now = get_time_();
|
|
std::vector<TimeoutID> expired_timers;
|
|
for (auto& timer : timers_) {
|
|
if (timer->EvaluateHasExpired(now)) {
|
|
expired_timers.push_back(timer->timeout_id());
|
|
}
|
|
}
|
|
return expired_timers;
|
|
}
|
|
|
|
private:
|
|
const std::function<TimeMs()> get_time_;
|
|
std::unordered_set<FakeTimeout*> timers_;
|
|
};
|
|
|
|
} // namespace dcsctp
|
|
|
|
#endif // NET_DCSCTP_TIMER_FAKE_TIMEOUT_H_
|