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