blob: d55d6b7f57346a7557328ff77b668e55b833836a (
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
#include <download.h>
#include <pb_controller.h>
#include <config.h>
#include <string>
namespace podbeuter {
/*
* the download class represents a single download entry in podbeuter.
* It manages the filename, the URL, the current state, the progress, etc.
*/
download::download(pb_controller * c)
: download_status(dlstatus::QUEUED), cursize(0.0), totalsize(0.0), curkbps(0.0),
offs(0), ctrl(c)
{ }
download::~download() {
}
const std::string download::filename() {
return fn;
}
const std::string download::url() {
return url_;
}
void download::set_filename(const std::string& str) {
fn = str;
}
double download::percents_finished() {
if (totalsize < 1) {
return 0.0;
} else {
return (100*(offs + cursize))/(offs + totalsize);
}
}
const std::string download::status_text() {
switch (download_status) {
case dlstatus::QUEUED:
return _s("queued");
case dlstatus::DOWNLOADING:
return _s("downloading");
case dlstatus::CANCELLED:
return _s("cancelled");
case dlstatus::DELETED:
return _s("deleted");
case dlstatus::FINISHED:
return _s("finished");
case dlstatus::FAILED:
return _s("failed");
case dlstatus::ALREADY_DOWNLOADED:
return _s("incomplete");
case dlstatus::READY:
return _s("ready");
case dlstatus::PLAYED:
return _s("played");
default:
return _s("unknown (bug).");
}
}
void download::set_url(const std::string& u) {
url_ = u;
}
void download::set_progress(double downloaded, double total) {
if (downloaded > cursize)
ctrl->set_view_update_necessary(true);
cursize = downloaded;
totalsize = total;
}
void download::set_status(dlstatus dls) {
if (download_status != dls) {
ctrl->set_view_update_necessary(true);
}
download_status = dls;
}
void download::set_kbps(double k) {
curkbps = k;
}
double download::kbps() {
return curkbps;
}
void download::set_offset(unsigned long offset) {
offs = offset;
}
}
|