1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// A "timer" takes care of invoking a callback in the future, once or
// repeatedly. The callback is invoked:
// - OneShotTimer: Once after a `TimeDelta` delay has elapsed.
// - RetainingOneShotTimer: Same as OneShotTimer, but the callback is retained
// after being executed, allowing another invocation to be scheduled with
// Reset() without specifying the callback again.
// - DeadlineTimer: Once at the specified `TimeTicks` time.
// - RepeatingTimer: Repeatedly, with a specified `TimeDelta` delay before the
// first invocation and between invocations.
// - MetronomeTimer: Repeatedly, with a specified `TimeDelta` delay between the
// beginning of each invocations such that a constant phase is respected.
// (Retaining)OneShotTimer and RepeatingTimer automatically apply some leeway to
// the delay whereas DeadlineTimer and MetronomeTimer allow more control over
// the requested time. As a result, the former are generally more
// power-efficient.
// Prefer using (Retaining)OneShotTimer and RepeatingTimer because they
// automatically apply some leeway to the delay which enables power-efficient
// scheduling.
// Scheduled invocations can be cancelled with Stop() or by deleting the
// Timer. The latter makes it easy to ensure that an object is not accessed by a
// Timer after it has been deleted: just make the Timer a member of the object
// which receives Timer events (see example below).
//
// Sample RepeatingTimer usage:
//
// class MyClass {
// public:
// void StartDoingStuff() {
// timer_.Start(FROM_HERE, base::Seconds(1),
// this, &MyClass::DoStuff);
// // Alternative form if the callback is not bound to `this` or
// // requires arguments:
// // timer_.Start(FROM_HERE, base::Seconds(1),
// // base::BindRepeating(&MyFunction, 42));
// }
// void StopDoingStuff() {
// timer_.Stop();
// }
// private:
// void DoStuff() {
// // This method is called every second to do stuff.
// ...
// }
// base::RepeatingTimer timer_;
// };
//
// These APIs are not thread safe. When a method is called (except the
// constructor), all further method calls must be on the same sequence until
// Stop(). Once stopped, it may be destroyed or restarted on another sequence.
//
// By default, the scheduled tasks will be run on the same sequence that the
// Timer was *started on*. To mock time in unit tests, some old tests used
// SetTaskRunner() to schedule the delay on a test-controlled TaskRunner. The
// modern and preferred approach to mock time is to use TaskEnvironment's
// MOCK_TIME mode.
#ifndef BASE_TIMER_TIMER_H_
#define BASE_TIMER_TIMER_H_
// IMPORTANT: If you change timer code, make sure that all tests (including
// disabled ones) from timer_unittests.cc pass locally. Some are disabled
// because they're flaky on the buildbot, but when you run them locally you
// should be able to tell the difference.
#include "base/base_export.h"
#include "base/compiler_specific.h"
#include "base/functional/bind.h"
#include "base/functional/callback.h"
#include "base/functional/callback_helpers.h"
#include "base/location.h"
#include "base/memory/raw_ptr.h"
#include "base/sequence_checker.h"
#include "base/task/delayed_task_handle.h"
#include "base/task/sequenced_task_runner.h"
#include "base/time/time.h"
#include "base/types/strong_alias.h"
namespace base {
class TickClock;
namespace internal {
// This class wraps logic shared by all timers.
class BASE_EXPORT TimerBase {
public:
TimerBase(const TimerBase&) = delete;
TimerBase& operator=(const TimerBase&) = delete;
virtual ~TimerBase();
// Returns true if the timer is running (i.e., not stopped).
bool IsRunning() const;
// Sets the task runner on which the delayed task should be scheduled when
// this Timer is running. This method can only be called while this Timer
// isn't running. If this is used to mock time in tests, the modern and
// preferred approach is to use TaskEnvironment::TimeSource::MOCK_TIME. To
// avoid racy usage of Timer, |task_runner| must run tasks on the same
// sequence which this Timer is bound to (started from). TODO(gab): Migrate
// callers using this as a test seam to
// TaskEnvironment::TimeSource::MOCK_TIME.
virtual void SetTaskRunner(scoped_refptr<SequencedTaskRunner> task_runner);
// Call this method to stop the timer and cancel all previously scheduled
// tasks. It is a no-op if the timer is not running.
virtual void Stop();
protected:
// Constructs a timer. Start must be called later to set task info.
explicit TimerBase(const Location& posted_from = Location());
virtual void OnStop() = 0;
// Disables the scheduled task and abandons it so that it no longer refers
// back to this object.
void AbandonScheduledTask();
// Returns the task runner on which the task should be scheduled. If the
// corresponding |task_runner_| field is null, the task runner for the current
// sequence is returned.
scoped_refptr<SequencedTaskRunner> GetTaskRunner();
// The task runner on which the task should be scheduled. If it is null, the
// task runner for the current sequence will be used.
scoped_refptr<SequencedTaskRunner> task_runner_;
// Timer isn't thread-safe and while it is running, it must only be used on
// the same sequence until fully Stop()'ed. Once stopped, it may be destroyed
// or restarted on another sequence.
SEQUENCE_CHECKER(sequence_checker_);
// Location in user code.
Location posted_from_ GUARDED_BY_CONTEXT(sequence_checker_);
// The handle to the posted delayed task.
DelayedTaskHandle delayed_task_handle_ GUARDED_BY_CONTEXT(sequence_checker_);
// Callback invoked when the timer is ready. This is saved as a member to
// avoid rebinding every time the Timer fires. Lazy initialized the first time
// the Timer is started.
RepeatingClosure timer_callback_;
};
//-----------------------------------------------------------------------------
// This class wraps logic shared by (Retaining)OneShotTimer and RepeatingTimer.
class BASE_EXPORT DelayTimerBase : public TimerBase {
public:
DelayTimerBase(const DelayTimerBase&) = delete;
DelayTimerBase& operator=(const DelayTimerBase&) = delete;
~DelayTimerBase() override;
// Returns the current delay for this timer.
TimeDelta GetCurrentDelay() const;
// Call this method to reset the timer delay. The user task must be set. If
// the timer is not running, this will start it by posting a task.
virtual void Reset();
TimeTicks desired_run_time() const {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
return desired_run_time_;
}
protected:
// Constructs a timer. Start must be called later to set task info.
// If |tick_clock| is provided, it is used instead of TimeTicks::Now() to get
// TimeTicks when scheduling tasks.
explicit DelayTimerBase(const TickClock* tick_clock = nullptr);
// Construct a timer with task info.
// If |tick_clock| is provided, it is used instead of TimeTicks::Now() to get
// TimeTicks when scheduling tasks.
DelayTimerBase(const Location& posted_from,
TimeDelta delay,
const TickClock* tick_clock = nullptr);
virtual void RunUserTask() = 0;
// Schedules |OnScheduledTaskInvoked()| to run on the current sequence with
// the given |delay|. |desired_run_time_| is reset to Now() + delay.
void ScheduleNewTask(TimeDelta delay);
void StartInternal(const Location& posted_from, TimeDelta delay);
private:
// DCHECKs that the user task is not null. Used to diagnose a recurring bug
// where Reset() is called on a OneShotTimer that has already fired.
virtual void EnsureNonNullUserTask() = 0;
// Returns the current tick count.
TimeTicks Now() const;
// Called when the scheduled task is invoked. Will run the |user_task| if the
// timer is still running and |desired_run_time_| was reached.
void OnScheduledTaskInvoked();
// Delay requested by user.
TimeDelta delay_ GUARDED_BY_CONTEXT(sequence_checker_);
// The desired run time of |user_task_|. The user may update this at any time,
// even if their previous request has not run yet. This time can be a "zero"
// TimeTicks if the task must be run immediately.
TimeTicks desired_run_time_ GUARDED_BY_CONTEXT(sequence_checker_);
// The tick clock used to calculate the run time for scheduled tasks.
const raw_ptr<const TickClock> tick_clock_
GUARDED_BY_CONTEXT(sequence_checker_);
};
} // namespace internal
//-----------------------------------------------------------------------------
// A simple, one-shot timer. See usage notes at the top of the file.
class BASE_EXPORT OneShotTimer : public internal::DelayTimerBase {
public:
OneShotTimer();
explicit OneShotTimer(const TickClock* tick_clock);
OneShotTimer(const OneShotTimer&) = delete;
OneShotTimer& operator=(const OneShotTimer&) = delete;
~OneShotTimer() override;
// Start the timer to run at the given |delay| from now. If the timer is
// already running, it will be replaced to call the given |user_task|.
virtual void Start(const Location& posted_from,
TimeDelta delay,
OnceClosure user_task);
// Start the timer to run at the given |delay| from now. If the timer is
// already running, it will be replaced to call a task formed from
// |receiver->*method|.
template <class Receiver>
void Start(const Location& posted_from,
TimeDelta delay,
Receiver* receiver,
void (Receiver::*method)()) {
// Explicitly qualify calls, in case this is used inside Blink (which has
// similar methods in WTF).
Start(posted_from, delay,
::base::BindOnce(method, ::base::Unretained(receiver)));
}
// Run the scheduled task immediately, and stop the timer. The timer needs to
// be running.
virtual void FireNow();
private:
void OnStop() final;
void RunUserTask() final;
void EnsureNonNullUserTask() final;
OnceClosure user_task_;
};
//-----------------------------------------------------------------------------
// A simple, repeating timer. See usage notes at the top of the file.
class BASE_EXPORT RepeatingTimer : public internal::DelayTimerBase {
public:
RepeatingTimer();
explicit RepeatingTimer(const TickClock* tick_clock);
RepeatingTimer(const RepeatingTimer&) = delete;
RepeatingTimer& operator=(const RepeatingTimer&) = delete;
~RepeatingTimer() override;
RepeatingTimer(const Location& posted_from,
TimeDelta delay,
RepeatingClosure user_task);
RepeatingTimer(const Location& posted_from,
TimeDelta delay,
RepeatingClosure user_task,
const TickClock* tick_clock);
// Start the timer to run at the given |delay| from now. If the timer is
// already running, it will be replaced to call the given |user_task|.
virtual void Start(const Location& posted_from,
TimeDelta delay,
RepeatingClosure user_task);
// Start the timer to run at the given |delay| from now. If the timer is
// already running, it will be replaced to call a task formed from
// |receiver->*method|.
template <class Receiver>
void Start(const Location& posted_from,
TimeDelta delay,
Receiver* receiver,
void (Receiver::*method)()) {
Start(posted_from, delay, BindRepeating(method, Unretained(receiver)));
}
const RepeatingClosure& user_task() const LIFETIME_BOUND {
return user_task_;
}
private:
// Mark this final, so that the destructor can call this safely.
void OnStop() final;
void RunUserTask() override;
void EnsureNonNullUserTask() final;
RepeatingClosure user_task_;
};
//-----------------------------------------------------------------------------
// A simple, one-shot timer with the retained |user_task| which is reused when
// Reset() is invoked. See usage notes at the top of the file.
class BASE_EXPORT RetainingOneShotTimer : public internal::DelayTimerBase {
public:
RetainingOneShotTimer();
explicit RetainingOneShotTimer(const TickClock* tick_clock);
RetainingOneShotTimer(const RetainingOneShotTimer&) = delete;
RetainingOneShotTimer& operator=(const RetainingOneShotTimer&) = delete;
~RetainingOneShotTimer() override;
RetainingOneShotTimer(const Location& posted_from,
TimeDelta delay,
RepeatingClosure user_task);
RetainingOneShotTimer(const Location& posted_from,
TimeDelta delay,
RepeatingClosure user_task,
const TickClock* tick_clock);
// Start the timer to run at the given |delay| from now. If the timer is
// already running, it will be replaced to call the given |user_task|.
virtual void Start(const Location& posted_from,
TimeDelta delay,
RepeatingClosure user_task);
// Start the timer to run at the given |delay| from now. If the timer is
// already running, it will be replaced to call a task formed from
// |receiver->*method|.
template <class Receiver>
void Start(const Location& posted_from,
TimeDelta delay,
Receiver* receiver,
void (Receiver::*method)()) {
Start(posted_from, delay, BindRepeating(method, Unretained(receiver)));
}
const RepeatingClosure& user_task() const LIFETIME_BOUND {
return user_task_;
}
private:
// Mark this final, so that the destructor can call this safely.
void OnStop() final;
void RunUserTask() override;
void EnsureNonNullUserTask() final;
RepeatingClosure user_task_;
};
//-----------------------------------------------------------------------------
// A Delay timer is like The Button from Lost. Once started, you have to keep
// calling Reset otherwise it will call the given method on the sequence it was
// initially Reset() from.
//
// Once created, it is inactive until Reset is called. Once |delay| seconds have
// passed since the last call to Reset, the callback is made. Once the callback
// has been made, it's inactive until Reset is called again.
//
// If destroyed, the timeout is canceled and will not occur even if already
// inflight.
class DelayTimer {
public:
template <class Receiver>
DelayTimer(const Location& posted_from,
TimeDelta delay,
Receiver* receiver,
void (Receiver::*method)())
: DelayTimer(posted_from, delay, receiver, method, nullptr) {}
template <class Receiver>
DelayTimer(const Location& posted_from,
TimeDelta delay,
Receiver* receiver,
void (Receiver::*method)(),
const TickClock* tick_clock)
: timer_(posted_from,
delay,
BindRepeating(method, Unretained(receiver)),
tick_clock) {}
DelayTimer(const DelayTimer&) = delete;
DelayTimer& operator=(const DelayTimer&) = delete;
void Reset() { timer_.Reset(); }
private:
RetainingOneShotTimer timer_;
};
//-----------------------------------------------------------------------------
// A one-shot timer that attempts to run |user_task| some time near specified
// deadline. See usage notes at the top of the file.
class BASE_EXPORT DeadlineTimer : public internal::TimerBase {
public:
DeadlineTimer();
~DeadlineTimer() override;
DeadlineTimer(const DeadlineTimer&) = delete;
DeadlineTimer& operator=(const DeadlineTimer&) = delete;
// Start the timer to run |user_task| near the specified |deadline| following
// |delay_policy| If the timer is already running, it will be replaced to call
// the given |user_task|.
void Start(const Location& posted_from,
TimeTicks deadline,
OnceClosure user_task,
subtle::DelayPolicy delay_policy =
subtle::DelayPolicy::kFlexiblePreferEarly);
// Start the timer to run |user_task| near the specified |deadline|. If the
// timer is already running, it will be replaced to call a task formed from
// |receiver->*method|.
template <class Receiver>
void Start(const Location& posted_from,
TimeTicks deadline,
Receiver* receiver,
void (Receiver::*method)(),
subtle::DelayPolicy delay_policy =
subtle::DelayPolicy::kFlexiblePreferEarly) {
Start(posted_from, deadline, BindOnce(method, Unretained(receiver)),
delay_policy);
}
protected:
void OnStop() override;
// Schedules |OnScheduledTaskInvoked()| to run on the current sequence at
// the given |deadline|.
void ScheduleNewTask(TimeTicks deadline, subtle::DelayPolicy delay_policy);
private:
// Called when the scheduled task is invoked to run the |user_task|.
void OnScheduledTaskInvoked();
OnceClosure user_task_;
};
//-----------------------------------------------------------------------------
// Repeatedly invokes a callback, waiting for a precise delay between the
// beginning of each invocation. See usage notes at the top of the file.
class BASE_EXPORT MetronomeTimer : public internal::TimerBase {
public:
MetronomeTimer();
~MetronomeTimer() override;
MetronomeTimer(const MetronomeTimer&) = delete;
MetronomeTimer& operator=(const MetronomeTimer&) = delete;
MetronomeTimer(const Location& posted_from,
TimeDelta interval,
RepeatingClosure user_task,
TimeTicks phase = TimeTicks());
// Start the timer to repeatedly run |user_task| at the specified |interval|;
// If not specified, the phase is up to the scheduler, otherwise each
// invocation starts as close as possible to `phase + n * delay` for some
// integer n. If the timer is already running, it will be replaced to call the
// given |user_task|.
void Start(const Location& posted_from,
TimeDelta interval,
RepeatingClosure user_task,
TimeTicks phase = TimeTicks());
// Same as the previous overload, except that the user task is specified by
// `receiver` and `method`.
template <class Receiver>
void Start(const Location& posted_from,
TimeDelta interval,
Receiver* receiver,
void (Receiver::*method)(),
TimeTicks phase = TimeTicks()) {
Start(posted_from, interval, BindRepeating(method, Unretained(receiver)),
phase);
}
// Call this method to reset the timer delay. The user task must be set. If
// the timer is not running, this will start it by posting a task.
void Reset();
protected:
void OnStop() override;
// Schedules |OnScheduledTaskInvoked()| to run on the current sequence at
// the next tick.
void ScheduleNewTask();
private:
// Called when the scheduled task is invoked to run the |user_task|.
void OnScheduledTaskInvoked();
TimeDelta interval_;
RepeatingClosure user_task_;
TimeTicks phase_;
};
} // namespace base
#endif // BASE_TIMER_TIMER_H_
|