modernize: Reformat ALL the source... again!
[quassel.git] / src / common / aliasmanager.h
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 #pragma once
22
23 #include "common-export.h"
24
25 #include <utility>
26
27 #include <QVariantMap>
28
29 #include "bufferinfo.h"
30 #include "syncableobject.h"
31
32 class Network;
33
34 class COMMON_EXPORT AliasManager : public SyncableObject
35 {
36     Q_OBJECT
37     SYNCABLE_OBJECT
38
39 public:
40     inline AliasManager(QObject* parent = nullptr)
41         : SyncableObject(parent)
42     {
43         setAllowClientUpdates(true);
44     }
45     AliasManager& operator=(const AliasManager& other);
46
47     struct Alias
48     {
49         QString name;
50         QString expansion;
51         Alias(QString name_, QString expansion_)
52             : name(std::move(name_))
53             , expansion(std::move(expansion_))
54         {}
55     };
56     using AliasList = QList<Alias>;
57
58     int indexOf(const QString& name) const;
59     inline bool contains(const QString& name) const { return indexOf(name) != -1; }
60     inline bool isEmpty() const { return _aliases.isEmpty(); }
61     inline int count() const { return _aliases.count(); }
62     inline void removeAt(int index) { _aliases.removeAt(index); }
63     inline Alias& operator[](int i) { return _aliases[i]; }
64     inline const Alias& operator[](int i) const { return _aliases.at(i); }
65     inline const AliasList& aliases() const { return _aliases; }
66
67     static AliasList defaults();
68
69     using CommandList = QList<QPair<BufferInfo, QString>>;
70
71     CommandList processInput(const BufferInfo& info, const QString& message);
72
73 public slots:
74     virtual QVariantMap initAliases() const;
75     virtual void initSetAliases(const QVariantMap& aliases);
76
77     virtual void addAlias(const QString& name, const QString& expansion);
78
79 protected:
80     void setAliases(const QList<Alias>& aliases) { _aliases = aliases; }
81     virtual const Network* network(NetworkId) const = 0;  // core and client require different access
82
83 private:
84     void processInput(const BufferInfo& info, const QString& message, CommandList& previousCommands);
85     void expand(const QString& alias, const BufferInfo& bufferInfo, const QString& msg, CommandList& previousCommands);
86
87     AliasList _aliases;
88 };