8

我在我的应用程序中使用蓝牙时遇到了问题。似乎在创建 28 BluetoothSocket/之后BluetoothServerSockets,所有端口都被占用了。套接字不需要同时打开,自从启用蓝牙以来,它只有 28 个套接字。

这可以使用Android 示例中提供的 BluetoothChat 示例进行复制。只需打开和关闭应用程序 15 次(应用程序每次创建 2 个套接字)。第 15 次,它会崩溃,并且会继续崩溃,直到您禁用然后重新启用蓝牙:

12-06 18:43:58.177: E/BluetoothSocket(18530): bindListen, fail to get port number, exception: java.io.IOException: read failed, socket might closed, read ret: -1
12-06 18:43:58.193: E/BluetoothChatService(18530): Socket Type: Insecurelisten() failed
12-06 18:43:58.193: E/BluetoothChatService(18530): java.io.IOException: Error: -1
12-06 18:43:58.193: E/BluetoothChatService(18530):  at android.bluetooth.BluetoothAdapter.createNewRfcommSocketAndRecord(BluetoothAdapter.java:1035)
12-06 18:43:58.193: E/BluetoothChatService(18530):  at android.bluetooth.BluetoothAdapter.listenUsingInsecureRfcommWithServiceRecord(BluetoothAdapter.java:982)
12-06 18:43:58.193: E/BluetoothChatService(18530):  at com.example.android.BluetoothChat.BluetoothChatService$AcceptThread.<init>(BluetoothChatService.java:280)
12-06 18:43:58.193: E/BluetoothChatService(18530):  at com.example.android.BluetoothChat.BluetoothChatService.start(BluetoothChatService.java:119)
12-06 18:43:58.193: E/BluetoothChatService(18530):  at com.example.android.BluetoothChat.BluetoothChat.onResume(BluetoothChat.java:131)
12-06 18:43:58.193: E/BluetoothChatService(18530):  at android.app.Instrumentation.callActivityOnResume(Instrumentation.java:1185)
12-06 18:43:58.193: E/BluetoothChatService(18530):  at android.app.Activity.performResume(Activity.java:5182)
12-06 18:43:58.193: E/BluetoothChatService(18530):  at android.app.ActivityThread.performResumeActivity(ActivityThread.java:2732)
12-06 18:43:58.193: E/BluetoothChatService(18530):  at android.app.ActivityThread.handleResumeActivity(ActivityThread.java:2771)
12-06 18:43:58.193: E/BluetoothChatService(18530):  at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2235)
12-06 18:43:58.193: E/BluetoothChatService(18530):  at android.app.ActivityThread.access$600(ActivityThread.java:141)
12-06 18:43:58.193: E/BluetoothChatService(18530):  at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1234)
12-06 18:43:58.193: E/BluetoothChatService(18530):  at android.os.Handler.dispatchMessage(Handler.java:99)
12-06 18:43:58.193: E/BluetoothChatService(18530):  at android.os.Looper.loop(Looper.java:137)
12-06 18:43:58.193: E/BluetoothChatService(18530):  at android.app.ActivityThread.main(ActivityThread.java:5039)
12-06 18:43:58.193: E/BluetoothChatService(18530):  at java.lang.reflect.Method.invokeNative(Native Method)
12-06 18:43:58.193: E/BluetoothChatService(18530):  at java.lang.reflect.Method.invoke(Method.java:511)
12-06 18:43:58.193: E/BluetoothChatService(18530):  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:793)
12-06 18:43:58.193: E/BluetoothChatService(18530):  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:560)
12-06 18:43:58.193: E/BluetoothChatService(18530):  at dalvik.system.NativeStart.main(Native Method)

套接字关闭后有没有办法释放端口?

4

3 回答 3

7

我可以在我在这里拥有的设备上验证此行为;尽管以相同方式崩溃所需的次数因设备而异(我认为运行 4.2 的 Galaxy Nexus 需要 20-25 次),因此可用端口句柄的数量似乎有所不同。我还可以提供有关问题不是示例应用程序(或您的应用程序)中的内存泄漏的信息,因为所有实例BluetoothSocket都已由 Dalvik 释放和关闭。此处列出的步骤仅在 上测试该问题BluetoothServerSocket,因此不清楚该问题是否与该问题特别相关,尽管这似乎不太可能。

至少在我的设备上,在切换蓝牙适配器的状态之前,您甚至无法再次启动应用程序,因此问题肯定出在堆栈上连接的底层管理中。

我会在http://b.android.com上提交一个带有重现步骤的错误,我很乐意支持它。

于 2012-12-07T18:59:44.090 回答
0

要重新连接,我在片段中的定​​时处理程序中使用:

BluetoothDevice device = mBluetoothAdapter.getRemoteDevice(MainActivity.mac);
                    // Attempt to connect to the device
                    mChatService.connect(device, true);

为了解决“重新连接超过 28 次时失败”的问题,我每次在失去连接时重新启动服务时都评论道:

//BluetoothChatService.this.start();

我还注释掉了套接字关闭的所有部分:

//socket.close();

//mmServerSocket.close();

//mmSocket.close();

//mSecureAcceptThread.cancel();

并为接受线程添加了一个不为空的检测,并连接了不失败的广告:

if(mAdapter != null) {
                        tmp = mAdapter.listenUsingRfcommWithServiceRecord(NAME_SECURE,
                                MY_UUID_SECURE);
                    }else{
                        mAdapter = BluetoothAdapter.getDefaultAdapter();
                        //mState = STATE_NONE;
                    }

if(mmServerSocket != null) {
                        socket = mmServerSocket.accept();
                    }

我仍然得到随机连接断开,但服务重新连接并且一切正常。

于 2015-02-06T18:13:27.280 回答
0

最近,我不得不钻研为此想出一个解决方案。升级 Android 不是一种选择。

事实证明,如果不是在每次建立/断开连接时销毁和重新创建 mAcceptThread,而是保留原始实例并重新使用它。这可以最大限度地减少错误对您的应用程序的影响。

从 BluetoothChatService 文件中,在 connected() 函数中,不要取消 mAcceptThread:

public synchronized void connected(BluetoothSocket socket, BluetoothDevice device) {
...
...
...
// Cancel the accept thread because we only want to connect to one device 
//(Rather stay listening so comment out the cancel line!!) 
//If necessary, use some other state to prevent a second connection.
//DONT CANCEL: if (mAcceptThread != null) {mAcceptThread.cancel(); mAcceptThread = null;}
...
...

在 AcceptThread 类中,修改 run() 函数中的循环:

            // Listen to the server socket if we're not connected
//OLD LOOP:            while (mState != STATE_CONNECTED)
//(Rather use STATE_NONE so the loop will only stop when the service does)
            while (mState != STATE_NONE) 

您的代码中可能还有其他事情要做以正确实现该想法。

于 2014-09-17T22:49:48.147 回答