summaryrefslogtreecommitdiff
path: root/src/de/danoeh/antennapod/service/download/Downloader.java
blob: 80cc5b3f817b81402ddc249cdb9b5a825130f260 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package de.danoeh.antennapod.service.download;

import android.content.Context;
import android.net.wifi.WifiManager;
import de.danoeh.antennapod.PodcastApp;
import de.danoeh.antennapod.R;

import java.util.concurrent.Callable;

/** Downloads files */
public abstract class Downloader implements Callable<Downloader> {
	private static final String TAG = "Downloader";

	protected volatile boolean finished;

	protected volatile boolean cancelled;

	protected DownloadRequest request;
	protected DownloadStatus result;

	public Downloader(DownloadRequest request) {
		super();
		this.request = request;
		this.request.setStatusMsg(R.string.download_pending);
		this.cancelled = false;
        this.result = new DownloadStatus(request, null, false, false, null);
	}

	protected abstract void download();

	public final Downloader call() {
        WifiManager wifiManager = (WifiManager) PodcastApp.getInstance().getSystemService(Context.WIFI_SERVICE);
        WifiManager.WifiLock wifiLock = null;
        if (wifiManager != null) {
            wifiLock = wifiManager.createWifiLock(TAG);
            wifiLock.acquire();
        }

		download();

        if (wifiLock != null) {
            wifiLock.release();
        }

		if (result == null) {
			throw new IllegalStateException(
					"Downloader hasn't created DownloadStatus object");
		}
        finished = true;
		return this;
	}

	public DownloadRequest getDownloadRequest() {
		return request;
	}

	public DownloadStatus getResult() {
		return result;
	}

	public boolean isFinished() {
		return finished;
	}

	public void cancel() {
		cancelled = true;
	}

}