ddf17ac97a620aaa86450c7426b93d2f2c6db997
[senf.git] / Console / Node.ct
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 template implementation  */
25
26 //#include "Node.ih"
27
28 // Custom includes
29 #include <boost/range.hpp>
30
31 #define prefix_
32 ///////////////////////////////ct.p////////////////////////////////////////
33
34 ///////////////////////////////////////////////////////////////////////////
35 // senf::console::DirectoryNode
36
37 template <class ForwardRange>
38 prefix_ senf::console::GenericNode &
39 senf::console::DirectoryNode::traverse(ForwardRange const & range, bool autocomplete)
40 {
41     typedef typename boost::range_const_iterator<ForwardRange>::type const_iterator;
42     DirectoryNode::ptr dir (thisptr());
43     const_iterator i (boost::begin(range));
44     const_iterator const i_end (boost::end(range));
45     if (i != i_end && *i == std::string("")) {
46         dir = root().thisptr();
47         ++ i;
48     }
49     while (i != i_end) {
50         const_iterator next_i (i);
51         ++ next_i;
52         if (*i == std::string("..")) {
53             dir = dir->parent();
54             if (! dir)
55                 dir = root().thisptr();
56         }
57         else if (*i != std::string("") && *i != std::string(".")) {
58             std::string name (*i);
59             if (! dir->hasChild(name) && autocomplete) {
60                 ChildrenRange completions (dir->completions(name));
61                 if (completions.size() == 1)
62                     name = completions.begin()->first;
63             }
64             if (next_i == i_end)
65                 return dir->get(name);
66             else {
67                 // Why does g++ give an error on this line ???? :
68                 // dir = dynamic_cast<DirectoryNode&>( dir->get(name) ).thisptr();
69                 DirectoryNode & d (dynamic_cast<DirectoryNode&>( dir->get(name) ));
70                 dir = d.thisptr();
71             }
72         }
73         i = next_i;
74     }
75     return *dir;
76 }
77
78 ///////////////////////////////ct.e////////////////////////////////////////
79 #undef prefix_
80
81 \f
82 // Local Variables:
83 // mode: c++
84 // fill-column: 100
85 // comment-column: 40
86 // c-file-style: "senf"
87 // indent-tabs-mode: nil
88 // ispell-local-dictionary: "american"
89 // compile-command: "scons -u test"
90 // End: