Utils: Add some type traits in type_traits.hh
[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         
52         ParameterInfoBase(std::string const & type);
53     };
54     
55     template <class ParameterType>
56     struct ParameterInfo 
57         : public ParameterInfoBase
58     {
59         typedef boost::intrusive_ptr<ParameterInfo> ptr;
60
61         static ptr create();
62         ParameterInfo();
63
64         ParameterType defaultValue;
65     };
66     
67     template <class Type>
68     struct ReturnValueTraits
69     {
70         typedef Type type;
71
72         template <class Fn>
73         static void callAndWrite(Fn const & fn, std::ostream & os);
74     };
75
76     template <>
77     struct ReturnValueTraits<void>
78     {
79         typedef void type;
80
81         template <class Fn>
82         static void callAndWrite(Fn const & fn, std::ostream & os);
83     };
84
85     template <class Type>
86     struct ParameterTraits
87     {
88         typedef Type type;
89         static void parse(ParseCommandInfo::TokensRange const & tokens, Type & out);
90         static std::string typeDescription();
91     };
92     
93 }}}
94
95 ///////////////////////////////hh.e////////////////////////////////////////
96 //#include "ParseParameter.cci"
97 //#include "ParseParameter.ct"
98 #include "ParseParameter.cti"
99 #endif
100
101 \f
102 // Local Variables:
103 // mode: c++
104 // fill-column: 100
105 // comment-column: 40
106 // c-file-style: "senf"
107 // indent-tabs-mode: nil
108 // ispell-local-dictionary: "american"
109 // compile-command: "scons -u test"
110 // End: