blob: 0cc9a6279d449d7b38247d8bbb5de6e2148ca6c5 [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;
Sebastian Janssond841ea62019-03-13 16:35:59 +010038
39 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
57void RepeatingTaskBase::PostStop() {
58 if (task_queue_->IsCurrent()) {
59 RTC_DLOG(LS_INFO) << "Using PostStop() from the task queue running the "
60 "repeated task. Consider calling Stop() instead.";
61 }
Danil Chapovalov4423c362019-03-06 18:41:39 +010062 task_queue_->PostTask(ToQueuedTask([this] {
Sebastian Janssonecb68972019-01-18 10:30:54 +010063 RTC_DCHECK_RUN_ON(task_queue_);
64 Stop();
Danil Chapovalov4423c362019-03-06 18:41:39 +010065 }));
Sebastian Janssonecb68972019-01-18 10:30:54 +010066}
67
68} // namespace webrtc_repeating_task_impl
69RepeatingTaskHandle::RepeatingTaskHandle() {
70 sequence_checker_.Detach();
71}
72RepeatingTaskHandle::~RepeatingTaskHandle() {
73 sequence_checker_.Detach();
74}
75
76RepeatingTaskHandle::RepeatingTaskHandle(RepeatingTaskHandle&& other)
77 : repeating_task_(other.repeating_task_) {
78 RTC_DCHECK_RUN_ON(&sequence_checker_);
79 other.repeating_task_ = nullptr;
80}
81
82RepeatingTaskHandle& RepeatingTaskHandle::operator=(
83 RepeatingTaskHandle&& other) {
84 RTC_DCHECK_RUN_ON(&other.sequence_checker_);
85 {
86 RTC_DCHECK_RUN_ON(&sequence_checker_);
87 repeating_task_ = other.repeating_task_;
88 }
89 other.repeating_task_ = nullptr;
90 return *this;
91}
92
93RepeatingTaskHandle::RepeatingTaskHandle(
94 webrtc_repeating_task_impl::RepeatingTaskBase* repeating_task)
95 : repeating_task_(repeating_task) {}
96
97void RepeatingTaskHandle::Stop() {
98 RTC_DCHECK_RUN_ON(&sequence_checker_);
99 if (repeating_task_) {
100 RTC_DCHECK_RUN_ON(repeating_task_->task_queue_);
101 repeating_task_->Stop();
102 repeating_task_ = nullptr;
103 }
104}
105
106void RepeatingTaskHandle::PostStop() {
107 RTC_DCHECK_RUN_ON(&sequence_checker_);
108 if (repeating_task_) {
109 repeating_task_->PostStop();
110 repeating_task_ = nullptr;
111 }
112}
113
114bool RepeatingTaskHandle::Running() const {
115 RTC_DCHECK_RUN_ON(&sequence_checker_);
116 return repeating_task_ != nullptr;
117}
118
119} // namespace webrtc