6070184768a693af12e0048588e4ac6b75a26d44
[senf.git] / Console / Executor.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 Executor non-inline non-template implementation */
25
26 #include "Executor.hh"
27 //#include "Executor.ih"
28
29 // Custom includes
30
31 //#include "Executor.mpp"
32 #define prefix_
33 ///////////////////////////////cc.p////////////////////////////////////////
34
35 namespace {
36
37     struct TraverseTokens {
38         typedef std::string const & result_type;
39         result_type operator()(senf::console::ArgumentToken const & token) const {
40             return token.value();
41         }
42     };
43     
44 }
45
46 ///////////////////////////////////////////////////////////////////////////
47 // senf::console::Executor
48
49 prefix_ bool senf::console::Executor::operator()(ParseCommandInfo const & command,
50                                                  std::ostream & output)
51 {
52     SENF_LOG(( "Executing: " << command ));
53
54     ///\fixme Whenever checking cwd_.expired(), we also need to check, wether
55     /// the node is still connected to the root.
56     if (cwd_.expired())
57         cwd_ = root().thisptr();
58
59     try {
60         switch(command.builtin()) {
61         case ParseCommandInfo::NoBuiltin :
62             break;
63             
64         case ParseCommandInfo::BuiltinCD :
65             if ( command.arguments() ) {
66                 if (command.arguments().begin()->size() == 1 
67                     && command.arguments().begin()->begin()->value() == "-") {
68                     if (oldCwd_.expired()) {
69                         oldCwd_ = cwd_;
70                         cwd_ = root().thisptr();
71                     } else
72                         swap(cwd_, oldCwd_);
73                 }
74                 else {
75                     oldCwd_ = cwd_;
76                     cwd_ = traverseTo(command.arguments().begin()[0]).thisptr();
77                 }
78             }
79             break;
80             
81         case ParseCommandInfo::BuiltinLS : {
82             DirectoryNode const & dir (
83                 command.arguments().empty() ? cwd() : traverseTo(command.arguments().begin()[0]));
84             for (DirectoryNode::child_iterator i (dir.children().begin());
85                  i != dir.children().end(); ++i) {
86                 output << i->first;
87                 if (boost::dynamic_pointer_cast<DirectoryNode>(i->second))
88                     output << "/";
89                 output << "\n";
90             }
91             break;
92         }
93
94         case ParseCommandInfo::BuiltinPUSHD :
95             dirstack_.push_back(cwd_);
96             if ( command.arguments() )
97                 cwd_ = traverseTo(command.arguments().begin()[0]).thisptr();
98             break;
99             
100         case ParseCommandInfo::BuiltinPOPD :
101             if (! dirstack_.empty()) {
102                 cwd_ = dirstack_.back();
103                 dirstack_.pop_back();
104             }
105             break;
106             
107         case ParseCommandInfo::BuiltinEXIT :
108             throw ExitException();
109         }
110     }
111     catch (InvalidDirectoryException &) {
112         output << "invalid directory" << std::endl;
113     }
114     return true;
115 }
116
117 prefix_ senf::console::DirectoryNode &
118 senf::console::Executor::traverseTo(ParseCommandInfo::argument_value_type const & path)
119 {
120     try {
121         return dynamic_cast<DirectoryNode&>(
122             cwd().traverse(
123                 boost::make_iterator_range(
124                     boost::make_transform_iterator(path.begin(), TraverseTokens()),
125                     boost::make_transform_iterator(path.end(), TraverseTokens()))));
126     }
127     catch (std::bad_cast &) {
128         throw InvalidDirectoryException();
129     }
130     catch (UnknownNodeNameException &) {
131         throw InvalidDirectoryException();
132     }
133 }
134         
135 ///////////////////////////////cc.e////////////////////////////////////////
136 #undef prefix_
137 //#include "Executor.mpp"
138
139 \f
140 // Local Variables:
141 // mode: c++
142 // fill-column: 100
143 // comment-column: 40
144 // c-file-style: "senf"
145 // indent-tabs-mode: nil
146 // ispell-local-dictionary: "american"
147 // compile-command: "scons -u test"
148 // End: