2f12892f51d2819bb736b8cfa15c94db39533f53
[senf.git] / senf / Utils / Console / Utility.ct
1 // $Id$
2 //
3 // Copyright (C) 2009 
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 Utility non-inline template implementation  */
25
26 //#include "Utility.ih"
27
28 // Custom includes
29 #include <sstream>
30 #include <boost/format.hpp>
31
32 #define prefix_
33 ///////////////////////////////ct.p////////////////////////////////////////
34
35 ///////////////////////////////////////////////////////////////////////////
36 // senf::console::ArgumentTraits< senf::console::ValueRange<T> >
37
38 template <class T>
39 prefix_ void senf::console::ArgumentTraits< senf::console::ValueRange<T> >::
40 parse(ParseCommandInfo::TokensRange const & tokens, type & out)
41 {
42     if (tokens.size() != 1)
43         throw senf::console::SyntaxErrorException("parameter syntax error");
44     std::string v (tokens.begin()[0].value());
45     std::string::size_type i (v.find(':'));
46     try {
47         if (i == std::string::npos)
48             out.low = out.high = boost::lexical_cast<T>(v);
49         else {
50             out.low = boost::lexical_cast<T>(v.substr(0,i));
51             out.high = boost::lexical_cast<T>(v.substr(i+1));
52         }
53     }
54     catch (std::bad_cast & ex) {
55         throw senf::console::SyntaxErrorException("parameter syntax error");
56     }
57 }
58
59 template <class T>
60 prefix_ std::string senf::console::ArgumentTraits< senf::console::ValueRange<T> >::
61 description()
62 {
63     return (boost::format("range<%s>") % ArgumentTraits<T>::description()).str();
64 }
65
66 template <class T>
67 prefix_ std::string senf::console::ArgumentTraits< senf::console::ValueRange<T> >::
68 str(type const & value)
69 {
70     std::stringstream ss;
71     senf::console::format(value, ss);
72     return ss.str();
73 }
74
75 ///////////////////////////////////////////////////////////////////////////
76 // senf::console::ReturnValueTraits< senf::console::ValueRange<T> >
77
78 template <class T>
79 prefix_ void senf::console::ReturnValueTraits< senf::console::ValueRange<T> >::
80 format(type const & value, std::ostream & os)
81 {
82     os << senf::console::str(value.low);
83     if (value.low != value.high)
84         os << ':' << senf::console::str(value.high);
85 }
86
87 ///////////////////////////////////////////////////////////////////////////
88 // senf::console::ArgumentTraits< senf::console::FlagCollection<Enum> >
89
90 template <class Enum>
91 prefix_ void senf::console::ArgumentTraits< senf::console::FlagCollection<Enum> >::
92 parse(ParseCommandInfo::TokensRange const & tokens, type & out)
93 {
94     CheckedArgumentIteratorWrapper arg (tokens);
95     out.value = 0;
96     while (arg) {
97         Enum v;
98         senf::console::parse( *(arg++), v);
99         out.value |= v;
100     }
101 }
102
103 template <class Enum>
104 prefix_ std::string
105 senf::console::ArgumentTraits< senf::console::FlagCollection<Enum> >::description()
106 {
107     return ArgumentTraits<Enum>::description();
108 }
109
110 template <class Enum>
111 prefix_ std::string
112 senf::console::ArgumentTraits< senf::console::FlagCollection<Enum> >::str(type const & value)
113 {
114     std::stringstream ss;
115     senf::console::format(value, ss);
116     return ss.str();
117 }
118
119 ///////////////////////////////////////////////////////////////////////////
120 // senf::console::ReturnValueTraits< senf::console::FlagCollection<Enum> >
121
122 template <class Enum>
123 prefix_ void senf::console::ReturnValueTraits< senf::console::FlagCollection<Enum> >::
124 format(type const & value, std::ostream & os)
125 {
126     unsigned n (0);
127     std::stringstream ss;
128     unsigned long flag (1);
129     for (unsigned bit (0); bit<sizeof(value.value)*CHAR_BIT; ++bit, flag<<=1) {
130         if (value.value & flag) {
131             if (n++) ss << " ";
132             senf::console::format(static_cast<Enum>(flag), ss);
133         }
134     }
135     os << (n != 1 ? "(" + ss.str() + ")" : ss.str());
136 }
137
138 ///////////////////////////////ct.e////////////////////////////////////////
139 #undef prefix_
140
141 \f
142 // Local Variables:
143 // mode: c++
144 // fill-column: 100
145 // comment-column: 40
146 // c-file-style: "senf"
147 // indent-tabs-mode: nil
148 // ispell-local-dictionary: "american"
149 // compile-command: "scons -u test"
150 // End: