1bdd459f25178f784777c4cbf9c9a83e7f854c5b
[senf.git] / senf / Utils / Console / Traits.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 Traits inline template implementation */
25
26 #include "Traits.ih"
27
28 // Custom includes
29 #include <sstream>
30 #include <boost/lexical_cast.hpp>
31 #include <boost/format.hpp>
32 #include <senf/Utils/TypeInfo.hh>
33
34 #define prefix_ inline
35 //-/////////////////////////////////////////////////////////////////////////////////////////////////
36
37 //-/////////////////////////////////////////////////////////////////////////////////////////////////
38 // senf::console::detail::ReturnValueTraits<Type>
39
40 template <class Type>
41 prefix_ void senf::console::ReturnValueTraits<Type>::format(Type const & value,
42                                                             std::ostream & os)
43 {
44     senf_console_format_value(value, os);
45 }
46
47 template <class Type>
48 prefix_ void senf::console::senf_console_format_value(Type const & value, std::ostream & os)
49 {
50     os << value;
51 }
52
53 //-/////////////////////////////////////////////////////////////////////////////////////////////////
54 // senf::console::ArgumentTraits<Type>
55
56 template <class Type>
57 prefix_ void senf::console::ArgumentTraits<Type>::
58 parse(ParseCommandInfo::TokensRange const & tokens, Type & out)
59 {
60     senf_console_parse_argument(tokens,out);
61 }
62
63 template <class Type>
64 prefix_ void senf::console::parse(ParseCommandInfo::TokensRange const & tokens, Type & out)
65 {
66     ArgumentTraits<Type>::parse(tokens, out);
67 }
68
69 template <class Type>
70 prefix_ std::string senf::console::str(Type const & value)
71 {
72     return ArgumentTraits<Type>::str(value);
73 }
74
75 template <class Type>
76 prefix_ void senf::console::format(Type const & value, std::ostream & os)
77 {
78     ReturnValueTraits<Type>::format(value, os);
79 }
80
81 template <class Type>
82 prefix_ std::string senf::console::ArgumentTraits<Type>::description()
83 {
84     return prettyBaseName(typeid(Type));
85 }
86
87 template <class Type>
88 prefix_ std::string senf::console::ArgumentTraits<Type>::str(Type const & value)
89 {
90     std::stringstream ss;
91     senf::console::format(value, ss);
92     std::string rv (ss.str());
93
94     if (rv.empty() || ! boost::algorithm::all(rv, CommandParser::isWordChar)) {
95         for (std::string::size_type i (0); i < rv.size(); ++i)
96             if (rv[i] == '"' || rv[i] == '\\')
97                 rv.insert(i++,"\\");
98             else if (rv[i] < ' ' || rv[i] > 126) {
99                 rv.insert(i+1, (boost::format("x%02x")
100                                 % unsigned(static_cast<unsigned char>(rv[i]))).str().c_str());
101                 rv[i] = '\\';
102                 i += 3;
103             }
104
105         rv.insert(0,"\"");
106         rv.push_back('"');
107         return rv;
108     }
109
110     return ss.str();
111 }
112
113 //-/////////////////////////////////////////////////////////////////////////////////////////////////
114 // senf::console::detail::CharArgumentTraits<CharT>
115
116 template <class CharT>
117 prefix_ void senf::console::detail::CharArgumentTraits<CharT>::
118 parse(ParseCommandInfo::TokensRange const & tokens, CharT & out)
119 {
120     typename base::type v;
121     base::parse(tokens,v);
122     out = v;
123 }
124
125 template <class CharT>
126 prefix_ std::string senf::console::detail::CharArgumentTraits<CharT>::description()
127 {
128     return std::numeric_limits<CharT>::is_signed ? "byte" : "ubyte";
129 }
130
131 //-/////////////////////////////////////////////////////////////////////////////////////////////////
132 #undef prefix_
133
134 \f
135 // Local Variables:
136 // mode: c++
137 // fill-column: 100
138 // comment-column: 40
139 // c-file-style: "senf"
140 // indent-tabs-mode: nil
141 // ispell-local-dictionary: "american"
142 // compile-command: "scons -u test"
143 // End: