Helptexts now added as argument, new isSet(const QString &longName) and various fixes.
[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 CliParserArg &other);
40   CliParserArg(const CliArgType type, const char _shortName = 0, const QString _help = QString(), const QString _def = QString());
41   CliParserArg &operator=(const CliParserArg &other);
42
43   CliArgType type;
44   char shortName;
45   QString help;
46   QString def;
47   QString value;
48   bool boolValue;
49 };
50 Q_DECLARE_METATYPE(CliParserArg);
51
52 class CliParser{
53 public:
54   inline CliParser() {};
55   CliParser(QStringList arguments);
56   bool parse();
57   QString value(const QString &longName);
58   bool isSet(const QString &longName);
59   void addSwitch(const QString longName, const char shortName = 0, const QString help = QString());
60   void addOption(const QString longName, const char shortName = 0, const QString help = QString(), const QString def = QString());
61   void usage();
62 private:
63   QStringList argsRaw;
64   QHash<QString, CliParserArg> argsHash;
65   QHash<const char, QHash<QString, CliParserArg>::iterator> shortHash;
66 };
67
68 #endif