Move sourcecode into 'senf/' directory
[senf.git] / senf / 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_ bool
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     return false;
48 }
49
50 ///////////////////////////////////////////////////////////////////////////
51 // senf::console::ArgumentTraits< senf::console::FlagCollection<Enum> >
52
53 template <class Enum>
54 prefix_ void senf::console::ArgumentTraits< senf::console::FlagCollection<Enum> >::
55 parse(ParseCommandInfo::TokensRange const & tokens, type & out)
56 {
57     CheckedArgumentIteratorWrapper arg (tokens);
58     out.value = 0;
59     while (arg) {
60         Enum v;
61         senf::console::parse( *(arg++), v);
62         out.value |= v;
63     }
64 }
65
66 template <class Enum>
67 prefix_ std::string
68 senf::console::ArgumentTraits< senf::console::FlagCollection<Enum> >::description()
69 {
70     return ArgumentTraits<Enum>::description();
71 }
72
73 template <class Enum>
74 prefix_ std::string
75 senf::console::ArgumentTraits< senf::console::FlagCollection<Enum> >::str(type const & value)
76 {
77     std::stringstream ss;
78     senf::console::format(value, ss);
79     return ss.str();
80 }
81
82 ///////////////////////////////////////////////////////////////////////////
83 // senf::console::ReturnValueTraits< senf::console::FlagCollection<Enum> >
84
85 template <class Enum>
86 prefix_ void senf::console::ReturnValueTraits< senf::console::FlagCollection<Enum> >::
87 format(type const & value, std::ostream & os)
88 {
89     unsigned n (0);
90     std::stringstream ss;
91     unsigned long flag (1);
92     for (unsigned bit (0); bit<sizeof(value.value)*CHAR_BIT; ++bit, flag<<=1) {
93         if (value.value & flag) {
94             if (n++) ss << " ";
95             senf::console::format(static_cast<Enum>(flag), ss);
96         }
97     }
98     os << (n != 1 ? "(" + ss.str() + ")" : ss.str());
99 }
100
101 ///////////////////////////////ct.e////////////////////////////////////////
102 #undef prefix_
103
104 \f
105 // Local Variables:
106 // mode: c++
107 // fill-column: 100
108 // comment-column: 40
109 // c-file-style: "senf"
110 // indent-tabs-mode: nil
111 // ispell-local-dictionary: "american"
112 // compile-command: "scons -u test"
113 // End: