android_device_motorola_rhodep/fingerprint/service.cpp
Anand S e4d777d6dd
rhodep: Initial conversion to rhodep
* All configs and files are from rhodep_g-user 13 T1SUS33.1-124-6-14 a15be release-keys.

Change-Id: I003e30441fbff06a7551cdfe4358f6620cf3f67d
2025-04-05 15:30:48 +05:30

36 lines
1.1 KiB
C++

/*
* Copyright (C) 2017 The Android Open Source Project
*
* SPDX-License-Identifier: Apache-2.0
*/
#define LOG_TAG "android.hardware.biometrics.fingerprint@2.1-service.rhodep"
#include <android/log.h>
#include <hidl/HidlTransportSupport.h>
#include "BiometricsFingerprint.h"
// libhwbinder:
using android::hardware::configureRpcThreadpool;
using android::hardware::joinRpcThreadpool;
// Generated HIDL files
using android::hardware::biometrics::fingerprint::V2_1::IBiometricsFingerprint;
using android::hardware::biometrics::fingerprint::V2_1::implementation::BiometricsFingerprint;
int main() {
android::sp<IBiometricsFingerprint> service = BiometricsFingerprint::getInstance();
if (service == nullptr) {
ALOGE("Instance of BiometricsFingerprint is null");
return 1;
}
configureRpcThreadpool(1, true /*callerWillJoin*/);
android::status_t status = service->registerAsService();
if (status != android::OK) {
ALOGE("Cannot register BiometricsFingerprint service");
return 1;
}
joinRpcThreadpool();
return 0; // should never get here
}