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