Console: Refactor argument parsing into iterator
[senf.git] / Console / Server.ih
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 Server internal header */
25
26 #ifndef IH_Server_
27 #define IH_Server_ 1
28
29 // Custom includes
30 #include <boost/iostreams/concepts.hpp>
31 #include <boost/iostreams/stream.hpp>
32
33 ///////////////////////////////ih.p////////////////////////////////////////
34
35 namespace senf {
36 namespace console {
37
38     class Server;
39     class Client;
40
41 namespace detail {
42
43     /** \brief Internal: Nonblocking boost::iostreams::sink
44
45         The sink discards data if the output socket would.
46      */
47     class NonblockingSocketSink 
48         : public boost::iostreams::sink
49     {
50     public:
51         typedef ClientSocketHandle< 
52             MakeSocketPolicy<StreamFramingPolicy,
53                              WriteablePolicy,
54                              ConnectedCommunicationPolicy>::policy > Handle;
55
56         NonblockingSocketSink(Client & client);
57         std::streamsize write(const char * s, std::streamsize n);
58
59         Client & client() const;
60         
61     private:
62         Client & client_;
63     };
64
65     typedef boost::iostreams::stream<NonblockingSocketSink> NonblockingSocketOStream;
66
67     typedef senf::ServerSocketHandle<
68         senf::MakeSocketPolicy< senf::TCPv4SocketProtocol::Policy, 
69                                 senf::UnspecifiedAddressingPolicy>::policy > ServerHandle;
70
71     /** \brief Internal: Generic client interface
72
73         The ClientReader encapsulates the interaction of a single network client with the user: It
74         manages prompt display and reading an interactive command.
75      */
76     class ClientReader
77     {
78     public:
79         typedef ServerHandle::ClientSocketHandle ClientHandle;
80
81         virtual ~ClientReader() = 0;
82
83         Client & client() const;
84         std::string promptString() const;
85         ClientHandle handle() const;
86         std::ostream & stream() const;
87         void stopClient();
88         
89         void handleInput(std::string const & input) const;
90
91         void disablePrompt();
92         void enablePrompt();
93         void translate(std::string & data);
94
95     protected:
96         ClientReader(Client & client);
97
98     private:
99         virtual void v_disablePrompt() = 0;
100         virtual void v_enablePrompt() = 0;
101         virtual void v_translate(std::string & data) = 0;
102
103         Client & client_;
104     };
105
106     /** \brief Internal: Primitive ClientReader implementation
107         
108         This implementation uses the cooked telnet mode to read lines from the console. It does not
109         support explicit line editing or any other advanced features.
110      */
111     class DumbClientReader
112         : public ClientReader
113     {
114     public:
115         DumbClientReader(Client & client);
116
117     private:
118         virtual void v_disablePrompt();
119         virtual void v_enablePrompt();
120         virtual void v_translate(std::string & data);
121
122         void clientData(senf::ReadHelper<ClientHandle>::ptr helper);
123         void showPrompt();
124
125         std::string tail_;
126         unsigned promptLen_;
127         bool promptActive_;
128     };
129     
130 }}}
131
132 ///////////////////////////////ih.e////////////////////////////////////////
133 #endif
134
135 \f
136 // Local Variables:
137 // mode: c++
138 // fill-column: 100
139 // comment-column: 40
140 // c-file-style: "senf"
141 // indent-tabs-mode: nil
142 // ispell-local-dictionary: "american"
143 // compile-command: "scons -u test"
144 // End: