-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathincomingtransfer.cpp
118 lines (100 loc) · 3.66 KB
/
incomingtransfer.cpp
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
/*
This file is part of the Kapotah project.
Copyright (C) 2010 Shantanu Tushar <[email protected]>
Copyright (C) 2010 Sudhendu Kumar <[email protected]>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "incomingtransfer.h"
#include "incomingtransferthread.h"
#include "udpmanager.h"
#include <xml/transferstatusxmlparser.h>
#include <QDir>
#include <QDateTime>
#include <QTimerEvent>
using namespace Kapotah;
IncomingTransfer::IncomingTransfer (QList< TransferFile > files, quint64 totalSize, quint64 numFiles,
quint64 numDirs, QHostAddress peer, QString id, bool isSearchResponse,
QObject* parent) : Transfer (files, totalSize, numFiles, numDirs, peer,
isSearchResponse, parent)
{
m_doneSinceLastSpeedEstimate = 0;
m_prevTime = QDateTime::currentMSecsSinceEpoch()/1000; //secs
m_speed = 0;
startTimer(1000);
m_id = id;
}
void IncomingTransfer::start()
{
if (m_destinationDir.isEmpty()) {
emit needDestinationDir();
} else {
m_filesIterator = m_files.begin();
startNextFile();
}
}
Transfer::TransferType IncomingTransfer::type()
{
return Incoming;
}
void IncomingTransfer::startNextFile()
{
QDir destinationDir(m_destinationDir);
m_thread = new IncomingTransferThread (m_peerAddress, m_filesIterator->id,
destinationDir.absoluteFilePath(m_filesIterator->path),
m_filesIterator->size, this);
connect (m_thread, SIGNAL (done ()), SLOT (currentFileFinished()));
connect (m_thread, SIGNAL (progress (quint64, quint64)), SLOT (reportProgress (quint64, quint64)));
m_thread->start();
}
void IncomingTransfer::currentFileFinished()
{
m_thread->wait();
++m_filesDone;
m_sizeDone += m_filesIterator->size;
++m_filesIterator;
if (m_filesIterator == m_files.end()) {
emit done();
} else {
startNextFile();
}
}
void IncomingTransfer::setDestinationDir (QString path)
{
m_destinationDir = path;
}
void IncomingTransfer::reportProgress (quint64 done, quint64 size)
{
m_doneTillLastProgressReport = m_sizeDone + done;
emit progress (m_sizeDone + done, m_totalSize, m_speed);
//Send progress to sender
TransferStatusXmlData data;
data.id = m_id;
data.bytesDone = m_sizeDone + done;
data.total = m_totalSize;
data.speed = m_speed;
data.type = AbstractXmlData::TransferStatus;
TransferStatusXmlParser parser;
Kapotah::UdpManager::instance()->sendDatagram(parser.composeXml(&data).toUtf8(), m_peerAddress);
}
void IncomingTransfer::timerEvent (QTimerEvent* event)
{
m_speed = (m_doneTillLastProgressReport - m_doneSinceLastSpeedEstimate);
m_doneSinceLastSpeedEstimate = m_doneTillLastProgressReport;
}
void IncomingTransfer::stop()
{
reportProgress(-m_sizeDone-1, m_totalSize); //Send negative progress
delete m_thread;
emit canceled();
deleteLater();
}
#include "incomingtransfer.moc"