Warnings++ and further enhancements in memory usage and usability.
[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
28 class CliParser{
29 public:
30   inline CliParser() {};
31   CliParser(QStringList arguments);
32
33   bool parse();
34   QString value(const QString &longName);
35   bool isSet(const QString &longName);
36   inline void addSwitch(const QString &longName, const char shortName = 0, const QString &help = QString()) {
37     addArgument(longName, CliParserArg(CliParserArg::CliArgSwitch, shortName, help));
38   }
39   inline void addOption(const QString &longName, const char shortName = 0, const QString &help = QString(), const QString &def = QString()) {
40     addArgument(longName, CliParserArg(CliParserArg::CliArgOption, shortName, help, def));
41   }
42   void usage();
43
44 private:
45   struct CliParserArg {
46     enum CliArgType {
47       CliArgInvalid,
48       CliArgSwitch,
49       CliArgOption
50     };
51     CliParserArg(const CliArgType _type = CliArgInvalid, const char _shortName = 0, const QString _help = QString(), const QString _def = QString())
52     : type(_type),
53     shortName(_shortName),
54     help(_help),
55     def(_def),
56     value(QString()),
57     boolValue(false) {};
58   
59     CliArgType type;
60     char shortName;
61     QString help;
62     QString def;
63     QString value;
64     bool boolValue;
65   };
66   
67   void addArgument(const QString &longName, const CliParserArg &arg);
68   bool addLongArg(const CliParserArg::CliArgType type, const QString &name, const QString &value = QString());
69   bool addShortArg(const CliParserArg::CliArgType type, const char shortName, const QString &value = QString());
70   QString lnameOfShortArg(const char arg);
71   QStringList argsRaw;
72   QHash<QString, CliParserArg> argsHash;
73 };
74
75 #endif