Add a checkParamCount() for EventStringifier as well
[quassel.git] / src / core / coreidentity.h
1 /***************************************************************************
2  *   Copyright (C) 2005-09 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  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #ifndef COREIDENTITY_H
22 #define COREIDENTITY_H
23
24 #include "identity.h"
25
26 #ifdef HAVE_SSL
27 #include <QSslKey>
28 #include <QSslCertificate>
29 #endif //HAVE_SSL
30
31 class SignalProxy;
32
33 // ========================================
34 //  CoreCertManager
35 // ========================================
36 #ifdef HAVE_SSL
37 class CoreIdentity;
38 class CoreCertManager : public CertManager {
39   SYNCABLE_OBJECT
40   Q_OBJECT
41
42 public:
43   CoreCertManager(CoreIdentity &identity);
44
45 #ifdef HAVE_SSL
46   virtual const QSslKey &sslKey() const;
47   virtual const QSslCertificate &sslCert() const;
48
49 public slots:
50   virtual void setSslKey(const QByteArray &encoded);
51   virtual void setSslCert(const QByteArray &encoded);
52 #endif
53
54   void setId(IdentityId id);
55
56 private:
57   CoreIdentity &identity;
58 };
59 #endif //HAVE_SSL
60
61 // =========================================
62 //  CoreIdentity
63 // =========================================
64 class CoreIdentity : public Identity {
65   SYNCABLE_OBJECT
66   Q_OBJECT
67
68 public:
69   CoreIdentity(IdentityId id, QObject *parent = 0);
70   CoreIdentity(const Identity &other, QObject *parent = 0);
71   CoreIdentity(const CoreIdentity &other, QObject *parent = 0);
72
73   void synchronize(SignalProxy *proxy);
74
75 #ifdef HAVE_SSL
76   inline const QSslKey &sslKey() const { return _sslKey; }
77   inline void setSslKey(const QSslKey &key) { _sslKey = key; }
78   void setSslKey(const QByteArray &encoded);
79   inline const QSslCertificate &sslCert() const { return _sslCert; }
80   inline void setSslCert(const QSslCertificate &cert) { _sslCert = cert; }
81   void setSslCert(const QByteArray &encoded);
82 #endif /* HAVE_SSL */
83
84   CoreIdentity& operator=(const CoreIdentity &identity);
85
86 private:
87 #ifdef HAVE_SSL
88   QSslKey _sslKey;
89   QSslCertificate _sslCert;
90
91   CoreCertManager _certManager;
92 #endif
93 };
94
95 #ifdef HAVE_SSL
96 inline const QSslKey &CoreCertManager::sslKey() const {
97   return identity.sslKey();
98 }
99 inline const QSslCertificate &CoreCertManager::sslCert() const {
100   return identity.sslCert();
101 }
102 #endif
103
104 #endif //COREIDENTITY_H