summaryrefslogtreecommitdiff
path: root/GrallocHAL/service/aidl/service.cpp
blob: 26cf77efff28626222ebb9eddd8590e2b748fefb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#define LOG_TAG "gralloc-V1-service"

#include <android/binder_ibinder_platform.h>
#include <android/binder_manager.h>
#include <android/binder_process.h>
#include <android/binder_status.h>
#include <log/log.h>

#include "aidl/GrallocAllocator.h"

using namespace android;

using pixel::allocator::GrallocAllocator;

int main() {
    auto service = ndk::SharedRefBase::make<GrallocAllocator>();
    auto binder = service->asBinder();

    AIBinder_setMinSchedulerPolicy(binder.get(), SCHED_NORMAL, -20);

    const auto instance = std::string() + GrallocAllocator::descriptor + "/default";
    auto status = AServiceManager_addService(binder.get(), instance.c_str());
    if (status != STATUS_OK) {
        ALOGE("Failed to start AIDL gralloc allocator service");
        return -EINVAL;
    }

    ABinderProcess_setThreadPoolMaxThreadCount(4);
    ABinderProcess_startThreadPool();
    ABinderProcess_joinThreadPool();

    return EXIT_FAILURE; // Unreachable
}