Remove unneeded but error-prone copy ctor and assignment operator
[quassel.git] / src / common / cliparser.h
1 /***************************************************************************
2  *   Copyright (C) 2005-08 by the Quassel IRC Team                         *
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 CLIPARSER_H
22 #define CLIPARSER_H
23
24 #include <QString>
25 #include <QStringList>
26 #include <QHash>
27 #include <QVariant>
28
29 class CliParserArg {
30 public:
31   enum CliArgType {
32     CliArgInvalid,
33     CliArgSwitch,
34     CliArgOption
35   };
36   typedef CliArgType CliArgTypes;
37   
38   inline CliParserArg() {};
39   CliParserArg(const CliArgType type, const char _shortName = 0, const QString _help = QString(), const QString _def = QString());
40
41   CliArgType type;
42   char shortName;
43   QString help;
44   QString def;
45   QString value;
46   bool boolValue;
47 };
48 Q_DECLARE_METATYPE(CliParserArg);
49
50 class CliParser{
51 public:
52   inline CliParser() {};
53   CliParser(QStringList arguments);
54   bool parse();
55   QString value(const QString &longName);
56   bool isSet(const QString &longName);
57   void addSwitch(const QString longName, const char shortName = 0, const QString help = QString());
58   void addOption(const QString longName, const char shortName = 0, const QString help = QString(), const QString def = QString());
59   void usage();
60 private:
61   QStringList argsRaw;
62   QHash<QString, CliParserArg> argsHash;
63   QHash<const char, QHash<QString, CliParserArg>::iterator> shortHash;
64 };
65
66 #endif