summaryrefslogtreecommitdiff
path: root/include/download.h
blob: 15fc648c5ec3919462505ed6a6ddc44b84260519 (plain) (blame)
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
#ifndef PODBEUTER_DOWNLOAD__H
#define PODBEUTER_DOWNLOAD__H

#include <string>

namespace podbeuter {

enum class dlstatus {
	QUEUED = 0,
	DOWNLOADING,
	CANCELLED,
	DELETED,
	FINISHED,
	FAILED,
	ALREADY_DOWNLOADED,
	READY,
	PLAYED
};

class pb_controller;

class download {
	public:
		explicit download(pb_controller * c = 0);
		~download();
		double percents_finished();
		const std::string status_text();
		inline dlstatus status() const {
			return download_status;
		}
		const std::string filename();
		const std::string url();
		void set_filename(const std::string& str);
		void set_url(const std::string& url);
		void set_progress(double downloaded, double total);
		void set_status(dlstatus dls);
		void set_kbps(double kbps);
		double kbps();
		void set_offset(unsigned long offset);

		inline double current_size() const {
			return cursize + offs;
		}
		inline double total_size() const {
			return totalsize + offs;
		}

	private:
		std::string fn;
		std::string url_;
		dlstatus download_status;
		float cursize;
		float totalsize;
		double curkbps;
		unsigned long offs;
		pb_controller * ctrl;
};

}

#endif