blob: e03d8355d3e131a8830f1e2dd103468ba833320c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - Initial API and implementation
*******************************************************************************/
package org.eclipse.jst.server.preview.adapter.internal.core;
import java.io.FileNotFoundException;
import java.net.HttpURLConnection;
import java.net.URL;
import java.net.URLConnection;
import org.eclipse.jst.server.preview.adapter.internal.Trace;
import org.eclipse.wst.server.core.IServer;
import org.eclipse.wst.server.core.internal.Server;
/**
* Thread used to ping server to test when it is started.
*/
public class PingThread {
// delay before pinging starts
private static final int PING_DELAY = 2000;
// delay between pings
private static final int PING_INTERVAL = 250;
// maximum number of pings before giving up
private int maxPings;
private boolean stop = false;
private String url;
private IServer server;
private PreviewServerBehaviour behaviour;
/**
* Create a new PingThread.
*
* @param server
* @param url
* @param behaviour
*/
public PingThread(IServer server, String url, PreviewServerBehaviour behaviour) {
super();
this.server = server;
this.url = url;
this.behaviour = behaviour;
this.maxPings = guessMaxPings();
Thread t = new Thread("Preview Ping Thread") {
public void run() {
ping();
}
};
t.setDaemon(true);
t.start();
}
private int guessMaxPings() {
int startTimeout = ((Server)server).getStartTimeout() * 1000;
if (startTimeout > 0)
return startTimeout / PING_INTERVAL;
return -1;
}
/**
* Ping the server until it is started. Then set the server state to
* STATE_STARTED.
*/
protected void ping() {
int count = 0;
try {
Thread.sleep(PING_DELAY);
} catch (Exception e) {
// ignore
}
while (!stop) {
try {
if (count == maxPings) {
try {
server.stop(false);
} catch (Exception e) {
Trace.trace(Trace.FINEST, "Ping: could not stop server");
}
stop = true;
break;
}
count++;
Trace.trace(Trace.FINEST, "Ping: pinging " + count);
URL pingUrl = new URL(url);
URLConnection conn = pingUrl.openConnection();
((HttpURLConnection)conn).getResponseCode();
// ping worked - server is up
if (!stop) {
Trace.trace(Trace.FINEST, "Ping: success");
Thread.sleep(200);
behaviour.setServerStarted();
}
stop = true;
} catch (FileNotFoundException fe) {
try {
Thread.sleep(200);
} catch (Exception e) {
// ignore
}
behaviour.setServerStarted();
stop = true;
} catch (Exception e) {
Trace.trace(Trace.FINEST, "Ping: failed");
// pinging failed
if (!stop) {
try {
Thread.sleep(PING_INTERVAL);
} catch (InterruptedException e2) {
// ignore
}
}
}
}
}
/**
* Tell the pinging to stop.
*/
public void stop() {
Trace.trace(Trace.FINEST, "Ping: stopping");
stop = true;
}
}