099d3d38119d0fa08b777171673cc884511f7394
[quassel.git] / src / common / transfermanager.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2016 by the Quassel Project                        *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #include "transfermanager.h"
22
23 #include "transfer.h"
24
25
26 INIT_SYNCABLE_OBJECT(TransferManager)
27
28 Transfer *TransferManager::transfer(const QUuid &uuid) const
29 {
30     return _transfers.value(uuid, nullptr);
31 }
32
33
34 QList<QUuid> TransferManager::transferIds() const
35 {
36     return _transfers.keys();
37 }
38
39
40 void TransferManager::addTransfer(Transfer *transfer)
41 {
42     QUuid uuid = transfer->uuid();
43     if (_transfers.contains(uuid)) {
44         qWarning() << "Cannot add the same file transfer twice!";
45         transfer->deleteLater();
46         return;
47     }
48     transfer->setParent(this);
49     _transfers[uuid] = transfer;
50
51     SYNC_OTHER(onCoreTransferAdded, ARG(uuid));
52     emit transferAdded(uuid);
53 }
54
55
56 void TransferManager::removeTransfer(const QUuid &uuid)
57 {
58     if (!_transfers.contains(uuid)) {
59         qWarning() << "Can not find transfer" << uuid << "to remove!";
60         return;
61     }
62     emit transferRemoved(uuid);
63     auto transfer = _transfers.take(uuid);
64     transfer->deleteLater();
65 }