blob: 1705918e08dcf9486c07cd5927f95e1111653555 [file] [log] [blame]
Sebastian Janssonecb68972019-01-18 10:30:54 +01001/*
2 * Copyright 2019 The WebRTC Project Authors. All rights reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11#include "rtc_base/task_utils/repeating_task.h"
Danil Chapovalov4423c362019-03-06 18:41:39 +010012
Sebastian Janssonecb68972019-01-18 10:30:54 +010013#include "rtc_base/logging.h"
Danil Chapovalov4423c362019-03-06 18:41:39 +010014#include "rtc_base/task_utils/to_queued_task.h"
Steve Antonf3802842019-01-24 19:07:40 -080015#include "rtc_base/time_utils.h"
Sebastian Janssonecb68972019-01-18 10:30:54 +010016
17namespace webrtc {
18namespace webrtc_repeating_task_impl {
Danil Chapovalov4423c362019-03-06 18:41:39 +010019RepeatingTaskBase::RepeatingTaskBase(TaskQueueBase* task_queue,
Sebastian Janssonecb68972019-01-18 10:30:54 +010020 TimeDelta first_delay)
21 : task_queue_(task_queue),
22 next_run_time_(Timestamp::us(rtc::TimeMicros()) + first_delay) {}
23
24RepeatingTaskBase::~RepeatingTaskBase() = default;
25
26bool RepeatingTaskBase::Run() {
27 RTC_DCHECK_RUN_ON(task_queue_);
28 // Return true to tell the TaskQueue to destruct this object.
29 if (next_run_time_.IsPlusInfinity())
30 return true;
31
32 TimeDelta delay = RunClosure();
Sebastian Janssonecb68972019-01-18 10:30:54 +010033
34 // The closure might have stopped this task, in which case we return true to
35 // destruct this object.
36 if (next_run_time_.IsPlusInfinity())
37 return true;
Jonas Olssona4d87372019-07-05 19:08:33 +020038
Sebastian Janssond841ea62019-03-13 16:35:59 +010039 RTC_DCHECK(delay.IsFinite());
Sebastian Janssonecb68972019-01-18 10:30:54 +010040 TimeDelta lost_time = Timestamp::us(rtc::TimeMicros()) - next_run_time_;
41 next_run_time_ += delay;
42 delay -= lost_time;
Sebastian Janssona497d122019-02-04 16:39:28 +010043 delay = std::max(delay, TimeDelta::Zero());
Sebastian Janssonecb68972019-01-18 10:30:54 +010044
Sebastian Janssona497d122019-02-04 16:39:28 +010045 task_queue_->PostDelayedTask(absl::WrapUnique(this), delay.ms());
46
Sebastian Janssonecb68972019-01-18 10:30:54 +010047 // Return false to tell the TaskQueue to not destruct this object since we
48 // have taken ownership with absl::WrapUnique.
49 return false;
50}
51
52void RepeatingTaskBase::Stop() {
53 RTC_DCHECK(next_run_time_.IsFinite());
54 next_run_time_ = Timestamp::PlusInfinity();
55}
56
Sebastian Janssonecb68972019-01-18 10:30:54 +010057} // namespace webrtc_repeating_task_impl
Sebastian Janssonecb68972019-01-18 10:30:54 +010058
59RepeatingTaskHandle::RepeatingTaskHandle(RepeatingTaskHandle&& other)
60 : repeating_task_(other.repeating_task_) {
Sebastian Janssonecb68972019-01-18 10:30:54 +010061 other.repeating_task_ = nullptr;
62}
63
64RepeatingTaskHandle& RepeatingTaskHandle::operator=(
65 RepeatingTaskHandle&& other) {
Sebastian Jansson46b4a0f2019-03-26 15:24:23 +010066 repeating_task_ = other.repeating_task_;
Sebastian Janssonecb68972019-01-18 10:30:54 +010067 other.repeating_task_ = nullptr;
68 return *this;
69}
70
71RepeatingTaskHandle::RepeatingTaskHandle(
72 webrtc_repeating_task_impl::RepeatingTaskBase* repeating_task)
73 : repeating_task_(repeating_task) {}
74
75void RepeatingTaskHandle::Stop() {
Sebastian Janssonecb68972019-01-18 10:30:54 +010076 if (repeating_task_) {
77 RTC_DCHECK_RUN_ON(repeating_task_->task_queue_);
78 repeating_task_->Stop();
79 repeating_task_ = nullptr;
80 }
81}
82
Sebastian Janssonecb68972019-01-18 10:30:54 +010083bool RepeatingTaskHandle::Running() const {
Sebastian Janssonecb68972019-01-18 10:30:54 +010084 return repeating_task_ != nullptr;
85}
86
87} // namespace webrtc