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