blob: 1596aa8a891e8a041da083e4d411a846c17d4c0e [file] [log] [blame]
Brian Stack60fcdcf2018-10-16 14:51:34 -07001/*
2 * Copyright (C) 2018 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_HARDWARE_SENSORS_V2_0_SENSORS_H
18#define ANDROID_HARDWARE_SENSORS_V2_0_SENSORS_H
19
20#include <android/hardware/sensors/2.0/ISensors.h>
21#include <hidl/MQDescriptor.h>
22#include <hidl/Status.h>
23
24namespace android {
25namespace hardware {
26namespace sensors {
27namespace V2_0 {
28namespace implementation {
29
30using ::android::sp;
31using ::android::hardware::hidl_array;
32using ::android::hardware::hidl_memory;
33using ::android::hardware::hidl_string;
34using ::android::hardware::hidl_vec;
35using ::android::hardware::Return;
36using ::android::hardware::Void;
37
38struct Sensors : public ISensors {
39 using Event = ::android::hardware::sensors::V1_0::Event;
40 using OperationMode = ::android::hardware::sensors::V1_0::OperationMode;
41 using RateLevel = ::android::hardware::sensors::V1_0::RateLevel;
42 using Result = ::android::hardware::sensors::V1_0::Result;
43 using SharedMemInfo = ::android::hardware::sensors::V1_0::SharedMemInfo;
44
45 // Methods from ::android::hardware::sensors::V2_0::ISensors follow.
46 Return<void> getSensorsList(getSensorsList_cb _hidl_cb) override;
47
48 Return<Result> setOperationMode(OperationMode mode) override;
49
50 Return<Result> activate(int32_t sensorHandle, bool enabled) override;
51
52 Return<Result> initialize(
53 const ::android::hardware::MQDescriptorSync<Event>& eventQueueDescriptor,
54 const ::android::hardware::MQDescriptorSync<uint32_t>& wakeLockDescriptor,
55 const sp<ISensorsCallback>& sensorsCallback) override;
56
57 Return<Result> batch(int32_t sensorHandle, int64_t samplingPeriodNs,
58 int64_t maxReportLatencyNs) override;
59
60 Return<Result> flush(int32_t sensorHandle) override;
61
62 Return<Result> injectSensorData(const Event& event) override;
63
64 Return<void> registerDirectChannel(const SharedMemInfo& mem,
65 registerDirectChannel_cb _hidl_cb) override;
66
67 Return<Result> unregisterDirectChannel(int32_t channelHandle) override;
68
69 Return<void> configDirectReport(int32_t sensorHandle, int32_t channelHandle, RateLevel rate,
70 configDirectReport_cb _hidl_cb) override;
71};
72
73} // namespace implementation
74} // namespace V2_0
75} // namespace sensors
76} // namespace hardware
77} // namespace android
78
79#endif // ANDROID_HARDWARE_SENSORS_V2_0_SENSORS_H