Utils: Add some type traits in type_traits.hh
[senf.git] / Console / ParseParameter.cti
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 inline template implementation */
25
26 //#include "ParseParameter.ih"
27
28 // Custom includes
29 #include "../Utils/TypeInfo.hh"
30
31 #define prefix_ inline
32 ///////////////////////////////cti.p///////////////////////////////////////
33
34 ///////////////////////////////////////////////////////////////////////////
35 // senf::console::detail::ParameterInfoBase
36
37 prefix_ senf::console::detail::ParameterInfoBase::ParameterInfoBase(std::string const & type_)
38     : type (type_), name (), hasDefault (false)
39 {}
40
41 ///////////////////////////////////////////////////////////////////////////
42 // senf::console::detail::ParameterInfo<ParameterType>
43
44 template <class ParameterType>
45 prefix_ typename senf::console::detail::ParameterInfo<ParameterType>::ptr
46 senf::console::detail::ParameterInfo<ParameterType>::create()
47 {
48     return ptr(new ParameterInfo());
49 }
50
51 template <class ParameterType>
52 prefix_ senf::console::detail::ParameterInfo<ParameterType>::ParameterInfo()
53     : ParameterInfoBase ( ParameterTraits<ParameterType>::typeDescription() ),
54       defaultValue ()
55 {}
56
57 ///////////////////////////////////////////////////////////////////////////
58 // senf::console::detail::ReturnValueTraits<Type>
59
60 template <class Type>
61 template <class Fn>
62 prefix_ void senf::console::detail::ReturnValueTraits<Type>::callAndWrite(Fn const & fn,
63                                                                           std::ostream & os)
64 {
65     os << fn() << "\n";
66 }
67
68 template <class Fn>
69 prefix_ void senf::console::detail::ReturnValueTraits<void>::callAndWrite(Fn const & fn,
70                                                                           std::ostream & os)
71 {
72     fn();
73 }
74
75 ///////////////////////////////////////////////////////////////////////////
76 // senf::console::detail::ParameterTraits<Type>
77
78 template <class Type>
79 prefix_ void senf::console::detail::ParameterTraits<Type>::
80 parse(ParseCommandInfo::TokensRange const & tokens, Type & out)
81 {
82     if (tokens.size() != 1)
83         throw SyntaxErrorException("parameter syntax error");
84     try {
85         out = boost::lexical_cast<Type>(tokens.begin()[0].value());
86     }
87     catch (std::bad_cast & ex) {
88         throw SyntaxErrorException("parameter syntax error");
89     }
90 }
91
92 template <class Type>
93 prefix_ std::string senf::console::detail::ParameterTraits<Type>::typeDescription()
94 {
95     return prettyName(typeid(Type));
96 }
97
98 ///////////////////////////////cti.e///////////////////////////////////////
99 #undef prefix_
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: