当前位置:   article > 正文

android蓝牙源代码分析_android 蓝牙模块源码分析

android 蓝牙模块源码分析

为了过bluetooth的PTS测试,最近研究蓝牙相关的android源代码,发现很多不错的文章,这里准备研究一下下面一些列的博客连载文章。下面链接是一系列蓝牙源码分析的连载博客。希望看完后有所帮助。

https://blog.csdn.net/shichaog/article/category/6445694/2

https://blog.csdn.net/u012439416/article/category/6475898

这里贴上第一篇内容:

安卓蓝牙应用程序编写步骤

 

1.获得BluetoothAdapter,对任何Bluetooth Activity都需要先获得。获取方法是调用getDefaultAdapter()方法。

  1.  ​BluetoothAdapter mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
  2. if (mBluetoothAdapter == null) {
  3. // Device does not support Bluetooth
  4. }

getDefaultAdapter方法定义于<frameworks/base/core/java/android/bluetooth/bluetoothAdapter.java>

  1.  ​ public static synchronized BluetoothAdapter getDefaultAdapter() {
  2. if (sAdapter == null) {
  3. IBinder b = ServiceManager.getService(BLUETOOTH_MANAGER_SERVICE);
  4. if (b != null) {
  5. IBluetoothManager managerService = IBluetoothManager.Stub.asInterface(b);
  6. sAdapter = new BluetoothAdapter(managerService);
  7. } else {
  8. Log.e(TAG, "Bluetooth binder is null");
  9. }
  10. }
  11. return sAdapter;
  12. }
  13. /**
  14. * Use {@link #getDefaultAdapter} to get the BluetoothAdapter instance.
  15. */
  16. BluetoothAdapter(IBluetoothManager managerService) {
  17. if (managerService == null) {
  18. throw new IllegalArgumentException("bluetooth manager service is null");
  19. }
  20. try {
  21. mService = managerService.registerAdapter(mManagerCallback);
  22. } catch (RemoteException e) {Log.e(TAG, "", e);}
  23. mManagerService = managerService;
  24. mLeScanClients = new HashMap<LeScanCallback, ScanCallback>();
  25. mToken = new Binder();
  26. }

2.使能Bluetooth

调用isEnabled()方法检查蓝牙是否已经使能。如果返回false,则说明蓝牙并未打开,调用startActivityForResult() 方法,并传递ACTION_REQUEST_ENABLE intent,这将会使蓝牙打开。

  1.  ​if (!mBluetoothAdapter.isEnabled()) {
  2. Intent enableBtIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
  3. startActivityForResult(enableBtIntent, REQUEST_ENABLE_BT);
  4. }

isEnable定义于<frameworks/base/core/java/android/bluetooth/bluetoothAdapter.java>

  1.  ​ @RequiresPermission(Manifest.permission.BLUETOOTH)
  2. public boolean isEnabled() {
  3. try {
  4. synchronized(mManagerCallback) {
  5. if (mService != null) return mService.isEnabled();
  6. }
  7. } catch (RemoteException e) {Log.e(TAG, "", e);}
  8. return false;
  9. }

startActivityForResult定义于<base/core/java/android/app/Activity.java>

  1.  ​ public void startActivityForResult(Intent intent, int requestCode) {
  2. startActivityForResult(intent, requestCode, null);
  3. }

这时会跳出用户许可对话框。

设备发现

使用BluetoothAdapter,不论是通过设备发现或者查询配对设备列表可以发现Bluetooth设备,设备发现是一个扫描本地蓝牙设备的过程。如果一个设备是可发现的,其将通过共享一些信息响应发现请求,这些信息如设备名,类型,MAC地址等。使用这些信息,使用这写信息,发起设备发现的设备可以和一个发现的设备进行配对。

    一旦和其它设备首次建立连接,一个配对请求自动呈现给用户。当配对完成后,设备的基本信息(设备名,类型,MAC地址)将被保存并且可以使用Bluetooth API读取。使用已知的MAC地址可以经行远程配对而不需要执行发现(假设设备在其范围)。

    配对完成和连接是有区别的,配对意味着设备双方都知道对方的存在并且有一个共享的link-key用于授权。并且双方能否建立加密连接。连接意味着设备当前共享一个RFCOMM通道并且双方能够传递数据。

当前Bluedroid API要求先配对才能建立RFCOMM通道。

   查询配对设备

在设备发现之前,查询配对设备集合是有意义的,这可以知道期望配对的设备是否已知了。这可以通过getBoundDevices()实现,其返回BluetoothDevices集合。

  1.  ​Set<BluetoothDevice> pairedDevices = mBluetoothAdapter.getBondedDevices();
  2. // If there are paired devices
  3. if (pairedDevices.size() > 0) {
  4. // Loop through paired devices
  5. for (BluetoothDevice device : pairedDevices) {
  6. // Add the name and address to an array adapter to show in a ListView
  7. mArrayAdapter.add(device.getName() + "\n" + device.getAddress());
  8. }
  9. }

getBondedDevices定义于<frameworks/base/core/java/android/bluetooth/BluetoothAdapter.java>

  1.  ​ public Set<BluetoothDevice> getBondedDevices() {
  2. if (getState() != STATE_ON) {
  3. return toDeviceSet(new BluetoothDevice[0]);
  4. }
  5. try {
  6. synchronized(mManagerCallback) {
  7. if (mService != null) return toDeviceSet(mService.getBondedDevices());
  8. }
  9. return toDeviceSet(new BluetoothDevice[0]);
  10. } catch (RemoteException e) {Log.e(TAG, "", e);}
  11. return null;
  12. }

设备发现

调用startDiscovery()启动设备发现。该过程是异步进行的,立即返回的值表明设备发现是否启动。这一过程差不多需要12秒,然后对每一个查到的设备进行页扫以获得其Bluetooth名称。

    为了接收发现每一个设备的信息,应用程序必须为ACTION_FOUND intent注册一个BroadcastReceiver,针对每一个设备,系统将会广播ACTION_FOUND intent内容。该intent包括EXTRA_DEVICE和EXTRA_CLASS标志,分别包含了BluetoothDevice和BluetoothClass信息。

BluetoothDevice这个类定义于<frameworks/base/core/java/android/bluetooth/BluetoothDevice.java>

  1.  ​// Create a BroadcastReceiver for ACTION_FOUND
  2. private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
  3. public void onReceive(Context context, Intent intent) {
  4. String action = intent.getAction();
  5. // When discovery finds a device
  6. if (BluetoothDevice.ACTION_FOUND.equals(action)) {
  7. // Get the BluetoothDevice object from the Intent
  8. BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
  9. // Add the name and address to an array adapter to show in a ListView
  10. mArrayAdapter.add(device.getName() + "\n" + device.getAddress());
  11. }
  12. }
  13. };
  14. // Register the BroadcastReceiver
  15. IntentFilter filter = new IntentFilter(BluetoothDevice.ACTION_FOUND);
  16. registerReceiver(mReceiver, filter); // Don't forget to unregister during onDestroy

使能发现能力

如果想使设备自身能够被其它设备发现,调用startActivityForResult(Intent, int)方法,并传递ACTION_REQUEST_DISCOVERABLE intent。这将通过系统设置发出使能发现请求,缺省状态下,设备被发现的时间在120s内。但是可以通过EXTRA_DISCOVERABLE_DURATION进行修改该时长。最长可为3600s。

  1.  ​Intent discoverableIntent = new
  2. Intent(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE);
  3. discoverableIntent.putExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION, 300);
  4. startActivity(discoverableIntent);

这时将弹出一个对话框,请求用户允许设备发现,如果用户使能,则onActivityResult()回调将被调用。设备将在设定的时间内可被发现。如果想在发现模式变化时被通知,需要为ACTION_SCAN_MODE_CHANGED Intent注册BroadcastReceiver,这将包括EXTRA_SCAN_MODE和EXTRA_PREVIOUS_SCAN_MODE字段,其分别指示的是新旧扫描模式。可能的值是SCAN_MODE_CNONNECTABLE_DISCOVERABLE和SCAN_MODE_CONNECTABLE或者SCAN_MODE_NONE。

连接设备

为了将两个设备上的应用程序建立连接,必须实现server端和client端,这时因为一个设备必须打开sever socket,而另一个设备必须初始化连接(使用server设备的MAC地址初始化连接)。只有当server和client在相同的RFCOMM通道有一个已连接的BluetoothSocket。到此,每一个设备能够获得输入和输出流,数据传输可以进行了,数据传输在管理连接里叙述。此节描述如何在两个设备上初始化连接。

    server和client 设备用不同的方式获得BluetoothSocket。server端在连接建立被接受时获得,client端在为server端打开RFCOMM通道是获得。

    一个实现的技术是自动将每一个设备作为server,如此可以让每一个设备有打开并用于侦听的server socket。然后两个设备之间可以互连。

