Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "device/generic_sensor/linux/platform_sensor_utils_linux.h" | 5 #include "device/generic_sensor/linux/platform_sensor_utils_linux.h" |
| 6 | 6 |
| 7 #include "base/files/file_enumerator.h" | 7 #include "base/files/file_enumerator.h" |
| 8 #include "base/files/file_util.h" | 8 #include "base/files/file_util.h" |
| 9 #include "base/strings/string_number_conversions.h" | 9 #include "base/strings/string_number_conversions.h" |
| 10 #include "base/strings/string_util.h" | 10 #include "base/strings/string_util.h" |
| 11 #include "base/threading/thread_restrictions.h" | 11 #include "base/threading/thread_restrictions.h" |
| 12 #include "device/generic_sensor/linux/sensor_data_linux.h" | |
| 13 #include "device/generic_sensor/public/cpp/sensor_reading.h" | 12 #include "device/generic_sensor/public/cpp/sensor_reading.h" |
| 14 | 13 |
| 15 namespace device { | 14 namespace device { |
| 16 | 15 |
| 17 namespace { | 16 namespace { |
| 18 | 17 |
| 19 bool InitSensorPaths(const std::vector<std::string>& input_names, | 18 bool InitSensorPaths(const std::vector<std::string>& input_names, |
| 20 const char* base_path, | 19 const char* base_path, |
| 21 std::vector<base::FilePath>* sensor_paths) { | 20 std::vector<base::FilePath>* sensor_paths) { |
| 22 // Search the iio/devices directory for a subdirectory (eg "device0" or | 21 // Search the iio/devices directory for a subdirectory (eg "device0" or |
| (...skipping 22 matching lines...) Expand all Loading... | |
| 45 // treated as a non-existing one. | 44 // treated as a non-existing one. |
| 46 for (auto const& file_names : data.sensor_file_names) { | 45 for (auto const& file_names : data.sensor_file_names) { |
| 47 // Supply InitSensorPaths() with a set of files. | 46 // Supply InitSensorPaths() with a set of files. |
| 48 // Only one file from each set should be found. | 47 // Only one file from each set should be found. |
| 49 if (!InitSensorPaths(file_names, data.base_path_sensor_linux, sensor_paths)) | 48 if (!InitSensorPaths(file_names, data.base_path_sensor_linux, sensor_paths)) |
| 50 return false; | 49 return false; |
| 51 } | 50 } |
| 52 return true; | 51 return true; |
| 53 } | 52 } |
| 54 | 53 |
| 54 double GetSensorScalingValues(const std::string& scale_file_name, | |
|
Mikhail
2016/11/11 10:49:11
GetSensorScalingValue // it returns one value, ri
Mikhail
2016/11/11 10:49:11
add a comment describing what it returns in what c
maksims (do not use this acc)
2016/11/11 12:11:48
Done.
maksims (do not use this acc)
2016/11/11 12:11:48
Done.
| |
| 55 const base::FilePath& sensor_base_path) { | |
| 56 double scaling_value = 1; | |
| 57 base::FilePath scale_path = sensor_base_path.Append(scale_file_name); | |
|
Mikhail
2016/11/11 10:49:11
maybe it would be better to pass 'scale_path' as a
maksims (do not use this acc)
2016/11/11 12:11:48
Done.
| |
| 58 if (base::PathExists(scale_path)) { | |
|
Mikhail
2016/11/11 10:49:11
would be simpler if:
if (!base::PathExists(scale_
maksims (do not use this acc)
2016/11/11 12:11:48
Done.
| |
| 59 std::string scale; | |
| 60 if (!base::ReadFileToString(scale_path, &scale)) { | |
| 61 scaling_value = -1; | |
|
Mikhail
2016/11/11 10:49:11
return -1;
maksims (do not use this acc)
2016/11/11 12:11:48
Done.
| |
| 62 return scaling_value; | |
| 63 } | |
| 64 | |
| 65 base::TrimWhitespaceASCII(scale, base::TRIM_ALL, &scale); | |
| 66 if (!base::StringToDouble(scale, &scaling_value)) | |
| 67 scaling_value = -1; | |
|
Mikhail
2016/11/11 10:49:11
return -1;
maksims (do not use this acc)
2016/11/11 12:11:48
Done.
| |
| 68 } | |
| 69 return scaling_value; | |
| 70 } | |
| 71 | |
| 55 } // namespace | 72 } // namespace |
| 56 | 73 |
| 57 // static | 74 // static |
| 58 std::unique_ptr<SensorReader> SensorReader::Create( | 75 std::unique_ptr<SensorReader> SensorReader::Create( |
| 59 const SensorDataLinux& data) { | 76 const SensorDataLinux& data) { |
| 60 base::ThreadRestrictions::AssertIOAllowed(); | 77 base::ThreadRestrictions::AssertIOAllowed(); |
| 61 std::vector<base::FilePath> sensor_paths; | 78 std::vector<base::FilePath> sensor_paths; |
| 62 if (!GetSensorFilePaths(data, &sensor_paths)) | 79 if (!GetSensorFilePaths(data, &sensor_paths)) |
| 63 return nullptr; | 80 return nullptr; |
| 64 return base::WrapUnique(new SensorReader(std::move(sensor_paths))); | 81 |
| 82 DCHECK(!sensor_paths.empty()); | |
| 83 base::FilePath sensor_base_path = sensor_paths.back().DirName(); | |
| 84 double scaling_value = | |
| 85 GetSensorScalingValues(data.sensor_scale_name, sensor_base_path); | |
| 86 | |
| 87 // A file with a scaling value is found, but couldn't be read. | |
| 88 if (scaling_value == -1) | |
| 89 return nullptr; | |
| 90 | |
| 91 return base::WrapUnique(new SensorReader( | |
| 92 std::move(sensor_paths), scaling_value, data.apply_scaling_func)); | |
| 65 } | 93 } |
| 66 | 94 |
| 67 SensorReader::SensorReader(std::vector<base::FilePath> sensor_paths) | 95 SensorReader::SensorReader( |
| 68 : sensor_paths_(std::move(sensor_paths)) { | 96 std::vector<base::FilePath> sensor_paths, |
| 97 double scaling_value, | |
| 98 const SensorDataLinux::ReaderFunctor& apply_scaling_func) | |
| 99 : sensor_paths_(std::move(sensor_paths)), | |
| 100 scaling_value_(scaling_value), | |
| 101 apply_scaling_func_(apply_scaling_func) { | |
| 69 DCHECK(!sensor_paths_.empty()); | 102 DCHECK(!sensor_paths_.empty()); |
| 70 } | 103 } |
| 71 | 104 |
| 72 SensorReader::~SensorReader() = default; | 105 SensorReader::~SensorReader() = default; |
| 73 | 106 |
| 74 bool SensorReader::ReadSensorReading(SensorReading* reading) { | 107 bool SensorReader::ReadSensorReading(SensorReading* reading) { |
| 75 base::ThreadRestrictions::AssertIOAllowed(); | 108 base::ThreadRestrictions::AssertIOAllowed(); |
| 76 SensorReading readings; | 109 SensorReading readings; |
| 77 DCHECK_LE(sensor_paths_.size(), arraysize(readings.values)); | 110 DCHECK_LE(sensor_paths_.size(), arraysize(readings.values)); |
| 78 int i = 0; | 111 int i = 0; |
| 79 for (const auto& path : sensor_paths_) { | 112 for (const auto& path : sensor_paths_) { |
| 80 std::string new_read_value; | 113 std::string new_read_value; |
| 81 if (!base::ReadFileToString(path, &new_read_value)) | 114 if (!base::ReadFileToString(path, &new_read_value)) |
| 82 return false; | 115 return false; |
| 83 | 116 |
| 84 double new_value = 0; | 117 double new_value = 0; |
| 85 base::TrimWhitespaceASCII(new_read_value, base::TRIM_ALL, &new_read_value); | 118 base::TrimWhitespaceASCII(new_read_value, base::TRIM_ALL, &new_read_value); |
| 86 if (!base::StringToDouble(new_read_value, &new_value)) | 119 if (!base::StringToDouble(new_read_value, &new_value)) |
| 87 return false; | 120 return false; |
| 88 readings.values[i++] = new_value; | 121 readings.values[i++] = new_value; |
| 89 } | 122 } |
| 123 if (!apply_scaling_func_.is_null()) | |
| 124 apply_scaling_func_.Run(scaling_value_, readings); | |
| 90 *reading = readings; | 125 *reading = readings; |
| 91 return true; | 126 return true; |
| 92 } | 127 } |
| 93 | 128 |
| 94 } // namespace device | 129 } // namespace device |
| OLD | NEW |