RxAndroidBLE 源码分析:建立蓝牙连接

1. 得到 外围蓝牙设备

想与 外围的蓝牙设备相连接,首先得要获得这个蓝牙设备。

官方例子:

bleDevice = SampleApplication.getRxBleClient(this).getBleDevice(macAddress);

具体的实现:
由 RxClient 中的 RxBledeviceProvider 提供具体的 获取蓝牙设备的 实现:

Paste_Image.png

具体代码:

Paste_Image.png
  1. 获得 BluetoothDevice
 rxBleAdapterWrapper.getRemoteDevice(macAddress);

rxBleAdapterWrapper是 BluetoothAdapter 的包装,以上代码本质上是:

 public BluetoothDevice getRemoteDevice(String macAddress) {
        return bluetoothAdapter.getRemoteDevice(macAddress);
    }
  1. 包装 BluetoothDevice---》RxBleDeviceImpl
    包装了 BluetoothDevice,使其变的更强!
Paste_Image.png

如上,可以通过包装后的蓝牙设备做如下事情:

  1. 建立连接
  2. 观察连接状态
  3. 获得当前的连接状态
  4. getName,getMacAddress

2. 观察 外围蓝牙设备的连接状态

有了 外围的蓝牙设备,我就可以去观察他了。

官方例子:

// How to listen for connection state changes
bleDevice.observeConnectionStateChanges()
        .compose(bindUntilEvent(DESTROY))
        .observeOn(AndroidSchedulers.mainThread())
        .subscribe(this::onConnectionStateChange);

深入 RxBleDeviceImpl中的 代码:

Paste_Image.png

connectionStateSubject:

private final BehaviorSubject<RxBleConnection.RxBleConnectionState> connectionStateSubject = BehaviorSubject.create(DISCONNECTED);

它是个平台:

生产者 生产完东西,消费者过来买东西。他们都是通过 subject 这个平台。

subject 有如下几种实现:

Paste_Image.png

着重看一下:BehaviorSubject

蓝牙的 连接状态 事件的生产和发布 是通过 connectionStateSubject 这个平台的。
下面看一下代码实现:

Paste_Image.png
  1. 生产 连接中(CONNECTING) 这个事件。
  2. 生产 连接上了(CONNECTED) 这个事件。
  3. 生产 断开连接(DISCONNECTED) 这个事件。

说着说着就到了与外围蓝牙设备的 建立连接~

连接

有了蓝牙设备,就可以与这个设备建立连接了。

RxBleDeviceImpl 中 的connector专门负责连接:

Paste_Image.png

核心的连接与断开连接,这些代码被封装到:

由RxBleConnectionConnectorOperationsProvider来管理。

其中建立连接:

Paste_Image.png

继续:

1. 初步检查

若蓝牙未启用,生产一个 异常对象:BleDisconnectedException

2. 连接过程中,考虑各种情况。

考虑情况:未连接上的时候
(在建立蓝牙连接的时候,若蓝牙不可用了)

Paste_Image.png

考虑情况:已经连接上的时候
(这时候,蓝牙断开连接了,也要通知观察者!)

Paste_Image.png

考虑情况:用户不想订阅这个连接了。
(针对这个连接,用户不想玩了:断开连接)

下面深入:
将 蓝牙连接这个操作 进行入队:

Paste_Image.png

RxBleRadioOperationConnect 的具体执行什么操作?

 @Override
    protected void protectedRun() {
        final Runnable onConnectionEstablishedRunnable = autoConnect ? emptyRunnable : releaseRadioRunnable;
        final Runnable onConnectCalledRunnable = autoConnect ? releaseRadioRunnable : emptyRunnable;

        getConnectedBluetoothGatt()
                .doOnCompleted(onConnectionEstablishedRunnable::run)
                .subscribe(getSubscriber());

        onConnectCalledRunnable.run();
    }

该流程执行完毕后,我们建立了 一个订阅关系:
生产者:建立蓝牙连接,连接成功后,返回此链接的 gatt。
消费者:再将该 gatt 发射出去。

再细看下 getConnectedBluetoothGatt()

当你连接成功了会得到一个 gatt。

核心:建立连接

connectionCompat.connectGatt(bluetoothDevice, autoConnect, rxBleGattCallback.getBluetoothGattCallback())

连接的建立 被封装到 BleConnectionCompat 类中:

Paste_Image.png

那我们看一下 他们的 connectGatt 方法:

  public BluetoothGatt connectGatt(BluetoothDevice remoteDevice, boolean autoConnect, BluetoothGattCallback bluetoothGattCallback) {

        if (remoteDevice == null) {
            return null;
        }

        if (!autoConnect) {
            return connectGattCompat(bluetoothGattCallback, remoteDevice, false);
        }

        /**
         * Some implementations of Bluetooth Stack have a race condition where autoConnect flag
         * is not properly set before calling connectGatt. That's the reason for using reflection
         * to set the flag manually.
         */

        try {
            RxBleLog.v("Trying to connectGatt using reflection.");
            Object iBluetoothGatt = getIBluetoothGatt(getIBluetoothManager());

            if (iBluetoothGatt == null) {
                RxBleLog.w("Couldn't get iBluetoothGatt object");
                return connectGattCompat(bluetoothGattCallback, remoteDevice, true);
            }

            BluetoothGatt bluetoothGatt = createBluetoothGatt(iBluetoothGatt, remoteDevice);

            if (bluetoothGatt == null) {
                RxBleLog.w("Couldn't create BluetoothGatt object");
                return connectGattCompat(bluetoothGattCallback, remoteDevice, true);
            }

            boolean connectedSuccessfully = connectUsingReflection(bluetoothGatt, bluetoothGattCallback, true);

            if (!connectedSuccessfully) {
                RxBleLog.w("Connection using reflection failed, closing gatt");
                bluetoothGatt.close();
            }

            return bluetoothGatt;
        } catch (NoSuchMethodException
                | IllegalAccessException
                | IllegalArgumentException
                | InvocationTargetException
                | InstantiationException
                | NoSuchFieldException exception) {
            RxBleLog.w(exception, "Error during reflection");
            return connectGattCompat(bluetoothGattCallback, remoteDevice, true);
        }
    }
Paste_Image.png

调用系统中的 connect 方法进行连接。(这个有空再详谈吧)


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

推荐阅读更多精彩内容