com.darwinsys.tools.KwikLinkChecker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of darwinsys-api Show documentation
Show all versions of darwinsys-api Show documentation
Ian Darwin's assorted Java stuff,
assembled as an API.
package com.darwinsys.tools;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.net.ConnectException;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.SocketException;
import java.net.URL;
import java.net.UnknownHostException;
/**
* A very minimal link checker.
* Typical usage: java -cp darwinsys-api.jar com.darwinsys.net.KwikLinkChecker file...
* @author Ian Darwin
*/
public class KwikLinkChecker {
static boolean verbose;
public static void main(String[] args) {
for (String arg : args) {
if (arg.equals("-v")) {
verbose = true;
continue;
}
LinkStatus stat = check(arg);
if (verbose || !stat.ok)
System.out.println(stat.message);
}
}
// BEGIN main
/**
* Check one HTTP link; not recursive. Returns a LinkStatus with boolean success,
* and the filename or an error message in the message part of the LinkStatus.
* The end of this method is one of the few places where a whole raft of different
* "catch" clauses is actually needed for the intent of the program.
*/
static LinkStatus check(String urlString) {
URL url;
HttpURLConnection conn = null;
HttpURLConnection.setFollowRedirects(false);
try {
url = new URL(urlString);
conn = (HttpURLConnection) url.openConnection();
switch (conn.getResponseCode()) {
case 200:
return new LinkStatus(true, urlString);
case 403:
return new LinkStatus(false,"403: " + urlString );
case 404:
return new LinkStatus(false,"404: " + urlString );
}
conn.getInputStream();
return new LinkStatus(true, urlString);
} catch (IllegalArgumentException | MalformedURLException e) {
// Oracle JDK throws IAE if host can't be determined from URL string
return new LinkStatus(false, "Malformed URL: " + urlString);
} catch (UnknownHostException e) {
return new LinkStatus(false, "Host invalid/dead: " + urlString);
} catch (FileNotFoundException e) {
return new LinkStatus(false,"NOT FOUND (404) " + urlString);
} catch (ConnectException e) {
return new LinkStatus(false, "Server not listening: " + urlString);
} catch (SocketException e) {
return new LinkStatus(false, e + ": " + urlString);
} catch (IOException e) {
return new LinkStatus(false, e.toString()); // usually includes failing URL
} catch (Exception e) {
return new LinkStatus(false, "Unexpected exception! " + e);
} finally {
if (conn != null) {
conn.disconnect();
}
}
}
// END main
}