Explicitly add python-numpy dependency to install-build-deps.
[chromium-blink-merge.git] / components / timers / rtc_alarm.cc
blob9f2750ebfe77a4d8586c0d6807e001de5e14b751
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "components/timers/rtc_alarm.h"
7 #include <sys/timerfd.h>
9 #include "base/bind.h"
10 #include "base/files/file_util.h"
11 #include "base/lazy_instance.h"
12 #include "base/logging.h"
13 #include "base/macros.h"
14 #include "base/message_loop/message_loop_proxy.h"
15 #include "base/threading/thread.h"
17 namespace timers {
19 namespace {
20 // Helper class to ensure that the IO thread we will use for watching file
21 // descriptors is started only once.
22 class IOThreadStartHelper {
23 public:
24 IOThreadStartHelper() : thread_(new base::Thread("RTC Alarm IO Thread")) {
25 CHECK(thread_->StartWithOptions(
26 base::Thread::Options(base::MessageLoop::TYPE_IO, 0)));
28 ~IOThreadStartHelper() {}
30 base::Thread& operator*() const { return *thread_.get(); }
32 base::Thread* operator->() const { return thread_.get(); }
34 private:
35 scoped_ptr<base::Thread> thread_;
38 base::LazyInstance<IOThreadStartHelper> g_io_thread = LAZY_INSTANCE_INITIALIZER;
40 } // namespace
42 RtcAlarm::RtcAlarm()
43 : alarm_fd_(timerfd_create(CLOCK_REALTIME_ALARM, 0)),
44 origin_event_id_(0),
45 io_event_id_(0) {
48 RtcAlarm::~RtcAlarm() {
49 if (alarm_fd_ != -1)
50 close(alarm_fd_);
53 bool RtcAlarm::Init(base::WeakPtr<AlarmTimer> parent) {
54 parent_ = parent;
56 return alarm_fd_ != -1;
59 void RtcAlarm::Stop() {
60 // Make sure that we stop the RTC from a MessageLoopForIO.
61 if (!base::MessageLoopForIO::IsCurrent()) {
62 g_io_thread.Get()->task_runner()->PostTask(
63 FROM_HERE,
64 base::Bind(&RtcAlarm::Stop, scoped_refptr<RtcAlarm>(this)));
65 return;
68 // Stop watching for events.
69 fd_watcher_.reset();
71 // Now clear the timer.
72 DCHECK_NE(alarm_fd_, -1);
73 itimerspec blank_time = {};
74 timerfd_settime(alarm_fd_, 0, &blank_time, NULL);
77 void RtcAlarm::Reset(base::TimeDelta delay) {
78 // Get a proxy for the current message loop. When the timer fires, we will
79 // post tasks to this proxy to let the parent timer know.
80 origin_message_loop_ = base::MessageLoopProxy::current();
82 // Increment the event id. Used to invalidate any events that have been
83 // queued but not yet run since the last time Reset() was called.
84 origin_event_id_++;
86 // Calling timerfd_settime with a zero delay actually clears the timer so if
87 // the user has requested a zero delay timer, we need to handle it
88 // differently. We queue the task here but we still go ahead and call
89 // timerfd_settime with the zero delay anyway to cancel any previous delay
90 // that might have been programmed.
91 if (delay == base::TimeDelta()) {
92 origin_message_loop_->PostTask(FROM_HERE,
93 base::Bind(&RtcAlarm::OnTimerFired,
94 scoped_refptr<RtcAlarm>(this),
95 origin_event_id_));
98 // Make sure that we are running on a MessageLoopForIO.
99 if (!base::MessageLoopForIO::IsCurrent()) {
100 g_io_thread.Get()->task_runner()->PostTask(
101 FROM_HERE,
102 base::Bind(&RtcAlarm::ResetImpl,
103 scoped_refptr<RtcAlarm>(this),
104 delay,
105 origin_event_id_));
106 return;
109 ResetImpl(delay, origin_event_id_);
112 void RtcAlarm::OnFileCanReadWithoutBlocking(int fd) {
113 DCHECK_EQ(alarm_fd_, fd);
115 // Read from the fd to ack the event.
116 char val[sizeof(uint64_t)];
117 base::ReadFromFD(alarm_fd_, val, sizeof(uint64_t));
119 // Make sure that the parent timer is informed on the proper message loop.
120 if (origin_message_loop_->RunsTasksOnCurrentThread()) {
121 OnTimerFired(io_event_id_);
122 return;
125 origin_message_loop_->PostTask(FROM_HERE,
126 base::Bind(&RtcAlarm::OnTimerFired,
127 scoped_refptr<RtcAlarm>(this),
128 io_event_id_));
131 void RtcAlarm::OnFileCanWriteWithoutBlocking(int fd) {
132 NOTREACHED();
135 void RtcAlarm::ResetImpl(base::TimeDelta delay, int event_id) {
136 DCHECK(base::MessageLoopForIO::IsCurrent());
137 DCHECK_NE(alarm_fd_, -1);
139 // Store the event id in the IO thread variable. When the timer fires, we
140 // will bind this value to the OnTimerFired callback to ensure that we do the
141 // right thing if the timer gets reset.
142 io_event_id_ = event_id;
144 // If we were already watching the fd, this will stop watching it.
145 fd_watcher_.reset(new base::MessageLoopForIO::FileDescriptorWatcher);
147 // Start watching the fd to see when the timer fires.
148 if (!base::MessageLoopForIO::current()->WatchFileDescriptor(
149 alarm_fd_,
150 false,
151 base::MessageLoopForIO::WATCH_READ,
152 fd_watcher_.get(),
153 this)) {
154 LOG(ERROR) << "Error while attempting to watch file descriptor for RTC "
155 << "alarm. Timer will not fire.";
158 // Actually set the timer. This will also clear the pre-existing timer, if
159 // any.
160 itimerspec alarm_time = {};
161 alarm_time.it_value.tv_sec = delay.InSeconds();
162 alarm_time.it_value.tv_nsec =
163 (delay.InMicroseconds() % base::Time::kMicrosecondsPerSecond) *
164 base::Time::kNanosecondsPerMicrosecond;
165 if (timerfd_settime(alarm_fd_, 0, &alarm_time, NULL) < 0)
166 PLOG(ERROR) << "Error while setting alarm time. Timer will not fire";
169 void RtcAlarm::OnTimerFired(int event_id) {
170 DCHECK(origin_message_loop_->RunsTasksOnCurrentThread());
172 // Check to make sure that the timer was not reset in the time between when
173 // this task was queued to run and now. If it was reset, then don't do
174 // anything.
175 if (event_id != origin_event_id_)
176 return;
178 if (parent_)
179 parent_->OnTimerFired();
182 } // namespace timers