2022-04-30 17:02:37 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2017 The Android Open Source Project
|
2022-04-30 17:48:37 -04:00
|
|
|
* 2022 The LineageOS Project
|
2022-04-30 17:02:37 -04:00
|
|
|
*
|
2022-04-30 17:48:37 -04:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2022-04-30 17:02:37 -04:00
|
|
|
*/
|
|
|
|
|
2022-04-30 17:06:03 -04:00
|
|
|
#define LOG_TAG "android.hardware.biometrics.fingerprint@2.1-service.xiaomi"
|
2022-04-30 17:02:37 -04:00
|
|
|
|
|
|
|
#include <android/log.h>
|
|
|
|
#include <hidl/HidlSupport.h>
|
|
|
|
#include <hidl/HidlTransportSupport.h>
|
|
|
|
#include <android/hardware/biometrics/fingerprint/2.1/IBiometricsFingerprint.h>
|
|
|
|
#include <android/hardware/biometrics/fingerprint/2.1/types.h>
|
|
|
|
#include "BiometricsFingerprint.h"
|
|
|
|
|
|
|
|
using android::hardware::biometrics::fingerprint::V2_1::IBiometricsFingerprint;
|
|
|
|
using android::hardware::biometrics::fingerprint::V2_1::implementation::BiometricsFingerprint;
|
|
|
|
using android::hardware::configureRpcThreadpool;
|
|
|
|
using android::hardware::joinRpcThreadpool;
|
|
|
|
using android::sp;
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
android::sp<IBiometricsFingerprint> bio = BiometricsFingerprint::getInstance();
|
|
|
|
|
|
|
|
configureRpcThreadpool(1, true /*callerWillJoin*/);
|
|
|
|
|
|
|
|
if (bio != nullptr) {
|
|
|
|
if (::android::OK != bio->registerAsService()) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ALOGE("Can't create instance of BiometricsFingerprint, nullptr");
|
|
|
|
}
|
|
|
|
|
|
|
|
joinRpcThreadpool();
|
|
|
|
|
|
|
|
return 0; // should never get here
|
|
|
|
}
|