Joe Onorato | 1754d74 | 2016-11-21 17:51:35 -0800 | [diff] [blame] | 1 | /* |
| 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 Jin | b592e3b | 2018-02-01 15:17:04 -0800 | [diff] [blame] | 16 | #include "Log.h" |
Joe Onorato | 1754d74 | 2016-11-21 17:51:35 -0800 | [diff] [blame] | 17 | |
| 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 Onorato | 1754d74 | 2016-11-21 17:51:35 -0800 | [diff] [blame] | 25 | #include <utils/Looper.h> |
| 26 | #include <utils/StrongPointer.h> |
| 27 | |
Joe Onorato | 1754d74 | 2016-11-21 17:51:35 -0800 | [diff] [blame] | 28 | #include <sys/stat.h> |
Yi Jin | b592e3b | 2018-02-01 15:17:04 -0800 | [diff] [blame] | 29 | #include <sys/types.h> |
Joe Onorato | 1754d74 | 2016-11-21 17:51:35 -0800 | [diff] [blame] | 30 | |
| 31 | using namespace android; |
| 32 | |
| 33 | // ================================================================================ |
Yi Jin | b592e3b | 2018-02-01 15:17:04 -0800 | [diff] [blame] | 34 | int main(int /*argc*/, char** /*argv*/) { |
Joe Onorato | 1754d74 | 2016-11-21 17:51:35 -0800 | [diff] [blame] | 35 | // 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 Jin | b592e3b | 2018-02-01 15:17:04 -0800 | [diff] [blame] | 40 | ps->setThreadPoolMaxThreadCount(1); // everything is oneway, let it queue and save ram |
Joe Onorato | 1754d74 | 2016-11-21 17:51:35 -0800 | [diff] [blame] | 41 | 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 | } |