Fix SCons 1.2.0 build failure
[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 template <class T>
36 prefix_ void senf::console::ArgumentTraits< senf::console::ValueRange<T> >::
37 parse(ParseCommandInfo::TokensRange const & tokens, type & out)
38 {
39     if (tokens.size() != 1)
40         throw senf::console::SyntaxErrorException("parameter syntax error");
41     std::string v (tokens.begin()[0].value());
42     unsigned i (v.find(':'));
43     try {
44         if (i == std::string::npos)
45             out.low = out.high = boost::lexical_cast<T>(v);
46         else {
47             out.low = boost::lexical_cast<T>(v.substr(0,i));
48             out.high = boost::lexical_cast<T>(v.substr(i+1));
49         }
50     }
51     catch (std::bad_cast & ex) {
52         throw senf::console::SyntaxErrorException("parameter syntax error");
53     }
54 }
55
56 template <class T>
57 prefix_ std::string senf::console::ArgumentTraits< senf::console::ValueRange<T> >::
58 description()
59 {
60     return (boost::format("range<%s>") % ArgumentTraits<T>::description()).str();
61 }
62
63 template <class T>
64 prefix_ std::string senf::console::ArgumentTraits< senf::console::ValueRange<T> >::
65 str(type const & value)
66 {
67     std::stringstream ss;
68     senf::console::format(value, ss);
69     return ss.str();
70 }
71
72 template <class T>
73 prefix_ void senf::console::ReturnValueTraits< senf::console::ValueRange<T> >::
74 format(type const & value, std::ostream & os)
75 {
76     os << value.low;
77     if (value.low != value.high)
78         os << ':' << value.high;
79 }
80
81 ///////////////////////////////ct.e////////////////////////////////////////
82 #undef prefix_
83
84 \f
85 // Local Variables:
86 // mode: c++
87 // fill-column: 100
88 // comment-column: 40
89 // c-file-style: "senf"
90 // indent-tabs-mode: nil
91 // ispell-local-dictionary: "american"
92 // compile-command: "scons -u test"
93 // End: