moved statistics classes from NetEmu to SENF
[senf.git] / Utils / Console / Traits.ct
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 non-inline template implementation  */
25
26 #include "Traits.ih"
27
28 // Custom includes
29
30 #define prefix_
31 ///////////////////////////////ct.p////////////////////////////////////////
32
33 template <class Type>
34 prefix_ void
35 senf::console::senf_console_parse_argument(ParseCommandInfo::TokensRange const & tokens,
36                                            Type & out)
37 {
38     if (tokens.size() != 1)
39         throw SyntaxErrorException("parameter syntax error");
40
41     try {
42         out = boost::lexical_cast<Type>(tokens.begin()[0].value());
43     }
44     catch (std::bad_cast & ex) {
45         throw SyntaxErrorException("parameter syntax error");
46     }
47 }
48
49 ///////////////////////////////////////////////////////////////////////////
50 // senf::console::ArgumentTraits< senf::console::FlagCollection<Enum> >
51
52 template <class Enum>
53 prefix_ void senf::console::ArgumentTraits< senf::console::FlagCollection<Enum> >::
54 parse(ParseCommandInfo::TokensRange const & tokens, type & out)
55 {
56     CheckedArgumentIteratorWrapper arg (tokens);
57     out.value = 0;
58     while (arg) {
59         Enum v;
60         senf::console::parse( *(arg++), v);
61         out.value |= v;
62     }
63 }
64
65 template <class Enum>
66 prefix_ std::string
67 senf::console::ArgumentTraits< senf::console::FlagCollection<Enum> >::description()
68 {
69     return ArgumentTraits<Enum>::description();
70 }
71
72 template <class Enum>
73 prefix_ std::string
74 senf::console::ArgumentTraits< senf::console::FlagCollection<Enum> >::str(type const & value)
75 {
76     std::stringstream ss;
77     senf::console::format(value, ss);
78     return ss.str();
79 }
80
81 ///////////////////////////////////////////////////////////////////////////
82 // senf::console::ReturnValueTraits< senf::console::FlagCollection<Enum> >
83
84 template <class Enum>
85 prefix_ void senf::console::ReturnValueTraits< senf::console::FlagCollection<Enum> >::
86 format(type const & value, std::ostream & os)
87 {
88     unsigned n (0);
89     std::stringstream ss;
90     unsigned long flag (1);
91     for (unsigned bit (0); bit<sizeof(value.value)*CHAR_BIT; ++bit, flag<<=1) {
92         if (value.value & flag) {
93             if (n++) ss << " ";
94             senf::console::format(static_cast<Enum>(flag), ss);
95         }
96     }
97     os << (n != 1 ? "(" + ss.str() + ")" : ss.str());
98 }
99
100 ///////////////////////////////ct.e////////////////////////////////////////
101 #undef prefix_
102
103 \f
104 // Local Variables:
105 // mode: c++
106 // fill-column: 100
107 // comment-column: 40
108 // c-file-style: "senf"
109 // indent-tabs-mode: nil
110 // ispell-local-dictionary: "american"
111 // compile-command: "scons -u test"
112 // End: