वर्तमान में मैं अपने नेक्सस 7 (2012) पर एक ब्लूटूथसेट को खोलने पर एक अजीब अपवाद से निपटने की कोशिश कर रहा हूं, एंड्रॉइड 4.3 (बिल्ड JWR66Y के साथ, मैं दूसरे 4.3 अपडेट का अनुमान लगाता हूं)। मैंने कुछ संबंधित पोस्टिंग देखी हैं (उदाहरण के लिए) /programming/13648373/blu ), लेकिन कोई भी इस मुद्दे पर समाधान प्रदान नहीं करता है। इसके अलावा, जैसा कि इन थ्रेड्स में सुझाव दिया गया है, फिर से बाँधना मदद नहीं करता है, और लगातार कनेक्ट करने की कोशिश कर रहा है (एक बेवकूफ लूप के माध्यम से) भी कोई प्रभाव नहीं पड़ता है।
मैं एक एम्बेडेड डिवाइस (एक बिना नाम वाली OBD-II कार अडैप्टर, के समान काम कर रहा हूं http://images04.olx.com/ui/15/53/76/1316534072_254254776_2-OBD-II-BLUTOOTH-ADAPTERSCLEAR-CHECK-ENGINE- के LIGHTS-with-YOUR-PHONE-Oceanside.jpg )। मेरे एंड्रॉइड 2.3.7 फोन में कनेक्ट करने के लिए कोई समस्या नहीं है, और एक सहयोगी (एंड्रॉइड 4.1.2) का एक्सपीरिया भी काम करता है। एक अन्य Google Nexus (मुझे नहीं पता कि 'One' या 'S', लेकिन '4' नहीं) Android 4.3 के साथ भी विफल हो जाता है।
यहां कनेक्शन स्थापना का स्निपेट है। यह एक सेवा के भीतर बनाए गए अपने स्वयं के थ्रेड में चल रहा है।
private class ConnectThread extends Thread {
private static final UUID EMBEDDED_BOARD_SPP = UUID
.fromString("00001101-0000-1000-8000-00805F9B34FB");
private BluetoothAdapter adapter;
private boolean secure;
private BluetoothDevice device;
private List<UUID> uuidCandidates;
private int candidate;
protected boolean started;
public ConnectThread(BluetoothDevice device, boolean secure) {
logger.info("initiliasing connection to device "+device.getName() +" / "+ device.getAddress());
adapter = BluetoothAdapter.getDefaultAdapter();
this.secure = secure;
this.device = device;
setName("BluetoothConnectThread");
if (!startQueryingForUUIDs()) {
this.uuidCandidates = Collections.singletonList(EMBEDDED_BOARD_SPP);
this.start();
} else{
logger.info("Using UUID discovery mechanism.");
}
/*
* it will start upon the broadcast receive otherwise
*/
}
private boolean startQueryingForUUIDs() {
Class<?> cl = BluetoothDevice.class;
Class<?>[] par = {};
Method fetchUuidsWithSdpMethod;
try {
fetchUuidsWithSdpMethod = cl.getMethod("fetchUuidsWithSdp", par);
} catch (NoSuchMethodException e) {
logger.warn(e.getMessage());
return false;
}
Object[] args = {};
try {
BroadcastReceiver receiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
BluetoothDevice deviceExtra = intent.getParcelableExtra("android.bluetooth.device.extra.DEVICE");
Parcelable[] uuidExtra = intent.getParcelableArrayExtra("android.bluetooth.device.extra.UUID");
uuidCandidates = new ArrayList<UUID>();
for (Parcelable uuid : uuidExtra) {
uuidCandidates.add(UUID.fromString(uuid.toString()));
}
synchronized (ConnectThread.this) {
if (!ConnectThread.this.started) {
ConnectThread.this.start();
ConnectThread.this.started = true;
unregisterReceiver(this);
}
}
}
};
registerReceiver(receiver, new IntentFilter("android.bleutooth.device.action.UUID"));
registerReceiver(receiver, new IntentFilter("android.bluetooth.device.action.UUID"));
fetchUuidsWithSdpMethod.invoke(device, args);
} catch (IllegalArgumentException e) {
logger.warn(e.getMessage());
return false;
} catch (IllegalAccessException e) {
logger.warn(e.getMessage());
return false;
} catch (InvocationTargetException e) {
logger.warn(e.getMessage());
return false;
}
return true;
}
public void run() {
boolean success = false;
while (selectSocket()) {
if (bluetoothSocket == null) {
logger.warn("Socket is null! Cancelling!");
deviceDisconnected();
openTroubleshootingActivity(TroubleshootingActivity.BLUETOOTH_EXCEPTION);
}
// Always cancel discovery because it will slow down a connection
adapter.cancelDiscovery();
// Make a connection to the BluetoothSocket
try {
// This is a blocking call and will only return on a
// successful connection or an exception
bluetoothSocket.connect();
success = true;
break;
} catch (IOException e) {
// Close the socket
try {
shutdownSocket();
} catch (IOException e2) {
logger.warn(e2.getMessage(), e2);
}
}
}
if (success) {
deviceConnected();
} else {
deviceDisconnected();
openTroubleshootingActivity(TroubleshootingActivity.BLUETOOTH_EXCEPTION);
}
}
private boolean selectSocket() {
if (candidate >= uuidCandidates.size()) {
return false;
}
BluetoothSocket tmp;
UUID uuid = uuidCandidates.get(candidate++);
logger.info("Attempting to connect to SDP "+ uuid);
try {
if (secure) {
tmp = device.createRfcommSocketToServiceRecord(
uuid);
} else {
tmp = device.createInsecureRfcommSocketToServiceRecord(
uuid);
}
bluetoothSocket = tmp;
return true;
} catch (IOException e) {
logger.warn(e.getMessage() ,e);
}
return false;
}
}
कोड में विफल हो रहा है bluetoothSocket.connect()
। मुझे ए हो रही है java.io.IOException: read failed, socket might closed, read ret: -1
। यह GitHub का संगत स्रोत है: https://github.com/android/platform_frameworks_base/blob/android-4.3_r2/core/java/android/bluaxy/BluisSocket.java#L504
इसे readInt () के माध्यम से कहा जाता है। https : //github.com/android/platform_frameworks_base/blob/android-4.3_r2/core/java/android/bluetooth/BluetoothSocket.java#L319
उपयोग किए गए सॉकेट के कुछ मेटाडेटा डंप के परिणामस्वरूप निम्नलिखित जानकारी प्राप्त हुई। नेक्सस 7 और मेरे 2.3.7 फोन पर ये बिल्कुल समान हैं।
Bluetooth Device 'OBDII'
Address: 11:22:33:DD:EE:FF
Bond state: 12 (bonded)
Type: 1
Class major version: 7936
Class minor version: 7936
Class Contents: 0
Contents: 0
मेरे पास कुछ अन्य OBD-II एडेप्टर (अधिक विस्तारक) हैं और वे सभी काम करते हैं। क्या कोई मौका है, कि मैं कुछ याद कर रहा हूं या यह एंड्रॉइड में बग हो सकता है?