switch to new MPL based Fraunhofer FOKUS Public License
[senf.git] / senf / Utils / Console / ProgramOptions.ih
1 // $Id$
2 //
3 // Copyright (C) 2008
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 //
6 // The contents of this file are subject to the Fraunhofer FOKUS Public License
7 // Version 1.0 (the "License"); you may not use this file except in compliance
8 // with the License. You may obtain a copy of the License at 
9 // http://senf.berlios.de/license.html
10 //
11 // The Fraunhofer FOKUS Public License Version 1.0 is based on, 
12 // but modifies the Mozilla Public License Version 1.1.
13 // See the full license text for the amendments.
14 //
15 // Software distributed under the License is distributed on an "AS IS" basis, 
16 // WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 
17 // for the specific language governing rights and limitations under the License.
18 //
19 // The Original Code is Fraunhofer FOKUS code.
20 //
21 // The Initial Developer of the Original Code is Fraunhofer-Gesellschaft e.V. 
22 // (registered association), Hansastraße 27 c, 80686 Munich, Germany.
23 // All Rights Reserved.
24 //
25 // Contributor(s):
26 //   Stefan Bund <g0dil@berlios.de>
27
28 /** \file
29     \brief ProgramOptions internal header */
30
31 #ifndef IH_SENF_Scheduler_Console_ProgramOptions_
32 #define IH_SENF_Scheduler_Console_ProgramOptions_ 1
33
34 // Custom includes
35 #include <boost/scoped_ptr.hpp>
36 #include "Parse.hh"
37
38 //-/////////////////////////////////////////////////////////////////////////////////////////////////
39
40 namespace senf {
41 namespace console {
42 namespace detail {
43
44 #ifndef DOXYGEN
45
46     class ProgramOptionsSource : public ConfigSource
47     {
48     public:
49         typedef boost::intrusive_ptr<ProgramOptionsSource> ptr;
50
51         static ptr create(int argc, char const ** argv);
52
53         template <class Container>
54         ProgramOptionsSource & nonOptions(Container & container);
55         ProgramOptionsSource & alias(char letter, std::string const & longOpt, bool withArg=false);
56
57     private:
58         ProgramOptionsSource(int argc, char const ** argv);
59
60         virtual void v_parse(RestrictedExecutor & executor);
61
62         void parseLongOption(std::string const & arg, RestrictedExecutor & executor);
63         void parseNonOption(std::string const & arg, RestrictedExecutor & executor);
64
65         struct NonOptionContainer
66         {
67             virtual ~NonOptionContainer();
68             virtual void clear() = 0;
69             virtual void push_back(std::string const & value) = 0;
70         };
71
72         template <class Container>
73         struct NonOptionContainerImpl
74             : public NonOptionContainer
75         {
76             NonOptionContainerImpl(Container & c);
77
78             void clear();
79             void push_back(std::string const & value);
80
81             Container & c_;
82         };
83
84         struct ShortOption
85         {
86             ShortOption(bool withArg, std::string const & longOpt);
87             bool withArg;
88             std::string longOpt;
89         };
90
91         typedef std::map<char, ShortOption> ShortOptions;
92
93         int argc_;
94         char const ** argv_;
95         CommandParser parser_;
96         ShortOptions shortOptions_;
97         boost::scoped_ptr<NonOptionContainer> nonOptions_;
98     };
99
100 #endif
101
102 }}}
103
104 //-/////////////////////////////////////////////////////////////////////////////////////////////////
105 #endif
106
107 \f
108 // Local Variables:
109 // mode: c++
110 // fill-column: 100
111 // comment-column: 40
112 // c-file-style: "senf"
113 // indent-tabs-mode: nil
114 // ispell-local-dictionary: "american"
115 // compile-command: "scons -u test"
116 // End: