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