作为server连接

    当连接两个设备时,其中一个设备必须通过保持一个打开的BluetoothServerSocket作为server角色。server socket的作用是侦听接收到的连接请求,当其中一方接受时,提供一个建立连接的BluetoothScoket。当BluetoothSocket从BluetoothServerSocket获得时,除非希望接收更多的连接,否则BluetoothServerSocket应该被丢弃。

    建立server socket和接收连接的基本步骤如下:

    1.通过调用listenUsingRfcommWithServiceRecord(String, UUID)获得BluetoothServerSocket。

    String是服务的名称,系统会自动将该服务写入到服务发现协议(Service Discovery Protocol,SDP)。UUID也在SDP里并且是client连接通过的基础。

   2. 调用accept()启动连接侦听

    阻塞调用,当建立连接完成或者遇到特殊情况将会返回。只有当远端设备使用和这里的侦听socket一致的UUID发送连接请求时,这个连接才是可被接受的。当连接建立后accept()将会返回连接的BluetoothSocket()。

  3. 如果不想接收其它连接,调用close()。

    这将释放server端socket。但并不关闭由accept()返回的建立连接的BluetoothSocket。和TCP/IP不同的是,RFCOMM每个通道在一个时刻只允许一个连接的client。主activity并不适合使用阻塞的accept,通常在thread中实现。

  1.  ​private class AcceptThread extends Thread {
  2. private final BluetoothServerSocket mmServerSocket;
  3. public AcceptThread() {
  4. // Use a temporary object that is later assigned to mmServerSocket,
  5. // because mmServerSocket is final
  6. BluetoothServerSocket tmp = null;
  7. try {
  8. // MY_UUID is the app's UUID string, also used by the client code
  9. tmp = mBluetoothAdapter.listenUsingRfcommWithServiceRecord(NAME, MY_UUID);
  10. } catch (IOException e) { }
  11. mmServerSocket = tmp;
  12. }
  13. public void run() {
  14. BluetoothSocket socket = null;
  15. // Keep listening until exception occurs or a socket is returned
  16. while (true) {
  17. try {
  18. socket = mmServerSocket.accept();
  19. } catch (IOException e) {
  20. break;
  21. }
  22. // If a connection was accepted
  23. if (socket != null) {
  24. // Do work to manage the connection (in a separate thread)
  25. manageConnectedSocket(socket);
  26. mmServerSocket.close();
  27. break;
  28. }
  29. }
  30. }
  31. /** Will cancel the listening socket, and cause the thread to finish */
  32. public void cancel() {
  33. try {
  34. mmServerSocket.close();
  35. } catch (IOException e) { }
  36. }
  37. }

连接client

为了和远端的设备相连,首先应获得表示远端设备的BluetoothDevice对象,需要使用BluetoothDevice 接收BluetoothSocket 并且初始化连接。

主要过程如下:

    1.使用BluetoothDevice,通过调用createRfcommSocketToServiceRecord(UUID)获得BluetoothSocket

    这初始化了将连接到BluetoothDevice的BluetoothSocket。这里传递的UUID必须和server端设备使用的保持一致,使用一样的UUID是硬编码UUID到应用程序。

    2.使用connect()初始化连接

    该调用会引起系统执行远端设备SDP查找以匹配UUID。如果成功查找并且远端设备接受连接,connect()将会返回,在连接时RFCOMM通道将共享。

  1.  ​private class ConnectThread extends Thread {
  2. private final BluetoothSocket mmSocket;
  3. private final BluetoothDevice mmDevice;
  4. public ConnectThread(BluetoothDevice device) {
  5. // Use a temporary object that is later assigned to mmSocket,
  6. // because mmSocket is final
  7. BluetoothSocket tmp = null;
  8. mmDevice = device;
  9. // Get a BluetoothSocket to connect with the given BluetoothDevice
  10. try {
  11. // MY_UUID is the app's UUID string, also used by the server code
  12. tmp = device.createRfcommSocketToServiceRecord(MY_UUID);
  13. } catch (IOException e) { }
  14. mmSocket = tmp;
  15. }
  16. public void run() {
  17. // Cancel discovery because it will slow down the connection
  18. mBluetoothAdapter.cancelDiscovery();
  19. try {
  20. // Connect the device through the socket. This will block
  21. // until it succeeds or throws an exception
  22. mmSocket.connect();
  23. } catch (IOException connectException) {
  24. // Unable to connect; close the socket and get out
  25. try {
  26. mmSocket.close();
  27. } catch (IOException closeException) { }
  28. return;
  29. }
  30. // Do work to manage the connection (in a separate thread)
  31. manageConnectedSocket(mmSocket);
  32. }
  33. /** Will cancel an in-progress connection, and close the socket */
  34. public void cancel() {
  35. try {
  36. mmSocket.close();
  37. } catch (IOException e) { }
  38. }
  39. }

连接管理

当多个设备成功建立连接时,每一个设备都有一个连接的BluetoothSocket。通过其可以让设备间共享数据。使用BluetoothSocket,传递任意数据的过程是比较简单的。

1.使用getInputStream()和getOutputStream()分别获得InputStream和OutputStream的socket传输句柄。

2.使用read(byte[])和write(byte[])向stream中写入数据

使用应该使用专用的thread服务与所有的stream reading和writing。

  1.  ​private class ConnectedThread extends Thread {
  2. private final BluetoothSocket mmSocket;
  3. private final InputStream mmInStream;
  4. private final OutputStream mmOutStream;
  5. public ConnectedThread(BluetoothSocket socket) {
  6. mmSocket = socket;
  7. InputStream tmpIn = null;
  8. OutputStream tmpOut = null;
  9. // Get the input and output streams, using temp objects because
  10. // member streams are final
  11. try {
  12. tmpIn = socket.getInputStream();
  13. tmpOut = socket.getOutputStream();
  14. } catch (IOException e) { }
  15. mmInStream = tmpIn;
  16. mmOutStream = tmpOut;
  17. }
  18. public void run() {
  19. byte[] buffer = new byte[1024]; // buffer store for the stream
  20. int bytes; // bytes returned from read()
  21. // Keep listening to the InputStream until an exception occurs
  22. while (true) {
  23. try {
  24. // Read from the InputStream
  25. bytes = mmInStream.read(buffer);
  26. // Send the obtained bytes to the UI activity
  27. mHandler.obtainMessage(MESSAGE_READ, bytes, -1, buffer)
  28. .sendToTarget();
  29. } catch (IOException e) {
  30. break;
  31. }
  32. }
  33. }
  34. /* Call this from the main activity to send data to the remote device */
  35. public void write(byte[] bytes) {
  36. try {
  37. mmOutStream.write(bytes);
  38. } catch (IOException e) { }
  39. }
  40. /* Call this from the main activity to shutdown the connection */
  41. public void cancel() {
  42. try {
  43. mmSocket.close();
  44. } catch (IOException e) { }
  45. }
  46. }

如何使用profile

profile是两个设备基于蓝牙通信的无线接口规范。一个例子是Hands-Free profile。对于手机连接到无线耳机情景,两个设备必须都支持Hands-Free profile。

可以使用BluetoothProfile创建一个特殊自有的profile。安卓蓝牙API支持以下Bluetooth profile。

Headset。耳机和手机见的profile,BluetoothHeadset类,

A2DP, BluetoothA2dp

Health Device。

使用profile的基本步骤如下

1.获得默认的adapter

2.使用getProfileProxy()建立profile代理对象和profile之间的连接

3.建立BluetoothProfile.ServerListener。

4.在onServiceConnected(),获得profile代理对象的句柄。

5.一旦获得profile代理,可以使用其检测连接状态,或者执行profile能够提供的功能。

  1.  ​BluetoothHeadset mBluetoothHeadset;
  2. // Get the default adapter
  3. BluetoothAdapter mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
  4. // Establish connection to the proxy.
  5. mBluetoothAdapter.getProfileProxy(context, mProfileListener, BluetoothProfile.HEADSET);
  6. private BluetoothProfile.ServiceListener mProfileListener = new BluetoothProfile.ServiceListener() {
  7. public void onServiceConnected(int profile, BluetoothProfile proxy) {
  8. if (profile == BluetoothProfile.HEADSET) {
  9. mBluetoothHeadset = (BluetoothHeadset) proxy;
  10. }
  11. }
  12. public void onServiceDisconnected(int profile) {
  13. if (profile == BluetoothProfile.HEADSET) {
  14. mBluetoothHeadset = null;
  15. }
  16. }
  17. };
  18. // ... call functions on mBluetoothHeadset
  19. // Close proxy connection after use.
  20. mBluetoothAdapter.closeProfileProxy(mBluetoothHeadset);
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/318565
推荐阅读
相关标签
  

闽ICP备14008679号