blob: 130997195389b0aa854301c78b9683aa76711ccc [file] [log] [blame]
Peng Xu1a00e2d2017-09-27 23:08:30 -07001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ANDROID_SENSOR_DEVICE_UTIL
18#define ANDROID_SENSOR_DEVICE_UTIL
19
20#include <android/hidl/manager/1.0/IServiceNotification.h>
Anthony Stange12924862020-03-20 10:46:15 -040021#include <hardware/sensors.h>
Anthony Stange5945eb32020-08-06 12:45:16 -040022#include <utils/Log.h>
Peng Xu1a00e2d2017-09-27 23:08:30 -070023
Anthony Stange12924862020-03-20 10:46:15 -040024#include <cmath>
Peng Xu1a00e2d2017-09-27 23:08:30 -070025#include <condition_variable>
26#include <thread>
27
28using ::android::hardware::hidl_string;
29using ::android::hardware::Return;
30using ::android::hidl::manager::V1_0::IServiceNotification;
31
32namespace android {
33namespace SensorDeviceUtils {
34
Anthony Stange12924862020-03-20 10:46:15 -040035// Quantizes a single value using a sensor's resolution.
36inline void quantizeValue(float *value, double resolution) {
Anthony Stange5945eb32020-08-06 12:45:16 -040037 if (resolution == 0) {
38 return;
39 }
40
Anthony Stange12924862020-03-20 10:46:15 -040041 // Increase the value of the sensor's nominal resolution to ensure that
42 // sensor accuracy improvements, like runtime calibration, are not masked
43 // during requantization.
Anthony Stange5b201d72020-06-11 09:04:32 -040044 double incRes = 0.125 * resolution;
Anthony Stange12924862020-03-20 10:46:15 -040045 *value = round(static_cast<double>(*value) / incRes) * incRes;
46}
47
48// Ensures a sensor event doesn't provide values finer grained than its sensor resolution allows.
49void quantizeSensorEventValues(sensors_event_t *event, float resolution);
50
Anthony Stange5945eb32020-08-06 12:45:16 -040051// Returns the expected resolution value for the given sensor
52float resolutionForSensor(const sensor_t &sensor);
Anthony Stange12924862020-03-20 10:46:15 -040053
Peng Xu1a00e2d2017-09-27 23:08:30 -070054class HidlServiceRegistrationWaiter : public IServiceNotification {
55public:
56
57 HidlServiceRegistrationWaiter();
58
59 Return<void> onRegistration(const hidl_string &fqName,
60 const hidl_string &name,
61 bool preexisting) override;
62
63 void reset();
64
65 /**
66 * Wait for service restart
67 *
68 * @return true if service is restart since last reset(); false otherwise.
69 */
70 bool wait();
Yifan Honga53e89d2017-11-02 16:19:19 -070071protected:
72 void onFirstRef() override;
Peng Xu1a00e2d2017-09-27 23:08:30 -070073private:
Martijn Coenenb41e87a2017-11-02 14:00:41 +010074 bool mRegistered;
Peng Xu1a00e2d2017-09-27 23:08:30 -070075
76 std::mutex mLock;
77 std::condition_variable mCondition;
78 bool mRestartObserved;
79};
80
81} // namespace SensorDeviceUtils
82} // namespace android;
83
84#endif // ANDROID_SENSOR_SERVICE_UTIL