Console: Implement current directory management and builtins (cd, dirstack, ls)
[senf.git] / Console / Node.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 Node inline non-template implementation */
25
26 //#include "Node.ih"
27
28 // Custom includes
29 #include "../Utils/senfassert.hh"
30
31 #define prefix_ inline
32 ///////////////////////////////cci.p///////////////////////////////////////
33
34 ///////////////////////////////////////////////////////////////////////////
35 // senf::console::GenericNode
36
37 prefix_ senf::console::GenericNode::~GenericNode()
38 {}
39
40 prefix_ std::string const & senf::console::GenericNode::name()
41     const
42 {
43     return name_;
44 }
45
46 prefix_ senf::console::GenericNode::GenericNode(std::string const & name)
47     : name_ (name), parent_ (0)
48 {}
49
50 prefix_ void senf::console::GenericNode::name(std::string const & name)
51 {
52     name_ = name;
53 }
54
55 prefix_ void senf::console::GenericNode::name(GenericNode & node, std::string const & name)
56 {
57     node.name_ = name;
58 }
59
60 prefix_ boost::shared_ptr<senf::console::DirectoryNode> senf::console::GenericNode::parent()
61     const
62 {
63     return boost::static_pointer_cast<DirectoryNode>(
64         parent_ ? parent_->shared_from_this() : ptr() );
65 }
66
67 ///////////////////////////////////////////////////////////////////////////
68 // senf::console::DirectoryNode
69
70 prefix_ senf::console::GenericNode &
71 senf::console::DirectoryNode::add(std::auto_ptr<GenericNode> node, bool uniquify)
72 {
73     GenericNode::ptr p (node.release());
74     add(p, uniquify);
75     return *p;
76 }
77
78 prefix_ senf::console::DirectoryNode &
79 senf::console::DirectoryNode::operator[](std::string const & name)
80     const
81 {
82     return dynamic_cast<DirectoryNode&>(lookup(name));
83 }
84
85 prefix_ senf::console::CommandNode &
86 senf::console::DirectoryNode::operator()(std::string const & name)
87     const
88 {
89     return dynamic_cast<CommandNode&>(lookup(name));
90 }
91
92 prefix_ senf::console::DirectoryNode &
93 senf::console::DirectoryNode::mkdir(std::string const & name)
94 {
95     return static_cast<DirectoryNode &>(
96         add(std::auto_ptr<GenericNode>(new DirectoryNode(name))));
97 }
98
99 prefix_ senf::console::DirectoryNode::ChildrenRange senf::console::DirectoryNode::children()
100     const
101 {
102     return boost::make_iterator_range(children_.begin(), children_.end());
103 }
104
105 prefix_ senf::console::DirectoryNode::DirectoryNode(std::string const & name)
106     : GenericNode(name)
107 {}
108
109 ///////////////////////////////////////////////////////////////////////////
110 // senf::console::CommandNode
111
112 prefix_ senf::console::CommandNode::CommandNode(std::string const & name)
113     : GenericNode(name)
114 {}
115
116 ///////////////////////////////cci.e///////////////////////////////////////
117 #undef prefix_
118
119 \f
120 // Local Variables:
121 // mode: c++
122 // fill-column: 100
123 // comment-column: 40
124 // c-file-style: "senf"
125 // indent-tabs-mode: nil
126 // ispell-local-dictionary: "american"
127 // compile-command: "scons -u test"
128 // End: