5c8142aa69e8ea6fadea06e34494cd1d5e1dac22
[quassel.git] / src / common / peer.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2019 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 "peer.h"
22
23 Peer::Peer(AuthHandler* authHandler, QObject* parent)
24     : QObject(parent)
25     , _authHandler(authHandler)
26 {}
27
28 AuthHandler* Peer::authHandler() const
29 {
30     return _authHandler;
31 }
32
33 QDateTime Peer::connectedSince() const
34 {
35     return _connectedSince;
36 }
37
38 void Peer::setConnectedSince(const QDateTime& connectedSince)
39 {
40     _connectedSince = connectedSince;
41 }
42
43 QString Peer::buildDate() const
44 {
45     return _buildDate;
46 }
47
48 void Peer::setBuildDate(const QString& buildDate)
49 {
50     _buildDate = buildDate;
51 }
52
53 QString Peer::clientVersion() const
54 {
55     return _clientVersion;
56 }
57
58 void Peer::setClientVersion(const QString& clientVersion)
59 {
60     _clientVersion = clientVersion;
61 }
62
63 bool Peer::hasFeature(Quassel::Feature feature) const
64 {
65     return _features.isEnabled(feature);
66 }
67
68 Quassel::Features Peer::features() const
69 {
70     return _features;
71 }
72
73 void Peer::setFeatures(Quassel::Features features)
74 {
75     _features = std::move(features);
76 }
77
78 int Peer::id() const
79 {
80     return _id;
81 }
82
83 void Peer::setId(int id)
84 {
85     _id = id;
86 }
87
88 // PeerPtr is used in RPC signatures for enabling receivers to send replies
89 // to a particular peer rather than broadcast to all connected ones.
90 // To enable this, the SignalProxy transparently replaces the bogus value
91 // received over the network with the actual address of the local Peer
92 // instance. Because the actual value isn't needed on the wire, it is
93 // serialized as null.
94 QDataStream& operator<<(QDataStream& out, PeerPtr ptr)
95 {
96     Q_UNUSED(ptr);
97     out << static_cast<quint64>(0);  // 64 bit for historic reasons
98     return out;
99 }
100
101 QDataStream& operator>>(QDataStream& in, PeerPtr& ptr)
102 {
103     ptr = nullptr;
104     quint64 value;
105     in >> value;
106     return in;
107 }