75b9c9f1378a1795d97d7a36edeefb4e6024641b
[senf.git] / Console / ObjectDirectory.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 ObjectDirectory inline template implementation */
25
26 //#include "ObjectDirectory.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>::NodeType &
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);
45 }
46
47 ///////////////////////////////////////////////////////////////////////////
48 // senf::console::ObjectDirectory<Owner>
49
50 template <class Owner>
51 prefix_ senf::console::ObjectDirectory<Owner>::ObjectDirectory(Owner * owner)
52     : node_ (DirectoryNode::create()), owner_ (owner)
53 {}
54
55 template <class Owner>
56 prefix_ senf::console::ObjectDirectory<Owner>::~ObjectDirectory()
57 {
58     node_->unlink();
59 }
60
61 template <class Owner>
62 template <class Object>
63 prefix_ typename senf::console::OwnerNodeCreateTraits<Owner, Object>::NodeType &
64 senf::console::ObjectDirectory<Owner>::add(std::string const & name, Object const & ob)
65 {
66     return OwnerNodeCreateTraits<Owner, Object>::Creator::create(*node_, *owner_, name, ob);
67 }
68
69 template <class Owner>
70 prefix_ senf::console::DirectoryNode & senf::console::ObjectDirectory<Owner>::node()
71     const
72 {
73     return *node_;
74 }
75
76 template <class Owner, class Function>
77 prefix_ senf::console::SimpleCommandNode & senf::console::
78 senf_console_add_node(DirectoryNode & node, Owner & , std::string const & name,
79                       Function const & fn)
80 {
81     return node.add(name,fn);
82 }
83
84 template <class Owner>
85 prefix_ senf::console::SimpleCommandNode & senf::console::
86 senf_console_add_node(DirectoryNode & node, Owner & owner, std::string const & name,
87                       void (Owner::*fn)(std::ostream & output, 
88                                         CommandNode::Arguments const & arguments))
89 {
90     return node.add(name, boost::bind(fn,boost::ref(owner),_1,_2));
91 }
92
93 template <class Node>
94 prefix_ senf::console::DirectoryNode & senf::console::
95 senf_console_add_node(DirectoryNode & dir, std::string const & name, Node const & node, int,
96                       typename boost::enable_if< boost::is_convertible<Node*, ObjectDirectoryBase*> >::type *)
97 {
98     return dir.add(name, node.node().thisptr());
99 }
100
101 ///////////////////////////////cti.e///////////////////////////////////////
102 #undef prefix_
103
104 \f
105 // Local Variables:
106 // mode: c++
107 // fill-column: 100
108 // comment-column: 40
109 // c-file-style: "senf"
110 // indent-tabs-mode: nil
111 // ispell-local-dictionary: "american"
112 // compile-command: "scons -u test"
113 // End: