summaryrefslogtreecommitdiff
path: root/src/de/danoeh/antennapod/util/ConnectionTester.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/de/danoeh/antennapod/util/ConnectionTester.java')
-rw-r--r--src/de/danoeh/antennapod/util/ConnectionTester.java78
1 files changed, 0 insertions, 78 deletions
diff --git a/src/de/danoeh/antennapod/util/ConnectionTester.java b/src/de/danoeh/antennapod/util/ConnectionTester.java
deleted file mode 100644
index 5d940d9e1..000000000
--- a/src/de/danoeh/antennapod/util/ConnectionTester.java
+++ /dev/null
@@ -1,78 +0,0 @@
-package de.danoeh.antennapod.util;
-
-import java.io.IOException;
-import java.net.HttpURLConnection;
-import java.net.MalformedURLException;
-import java.net.URL;
-
-import android.os.Handler;
-import android.util.Log;
-import de.danoeh.antennapod.AppConfig;
-
-/** Tests a connection before downloading something. */
-public class ConnectionTester implements Runnable {
- private static final String TAG = "ConnectionTester";
- private String strUrl;
- private Callback callback;
- private DownloadError reason;
-
- private Handler handler;
-
- public ConnectionTester(String url, Callback callback) {
- super();
- this.strUrl = url;
- this.callback = callback;
- this.handler = new Handler();
- }
-
- @Override
- public void run() {
- if (AppConfig.DEBUG)
- Log.d(TAG, "Testing connection");
- try {
- URL url = new URL(strUrl);
- HttpURLConnection con = (HttpURLConnection) url.openConnection();
- con.connect();
- handler.post(new Runnable() {
- @Override
- public void run() {
- callback.onConnectionSuccessful();
- }
- }); if (AppConfig.DEBUG)
- Log.d(TAG, "Connection seems to work");
- } catch (MalformedURLException e) {
- e.printStackTrace();
- reason = DownloadError.ERROR_CONNECTION_ERROR;
- if (AppConfig.DEBUG)
- Log.d(TAG, "Connection failed");
- handler.post(new Runnable() {
- @Override
- public void run() {
- callback.onConnectionFailure(reason);
- }
- });
- } catch (IOException e) {
- e.printStackTrace();
- reason = DownloadError.ERROR_CONNECTION_ERROR;
- if (AppConfig.DEBUG)
- Log.d(TAG, "Connection failed");
- handler.post(new Runnable() {
- @Override
- public void run() {
- callback.onConnectionFailure(reason);
- }
- });
- }
- }
-
- public static abstract class Callback {
- public abstract void onConnectionSuccessful();
-
- public abstract void onConnectionFailure(DownloadError reason);
- }
-
- public DownloadError getReason() {
- return reason;
- }
-
-}