1. 程式人生 > >Android Bluetooth Stack: Bluedroid(一):綜述

Android Bluetooth Stack: Bluedroid(一):綜述

    從Android 4.2開始,Bluetooth stack發生了重大改變:從Bluez換成了由Google和Broadcom聯合開發的Bluedroid(當然,核心的部分還是Broadcom的,Google主要是做了和上層Framework相關的部分)。通過http://source.android.com/devices/bluetooth.html可以大概瞭解新的Bluetooth stack的架構,總的來說相關文件很少,主要靠閱讀程式碼進行深入瞭解。

    Bluedroid和Bluez相比,有如下優點:

  1. 層次結構清晰。各個profile對上層介面統一,便於增加新的profile;增加了HAL層,便於移植。
  2. 去掉了DBus,Framework的Java程式碼直接呼叫到Bluedroid的Native程式碼。
    但是Android 4.2中的Bluedroid與Android 4.1中的Bluez相比,功能要少,例如不支援AVRCP 1.3; Bug較多,例如某些藍芽耳機不能重撥最後一個電話。最重要的是4.2的Bluedroid不支援BLE。不過在剛剛釋出的Android 4.3中已經有了很多改進,AVRCP 1.3和BLE都得到了支援。

    目前有一些Android 4.1或4.2的裝置是支援BLE的,但是都是採用的Vendor自己的解決方案,比如Bluetooth stack採用Bluez 5.x,再提供Vendor BLE Android SDK. 現在Android 4.3已經發布,從未來發展趨勢來看,如果有人要學習Bluetooth in Android,建議不要再研究Bluez,最好轉向Bluedroid。

    以下是Android 4.2中Bluetooth相關程式碼之分佈:

android.bluetooth frameworks/base/core/java/android/bluetooth implements public API for the Bluetooth adapter and profiles
Bluetooth system service packages/apps/Bluetooth/src implements service and profiles at the Android fraework layer
Bluetooth JNI packages/apps/Bluetooth/jni defines Bluetooth adapter and profiles service JNI: calls into HAL and receives callback from HAL
Bluetooth HAL hardware/libhardware/include/hardware/bt_*.h files defines the standard interface that the android.bluetooth adapter and  profiles APIs
Bluetooth stack external/bluetooth/bluedroid implement bluetooth stack: core and profiles

    以Pan profile為例,我們可以看看程式碼的具體分佈和類及檔案的命名方式:

android.bluetooth frameworks public class BluetoothPan implements BluetoothProfile
Bluetooth System Service packages/apps public class PanService extends ProfileService
Bluetooth JNI packages/apps com_android_bluetooth_pan.cpp
Bluetooth HAL hardware/libhardware include/hardware/bt_pan.h
Bluetooth stack external/bluetooth bluedroid/btif/src/btif_pan.c(implements bt_pan.h)
bluedroid/bta/pan (Broadcom BTA)
bluedroid/stack/pan (Broadcom BTE)