Willi Ye | f6a8f6e | 2019-11-13 01:38:23 +0100 | [diff] [blame] | 1 | /* |
| 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 | |
| 26 | namespace vendor { |
| 27 | namespace lineage { |
| 28 | namespace biometrics { |
| 29 | namespace fingerprint { |
| 30 | namespace inscreen { |
| 31 | namespace V1_0 { |
| 32 | namespace implementation { |
| 33 | |
| 34 | /* |
| 35 | * Write value to path and close file. |
| 36 | */ |
| 37 | template <typename T> |
| 38 | static 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 | |
| 55 | template <typename T> |
| 56 | static 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 | |
| 77 | FingerprintInscreen::FingerprintInscreen() {} |
| 78 | |
| 79 | Return<void> FingerprintInscreen::onStartEnroll() { return Void(); } |
| 80 | |
| 81 | Return<void> FingerprintInscreen::onFinishEnroll() { return Void(); } |
| 82 | |
Jesse Chan | 4c9e74f | 2020-05-09 00:08:23 +0800 | [diff] [blame^] | 83 | Return<void> FingerprintInscreen::onPress() { return Void(); } |
| 84 | |
| 85 | Return<void> FingerprintInscreen::onRelease() { return Void(); } |
| 86 | |
| 87 | Return<void> FingerprintInscreen::onShowFODView() { |
Willi Ye | f6a8f6e | 2019-11-13 01:38:23 +0100 | [diff] [blame] | 88 | set(TSP_CMD_PATH, FOD_ENABLE); |
| 89 | return Void(); |
| 90 | } |
| 91 | |
Willi Ye | f6a8f6e | 2019-11-13 01:38:23 +0100 | [diff] [blame] | 92 | Return<void> FingerprintInscreen::onHideFODView() { |
| 93 | set(TSP_CMD_PATH, FOD_DISABLE); |
| 94 | return Void(); |
| 95 | } |
| 96 | |
| 97 | Return<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 | |
| 123 | Return<bool> FingerprintInscreen::handleError(int32_t, int32_t) { return false; } |
| 124 | |
| 125 | Return<void> FingerprintInscreen::setLongPressEnabled(bool) { return Void(); } |
| 126 | |
| 127 | Return<int32_t> FingerprintInscreen::getDimAmount(int32_t cur_brightness) { |
| 128 | return cur_brightness / 2; |
| 129 | } |
| 130 | |
| 131 | Return<bool> FingerprintInscreen::shouldBoostBrightness() { return false; } |
| 132 | |
| 133 | Return<void> FingerprintInscreen::setCallback(const sp<IFingerprintInscreenCallback>& callback) { |
| 134 | mCallback = callback; |
| 135 | |
| 136 | return Void(); |
| 137 | } |
| 138 | |
| 139 | Return<int32_t> FingerprintInscreen::getPositionX() { return FOD_SENSOR_X; } |
| 140 | |
| 141 | Return<int32_t> FingerprintInscreen::getPositionY() { return FOD_SENSOR_Y; } |
| 142 | |
| 143 | Return<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 |