AIDL 初探

AIDL简介

​ AIDL即Android IDL,是基于安卓平台的接口定义语言。AIDL的角色就是Android平台下的RPC。RPC是IPC的一个特例,能够跨进程远程访问。RPC的目的就是可以让程序不用担心方法具体是在哪个进程里面或者哪个机器上面,就像正常的本地方法那样去调用即可,RPC机制会处理所有的具体细节。

​ AIDL提供Android平台的RPC的支持:开发者仅需要要定义AIDL,做一些相关的适配工作,然后就可以使用这些方法了,不用具体关心接口描述的方法究竟是在同一个进程中还是在其他的进程中。这些RPC实现的细节由Binder和系统来处理。

AIDL使用:以蓝牙扫描服务为例

​ 项目的Module下新建一个aidl文件,AS会自动为你生成一个包,文件会放在包里面,项目目录如下:

aidl_bluetooth_manager.png

其中,app作为服务器端的Module,而bluetoorhtest作为客户端Module。

服务器端Module:

​ 定义AIDL文件。AIDL其实是一个接口文件,在里面定义相关的接口方法,而不作实现。

// IBlueToothService.aidl
package com.lzy.bluetoothmanager;

// Declare any non-default types here with import statements
import com.lzy.bluetoothmanager.RmBluetoothDevice;

interface IBlueToothService {

    List<RmBluetoothDevice> getDevices();

}

这里注意传入参数的一些要点:

  • in表示从客户端传入,out表示从服务器传出,inout表示双向通信,即从客户端传入,并从服务器修改再传回。

  • 默认可以传入基本数据类型的参数,如果需要特殊参数,说明如下:

    1、传入对象类型,对象需要实现Parcelable接口,并在AIDL作如下定义,并且客户端和服务器端的module都要有一份内容完全相同的Model类副本。

    2、可以传入集合类型,如List,map等。

// RmBluetoothDevice.aidl
package com.lzy.bluetoothmanager;

parcelable RmBluetoothDevice;

​ 在AS中Build服务器module。会生成对应的 Java 文件,一般不做修改,可查看其生成的Stub抽象类,该类继承于Binder,因此,预示着我们需要使用Service去做实现。

/*
 * This file is auto-generated.  DO NOT MODIFY.
 * Original file: C:\\Development\\Android\\projects-as\\BlueToothManager\\app\\src\\main\\aidl\\com\\lzy\\bluetoothmanager\\IBlueToothService.aidl
 */
package com.lzy.bluetoothmanager;
public interface IBlueToothService extends android.os.IInterface
{
/** Local-side IPC implementation stub class. */
public static abstract class Stub extends android.os.Binder implements com.lzy.bluetoothmanager.IBlueToothService
{
private static final java.lang.String DESCRIPTOR = "com.lzy.bluetoothmanager.IBlueToothService";
/** Construct the stub at attach it to the interface. */
public Stub()
{
this.attachInterface(this, DESCRIPTOR);
}
/**
 * Cast an IBinder object into an com.lzy.bluetoothmanager.IBlueToothService interface,
 * generating a proxy if needed.
 */
public static com.lzy.bluetoothmanager.IBlueToothService asInterface(android.os.IBinder obj)
{
    ...
}
    ...
}

​ 新建一个Service类,定义内部类,实现AIDL的stub接口,并在onBinder方法中返回。

/**
 * 蓝牙远程AIDL调用接口
 */
private class BlueToothAIDLBinder extends IBlueToothService.Stub{
    @Override
    public List<RmBluetoothDevice> getDevices() {
        if(mDiscoveryTask == null){
            mDeviceManager.clearAll();
            mDiscoveryTask = new BluetoothDiscoveryTask();
            mDiscoveryTask.execute();
        }
        return mDeviceManager.getAvailableDevices();
    }
}


​ 在AndroidManifest.xml中注册服务,并定义action。

<service android:name=".Services.BluetoothService">
    <intent-filter>
        <action android:name="lzy.service.bluetooth"/>
    </intent-filter>
</service>

客户端Module:

​ 拷贝一份服务器端Module的aidl文件到客户端,需要将整个包都拷贝进去,并保证aidl文件内容一致。然后Build客户端Module,生成对应Stub类的java文件。

​ 在Activity中定义内部类,实现ServiceConnection接口。实现接口中的 onServiceConnected 方法,该方法的第二个参数为IBinder类型,这就是远程服务器返回的Service对象,使用相关方法,将其化为对应aidl接口对象。

/**
 * 连接远程蓝牙扫描服务
 */
private class BlueToothRemoteConnection implements ServiceConnection{
    @Override
    public void onServiceConnected(ComponentName name, IBinder service) {
        isBtConnectionAlive = true;

        //获取远程传回的服务接口
        blueToothAidlBinder = IBlueToothService.Stub.asInterface(service);

        Thread btTask = new Thread(){
            @Override
            public void run() {
                // 定时获取蓝牙设备信息
                while(isBtConnectionAlive){
                    try {
                        Thread.sleep(500);
                        devices = blueToothAidlBinder.getDevices();
                        EventBusUtil.post(BlueToothConstant.EVENT_DEVICES_DESCOVERYING, null);
                    } catch (Exception e) {
                        e.printStackTrace();
                    }
                }
            }
        };
        btTask.start();
    }

