blob: d41f9c9dfa0c9c3aa7acfaa95343c4a29943814c [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
Jesse Chan55021122020-05-09 00:26:54 +080077FingerprintInscreen::FingerprintInscreen() {
78#ifdef FOD_SET_RECT
79 set(TSP_CMD_PATH, FOD_SET_RECT);
80#endif
81}
Willi Yef6a8f6e2019-11-13 01:38:23 +010082
83Return<void> FingerprintInscreen::onStartEnroll() { return Void(); }
84
85Return<void> FingerprintInscreen::onFinishEnroll() { return Void(); }
86
Jesse Chan4c9e74f2020-05-09 00:08:23 +080087Return<void> FingerprintInscreen::onPress() { return Void(); }
88
89Return<void> FingerprintInscreen::onRelease() { return Void(); }
90
91Return<void> FingerprintInscreen::onShowFODView() {
Willi Yef6a8f6e2019-11-13 01:38:23 +010092 set(TSP_CMD_PATH, FOD_ENABLE);
93 return Void();
94}
95
Willi Yef6a8f6e2019-11-13 01:38:23 +010096Return<void> FingerprintInscreen::onHideFODView() {
97 set(TSP_CMD_PATH, FOD_DISABLE);
98 return Void();
99}
100
101Return<bool> FingerprintInscreen::handleAcquired(int32_t acquiredInfo, int32_t vendorCode) {
102 std::lock_guard<std::mutex> _lock(mCallbackLock);
103
104 if (mCallback == nullptr) {
105 return false;
106 }
107
108 if (acquiredInfo == FINGERPRINT_ACQUIRED_VENDOR) {
109 if (vendorCode == VENDORCODE_FINGER_DOWN) {
110 Return<void> ret = mCallback->onFingerDown();
111 if (!ret.isOk()) {
112 LOG(ERROR) << "FingerDown() error: " << ret.description();
113 }
114 return true;
115 } else if (vendorCode == VENDORCODE_FINGER_UP) {
116 Return<void> ret = mCallback->onFingerUp();
117 if (!ret.isOk()) {
118 LOG(ERROR) << "FingerUp() error: " << ret.description();
119 }
120 return true;
121 }
122 }
123
124 return false;
125}
126
127Return<bool> FingerprintInscreen::handleError(int32_t, int32_t) { return false; }
128
129Return<void> FingerprintInscreen::setLongPressEnabled(bool) { return Void(); }
130
131Return<int32_t> FingerprintInscreen::getDimAmount(int32_t cur_brightness) {
132 return cur_brightness / 2;
133}
134
135Return<bool> FingerprintInscreen::shouldBoostBrightness() { return false; }
136
137Return<void> FingerprintInscreen::setCallback(const sp<IFingerprintInscreenCallback>& callback) {
138 mCallback = callback;
139
140 return Void();
141}
142
143Return<int32_t> FingerprintInscreen::getPositionX() { return FOD_SENSOR_X; }
144
145Return<int32_t> FingerprintInscreen::getPositionY() { return FOD_SENSOR_Y; }
146
147Return<int32_t> FingerprintInscreen::getSize() { return FOD_SENSOR_SIZE; }
148
149} // namespace implementation
150} // namespace V1_0
151} // namespace inscreen
152} // namespace fingerprint
153} // namespace biometrics
154} // namespace lineage
155} // namespace vendor