blob: 53567441df879f54439b7b8d5527e6b12f2df0f8 (
plain)
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
|
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/renderer/device_sensors/device_light_event_pump.h"
#include "base/time/time.h"
#include "content/common/device_sensors/device_light_messages.h"
#include "content/public/renderer/render_thread.h"
#include "third_party/WebKit/public/platform/WebDeviceLightListener.h"
namespace {
// Default rate for firing of DeviceLight events.
const int kDefaultLightPumpFrequencyHz = 5;
const int kDefaultLightPumpDelayMicroseconds =
base::Time::kMicrosecondsPerSecond / kDefaultLightPumpFrequencyHz;
} // namespace
namespace content {
DeviceLightEventPump::DeviceLightEventPump(RenderThread* thread)
: DeviceSensorEventPump<blink::WebDeviceLightListener>(thread),
last_seen_data_(-1) {
pump_delay_microseconds_ = kDefaultLightPumpDelayMicroseconds;
}
DeviceLightEventPump::~DeviceLightEventPump() {
}
bool DeviceLightEventPump::OnControlMessageReceived(
const IPC::Message& message) {
bool handled = true;
IPC_BEGIN_MESSAGE_MAP(DeviceLightEventPump, message)
IPC_MESSAGE_HANDLER(DeviceLightMsg_DidStartPolling, OnDidStart)
IPC_MESSAGE_UNHANDLED(handled = false)
IPC_END_MESSAGE_MAP()
return handled;
}
void DeviceLightEventPump::FireEvent() {
DCHECK(listener());
DeviceLightData data;
if (reader_->GetLatestData(&data) && ShouldFireEvent(data.value)) {
last_seen_data_ = data.value;
listener()->didChangeDeviceLight(data.value);
}
}
bool DeviceLightEventPump::ShouldFireEvent(double lux) const {
if (lux < 0)
return false;
if (lux == std::numeric_limits<double>::infinity()) {
// no sensor data can be provided, fire an Infinity event to Blink.
return true;
}
return lux != last_seen_data_;
}
bool DeviceLightEventPump::InitializeReader(base::SharedMemoryHandle handle) {
if (!reader_)
reader_.reset(new DeviceLightSharedMemoryReader());
return reader_->Initialize(handle);
}
void DeviceLightEventPump::SendStartMessage() {
RenderThread::Get()->Send(new DeviceLightHostMsg_StartPolling());
}
void DeviceLightEventPump::SendStopMessage() {
last_seen_data_ = -1;
RenderThread::Get()->Send(new DeviceLightHostMsg_StopPolling());
}
void DeviceLightEventPump::SendFakeDataForTesting(void* fake_data) {
double data = *static_cast<double*>(fake_data);
listener()->didChangeDeviceLight(data);
}
} // namespace content
|