2a3664f3c51ff56f1a24ef4da7f9f647b0f74bc2
[senf.git] / Console / ScopedDirectory.cti
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 ScopedDirectory inline template implementation */
25
26 //#include "ScopedDirectory.ih"
27
28 // Custom includes
29 #include <boost/bind.hpp>
30
31 #define prefix_ inline
32 ///////////////////////////////cti.p///////////////////////////////////////
33
34 ///////////////////////////////////////////////////////////////////////////
35 // senf::console::OwnerNodeCreateTraits<Owner,Object>::Creator
36
37 template <class Owner, class Object>
38 prefix_ typename senf::console::OwnerNodeCreateTraits<Owner,Object>::result_type
39 senf::console::OwnerNodeCreateTraits<Owner,Object>::Creator::create(DirectoryNode & node,
40                                                                     Owner & owner,
41                                                                     std::string const & name,
42                                                                     Object const & ob)
43 {
44     return senf_console_add_node(node, owner, name, ob, 0);
45 }
46
47 ///////////////////////////////////////////////////////////////////////////
48 // senf::console::ScopedDirectory<Owner>
49
50 template <class Owner>
51 prefix_ senf::console::ScopedDirectory<Owner>::ScopedDirectory(Owner * owner)
52     : owner_ (owner)
53 {
54     SENF_ASSERT(owner_);
55 }
56
57 template <class Owner>
58 template <class Object>
59 prefix_ typename senf::console::OwnerNodeCreateTraits<Owner, Object>::result_type
60 senf::console::ScopedDirectory<Owner>::add(std::string const & name, Object const & ob)
61 {
62     return OwnerNodeCreateTraits<Owner, Object>::Creator::create(node(), *owner_, name, ob);
63 }
64
65 template <class Owner, class Function>
66 prefix_ senf::console::SimpleCommandNode & senf::console::
67 senf_console_add_node(DirectoryNode & node, Owner & , std::string const & name,
68                       Function const & fn, ...)
69 {
70     return node.add(name,fn);
71 }
72
73 template <class Owner>
74 prefix_ senf::console::SimpleCommandNode & senf::console::
75 senf_console_add_node(DirectoryNode & node, Owner & owner, std::string const & name,
76                       void (Owner::*fn)(std::ostream &, ParseCommandInfo const &), int)
77 {
78     return node.add(name, boost::bind(fn,boost::ref(owner),_1,_2));
79 }
80
81 template <class Node>
82 prefix_ senf::console::DirectoryNode & senf::console::
83 senf_console_add_node(DirectoryNode & dir, std::string const & name, Node const & node, int,
84                       typename boost::enable_if< boost::is_convertible<Node*, ScopedDirectoryBase*> >::type *)
85 {
86     return dir.add(name, node.node().thisptr());
87 }
88
89 ///////////////////////////////////////////////////////////////////////////
90 // senf::console::ScopedDirectory<void>
91
92 template <class Object>
93 prefix_ typename senf::console::NodeCreateTraits<Object>::result_type
94 senf::console::ScopedDirectory<void>::add(std::string const & name, Object const & ob)
95 {
96     return node().add(name, ob);
97 }
98
99 ///////////////////////////////cti.e///////////////////////////////////////
100 #undef prefix_
101
102 \f
103 // Local Variables:
104 // mode: c++
105 // fill-column: 100
106 // comment-column: 40
107 // c-file-style: "senf"
108 // indent-tabs-mode: nil
109 // ispell-local-dictionary: "american"
110 // compile-command: "scons -u test"
111 // End: