mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-23 04:22:05 +01:00
keep alive final fixes. SMACK-141
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@3972 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
parent
6e49d6cb05
commit
3252a2a77c
2 changed files with 54 additions and 21 deletions
|
@ -41,18 +41,24 @@ class PacketWriter {
|
||||||
private Thread writerThread;
|
private Thread writerThread;
|
||||||
private Writer writer;
|
private Writer writer;
|
||||||
private XMPPConnection connection;
|
private XMPPConnection connection;
|
||||||
private LinkedList queue;
|
final private LinkedList queue;
|
||||||
private boolean done = false;
|
private boolean done = false;
|
||||||
|
|
||||||
private List listeners = new ArrayList();
|
final private List listeners = new ArrayList();
|
||||||
private boolean listenersDeleted = false;
|
private boolean listenersDeleted = false;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Timestamp when the last stanza was sent to the server. This information is used
|
||||||
|
* by the keep alive process to only send heartbeats when the connection has been idle.
|
||||||
|
*/
|
||||||
|
private long lastActive = System.currentTimeMillis();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* List of PacketInterceptor that will be notified when a new packet is about to be
|
* List of PacketInterceptor that will be notified when a new packet is about to be
|
||||||
* sent to the server. These interceptors may modify the packet before it is being
|
* sent to the server. These interceptors may modify the packet before it is being
|
||||||
* actually sent to the server.
|
* actually sent to the server.
|
||||||
*/
|
*/
|
||||||
private List interceptors = new ArrayList();
|
final private List interceptors = new ArrayList();
|
||||||
/**
|
/**
|
||||||
* Flag that indicates if an interceptor was deleted. This is an optimization flag.
|
* Flag that indicates if an interceptor was deleted. This is an optimization flag.
|
||||||
*/
|
*/
|
||||||
|
@ -75,15 +81,6 @@ class PacketWriter {
|
||||||
};
|
};
|
||||||
writerThread.setName("Smack Packet Writer");
|
writerThread.setName("Smack Packet Writer");
|
||||||
writerThread.setDaemon(true);
|
writerThread.setDaemon(true);
|
||||||
|
|
||||||
// Schedule a keep-alive task to run if the feature is enabled. will write
|
|
||||||
// out a space character each time it runs to keep the TCP/IP connection open.
|
|
||||||
int keepAliveInterval = SmackConfiguration.getKeepAliveInterval();
|
|
||||||
if (keepAliveInterval > 0) {
|
|
||||||
Thread keepAliveThread = new Thread(new KeepAliveTask(keepAliveInterval));
|
|
||||||
keepAliveThread.setDaemon(true);
|
|
||||||
keepAliveThread.start();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -198,6 +195,22 @@ class PacketWriter {
|
||||||
writerThread.start();
|
writerThread.start();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Starts the keep alive process. A white space (aka heartbeat) is going to be
|
||||||
|
* sent to the server every 30 seconds (by default) since the last stanza was sent
|
||||||
|
* to the server.
|
||||||
|
*/
|
||||||
|
void startKeepAliveProcess() {
|
||||||
|
// Schedule a keep-alive task to run if the feature is enabled. will write
|
||||||
|
// out a space character each time it runs to keep the TCP/IP connection open.
|
||||||
|
int keepAliveInterval = SmackConfiguration.getKeepAliveInterval();
|
||||||
|
if (keepAliveInterval > 0) {
|
||||||
|
Thread keepAliveThread = new Thread(new KeepAliveTask(keepAliveInterval));
|
||||||
|
keepAliveThread.setDaemon(true);
|
||||||
|
keepAliveThread.start();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void setWriter(Writer writer) {
|
void setWriter(Writer writer) {
|
||||||
this.writer = writer;
|
this.writer = writer;
|
||||||
}
|
}
|
||||||
|
@ -221,7 +234,9 @@ class PacketWriter {
|
||||||
try {
|
try {
|
||||||
queue.wait(2000);
|
queue.wait(2000);
|
||||||
}
|
}
|
||||||
catch (InterruptedException ie) { }
|
catch (InterruptedException ie) {
|
||||||
|
// Do nothing
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (queue.size() > 0) {
|
if (queue.size() > 0) {
|
||||||
return (Packet)queue.removeLast();
|
return (Packet)queue.removeLast();
|
||||||
|
@ -243,6 +258,8 @@ class PacketWriter {
|
||||||
synchronized (writer) {
|
synchronized (writer) {
|
||||||
writer.write(packet.toXML());
|
writer.write(packet.toXML());
|
||||||
writer.flush();
|
writer.flush();
|
||||||
|
// Keep track of the last time a stanza was sent to the server
|
||||||
|
lastActive = System.currentTimeMillis();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -251,12 +268,16 @@ class PacketWriter {
|
||||||
writer.write("</stream:stream>");
|
writer.write("</stream:stream>");
|
||||||
writer.flush();
|
writer.flush();
|
||||||
}
|
}
|
||||||
catch (Exception e) { }
|
catch (Exception e) {
|
||||||
|
// Do nothing
|
||||||
|
}
|
||||||
finally {
|
finally {
|
||||||
try {
|
try {
|
||||||
writer.close();
|
writer.close();
|
||||||
}
|
}
|
||||||
catch (Exception e) { }
|
catch (Exception e) {
|
||||||
|
// Do nothing
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (IOException ioe){
|
catch (IOException ioe){
|
||||||
|
@ -440,20 +461,29 @@ class PacketWriter {
|
||||||
// properly finish TLS negotiation and then start sending heartbeats.
|
// properly finish TLS negotiation and then start sending heartbeats.
|
||||||
Thread.sleep(15000);
|
Thread.sleep(15000);
|
||||||
}
|
}
|
||||||
catch (InterruptedException ie) { }
|
catch (InterruptedException ie) {
|
||||||
|
// Do nothing
|
||||||
|
}
|
||||||
while (!done) {
|
while (!done) {
|
||||||
synchronized (writer) {
|
synchronized (writer) {
|
||||||
try {
|
// Send heartbeat if no packet has been sent to the server for a given time
|
||||||
writer.write(" ");
|
if (System.currentTimeMillis() - lastActive >= delay) {
|
||||||
writer.flush();
|
try {
|
||||||
|
writer.write(" ");
|
||||||
|
writer.flush();
|
||||||
|
}
|
||||||
|
catch (Exception e) {
|
||||||
|
// Do nothing
|
||||||
|
}
|
||||||
}
|
}
|
||||||
catch (Exception e) { }
|
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
// Sleep until we should write the next keep-alive.
|
// Sleep until we should write the next keep-alive.
|
||||||
Thread.sleep(delay);
|
Thread.sleep(delay);
|
||||||
}
|
}
|
||||||
catch (InterruptedException ie) { }
|
catch (InterruptedException ie) {
|
||||||
|
// Do nothing
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -876,6 +876,9 @@ public class XMPPConnection {
|
||||||
// Make note of the fact that we're now connected.
|
// Make note of the fact that we're now connected.
|
||||||
connected = true;
|
connected = true;
|
||||||
|
|
||||||
|
// Start keep alive process (after TLS was negotiated - if available)
|
||||||
|
packetWriter.startKeepAliveProcess();
|
||||||
|
|
||||||
// Notify that a new connection has been established
|
// Notify that a new connection has been established
|
||||||
connectionEstablished(this);
|
connectionEstablished(this);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue