Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/core7/src/libraries/core/commandline/CommandLineParser.h @ 10345

Last change on this file since 10345 was 10345, checked in by landauf, 9 years ago

wrap CommandLineArguments in StaticallyInitializedInstances

  • Property svn:eol-style set to native
File size: 7.4 KB
RevLine 
[1663]1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
3 *                    > www.orxonox.net <
4 *
5 *
6 *   License notice:
7 *
8 *   This program is free software; you can redistribute it and/or
9 *   modify it under the terms of the GNU General Public License
10 *   as published by the Free Software Foundation; either version 2
11 *   of the License, or (at your option) any later version.
12 *
13 *   This program is distributed in the hope that it will be useful,
14 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
15 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 *   GNU General Public License for more details.
17 *
18 *   You should have received a copy of the GNU General Public License
19 *   along with this program; if not, write to the Free Software
20 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21 *
22 *   Author:
23 *      Reto Grieder
24 *   Co-authors:
25 *      ...
26 *
27 */
28
[7401]29/**
30    @defgroup CmdArgs Commandline arguments
31    @ingroup Config
32    @brief For a reference of all commandline arguments see @ref cmdargspage
33*/
34
35/**
36    @file
37    @ingroup Config CmdArgs
38    @brief Declaration of CommandLineParser and CommandLineArgument, definition of the SetCommandLineArgument() macros.
39*/
40
[1663]41#ifndef _CommandLine_H__
42#define _CommandLine_H__
43
[9560]44#include "core/CorePrereqs.h"
[3196]45
[7401]46#include <fstream>
[1663]47#include <map>
[3196]48#include "util/OrxAssert.h"
[2087]49#include "util/MultiType.h"
[1663]50
51namespace orxonox
52{
[1664]53    /**
54    @brief
[2087]55        Container class for a command line argument of any type supported by MultiType.
[1664]56
[2087]57        Whenever you want to have an option specified by a command line switch,
58        you need to first define it with SetCommandLineArgument(name, defaultValue).
59        It is then added to a map and possibly changed when the command line is being parsed.
60        If the option was not given, you can detect this by asking hasDefaultValue().
61
62        There is a possibility to define a short cut so you can write "-p 20" instead of "--port 20".
63        Note the difference between "-" and "--"!
64        Also, there is no restriction to the number of strings you add after --name.
[7284]65        So "--startVector {2, 4, 5}" is perfectly legal.
[2087]66
67        Retrieving an argument is possible with the getCommandLineArgument function of the
[6021]68        CommandLineParser class. It is a Singleton, but the public interface is static.
[1664]69    */
[2087]70    class _CoreExport CommandLineArgument
[1663]71    {
[6021]72        friend class CommandLineParser;
[1663]73
74    public:
[10345]75        //! Constructor initialises both value_ and defaultValue_ with defaultValue.
76        CommandLineArgument(const std::string& name, const MultiType& defaultValue)
77            : bHasDefaultValue_(true)
78            , name_(name)
79            , value_(defaultValue)
80            , defaultValue_(defaultValue)
81        { }
82        ~CommandLineArgument() { }
83
[1664]84        //! Tells whether the value has been changed by the command line.
[1663]85        bool hasDefaultValue() const { return bHasDefaultValue_; }
[1664]86        //! Returns the name of the argument.
[1663]87        const std::string& getName() const { return name_; }
[1664]88
89        //! Returns the shortcut (example: "-p 22" for "--port 22") of the argument.
[3280]90        //! Evaluates to "" if there is none.
[1663]91        const std::string& getShortcut() const { return shortcut_; }
[1664]92        //! Sets the shortcut for the argument
[2087]93        CommandLineArgument& shortcut(const std::string& shortcut)
[1663]94        { this->shortcut_ = shortcut; return *this; }
95
[1664]96        //! Returns the usage information
97        const std::string& getInformation() const { return this->usageInformation_; }
98        //! Sets the option information when displaying orxonox usage.
[2087]99        CommandLineArgument& information(const std::string& usage)
[1664]100        { this->usageInformation_ = usage; return *this; }
101
[2087]102        //! Returns the actual value of the argument. Can be equal to default value.
[8729]103        const MultiType& getValue() const { return value_; }
[2087]104        //! Returns the given default value as type T.
[8729]105        const MultiType& getDefaultValue() const { return defaultValue_; }
[2087]106
107    private:
[1664]108        //! Undefined copy constructor
[2087]109        CommandLineArgument(const CommandLineArgument& instance);
[1663]110
[1664]111        //! Parses the value string of a command line argument.
[8729]112        void parse(const std::string& value);
[1663]113
[1664]114        //! Tells whether the value has been changed by the command line.
[1663]115        bool bHasDefaultValue_;
116
117    private:
[1664]118        std::string name_;             //!< Name of the argument
119        std::string shortcut_;         //!< Shortcut of the argument. @see getShortcut().
120        std::string usageInformation_; //!< Tells about the usage of this parameter
[1663]121
[3280]122        MultiType   value_;            //!< The actual value
123        MultiType   defaultValue_;     //!< Default value. Should not be changed.
[1663]124    };
125
126
[1664]127    /**
128    @brief
129        Global interface to command line options.
130        Allows to add and retrieve command line arguments. Also does the parsing.
131    @note
132        Internally it is a Singleton, but the public interface is static.
133    @see
134        CommandLineArgument
135    */
[6021]136    class _CoreExport CommandLineParser
[1663]137    {
138    public:
139
[1664]140        //! Parse redirection to internal member method.
[8729]141        static void parse(const std::string& cmdLine)
142        { _getInstance()._parse(cmdLine); }
[1663]143
[1664]144        static std::string getUsageInformation();
145
[2087]146        static const CommandLineArgument* getArgument(const std::string& name);
[1664]147        //! Writes the argument value in the given parameter.
[1663]148        template <class T>
[1670]149        static void getValue(const std::string& name, T* value)
[2087]150        { *value = (T)(getArgument(name)->getValue()); }
[8729]151        static const MultiType& getValue(const std::string& name)
[2087]152        { return getArgument(name)->getValue(); }
[10345]153        static void addArgument(CommandLineArgument* argument);
[1663]154
[2087]155        static bool existsArgument(const std::string& name)
156        {
157            std::map<std::string, CommandLineArgument*>::const_iterator it = _getInstance().cmdLineArgs_.find(name);
158            return !(it == _getInstance().cmdLineArgs_.end());
159        }
160
[2662]161        static void destroyAllArguments();
[2087]162
[7401]163        static void generateDoc(std::ofstream& file);
164
[1663]165    private:
[1664]166        //! Constructor initialises bFirstTimeParse_ with true.
[6021]167        CommandLineParser() : bFirstTimeParse_(true) { }
[1664]168        //! Undefined copy constructor
[6021]169        CommandLineParser(const CommandLineParser& instance);
170        ~CommandLineParser();
[1663]171
[6021]172        static CommandLineParser& _getInstance();
[1663]173
[8729]174        void _parse(const std::string& cmdLine);
175        void checkFullArgument(const std::string& name, const std::string& value);
176        void checkShortcut(const std::string& shortcut, const std::string& value);
[1663]177
[1664]178        /**
[2087]179            Tells whether we parsed for the first time. The CommmandLineArguments are added before main().
[1664]180            So when we call parse() the first time, we need to create a map with all shortcuts since these
181            get added after addCommandLineArgument().
182        */
[1663]183        bool bFirstTimeParse_;
184
[1664]185        //! Holds all pointers to the arguments and serves as a search map by name.
[2087]186        std::map<std::string, CommandLineArgument*> cmdLineArgs_;
[2662]187        //! Search map by shortcut for the arguments.
[2087]188        std::map<std::string, CommandLineArgument*> cmdLineArgsShortcut_;
[1663]189    };
190
[2087]191    template <>
[6021]192    inline void CommandLineParser::getValue<std::string>(const std::string& name, std::string* value)
[1663]193    {
[9550]194        *value = getArgument(name)->getValue().get<std::string>();
[1663]195    }
196}
197
198#endif /* _CommandLine_H__ */
Note: See TracBrowser for help on using the repository browser.