    @Override
    public void onServiceDisconnected(ComponentName name) {
        unbindService(btConnection);
        isBtConnectionAlive = false;
    }
}

​ 最后使用Intent,绑定到指定action的Service。这样就实现了IPC通信。

/**
 * 远程连接蓝牙服务器
 */
public void toConnectServer(){
    Intent intent = new Intent();
    intent.setAction(BlueToothConstant.BLUETOOTH_SERVICE_ACTION);
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
        // Android 5.0 之后必须设置组件
        PackageManager pm = getApplication().getPackageManager();
        List<ResolveInfo> resolveInfo = pm.queryIntentServices(intent, 0);
        if (resolveInfo != null && resolveInfo.size() == 1) {
            ResolveInfo serviceInfo = resolveInfo.get(0);
            String packageName = serviceInfo.serviceInfo.packageName;
            String className = serviceInfo.serviceInfo.name;
            Intent componentIntent = new Intent(intent);
            componentIntent.setComponent(new ComponentName(packageName, className));
            bindService(componentIntent, btConnection, BIND_AUTO_CREATE);
        } else {
            Log.e(TAG, "BluetoothService is not installed.");
        }
    } else {
        bindService(intent, btConnection, BIND_AUTO_CREATE);
    }
}

注意:Android 5.0之后隐式声明Intent启动Service引发一些问题,会抛出异常,要求显式调用,但是不符合实际。因此,在Intent中使用Component来解决问题。

可以专门为此编写一个工具类方法,如下:

public static Intent createExplicitFromImplicitIntent(Context context, Intent implicitIntent) {
    // Retrieve all services that can match the given intent
    PackageManager pm = context.getPackageManager();
    List<ResolveInfo> resolveInfo = pm.queryIntentServices(implicitIntent, 0);

    // Make sure only one match was found
    if (resolveInfo == null || resolveInfo.size() != 1) {
        return null;
    }

    // Get component info and create ComponentName
    ResolveInfo serviceInfo = resolveInfo.get(0);
    String packageName = serviceInfo.serviceInfo.packageName;
    String className = serviceInfo.serviceInfo.name;
    ComponentName component = new ComponentName(packageName, className);

    // Create a new intent. Use the old one for extras and such reuse
    Intent explicitIntent = new Intent(implicitIntent);

    // Set the component to be explicit
    explicitIntent.setComponent(component);

    return explicitIntent;
}

源代码

本Demo源码完全开源,实现AIDL简易蓝牙扫描功能,有学习兴趣的可以下载参考
Github链接:https://github.com/Miracle287/BlueToothManager

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