Merge pull request #276 from roidelapluie/reconnect

Pebble: Smarter reconnection attempts
here
Andreas Shimokawa 2016-04-06 22:41:07 +02:00
commit 94cec55a20
1 changed files with 7 additions and 0 deletions

View File

@ -365,12 +365,19 @@ public class PebbleIoThread extends GBDeviceIoThread {
LOG.info(e.getMessage());
mIsConnected = false;
int reconnectAttempts = Integer.valueOf(sharedPrefs.getString("pebble_reconnect_attempts", "10"));
int maxReconnectAttempts = reconnectAttempts;
if (reconnectAttempts > 0) {
gbDevice.setState(GBDevice.State.CONNECTING);
gbDevice.sendDeviceUpdateIntent(getContext());
while (reconnectAttempts-- > 0 && !mQuit && !mIsConnected) {
LOG.info("Trying to reconnect (attempts left " + reconnectAttempts + ")");
mIsConnected = connect(gbDevice.getAddress());
if (!mIsConnected) {
try {
Thread.sleep((maxReconnectAttempts-reconnectAttempts)*1000);
} catch (InterruptedException ignored) {
}
}
}
}
if (!mIsConnected && !mQuit) {