C++与Java之间的Binder通信

简介

在Android系统开发中经常会碰到server端和client语言不同问题,例如使用C++编写的Service,客户端是Java/Kotlin;或者是app中创建的Service,client端是c++的情况,本篇文章介绍使用C/C++编写的程序如何与Java编写的Service进行binder通信。

  1. Binder通信首先创建AIDL文件,用于定义服务端的接口,这里简单示例:
// server
package com.lu.test;
import com.lu.test.ITestClient;

interface ITestService{
    String getServiceName();
    void registerClient(ITestClient client);
}

//client
package com.lu.test;

interface ITestClient{
    String getClientName();
}
  1. 编写脚本用于生成c层的头文件(java可以通过Android Studio 生成相关的类)
  cc_library_shared {
    name: "lib-test",
    srcs:["./**/*.aidl"],
    aidl:{
        include_dirs:["./"],
    },
    shared_libs:[
        "libutils",
        "libcutils",
        "libbinder",
    ],
}

我们当前的目录结构如下:

├── Android.bp
└── com
    └── lu
        └── test
            ├── ITestClient.aidl
            └── ITestService.aidl

将该部分文件放入到aosp下,可以放在vendor底下,然后运行在根目录运行:

make lib-test

即可得到头文件:

# 生成的头文件路径
# out/soong/.intermediates/vendor/test/lib-test/android_arm64_armv8-a_shared/gen

生成的文件列表

.
└── com
    └── lu
        └── test
            ├── BnTestClient.h
            ├── BnTestService.h
            ├── BpTestClient.h
            ├── BpTestService.h
            ├── ITestClient.cpp
            ├── ITestClient.cpp.d
            ├── ITestClient.h
            ├── ITestService.cpp
            └── ITestService.h

其中Bn开头的是作为Binder中的server端的头文件,需要我们去实现;Bp打头的文件类似于Java中的Stub,用于做类型转换的代理类。

  1. 实现Bn,在这个例子中,我们是需要双向通信的,client端获取ItestService访问server端,同时像server端注册ITestClient,server端通过ITestClient可以访问client端;
  • Server端通过Java实现ITestService,使用AS创建一个App,并且编写一个Service即可:
private const val TAG = "TestService"

class TestService : Service() {

    private val mService = object : ITestService.Stub() {
        override fun getServiceName(): String {
            return "TestService";
        }

        override fun registerClient(client: ITestClient) {
            Log.d(TAG, "registerClient : ${client.clientName}")
        }
    }

    override fun onBind(intent: Intent?): IBinder? {
        return mService
    }

    override fun onCreate() {
        super.onCreate()
        //将service添加到ServiceManager管理中
        ServiceManager.addService("BinderTest", mService)
    }
}
  • Client端通过C++实现ITestClient
    首先我们看下通过AIDL生成的ITestClient.h
#pragma once

#include <binder/IBinder.h>
#include <binder/IInterface.h>
#include <binder/Status.h>
#include <utils/String16.h>
#include <utils/StrongPointer.h>

namespace com {

namespace lu {

namespace test {

class ITestClient : public ::android::IInterface {
public:
  DECLARE_META_INTERFACE(TestClient)
  virtual ::android::binder::Status getClientName(::android::String16* _aidl_return) = 0;
};  // class ITestClient

class ITestClientDefault : public ITestClient {
public:
  ::android::IBinder* onAsBinder() override {
    return nullptr;
  }
  ::android::binder::Status getClientName(::android::String16*) override {
    return ::android::binder::Status::fromStatusT(::android::UNKNOWN_TRANSACTION);
  }
};  // class ITestClientDefault

}  // namespace test

}  // namespace lu

}  // namespace com

创建一个文件TestClient.h

#ifndef BINDERTEST_TESTCLIENT_H
#define BINDERTEST_TESTCLIENT_H

#include "com/lu/test/BnTestClient.h"

//此处继承的是BnTestClient,这个类帮助我们实现了binder接口的转化
class TestClient : public ::com::lu::test::BnTestClient {
public:
    TestClient();

    virtual ~TestClient();

    ::android::binder::Status getClientName(::android::String16 *_aidl_return);
};

#endif //BINDERTEST_TESTCLIENT_H

创建TestClient.cpp

#include "TestClient.h"

using namespace com::lu::test;

TestClient::TestClient() = default;

TestClient::~TestClient() = default;

::android::binder::Status TestClient::getClientName(::android::String16* _aidl_return){
    *_aidl_return = android::String16("TestClient");
   return android::binder::Status::ok();
}
  1. 编写client端的测试程序TestMain.cpp
#include <unistd.h>
#include "binder/IBinder.h"
#include "utils/StrongPointer.h"
#include "binder/IServiceManager.h"
#include <android/binder_manager.h>
#include <android/binder_process.h>
#include "com/lu/test/ITestService.h"
#include "android_log_define.h"
#include "TestClient.h"
#include "thread"

#define SERVER_NAME  "BinderTest"

using namespace std;
using namespace android;

TestClient *clientImpl = new TestClient();;

android::sp<com::lu::test::ITestService> getService() {
    sp<IServiceManager> sm = defaultServiceManager();
    if (sm == nullptr) {
        LOGE("can't get serviceManager");
        return nullptr;
    }
    auto binder = sm->getService(String16(SERVER_NAME));
    if (binder == nullptr) {
        LOGE("can not get binder");
        return nullptr;
    }

    auto logServer = interface_cast<com::lu::test::ITestService>(binder);
    if (logServer == nullptr) {
        LOGE("can't cast LogServer");
        return nullptr;
    }

    return logServer;
}

int main() {
    auto service = getService();
    if (service == nullptr) {
        LOGE("registerService failed service is null");
        return -1;
    }
    service->registerClient(clientImpl);
    auto name = new String16();
    service->getServiceName(name);
    LOGD("the service name is %s", name->string());
    //这2句是使当前线程具有binder的能力,会阻塞住当前线程,建议可以放到子线程中
    ABinderProcess_setThreadPoolMaxThreadCount(0);
    ABinderProcess_joinThreadPool();
}

编译脚本

cc_binary {
    name: "BindClientTest",
    srcs:[
        "./**/*.cpp"
    ],
    local_include_dirs:[
        "./include",
    ],
    shared_libs:[
        "libutils",
        "libcutils",
        "libbinder",
        "liblog",
        "libbase",
        "libbinder_ndk"
    ],
    cflags: [
        "-Wall",
        "-Werror",
        "-Wextra",
        "-Wno-unused-parameter",
        "-std=c++11",
        "-frtti",
        "-fexceptions",
        "-fPIC",
    ],
}

目录结构

├── Android.bp
├── TestClient.cpp
├── TestMain.cpp
└── include
    ├── TestClient.h
    ├── android_log_define.h
    └── com
        └── lu
            └── test
                ├── BnTestClient.h
                ├── BnTestService.h
                ├── BpTestClient.h
                ├── BpTestService.h
                ├── ITestClient.cpp
                ├── ITestClient.cpp.d
                ├── ITestClient.h
                ├── ITestService.cpp
                └── ITestService.h

  1. 调试
  • 将Server端的app运行起来
  • 将client端放入aosp环境编译,产物推到system/bin/目录下并运行
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,186评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,858评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,620评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,888评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,009评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,149评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,204评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,956评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,385评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,698评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,863评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,544评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,185评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,899评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,141评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,684评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,750评论 2 351

推荐阅读更多精彩内容