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