1
0
mirror of https://github.com/moparisthebest/Yaaic synced 2024-08-13 16:53:50 -04:00
Yaaic/application/src/org/yaaic/receiver/ReconnectReceiver.java
Steven Luo bce2523f98 Fix auto-reconnect
The current auto-reconnection implementation will only try reconnecting
once, immediately after the server is disconnected.  This will of course
almost always fail if the network is down or otherwise unavailable, so
as it stands, enabling auto-reconnect isn't particularly useful.

This patch implements multiple retries for auto-reconnect, with the
frequency of retries controlled by a preference.  The Android alarm
infrastructure is used to schedule reconnection attempts; if the phone
misses a scheduled attempt while it's asleep, the reconnection will be
attempted the next time the phone wakes up.
2011-06-29 20:34:55 +02:00

65 lines
1.7 KiB
Java

/*
Yaaic - Yet Another Android IRC Client
Copyright 2009-2011 Sebastian Kaspari
Copyright 2011 Steven Luo
This file is part of Yaaic.
Yaaic is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Yaaic is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
*/
package org.yaaic.receiver;
import org.yaaic.irc.IRCService;
import org.yaaic.model.Broadcast;
import org.yaaic.model.Server;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
/**
* A receiver to listen for alarms and start a reconnect attempt
*
* @author Steven Luo <steven+android@steven676.net>
*/
public class ReconnectReceiver extends BroadcastReceiver
{
private IRCService service;
private Server server;
/**
* Create a new reconnect receiver
*
* @param server The server to reconnect to
*/
public ReconnectReceiver(IRCService service, Server server)
{
this.service = service;
this.server = server;
}
/**
* On receive broadcast
*/
@Override
public void onReceive(Context context, Intent intent)
{
if (!intent.getAction().equals(Broadcast.SERVER_RECONNECT + server.getId())) {
return;
}
service.connect(server);
}
}