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