Console: Add member function argument parsing
[senf.git] / Console / ParsedCommand.hh
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 ParsedCommand public header */
25
26 #ifndef HH_ParsedCommand_
27 #define HH_ParsedCommand_ 1
28
29 // Custom includes
30 #include <vector>
31 #include <boost/type_traits/function_traits.hpp>
32 #include <boost/type_traits/is_member_pointer.hpp>
33 #include <boost/type_traits/is_same.hpp>
34 #include <boost/mpl/if.hpp>
35 #include <boost/utility.hpp>
36 #include "../config.hh"
37 #include "OverloadedCommand.hh"
38 #include "ParseParameter.hh"
39 #include "../Utils/type_traits.hh"
40
41 #include "ParsedCommand.ih"
42 #include "ParsedCommand.mpp"
43 ///////////////////////////////hh.p////////////////////////////////////////
44
45 namespace senf {
46 namespace console {
47
48     class ParsedCommandOverloadBase
49         : public CommandOverload
50     {
51     public:
52         typedef boost::intrusive_ptr<ParsedCommandOverloadBase> ptr;
53
54     protected:
55         ParsedCommandOverloadBase();
56
57         detail::ParameterInfoBase & arg(unsigned n) const;
58         template <class Type> detail::ParameterInfo<Type> & arg(unsigned n) const;
59
60         template <class Type>
61         void addParameter();
62
63     private:
64         virtual void v_help(std::ostream & os) const;
65
66         typedef std::vector<detail::ParameterInfoBase::ptr> Parameters;
67         Parameters parameters_;
68     };
69
70     template <class FunctionTraits, unsigned arity=FunctionTraits::arity>
71     class ParsedCommandOverload {};
72
73 #   define BOOST_PP_ITERATION_PARAMS_1 (4, (0, SENF_CONSOLE_MAX_COMMAND_ARITY,                     \
74                                             SENF_ABSOLUTE_INCLUDE_PATH(Console/ParsedCommand.mpp), \
75                                             1))
76 #   include BOOST_PP_ITERATE()
77
78 #ifndef DOXYGEN
79
80     template <class Function>
81     ParsedCommandOverload<typename detail::ParsedCommandTraits<Function>::traits> &
82     senf_console_add_node(DirectoryNode & node, std::string const & name, Function fn, int);
83
84     template <class Owner, class Function>
85     ParsedCommandOverload<typename detail::ParsedCommandTraits<Function>::traits> &
86     senf_console_add_node(DirectoryNode & node, Owner & owner, std::string const & name,
87                           Function fn, int,
88                           typename boost::enable_if_c<detail::ParsedCommandTraits<Function>::is_member>::type * = 0);
89
90 #endif
91
92 }}
93
94 #include BOOST_TYPEOF_INCREMENT_REGISTRATION_GROUP()
95
96 BOOST_TYPEOF_REGISTER_TEMPLATE(senf::console::ParsedCommandOverload, (class,unsigned))
97 BOOST_TYPEOF_REGISTER_TEMPLATE(boost::function_traits, 1)
98
99 ///////////////////////////////hh.e////////////////////////////////////////
100 #include "ParsedCommand.cci"
101 #include "ParsedCommand.ct"
102 #include "ParsedCommand.cti"
103 #endif
104
105 \f
106 // Local Variables:
107 // mode: c++
108 // fill-column: 100
109 // comment-column: 40
110 // c-file-style: "senf"
111 // indent-tabs-mode: nil
112 // ispell-local-dictionary: "american"
113 // compile-command: "scons -u test"
114 // End: