[go: up one dir, main page]

Menu

[r5]: / client / download.cpp  Maximize  Restore  History

Download this file

156 lines (118 with data), 3.5 kB

  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
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
#include <fstream>
#include <fsclient.h>
#include <fcntl.h>
#include <stdio.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <termios.h>
#include <string.h>
#include <errno.h>
using namespace std;
class CProgressBar
{
public:
CProgressBar(): m_pcBarData(NULL) {}
~CProgressBar() {delete [] m_pcBarData;}
void init(const long long int& total)
{
m_iTermWidth = getTermWidth();
m_iBarWidth = m_iTermWidth - 40;
m_pcBarData = new char[m_iTermWidth + 1];
m_pcBarData[0] = '|';
for (int i = 1; i < m_iBarWidth; ++ i)
m_pcBarData[i] = ' ';
m_pcBarData[m_iBarWidth] = '|';
m_pcBarData[m_iTermWidth - 1] = '\0';
m_llTotal = total;
sprintf(m_pcBarData + m_iBarWidth + 1, "%12lld bytes ", 0LL);
sprintf(m_pcBarData + m_iBarWidth + 22, "%#9.3f mb/s ", 0.0);
cout << m_pcBarData;
cout.flush();
}
void update(const long long int& progress, const float& throughput)
{
int n = int((m_iBarWidth - 2.0) * (double(progress) / m_llTotal));
if (0 == n)
n = 1;
for (int i = 0; i < n; ++ i)
m_pcBarData[i + 1] = '*';
sprintf(m_pcBarData + m_iBarWidth + 1, "%12lld bytes ", progress);
sprintf(m_pcBarData + m_iBarWidth + 22, "%#9.3f mb/s ", throughput);
for (int i = strlen(m_pcBarData); i > 0; -- i)
cout << "\b";
cout << m_pcBarData;
cout.flush();
}
private:
int m_iTermWidth;
int m_iBarWidth;
char* m_pcBarData;
long long int m_llTotal;
private:
int getTermWidth()
{
winsize ws;
if(isatty(fileno(stdout)) == 0)
return 80;
if(ioctl(fileno(stdout), TIOCGWINSZ, &ws) < 0)
return 80;
return ws.ws_col;
}
};
int download(CFSClient& fsclient, const char* file, const char* dest)
{
timeval t1, t2;
gettimeofday(&t1, 0);
CFileAttr attr;
if (fsclient.stat(file, attr) < 0)
{
cout << "ERROR: cannot locate file " << file << endl;
return -1;
}
long long int size = attr.m_llSize;
cout << "downloading " << file << " of " << size << " bytes" << endl;
//CProgressBar bar;
//bar.init(size);
CCBFile* fh = fsclient.createFileHandle();
if (NULL == fh)
return -1;
fh->open(file);
string localpath;
if (dest[strlen(dest) - 1] != '/')
localpath = string(dest) + string("/") + string(file);
else
localpath = string(dest) + string(file);
bool finish = true;
if (fh->download(localpath.c_str(), true) < 0)
finish = false;
fh->close();
fsclient.releaseFileHandle(fh);
if (finish)
{
gettimeofday(&t2, 0);
float throughput = size * 8.0 / 1000000.0 / ((t2.tv_sec - t1.tv_sec) + (t2.tv_usec - t1.tv_usec) / 1000000.0);
//bar.update(size, throughput);
cout << "Downloading accomplished! " << "AVG speed " << throughput << " Mb/s." << endl << endl ;
}
else
cout << "Downloading failed! Please retry. " << endl << endl;
return 1;
}
int main(int argc, char** argv)
{
vector<string> filelist;
ifstream src(argv[3]);
char buf[1024];
while (!src.eof())
{
src.getline(buf, 1024);
filelist.insert(filelist.end(), buf);
}
src.close();
CFSClient fsclient;
fsclient.connect(argv[1], atoi(argv[2]));
for (vector<string>::iterator i = filelist.begin(); i != filelist.end(); ++ i)
download(fsclient, i->c_str(), argv[4]);
fsclient.close();
return 1;
}