blob: 47211b1645603b609513f98e8ba85662aa99a6e5 [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
17#define LOG_TAG "FingerprintInscreenService"
18
19#include "FingerprintInscreen.h"
20
21#include <android-base/logging.h>
22#include <hidl/HidlTransportSupport.h>
23
24#include <fstream>
25
26namespace vendor {
27namespace lineage {
28namespace biometrics {
29namespace fingerprint {
30namespace inscreen {
31namespace V1_0 {
32namespace implementation {
33
34/*
35 * Write value to path and close file.
36 */
37template <typename T>
38static void set(const std::string& path, const T& value) {
39 std::ofstream file(path);
40
41 if (!file) {
42 PLOG(ERROR) << "Failed to open: " << path;
43 return;
44 }
45
46 LOG(DEBUG) << "write: " << path << " value: " << value;
47
48 file << value << std::endl;
49
50 if (!file) {
51 PLOG(ERROR) << "Failed to write: " << path << " value: " << value;
52 }
53}
54
55template <typename T>
56static T get(const std::string& path, const T& def) {
57 std::ifstream file(path);
58
59 if (!file) {
60 PLOG(ERROR) << "Failed to open: " << path;
61 return def;
62 }
63
64 T result;
65
66 file >> result;
67
68 if (file.fail()) {
69 PLOG(ERROR) << "Failed to read: " << path;
70 return def;
71 } else {
72 LOG(DEBUG) << "read: " << path << " value: " << result;
73 return result;
74 }
75}
76
77FingerprintInscreen::FingerprintInscreen() {}
78
79Return<void> FingerprintInscreen::onStartEnroll() { return Void(); }
80
81Return<void> FingerprintInscreen::onFinishEnroll() { return Void(); }
82
83Return<void> FingerprintInscreen::onPress() {
84 set(TSP_CMD_PATH, FOD_ENABLE);
85 return Void();
86}
87
88Return<void> FingerprintInscreen::onRelease() {
89 set(TSP_CMD_PATH, FOD_DISABLE);
90 return Void();
91}
92
93Return<void> FingerprintInscreen::onShowFODView() { return Void(); }
94
95Return<void> FingerprintInscreen::onHideFODView() {
96 set(TSP_CMD_PATH, FOD_DISABLE);
97 return Void();
98}
99
100Return<bool> FingerprintInscreen::handleAcquired(int32_t acquiredInfo, int32_t vendorCode) {
101 std::lock_guard<std::mutex> _lock(mCallbackLock);
102
103 if (mCallback == nullptr) {
104 return false;
105 }
106
107 if (acquiredInfo == FINGERPRINT_ACQUIRED_VENDOR) {
108 if (vendorCode == VENDORCODE_FINGER_DOWN) {
109 Return<void> ret = mCallback->onFingerDown();
110 if (!ret.isOk()) {
111 LOG(ERROR) << "FingerDown() error: " << ret.description();
112 }
113 return true;
114 } else if (vendorCode == VENDORCODE_FINGER_UP) {
115 Return<void> ret = mCallback->onFingerUp();
116 if (!ret.isOk()) {
117 LOG(ERROR) << "FingerUp() error: " << ret.description();
118 }
119 return true;
120 }
121 }
122
123 return false;
124}
125
126Return<bool> FingerprintInscreen::handleError(int32_t, int32_t) { return false; }
127
128Return<void> FingerprintInscreen::setLongPressEnabled(bool) { return Void(); }
129
130Return<int32_t> FingerprintInscreen::getDimAmount(int32_t cur_brightness) {
131 return cur_brightness / 2;
132}
133
134Return<bool> FingerprintInscreen::shouldBoostBrightness() { return false; }
135
136Return<void> FingerprintInscreen::setCallback(const sp<IFingerprintInscreenCallback>& callback) {
137 mCallback = callback;
138
139 return Void();
140}
141
142Return<int32_t> FingerprintInscreen::getPositionX() { return FOD_SENSOR_X; }
143
144Return<int32_t> FingerprintInscreen::getPositionY() { return FOD_SENSOR_Y; }
145
146Return<int32_t> FingerprintInscreen::getSize() { return FOD_SENSOR_SIZE; }
147
148} // namespace implementation
149} // namespace V1_0
150} // namespace inscreen
151} // namespace fingerprint
152} // namespace biometrics
153} // namespace lineage
154} // namespace vendor