Console: Factored out path traversal into generic traversal helper
[senf.git] / Console / Node.cc
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 non-inline non-template implementation */
25
26 #include "Node.hh"
27 //#include "Node.ih"
28
29 // Custom includes
30
31 //#include "Node.mpp"
32 #define prefix_
33 ///////////////////////////////cc.p////////////////////////////////////////
34
35 prefix_ senf::console::DirectoryNode & senf::console::root()
36 {
37     static DirectoryNode::ptr rootNode(new DirectoryNode(""));
38     return *rootNode;
39 }
40
41 ///////////////////////////////////////////////////////////////////////////
42 // senf::console::GenericNode
43
44 prefix_ std::string senf::console::GenericNode::path()
45     const
46 {
47     std::string path (name());
48     ptr node (parent());
49     while (node) {
50         path = node->name() + "/" + path;
51         node = node->parent();
52     }
53     return path.empty() ? "/" : path;
54 }
55
56 ///////////////////////////////////////////////////////////////////////////
57 //senf::console::DirectoryNode
58
59 prefix_ void senf::console::DirectoryNode::add(GenericNode::ptr node, bool uniquify)
60 {
61     BOOST_ASSERT( ! node->parent() );
62     if (children_.find(node->name()) != children_.end()) {
63         if (! uniquify)
64             throw DuplicateNodeNameException() << ": '" << node->name() << "'";
65         unsigned suffix (0);
66         std::string newName;
67         do {
68             ++suffix;
69             newName = node->name() + boost::lexical_cast<std::string>(suffix);
70         } while (children_.find(newName) != children_.end());
71         name(*node, newName);
72     }
73     children_.insert(std::make_pair(node->name(),node));
74     node->parent_ = this;
75 }
76
77 prefix_ senf::console::GenericNode &
78 senf::console::DirectoryNode::get(std::string const & name)
79     const
80 {
81     ChildMap::const_iterator i (children_.find(name));
82     if (i == children_.end())
83         throw UnknownNodeNameException() << ": '" << name << "'";
84     return *(i->second);
85 }
86
87 ///////////////////////////////cc.e////////////////////////////////////////
88 #undef prefix_
89 //#include "Node.mpp"
90
91 \f
92 // Local Variables:
93 // mode: c++
94 // fill-column: 100
95 // comment-column: 40
96 // c-file-style: "senf"
97 // indent-tabs-mode: nil
98 // ispell-local-dictionary: "american"
99 // compile-command: "scons -u test"
100 // End: