cmake: avoid de-duplication of user's CXXFLAGS
[quassel.git] / src / common / transfermanager.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2020 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 TransferManager::TransferManager(QObject* parent)
26     : SyncableObject("TransferManager", parent)
27 {
28     static auto regTypes = []() -> bool {
29         qRegisterMetaTypeStreamOperators<TransferIdList>("TransferManager::TransferIdList");
30         return true;
31     }();
32     Q_UNUSED(regTypes);
33 }
34
35 Transfer* TransferManager::transfer(const QUuid& uuid) const
36 {
37     return _transfers.value(uuid, nullptr);
38 }
39
40 TransferManager::TransferIdList TransferManager::transferIds() const
41 {
42     return _transfers.keys();
43 }
44
45 void TransferManager::addTransfer(Transfer* transfer)
46 {
47     QUuid uuid = transfer->uuid();
48     if (_transfers.contains(uuid)) {
49         qWarning() << "Cannot add the same file transfer twice!";
50         transfer->deleteLater();
51         return;
52     }
53     transfer->setParent(this);
54     _transfers[uuid] = transfer;
55
56     SYNC_OTHER(onCoreTransferAdded, ARG(uuid));
57     emit transferAdded(uuid);
58 }
59
60 void TransferManager::removeTransfer(const QUuid& uuid)
61 {
62     if (!_transfers.contains(uuid)) {
63         qWarning() << "Can not find transfer" << uuid << "to remove!";
64         return;
65     }
66     emit transferRemoved(uuid);
67     auto transfer = _transfers.take(uuid);
68     transfer->deleteLater();
69 }
70
71 QDataStream& operator<<(QDataStream& out, const TransferManager::TransferIdList& transferIds)
72 {
73     out << static_cast<quint32>(transferIds.size());
74     for (auto&& id : transferIds) {
75         out << id;
76     }
77     return out;
78 }
79
80 QDataStream& operator>>(QDataStream& in, TransferManager::TransferIdList& transferIds)
81 {
82     quint32 count;
83     in >> count;
84     transferIds.clear();
85     transferIds.reserve(count);
86     for (quint32 i = 0; i < count; ++i) {
87         QUuid id;
88         in >> id;
89         transferIds << id;
90     }
91     return in;
92 }