00f22b982bad297e3d7e5bf40e32f5a6b14aa920
[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(CliArgType type, QString longName, char shortName = 0, QVariant _def = QVariant());
41   CliParserArg &operator=(const CliParserArg &other);
42
43   CliArgType type;
44   QString lname;
45   char sname;
46   QString shortHelp;
47   QVariant def;
48   QVariant value;
49 };
50 Q_DECLARE_METATYPE(CliParserArg);
51
52 class CliParser{
53 public:
54   inline CliParser() {};
55   CliParser(QStringList arguments);
56   bool parse();
57   QVariant value(QString key);
58   void addSwitch(QString longName, char shortName = 0, QVariant def = false);
59   void addOption(QString longName, char shortName = 0, QVariant def = QVariant());
60   void addHelp(QString key, QString txt);
61   void usage();
62 private:
63   void addArgument(CliParserArg::CliArgType type, QString longName, char shortName, QVariant def);
64   QStringList argsRaw;
65   QHash<QString, CliParserArg> argsHash;
66   QHash<const char, QHash<QString, CliParserArg>::iterator> shortHash;
67 };
68
69
70 #endif