minor fixes for clang++
[senf.git] / senf / Utils / Termlib / telnetServer.cc
1 // $Id$
2 //
3 // Copyright (C) 2008
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 //
6 // The contents of this file are subject to the Fraunhofer FOKUS Public License
7 // Version 1.0 (the "License"); you may not use this file except in compliance
8 // with the License. You may obtain a copy of the License at 
9 // http://senf.berlios.de/license.html
10 //
11 // The Fraunhofer FOKUS Public License Version 1.0 is based on, 
12 // but modifies the Mozilla Public License Version 1.1.
13 // See the full license text for the amendments.
14 //
15 // Software distributed under the License is distributed on an "AS IS" basis, 
16 // WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 
17 // for the specific language governing rights and limitations under the License.
18 //
19 // The Original Code is Fraunhofer FOKUS code.
20 //
21 // The Initial Developer of the Original Code is Fraunhofer-Gesellschaft e.V. 
22 // (registered association), Hansastraße 27 c, 80686 Munich, Germany.
23 // All Rights Reserved.
24 //
25 // Contributor(s):
26 //   Stefan Bund <g0dil@berlios.de>
27
28 /** \file
29     \brief telnetServer non-inline non-template implementation */
30
31 //#include "telnetServer.hh"
32 //#include "telnetServer.ih"
33
34 // Custom includes
35 #include <boost/bind.hpp>
36 #include <senf/Utils/membind.hh>
37 #include <senf/Scheduler/Scheduler.hh>
38 #include <senf/Utils/Logger.hh>
39 #include <senf/Socket/Protocols/INet.hh>
40 #include "TelnetTerminal.hh"
41 #include "Editor.hh"
42
43 //#include "telnetServer.mpp"
44 #define prefix_
45 //-/////////////////////////////////////////////////////////////////////////////////////////////////
46
47 namespace {
48
49     class MyTelnet
50         : public senf::term::TelnetTerminal
51     {
52         SENF_LOG_CLASS_AREA();
53     public:
54         explicit MyTelnet(Handle handle)
55             : senf::term::BaseTelnetProtocol (handle),
56               editor_ (*this, senf::membind(&MyTelnet::executeLine, this))
57             {
58                 editor_.prompt("myTelnet-with-an-endlesssly-long-prompt$");
59                 editor_.defineKey(senf::term::KeyParser::Ctrl('D'),
60                                   senf::membind(&MyTelnet::deleteCharOrExit, this));
61             }
62
63         void deleteCharOrExit(senf::term::LineEditor & editor)
64             {
65                 if (editor.text().empty()) {
66                     exit();
67                 }
68                 else
69                     senf::term::bindings::deleteChar(editor);
70             }
71
72         void exit()
73             {
74                 handle().facet<senf::TCPSocketProtocol>().shutdown(senf::TCPSocketProtocol::ShutRD);
75             }
76
77         virtual void v_setupFailed()
78             {
79                 SENF_LOG(("Terminal setup failed"));
80                 exit();
81             }
82
83         virtual void v_eof()
84             {
85                 SENF_LOG(("EOF"));
86                 delete this;
87             }
88
89         void executeLine(std::string const & text)
90             {
91                 SENF_LOG(("Execute line: " << text));
92                 editor_.show();
93             }
94
95     private:
96         senf::term::LineEditor editor_;
97     };
98
99     typedef senf::TCPv4ServerSocketHandle ServerHandle;
100     typedef ServerHandle::ClientHandle ClientHandle;
101
102     void connect(ServerHandle handle, int events)
103     {
104         if (events != senf::scheduler::FdEvent::EV_READ) {
105             senf::scheduler::terminate();
106             return;
107         }
108         ClientHandle client (handle.accept());
109         SENF_LOG(("new client ..."));
110         try {
111             new MyTelnet (client);
112         }
113         catch (std::exception & ex) {
114             SENF_LOG(("Client open failed: " << ex.what()));
115         }
116         catch (...) {
117             SENF_LOG(("Client open failed: unknown exception"));
118         }
119     }
120
121 }
122
123 int main(int argc, char const ** argv)
124 {
125     senf::log::ConsoleTarget::instance().timeFormat("");
126
127     ServerHandle server (ServerHandle::Address("127.0.0.1:22344"));
128     senf::scheduler::FdEvent serverEvent ("telnetServer", boost::bind(&connect, server, _1),
129                                           server, senf::scheduler::FdEvent::EV_READ);
130     SENF_LOG(("Server started at " << server.local()));
131
132     senf::scheduler::process();
133
134     return 0;
135 }
136
137 //-/////////////////////////////////////////////////////////////////////////////////////////////////
138 #undef prefix_
139 //#include "telnetServer.mpp"
140
141 \f
142 // Local Variables:
143 // mode: c++
144 // fill-column: 100
145 // comment-column: 40
146 // c-file-style: "senf"
147 // indent-tabs-mode: nil
148 // ispell-local-dictionary: "american"
149 // compile-command: "scons -u telnetServer"
150 // End: