ad02b968089117ed7735cc2c568a8e5a5970ace6
[quassel.git] / src / common / cliparser.cpp
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 #include "cliparser.h"
21 #include <QDebug>
22
23 CliParser::CliParser(int argc, char *argv[])
24 {
25   if(argc) {
26     for (int i=0; i < argc; ++i)
27       argsRaw.append(QString::fromUtf8(argv[i]));
28   }
29 }
30
31
32 CliParser::~CliParser()
33 {
34 }
35
36 void CliParser::addArgument(QString longName, char shortName = 0, QVariant def = QVariant()) {
37   CliParserArg arg = CliParserArg(longName, shortName, def);
38   argsHash.insert(longName, arg);
39   qDebug() << "Added Argument: " << longName << " with arg-addr: " << &arg;
40 }
41
42 bool CliParser::parse() {
43   qDebug() << "Parse results: ";
44   qDebug() << argsHash.value("logfile").value;
45   argsHash[QString("logfile")].value = "BOOYA";
46 }
47
48 QVariant CliParser::value(QString key) {
49   return argsHash.value(key).value;
50 }
51
52 CliParserArg::CliParserArg(QString longName, char shortName = 0, QVariant _def = QVariant() )
53   : lname(longName),
54     sname(shortName),
55     def(_def),
56     value(0) {
57     
58 }
59
60 CliParserArg::CliParserArg(const CliParserArg &other) {
61   lname = other.lname;
62   sname = other.sname;
63   def = other.def;
64   value = other.value;
65 }
66
67 CliParserArg &CliParserArg::operator=(const CliParserArg &other) {
68   lname = other.lname;
69   sname = other.sname;
70   def = other.def;
71   value = other.value;
72   return *this;
73 }
74