blob: be35703462da66e68fae4a2bf851474bc71c8033 [file] [log] [blame]
Willi Yef6a8f6e2019-11-13 01:38:23 +01001/*
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#ifndef VENDOR_LINEAGE_BIOMETRICS_FINGERPRINT_INSCREEN_V1_0_FINGERPRINTINSCREEN_H
17#define VENDOR_LINEAGE_BIOMETRICS_FINGERPRINT_INSCREEN_V1_0_FINGERPRINTINSCREEN_H
18
19#include <vendor/lineage/biometrics/fingerprint/inscreen/1.0/IFingerprintInscreen.h>
20
21#include "samsung_fingerprint_inscreen.h"
22
23namespace vendor {
24namespace lineage {
25namespace biometrics {
26namespace fingerprint {
27namespace inscreen {
28namespace V1_0 {
29namespace implementation {
30
31using ::android::sp;
32using ::android::hardware::Return;
33using ::android::hardware::Void;
34
35class FingerprintInscreen : public IFingerprintInscreen {
36 public:
37 FingerprintInscreen();
38
39 Return<void> onStartEnroll() override;
40 Return<void> onFinishEnroll() override;
41 Return<void> onPress() override;
42 Return<void> onRelease() override;
43 Return<void> onShowFODView() override;
44 Return<void> onHideFODView() override;
45 Return<bool> handleAcquired(int32_t acquiredInfo, int32_t vendorCode) override;
46 Return<bool> handleError(int32_t error, int32_t vendorCode) override;
47 Return<void> setLongPressEnabled(bool enabled) override;
48 Return<int32_t> getDimAmount(int32_t cur_brightness) override;
49 Return<bool> shouldBoostBrightness() override;
50 Return<void> setCallback(const sp<IFingerprintInscreenCallback>& callback) override;
51 Return<int32_t> getPositionX() override;
52 Return<int32_t> getPositionY() override;
53 Return<int32_t> getSize() override;
54
55 private:
56 std::mutex mCallbackLock;
57 sp<IFingerprintInscreenCallback> mCallback;
58};
59
60} // namespace implementation
61} // namespace V1_0
62} // namespace inscreen
63} // namespace fingerprint
64} // namespace biometrics
65} // namespace lineage
66} // namespace vendor
67
68#endif // VENDOR_LINEAGE_BIOMETRICS_FINGERPRINT_INSCREEN_V1_0_FINGERPRINTINSCREEN_H