d089083113176b545e54b723f1d97ea88ea801e1
[senf.git] / Console / Executor.hh
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 public header */
25
26 #ifndef HH_Executor_
27 #define HH_Executor_ 1
28
29 // Custom includes
30 #include <boost/utility.hpp>
31 #include "Parse.hh"
32 #include "../Utils/Logger/SenfLog.hh"
33 #include "Node.hh"
34
35 //#include "Executor.mpp"
36 ///////////////////////////////hh.p////////////////////////////////////////
37
38 namespace senf {
39 namespace console {
40
41     /** \brief Execute config/console commands
42
43         The Executor interprets parsed config/console commands and executes them. It manages the
44         current execution context (current directory, directory stack and so on).
45
46         The executor is normally called directly by the parser callback for each command.
47
48         Executing the built-in 'exit' command will throw Executor::ExitException. This exception
49         (which is not derived from std::exception since it's not a real exception) must be handled
50         by the caller.
51
52         All directories are managed using weak pointers. If any of the directories expires (current
53         directory, directory stack, last directory) it will be replaced with the root
54         directory. Directories expire when they are destructed or when they are detached from the
55         config tree root node.
56       */
57     class Executor
58         : boost::noncopyable
59     {
60         SENF_LOG_CLASS_AREA();
61         SENF_LOG_DEFAULT_LEVEL( senf::log::NOTICE );
62     public:
63         ///////////////////////////////////////////////////////////////////////////
64         // Types
65
66         typedef boost::iterator_range< ParseCommandInfo::argument_iterator> Arguments;
67
68         /// Thrown by built-in 'exit' command
69         struct ExitException {};        
70
71         ///////////////////////////////////////////////////////////////////////////
72         //\/name Structors and default members
73         ///\{
74         
75         Executor();
76
77         ///\}
78         ///////////////////////////////////////////////////////////////////////////
79
80         void operator()(ParseCommandInfo const & command, std::ostream & output);
81                                         ///< Execute command
82                                         /**< Output will be written to \a output. */
83         DirectoryNode & cwd() const;    ///< Current working directory
84
85     protected:
86
87     private:
88         GenericNode & traverseNode(ParseCommandInfo::argument_value_type const & path);
89         DirectoryNode & traverseDirectory(ParseCommandInfo::argument_value_type const & path);
90         CommandNode & traverseCommand(ParseCommandInfo::CommandPathRange const & path);
91
92         struct InvalidPathException {};
93         struct InvalidDirectoryException {};
94         struct InvalidCommandException {};
95
96         DirectoryNode::weak_ptr cwd_;
97         DirectoryNode::weak_ptr oldCwd_;
98         typedef std::vector<DirectoryNode::weak_ptr> DirStack;
99         DirStack dirstack_;
100     };
101
102
103 }}
104
105 ///////////////////////////////hh.e////////////////////////////////////////
106 #include "Executor.cci"
107 //#include "Executor.ct"
108 //#include "Executor.cti"
109 #endif
110
111 \f
112 // Local Variables:
113 // mode: c++
114 // fill-column: 100
115 // comment-column: 40
116 // c-file-style: "senf"
117 // indent-tabs-mode: nil
118 // ispell-local-dictionary: "american"
119 // compile-command: "scons -u test"
120 // End: