বর্তমানে আমি অ্যান্ড্রয়েড ৪.৩ দিয়ে আমার নেক্সাস ((২০১২) এ একটি ব্লুটুথসকেট খুলতে গিয়ে একটি অদ্ভুত ব্যতিক্রমটি মোকাবিলার চেষ্টা করছি (জেডব্লিউআর 66 ওয়াই তৈরি করুন, আমি দ্বিতীয় 4.3 আপডেট অনুমান করি)। আমি কিছু সম্পর্কিত পোস্টিং দেখেছি (উদাঃ /programming/13648373/bluetuthsocket-connect-throwing-exception-read-failed ) তবে এই সমস্যার জন্য কোনও কাজই করে নি বলে মনে হয় না। এছাড়াও, এই থ্রেডগুলিতে যেমন পরামর্শ দেওয়া হয়েছে, পুনরায় জোড় দেওয়া কোনও উপকারে আসে না এবং অবিচ্ছিন্নভাবে সংযোগ দেওয়ার চেষ্টা করে (একটি নির্বোধ লুপের মাধ্যমে) এরও কোনও প্রভাব থাকে না।
আমি একটি এম্বেড থাকা ডিভাইসটির সাথে কাজ করছি ( http://images04.olx.com/ui/15/53/76/1316534072_254254776_2-OBD-II-BLUTOOTH-ADAPTERSCLEAR-CHECK-ENGINE- আপনার ফোনের সাথে আলোকসজ্জা - Oceanside.jpg )। আমার অ্যান্ড্রয়েড ২.৩..7 ফোনে সংযোগ স্থাপনে কোনও সমস্যা নেই এবং সহকর্মীর এক্সপিরিয়া (অ্যান্ড্রয়েড ৪.১.২) এছাড়াও কাজ করে। অন্য একটি গুগল নেক্সাস ('ওয়ান' বা 'এস' তবে '4' নয় তবে আমি জানি না) এছাড়াও অ্যান্ড্রয়েড 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
। এটি গীতহাবের সংশ্লিষ্ট উত্স:
গীতহাবের https://github.com/android/platform_frameworks_base/blob/android-4.3_r2/core/java/android/bluetuth/BluetuthSket.java#L504 এটি https থেকে আহ্বান করা হয়েছে রিডআইন্ট () এর মাধ্যমে বলা হয় : //github.com/android / প্ল্যাটফর্ম_ফ্রেম ওয়ার্কস_বেস / ব্লব / অ্যান্ড্রয়েড ৪.৩_আর ২ / স্কোর / জাভা / অ্যান্ড্রয়েড / ব্লুথুথ / ব্লুথুথসকেট.জভা#L319
ব্যবহৃত সকেটের কিছু মেটাডেটা ডাম্পের ফলে নিম্নলিখিত তথ্যের ফলস্বরূপ। এগুলি Nexus 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
আমার কাছে অন্য কিছু ওবিডি -২ অ্যাডাপ্টার রয়েছে (আরও বিস্তৃত) এবং সেগুলি সব কাজ করে। এমন কি কোনও সুযোগ আছে যে আমি কিছু মিস করছি বা এটি অ্যান্ড্রয়েডে কোনও বাগ থাকতে পারে?