blob: 0718a69addf5d313c8f47110aecb4c0eb3d2d491 [file] [log] [blame]
Steven Moreland2e87adc2018-08-20 19:47:00 -07001/*
2 * Copyright (C) 2018 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 */
16
17#include <android-base/logging.h>
18#include <android/binder_process.h>
19#include <iface/iface.h>
20
21using ::android::sp;
22
23class MyFoo : public IFoo {
24 int32_t doubleNumber(int32_t in) override {
25 LOG(INFO) << "doubling " << in;
26 return 2 * in;
27 }
28};
29
30int main() {
31 ABinderProcess_setThreadPoolMaxThreadCount(0);
32
33 // Strong reference to MyFoo kept by service manager.
34 binder_status_t status = (new MyFoo)->addService(IFoo::kSomeInstanceName);
35
Steven Moreland5d62e442018-09-13 15:01:02 -070036 if (status != STATUS_OK) {
Steven Moreland2e87adc2018-08-20 19:47:00 -070037 LOG(FATAL) << "Could not register: " << status;
38 }
39
40 ABinderProcess_joinThreadPool();
41
42 return 1;
43}