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

import de.danoeh.antennapod.asynctask.DownloadStatus;
import android.os.Handler;

/** Downloads files */
public abstract class Downloader extends Thread {
	private static final String TAG = "Downloader";
	private Handler handler;
	private DownloadService downloadService;

	protected boolean finished;

	protected DownloadStatus status;

	public Downloader(DownloadService downloadService, DownloadStatus status) {
		super();
		this.downloadService = downloadService;
		this.status = status;
		handler = new Handler();
	}

	/**
	 * This method must be called when the download was completed, failed, or
	 * was cancelled
	 */
	protected void finish() {
		if (!finished) {
			finished = true;
			handler.post(new Runnable() {

				@Override
				public void run() {
					downloadService.queryDownloads();
				}

			});
		}
	}
	
	protected void publishProgress() {
		status.setUpdateAvailable(true);
	}

	protected abstract void download();

	@Override
	public final void run() {
		download();
	}

}