[go: up one dir, main page]

Menu

[r8]: / client / upload.cpp  Maximize  Restore  History

Download this file

182 lines (140 with data), 3.8 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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
#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 upload(CFSClient& fsclient, const char* file, const char* dst = NULL)
{
timeval t1, t2;
gettimeofday(&t1, 0);
ifstream ifs(file);
ifs.seekg(0, ios::end);
long long int size = ifs.tellg();
ifs.seekg(0);
cout << "uploading " << file << " of " << size << " bytes" << endl;
//CProgressBar bar;
//bar.init(size);
CCBFile* fh = fsclient.createFileHandle();
if (NULL == fh)
return -1;
char* rname;
if (NULL != dst)
{
rname = (char*)dst;
}
else
{
rname = (char*)file;
for (int i = strlen(file); i >= 0; -- i)
{
if ('/' == *rname)
{
rname = (char*)file + i + 1;
break;
}
}
}
char cert[1024];
cert[0] = '\0';
if (fh->open(rname, 2, cert) < 0)
{
cout << "ERROR: unable to connect to server." << endl;
return -1;
}
if (0 != strlen(cert))
{
cout << "file owner certificate: " << cert << endl;
ofstream ofs((string(rname) + ".cert").c_str());
ofs << cert << endl;
ofs.close();
}
bool finish = true;
if (fh->upload(file) < 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 << "Uploading accomplished! " << "AVG speed " << throughput << " Mb/s." << endl << endl ;
}
else
cout << "Uploading failed! Please retry. " << endl << endl;
return 1;
}
int main(int argc, char** argv)
{
if ((4 != argc) && (5 != argc))
{
cout << "usage: upload <ip> <port> <src file> [dst file]" << endl;
return 0;
}
CFSClient fsclient(2);
fsclient.connect(argv[1], atoi(argv[2]));
if (5 == argc)
upload(fsclient, argv[3], argv[4]);
else
upload(fsclient, argv[3]);
fsclient.close();
return 1;
}