blob: aba75f546cc77d522863d80342f7ad99058d5580 [file] [log] [blame]
Andreas Schneiderccd5c4c2020-05-25 17:10:35 +02001/*
2 * Copyright (C) 2020 The LineageOS 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_VIBRATOR_V1_3_VIBRATOR_H
18#define ANDROID_HARDWARE_VIBRATOR_V1_3_VIBRATOR_H
19
20#include <android/hardware/vibrator/1.3/IVibrator.h>
21#include <hidl/Status.h>
22
23#include <fstream>
24
25#define INTENSITY_MIN 1000
26#define INTENSITY_MAX 10000
27#define INENSITY_DEFAULT INTENSITY_MAX
28
29#define CLICK_TIMING_MS 20
30
31#define VIBRATOR_TIMEOUT_PATH "/sys/class/timed_output/vibrator/enable"
32#define VIBRATOR_INTENSITY_PATH "/sys/class/timed_output/vibrator/intensity"
33
34namespace android {
35namespace hardware {
36namespace vibrator {
37namespace V1_3 {
38namespace implementation {
39
40using android::hardware::vibrator::V1_0::EffectStrength;
41using android::hardware::vibrator::V1_0::Status;
42
43class Vibrator : public IVibrator {
44 public:
45 Vibrator();
46
47 // Methods from ::android::hardware::vibrator::V1_0::IVibrator follow.
48 Return<Status> on(uint32_t timeoutMs) override;
49 Return<Status> off() override;
50 Return<bool> supportsAmplitudeControl() override;
51 Return<Status> setAmplitude(uint8_t amplitude) override;
52 Return<void> perform(V1_0::Effect effect, EffectStrength strength,
53 perform_cb _hidl_cb) override;
54
55 // Methods from ::android::hardware::vibrator::V1_1::IVibrator follow.
56 Return<void> perform_1_1(V1_1::Effect_1_1 effect, EffectStrength strength,
57 perform_cb _hidl_cb) override;
58
59 // Methods from ::android::hardware::vibrator::V1_2::IVibrator follow.
60 Return<void> perform_1_2(V1_2::Effect effect, EffectStrength strength,
61 perform_cb _hidl_cb) override;
62
63 // Methods from ::android::hardware::vibrator::V1_3::IVibrator follow.
64 Return<bool> supportsExternalControl() override;
65 Return<Status> setExternalControl(bool enabled) override;
66 Return<void> perform_1_3(Effect effect, EffectStrength strength, perform_cb _hidl_cb) override;
67
68 private:
69 Return<void> perform(Effect effect, EffectStrength strength, perform_cb _hidl_cb);
70 template <typename T>
71 Return<void> perform(T effect, EffectStrength strength, perform_cb _hidl_cb);
72 Status enable(bool enabled);
73 Status activate(uint32_t ms);
74
75 static uint32_t effectToMs(Effect effect, Status* status);
76 static uint8_t strengthToAmplitude(EffectStrength strength, Status* status);
77
78 bool mEnabled{false};
79 uint8_t mAmplitude{UINT8_MAX};
80 bool mExternalControl{false};
81 std::mutex mMutex;
82 timer_t mTimer{nullptr};
83
84 bool mIsTimedOutVibriator;
85 bool mhasTimedOutIntensity;
86};
87
88} // namespace implementation
89} // namespace V1_3
90} // namespace vibrator
91} // namespace hardware
92} // namespace android
93
94#endif // ANDROID_HARDWARE_VIBRATOR_V1_3_VIBRATOR_H