mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-02 14:55:58 +01:00
b9fe598129
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@13410 b35dd754-fafc-0310-a699-88a17e54d16e
120 lines
3.8 KiB
Java
120 lines
3.8 KiB
Java
/**
|
|
* Copyright 2012 Florian Schmaus
|
|
*
|
|
* All rights reserved. Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package org.jivesoftware.smackx.ping;
|
|
|
|
import java.lang.ref.WeakReference;
|
|
import java.util.Set;
|
|
|
|
import org.jivesoftware.smack.Connection;
|
|
|
|
class ServerPingTask implements Runnable {
|
|
|
|
// This has to be a weak reference because IIRC all threads are roots
|
|
// for objects and we have a new thread here that should hold a strong
|
|
// reference to connection so that it can be GCed.
|
|
private WeakReference<Connection> weakConnection;
|
|
private int pingInterval;
|
|
private volatile long lastSuccessfulPing = -1;
|
|
|
|
private int delta = 1000; // 1 seconds
|
|
private int tries = 3; // 3 tries
|
|
|
|
protected ServerPingTask(Connection connection, int pingIntervall) {
|
|
this.weakConnection = new WeakReference<Connection>(connection);
|
|
this.pingInterval = pingIntervall;
|
|
}
|
|
|
|
protected void setDone() {
|
|
this.pingInterval = -1;
|
|
}
|
|
|
|
protected void setPingInterval(int pingIntervall) {
|
|
this.pingInterval = pingIntervall;
|
|
}
|
|
|
|
protected int getIntInterval() {
|
|
return pingInterval;
|
|
}
|
|
|
|
protected long getLastSucessfulPing() {
|
|
return lastSuccessfulPing;
|
|
}
|
|
|
|
public void run() {
|
|
sleep(60000);
|
|
|
|
outerLoop:
|
|
while(pingInterval > 0) {
|
|
Connection connection = weakConnection.get();
|
|
if (connection == null) {
|
|
// connection has been collected by GC
|
|
// which means we can stop the thread by breaking the loop
|
|
break;
|
|
}
|
|
if (connection.isAuthenticated()) {
|
|
PingManager pingManager = PingManager.getInstanceFor(connection);
|
|
boolean res = false;
|
|
|
|
for(int i = 0; i < tries; i++) {
|
|
if (i != 0) {
|
|
try {
|
|
Thread.sleep(delta);
|
|
} catch (InterruptedException e) {
|
|
// We received an interrupt
|
|
// This only happens if we should stop pinging
|
|
break outerLoop;
|
|
}
|
|
}
|
|
res = pingManager.pingMyServer();
|
|
// stop when we receive a pong back
|
|
if (res) {
|
|
lastSuccessfulPing = System.currentTimeMillis();
|
|
break;
|
|
}
|
|
}
|
|
if (!res) {
|
|
Set<PingFailedListener> pingFailedListeners = pingManager.getPingFailedListeners();
|
|
for (PingFailedListener l : pingFailedListeners) {
|
|
l.pingFailed();
|
|
}
|
|
}
|
|
}
|
|
sleep();
|
|
}
|
|
}
|
|
|
|
/*
|
|
* If pingInterval > 0 sleeps a minimum of pingInterval
|
|
*/
|
|
private void sleep(int extraSleepTime) {
|
|
int totalSleep = pingInterval + extraSleepTime;
|
|
if (totalSleep > 0) {
|
|
try {
|
|
Thread.sleep(totalSleep);
|
|
} catch (InterruptedException e) {
|
|
/* Ignore */
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Sleeps the amount of pingInterval
|
|
*/
|
|
private void sleep() {
|
|
sleep(0);
|
|
}
|
|
}
|