73a8fc6282de8272a23d9572ff046f333f7f70ec
[senf.git] / Console / ParseParameter.hh
1 // $Id$
2 //
3 // Copyright (C) 2008 
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     Stefan Bund <g0dil@berlios.de>
7 //
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (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
20 // Free Software Foundation, Inc.,
21 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
23 /** \file
24     \brief ParseParameter public header */
25
26 #ifndef HH_ParseParameter_
27 #define HH_ParseParameter_ 1
28
29 // Custom includes
30 #include <iostream>
31 #include <boost/intrusive_ptr.hpp>
32 #include "../Utils/intrusive_refcount.hh"
33 #include "Parse.hh"
34 #include "Node.hh"
35
36 //#include "ParseParameter.mpp"
37 ///////////////////////////////hh.p////////////////////////////////////////
38
39 namespace senf {
40 namespace console {
41 namespace detail {
42     
43     struct ParameterInfoBase
44         : public intrusive_refcount
45     {
46         typedef boost::intrusive_ptr<ParameterInfoBase> ptr;
47         
48         std::string type;
49         std::string name;
50         bool hasDefault;
51         std::string doc;
52         
53         ParameterInfoBase(std::string const & type);
54
55         virtual std::string defaultValueStr() const = 0;
56     };
57     
58     template <class ParameterType>
59     struct ParameterInfo 
60         : public ParameterInfoBase
61     {
62         typedef boost::intrusive_ptr<ParameterInfo> ptr;
63
64         static ptr create();
65         ParameterInfo();
66
67         ParameterType defaultValue;
68
69         virtual std::string defaultValueStr() const;
70     };
71     
72     template <class Type>
73     struct ReturnValueTraits
74     {
75         typedef Type type;
76
77         template <class Fn>
78         static void callAndWrite(Fn const & fn, std::ostream & os);
79     };
80
81     template <>
82     struct ReturnValueTraits<void>
83     {
84         typedef void type;
85
86         template <class Fn>
87         static void callAndWrite(Fn const & fn, std::ostream & os);
88     };
89
90     template <class Type>
91     struct ParameterTraits
92     {
93         typedef Type type;
94         static void parse(ParseCommandInfo::TokensRange const & tokens, Type & out);
95         static std::string typeDescription();
96         static std::string dump(Type const & value);
97     };
98     
99 }}}
100
101 ///////////////////////////////hh.e////////////////////////////////////////
102 //#include "ParseParameter.cci"
103 //#include "ParseParameter.ct"
104 #include "ParseParameter.cti"
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: