Utils/Console: Introduce senf::console::str()
[senf.git] / senf / Utils / Console / Traits.cc
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 non-template implementation */
25
26 #include "Traits.hh"
27 #include "Traits.ih"
28
29 // Custom includes
30 #include <senf/Utils/senfassert.hh>
31
32 //#include "Traits.mpp"
33 #define prefix_
34 ///////////////////////////////cc.p////////////////////////////////////////
35
36 prefix_ std::string senf::console::ArgumentTraits<std::string>::str(std::string const & value)
37 {
38     if (! value.empty() && boost::algorithm::all(value, CommandParser::isWordChar))
39         return value;
40     else {
41         std::string rv (value);
42         for (std::string::size_type i (0); i < rv.size(); ++i)
43             if (rv[i] == '"' || rv[i] == '\\')
44                 rv.insert(i++,"\\");
45         rv.insert(0,"\"");
46         rv.push_back('"');
47         return rv;
48     }
49 }
50
51 prefix_ long senf::console::detail::parseEnum(EnumTable const & table,
52                                               ParseCommandInfo::TokensRange const & tokens)
53 {
54     if (tokens.size() != 1)
55         throw SyntaxErrorException("parameter syntax error");
56
57     std::string sym (tokens.begin()[0].value());
58     boost::algorithm::to_lower(sym);
59     EnumTable::left_map::const_iterator i1 (table.left.lower_bound(sym));
60     EnumTable::left_map::const_iterator i2 (table.left.lower_bound(sym+"\xff"));
61     if (i1 == i2)
62         throw SyntaxErrorException("parameter syntax error: invalid enum value: ")
63             << tokens.begin()[0].value();
64     long v (i1->second);
65     if (boost::algorithm::to_lower_copy(i1->first) == sym)
66         return v;
67     ++i1;
68     if (i1 != i2)
69         throw SyntaxErrorException("parameter syntax error: ambiguous enum value: ")
70             << tokens.begin()[0].value();
71     return v;
72 }
73
74 prefix_ std::string senf::console::detail::formatEnum(EnumTable const & table, long value)
75 {
76     EnumTable::right_map::const_iterator i (table.right.find(value));
77     SENF_ASSERT( i != table.right.end() );
78     return i->second;
79 }
80
81 ///////////////////////////////cc.e////////////////////////////////////////
82 #undef prefix_
83 //#include "Traits.mpp"
84
85 \f
86 // Local Variables:
87 // mode: c++
88 // fill-column: 100
89 // comment-column: 40
90 // c-file-style: "senf"
91 // indent-tabs-mode: nil
92 // ispell-local-dictionary: "american"
93 // compile-command: "scons -u test"
94 // End: