Utils: Fix intrusive_refcount for const objects
[senf.git] / Console / OverloadedCommand.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 OverloadedCommand inline non-template implementation */
25
26 //#include "OverloadedCommand.ih"
27
28 // Custom includes
29
30 #define prefix_ inline
31 ///////////////////////////////cci.p///////////////////////////////////////
32
33 ///////////////////////////////////////////////////////////////////////////
34 // senf::console::CommandOverload
35
36 prefix_ senf::console::CommandOverload::~CommandOverload()
37 {}
38
39 prefix_ void senf::console::CommandOverload::execute(std::ostream & os,
40                                                      ParseCommandInfo const & command)
41 {
42     v_execute(os, command);
43 }
44
45 prefix_ void senf::console::CommandOverload::operator()(std::ostream & os,
46                                                         ParseCommandInfo const & command)
47 {
48     execute(os, command);
49 }
50
51 prefix_ unsigned senf::console::CommandOverload::numArguments()
52     const
53 {
54     return v_numArguments();
55 }
56
57 prefix_ void senf::console::CommandOverload::argumentDoc(unsigned index, ArgumentDoc & doc)
58     const
59 {
60     return v_argumentDoc(index,doc);
61 }
62
63 prefix_ std::string senf::console::CommandOverload::doc()
64     const
65 {
66     return v_doc();
67 }
68
69 prefix_ senf::console::OverloadedCommandNode & senf::console::CommandOverload::node()
70     const
71 {
72     SENF_ASSERT( node_ );
73     return *node_;
74 }
75
76 prefix_ unsigned senf::console::CommandOverload::overloadIndex()
77     const
78 {
79     return node().overloadIndex(*this);
80 }
81
82 prefix_ senf::console::CommandOverload::CommandOverload()
83     : node_(0)
84 {}
85
86 ///////////////////////////////////////////////////////////////////////////
87 // senf::console::OverloadedCommandNode
88
89 prefix_ senf::console::OverloadedCommandNode::ptr senf::console::OverloadedCommandNode::create()
90 {
91     return ptr(new OverloadedCommandNode());
92 }
93
94 prefix_ senf::console::OverloadedCommandNode::ptr senf::console::OverloadedCommandNode::thisptr()
95 {
96     return boost::static_pointer_cast<OverloadedCommandNode>(shared_from_this());
97 }
98
99 prefix_ senf::console::OverloadedCommandNode::cptr senf::console::OverloadedCommandNode::thisptr()
100     const
101 {
102     return boost::static_pointer_cast<OverloadedCommandNode const>(shared_from_this());
103 }
104
105 prefix_ senf::console::OverloadedCommandNode &
106 senf::console::OverloadedCommandNode::doc(std::string const & doc)
107 {
108     doc_ = doc;
109     return *this;
110 }
111
112 prefix_ unsigned
113 senf::console::OverloadedCommandNode::overloadIndex(CommandOverload const & overload)
114 {
115     return find(overloads_.begin(), overloads_.end(), CommandOverload::cptr(&overload)) 
116         - overloads_.begin() + 1;
117 }
118
119 prefix_ senf::console::OverloadedCommandNode::OverloadedCommandNode()
120 {}
121
122 ///////////////////////////////////////////////////////////////////////////
123 // senf::console::SimpleCommandOverload
124
125 prefix_ senf::console::SimpleCommandOverload::ptr
126 senf::console::SimpleCommandOverload::create(Function fn)
127 {
128     return ptr(new SimpleCommandOverload(fn));
129 }
130
131 prefix_ senf::console::SimpleCommandOverload &
132 senf::console::SimpleCommandOverload::doc(std::string const & doc)
133 {
134     doc_ = doc;
135     return *this;
136 }
137
138 prefix_ senf::console::SimpleCommandOverload::SimpleCommandOverload(Function fn)
139     : fn_ (fn)
140 {}
141
142 ///////////////////////////////cci.e///////////////////////////////////////
143 #undef prefix_
144
145 \f
146 // Local Variables:
147 // mode: c++
148 // fill-column: 100
149 // comment-column: 40
150 // c-file-style: "senf"
151 // indent-tabs-mode: nil
152 // ispell-local-dictionary: "american"
153 // compile-command: "scons -u test"
154 // End: