blob: 1a6789525f1e404ab31ecd178788edde441e2d78 [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 "lineage.biometrics.fingerprint.inscreen@1.0-service.samsung"
18
19#include <android-base/logging.h>
20#include <hidl/HidlTransportSupport.h>
21
22#include "FingerprintInscreen.h"
23
24using android::hardware::configureRpcThreadpool;
25using android::hardware::joinRpcThreadpool;
26
27using vendor::lineage::biometrics::fingerprint::inscreen::V1_0::IFingerprintInscreen;
28using vendor::lineage::biometrics::fingerprint::inscreen::V1_0::implementation::FingerprintInscreen;
29
30using android::OK;
31using android::status_t;
32
33int main() {
34 android::sp<IFingerprintInscreen> service = new FingerprintInscreen();
35
36 configureRpcThreadpool(1, true);
37
38 status_t status = service->registerAsService();
39 if (status != OK) {
40 LOG(ERROR) << "Cannot register FOD HAL service.";
41 return 1;
42 }
43
44 LOG(INFO) << "FOD HAL service ready.";
45
46 joinRpcThreadpool();
47
48 LOG(ERROR) << "FOD HAL service failed to join thread pool.";
49 return 1;
50}