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
182
183
184
185
186
187
188
189
190
191
192
193
194
|
#ifndef _FILE_TRANSFER_H_
#define _FILE_TRANSFER_H_
struct FileTransferParam
{
FILE *hFile;
HANDLE hProcess;
MCONTACT hContact;
PROTOFILETRANSFERSTATUS pfts;
bool isTerminated;
int relativePathStart;
LIST<char> urls;
FileTransferParam() : urls(1)
{
hFile = NULL;
hProcess = NULL;
hContact = NULL;
isTerminated = false;
relativePathStart = 0;
pfts.cbSize = sizeof(this->pfts);
pfts.flags = PFTS_TCHAR | PFTS_SENDING;
pfts.hContact = NULL;
pfts.currentFileNumber = -1;
pfts.currentFileProgress = 0;
pfts.currentFileSize = 0;
pfts.currentFileTime = 0;
pfts.totalBytes = 0;
pfts.totalFiles = 0;
pfts.totalProgress = 0;
pfts.ptszFiles = (TCHAR**)mir_alloc(sizeof(TCHAR*) * (pfts.totalFiles + 1));
pfts.ptszFiles[pfts.totalFiles] = NULL;
pfts.tszWorkingDir = NULL;
pfts.tszCurrentFile = NULL;
ProtoBroadcastAck(MODULE, pfts.hContact, ACKTYPE_FILE, ACKRESULT_INITIALISING, hProcess, 0);
}
~FileTransferParam()
{
CloseCurrentFile();
if (pfts.tszWorkingDir)
mir_free(pfts.tszWorkingDir);
if (pfts.pszFiles)
{
for (int i = 0; pfts.pszFiles[i]; i++)
{
if (pfts.pszFiles[i]) mir_free(pfts.pszFiles[i]);
}
mir_free(pfts.pszFiles);
}
for (int i = 0; i < urls.getCount(); i++)
mir_free(urls[i]);
urls.destroy();
}
void SetWorkingDirectory(const TCHAR *path)
{
relativePathStart = _tcsrchr(path, '\\') - path + 1;
pfts.tszWorkingDir = (TCHAR*)mir_alloc(sizeof(TCHAR) * relativePathStart);
mir_tstrncpy(pfts.tszWorkingDir, path, relativePathStart);
pfts.tszWorkingDir[relativePathStart - 1] = '\0';
}
void AddFile(const TCHAR *path)
{
pfts.ptszFiles = (TCHAR**)mir_realloc(pfts.ptszFiles, sizeof(TCHAR*) * (pfts.totalFiles + 2));
pfts.ptszFiles[pfts.totalFiles++] = mir_tstrdup(path);
pfts.ptszFiles[pfts.totalFiles] = NULL;
FILE *hFile = _tfopen(path, L"rb");
if (hFile != NULL) {
_fseeki64(hFile, 0, SEEK_END);
pfts.totalBytes += _ftelli64(hFile);
fclose(hFile);
}
}
void AddUrl(const char *url)
{
urls.insert(mir_strdup(url));
}
const TCHAR* GetCurrentFilePath() const
{
return pfts.ptszFiles[pfts.currentFileNumber];
}
const TCHAR* GetCurrentFileName() const
{
return _tcsrchr(pfts.ptszFiles[pfts.currentFileNumber], '\\') + 1;
}
void OpenCurrentFile()
{
hFile = _tfopen(GetCurrentFilePath(), _T("rb"));
if (!hFile)
throw DropboxException("Unable to open file");
_fseeki64(hFile, 0, SEEK_END);
pfts.currentFileSize = _ftelli64(hFile);
rewind(hFile);
}
size_t ReadCurrentFile(void *data, size_t count)
{
return fread(data, sizeof(char), count, hFile);
}
void CheckCurrentFile()
{
if (ferror(hFile))
throw DropboxException("Error while file sending");
if (isTerminated)
throw DropboxException("Transfer was terminated");
}
void CloseCurrentFile()
{
if (hFile != NULL)
{
fclose(hFile);
hFile = NULL;
}
}
const uint64_t GetCurrentFileSize() const
{
return pfts.currentFileSize;
}
const uint64_t GetCurrentFileChunkSize() const
{
int chunkSize = 1024 * 1024;
if (pfts.currentFileSize < chunkSize)
chunkSize = min(pfts.currentFileSize, chunkSize / 4);
else if (pfts.currentFileSize > 20 * chunkSize)
chunkSize = chunkSize * 4;
return chunkSize;
}
void Progress(size_t count)
{
pfts.currentFileProgress += count;
pfts.totalProgress += count;
ProtoBroadcastAck(MODULE, pfts.hContact, ACKTYPE_FILE, ACKRESULT_DATA, hProcess, (LPARAM)&pfts);
}
void FirstFile()
{
CloseCurrentFile();
pfts.currentFileNumber = 0;
pfts.currentFileProgress = 0;
pfts.tszCurrentFile = _tcsrchr(pfts.ptszFiles[pfts.currentFileNumber], '\\') + 1;
ProtoBroadcastAck(MODULE, pfts.hContact, ACKTYPE_FILE, ACKRESULT_DATA, hProcess, (LPARAM)&pfts);
OpenCurrentFile();
CheckCurrentFile();
}
bool NextFile()
{
CloseCurrentFile();
if (++pfts.currentFileNumber == pfts.totalFiles)
return false;
pfts.currentFileProgress = 0;
pfts.tszCurrentFile = _tcsrchr(pfts.ptszFiles[pfts.currentFileNumber], '\\') + 1;
ProtoBroadcastAck(MODULE, pfts.hContact, ACKTYPE_FILE, ACKRESULT_NEXTFILE, hProcess, 0);
OpenCurrentFile();
CheckCurrentFile();
return true;
}
void SetStatus(int status, LPARAM param = 0)
{
ProtoBroadcastAck(MODULE, pfts.hContact, ACKTYPE_FILE, status, hProcess, param);
}
};
#endif //_FILE_TRANSFER_H_
|