Add Boost.Typeof library to repository
[senf.git] / Console / Parse.cci
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 Parse inline non-template implementation */
25
26 // We do NOT want to include the complete parser definition into every other compilation unit
27 // (disabled) #include "Parse.ih"
28
29 // Custom includes
30 #include "../Utils/senfassert.hh"
31
32 #define prefix_ inline
33 ///////////////////////////////cci.p///////////////////////////////////////
34
35 ///////////////////////////////////////////////////////////////////////////
36 // senf::console::ArgumentToken
37
38 prefix_ std::string const & senf::console::ArgumentToken::value()
39     const
40 {
41     return token_;
42 }
43
44 prefix_ senf::console::ArgumentToken::ArgumentToken(std::string token)
45     : token_ (token)
46 {}
47
48 ///////////////////////////////////////////////////////////////////////////
49 // senf::console::ParseCommandInfo
50
51 prefix_ senf::console::ParseCommandInfo::BuiltinCommand
52 senf::console::ParseCommandInfo::builtin()
53     const
54 {
55     return builtin_;
56 }
57
58 prefix_ senf::console::ParseCommandInfo::CommandPathRange
59 senf::console::ParseCommandInfo::commandPath()
60     const
61 {
62     return boost::make_iterator_range(commandPath_.begin(), commandPath_.end());
63 }
64
65 prefix_ senf::console::ParseCommandInfo::ArgumentsRange
66 senf::console::ParseCommandInfo::arguments()
67     const
68 {
69     return boost::make_iterator_range(arguments_.begin(), arguments_.end());
70 }
71
72 prefix_ senf::console::ParseCommandInfo::TokensRange senf::console::ParseCommandInfo::tokens()
73     const
74 {
75     return boost::make_iterator_range(tokens_.begin(), tokens_.end());
76 }
77
78 ////////////////////////////////////////
79 // private members
80
81 prefix_ void senf::console::ParseCommandInfo::init()
82 {
83     builtin_ = NoBuiltin;
84     commandPath_.clear();
85     tokens_.clear();
86     arguments_.clear();
87     tempArguments_.clear();
88 }
89
90 prefix_ void senf::console::ParseCommandInfo::setBuiltin(BuiltinCommand builtin)
91 {
92     builtin_ = builtin;
93 }
94
95 prefix_ void
96 senf::console::ParseCommandInfo::setCommand(std::vector<std::string> & commandPath)
97 {
98     commandPath_.clear();
99     commandPath_.swap(commandPath);
100 }
101
102 prefix_ void senf::console::ParseCommandInfo::startArgument()
103 {
104     tempArguments_.push_back( TempArgumentRange( tokens_.size(), tokens_.size() ) );
105 }
106
107 prefix_ void senf::console::ParseCommandInfo::endArgument()
108 {
109     tempArguments_.back().second = tokens_.size();
110 }
111
112 prefix_ void senf::console::ParseCommandInfo::addToken(ArgumentToken const & token)
113 {
114     tokens_.push_back(token);
115 }
116
117 ///////////////////////////////////////////////////////////////////////////
118 // senf::console::SingleCommandParser
119
120 prefix_ senf::console::CommandParser::Impl & senf::console::CommandParser::impl()
121 {
122     SENF_ASSERT(impl_);
123     return *impl_;
124 }
125
126 ///////////////////////////////cci.e///////////////////////////////////////
127 #undef prefix_
128
129 \f
130 // Local Variables:
131 // mode: c++
132 // fill-column: 100
133 // comment-column: 40
134 // c-file-style: "senf"
135 // indent-tabs-mode: nil
136 // ispell-local-dictionary: "american"
137 // compile-command: "scons -u test"
138 // End: