summaryrefslogtreecommitdiff
path: root/src/de/danoeh/antennapod/service/download/Downloader.java
blob: 84731fe9f32471f4a0522ad1aa96c64d69115e40 (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
package de.danoeh.antennapod.service.download;

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() {
		download();
		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;
	}

}