blob: 38b7449403fe2b90b5b24dd07a3e056bb1859fb3 [file] [log] [blame]
Joe Onorato1754d742016-11-21 17:51:35 -08001/*
2 * Copyright (C) 2016 The Android Open Source 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 */
Yi Jinb592e3b2018-02-01 15:17:04 -080016#include "Log.h"
Joe Onorato1754d742016-11-21 17:51:35 -080017
18#include "IncidentService.h"
19
20#include <binder/IInterface.h>
21#include <binder/IPCThreadState.h>
22#include <binder/IServiceManager.h>
23#include <binder/ProcessState.h>
24#include <binder/Status.h>
Joe Onorato1754d742016-11-21 17:51:35 -080025#include <utils/Looper.h>
26#include <utils/StrongPointer.h>
27
Joe Onorato1754d742016-11-21 17:51:35 -080028#include <sys/stat.h>
Yi Jinb592e3b2018-02-01 15:17:04 -080029#include <sys/types.h>
Joe Onorato1754d742016-11-21 17:51:35 -080030
31using namespace android;
32
33// ================================================================================
Yi Jinb592e3b2018-02-01 15:17:04 -080034int main(int /*argc*/, char** /*argv*/) {
Joe Onorato1754d742016-11-21 17:51:35 -080035 // Set up the looper
36 sp<Looper> looper(Looper::prepare(0 /* opts */));
37
38 // Set up the binder
39 sp<ProcessState> ps(ProcessState::self());
Yi Jinb592e3b2018-02-01 15:17:04 -080040 ps->setThreadPoolMaxThreadCount(1); // everything is oneway, let it queue and save ram
Joe Onorato1754d742016-11-21 17:51:35 -080041 ps->startThreadPool();
42 ps->giveThreadPoolName();
43 IPCThreadState::self()->disableBackgroundScheduling(true);
44
45 // Create the service
46 android::sp<IncidentService> service = new IncidentService(looper);
47 if (defaultServiceManager()->addService(String16("incident"), service) != 0) {
48 ALOGE("Failed to add service");
49 return -1;
50 }
51
52 // Loop forever -- the reports run on this thread in a handler, and the
53 // binder calls remain responsive in their pool of one thread.
54 while (true) {
55 looper->pollAll(-1 /* timeoutMillis */);
56 }
57 ALOGW("incidentd escaped from its loop.");
58
59 return 1;
60}