forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatform_sensor_linux.cc
95 lines (79 loc) · 3.26 KB
/
platform_sensor_linux.cc
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
// Copyright 2016 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 "device/generic_sensor/platform_sensor_linux.h"
#include "device/generic_sensor/linux/sensor_data_linux.h"
#include "device/generic_sensor/platform_sensor_reader_linux.h"
namespace device {
namespace {
// Checks if at least one value has been changed.
bool HaveValuesChanged(const SensorReading& lhs, const SensorReading& rhs) {
return lhs.values[0] != rhs.values[0] || lhs.values[1] != rhs.values[1] ||
lhs.values[2] != rhs.values[2];
}
} // namespace
PlatformSensorLinux::PlatformSensorLinux(
mojom::SensorType type,
mojo::ScopedSharedBufferMapping mapping,
PlatformSensorProvider* provider,
const SensorInfoLinux* sensor_device,
scoped_refptr<base::SingleThreadTaskRunner> polling_thread_task_runner)
: PlatformSensor(type, std::move(mapping), provider),
default_configuration_(
PlatformSensorConfiguration(sensor_device->device_frequency)),
reporting_mode_(sensor_device->reporting_mode),
polling_thread_task_runner_(std::move(polling_thread_task_runner)),
weak_factory_(this) {
sensor_reader_ = SensorReader::Create(
sensor_device, weak_factory_.GetWeakPtr(), task_runner_);
}
PlatformSensorLinux::~PlatformSensorLinux() {
DCHECK(task_runner_->BelongsToCurrentThread());
polling_thread_task_runner_->DeleteSoon(FROM_HERE, sensor_reader_.release());
}
mojom::ReportingMode PlatformSensorLinux::GetReportingMode() {
DCHECK(task_runner_->BelongsToCurrentThread());
return reporting_mode_;
}
void PlatformSensorLinux::UpdatePlatformSensorReading(SensorReading reading) {
DCHECK(task_runner_->BelongsToCurrentThread());
bool notifyNeeded = false;
if (GetReportingMode() == mojom::ReportingMode::ON_CHANGE) {
if (!HaveValuesChanged(reading, old_values_))
return;
notifyNeeded = true;
}
old_values_ = reading;
reading.timestamp = (base::TimeTicks::Now() - base::TimeTicks()).InSecondsF();
UpdateSensorReading(reading, notifyNeeded);
}
void PlatformSensorLinux::NotifyPlatformSensorError() {
DCHECK(task_runner_->BelongsToCurrentThread());
NotifySensorError();
}
bool PlatformSensorLinux::StartSensor(
const PlatformSensorConfiguration& configuration) {
DCHECK(task_runner_->BelongsToCurrentThread());
polling_thread_task_runner_->PostTask(
FROM_HERE,
base::Bind(&SensorReader::StartFetchingData,
base::Unretained(sensor_reader_.get()), configuration));
return true;
}
void PlatformSensorLinux::StopSensor() {
DCHECK(task_runner_->BelongsToCurrentThread());
polling_thread_task_runner_->PostTask(
FROM_HERE, base::Bind(&SensorReader::StopFetchingData,
base::Unretained(sensor_reader_.get())));
}
bool PlatformSensorLinux::CheckSensorConfiguration(
const PlatformSensorConfiguration& configuration) {
DCHECK(task_runner_->BelongsToCurrentThread());
return configuration.frequency() > 0 &&
configuration.frequency() <= default_configuration_.frequency();
}
PlatformSensorConfiguration PlatformSensorLinux::GetDefaultConfiguration() {
DCHECK(task_runner_->BelongsToCurrentThread());
return default_configuration_;
}
} // namespace device