7dcb2502826513ba02ccfd584f39d468def2f4a0
[senf.git] / senf / Utils / Termlib / TelnetTerminal.hh
1 // $Id$
2 //
3 // Copyright (C) 2009
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 TelnetTerminal public header */
25
26 #ifndef HH_SENF_Utils_Termlib_TelnetTerminal_
27 #define HH_SENF_Utils_Termlib_TelnetTerminal_ 1
28
29 // Custom includes
30 #include "Telnet.hh"
31 #include "AbstractTerminal.hh"
32 #include <senf/Utils/Logger.hh>
33
34 //#include "TelnetTerminal.mpp"
35 //-/////////////////////////////////////////////////////////////////////////////////////////////////
36
37 namespace senf {
38 namespace term {
39
40     /** \brief AbstractTerminal interface implementation based on telnet
41
42         This class provides a telnet server implementation implementing the AbstractTerminal
43         interface.
44
45         TelnetTerminal provides one additional callback which needs to be implemented in a derived
46         class: v_setupFailed(). This member will be called, when not all required telnet options are
47         supported by the telnet client. In this case, the communication will be switched back into
48         line-oriented mode and v_setupFailed() is called.
49
50         \ingroup telnet_group
51      */
52     class TelnetTerminal
53         : public telnethandler::TerminalType,
54           public telnethandler::NAWS,
55           public AbstractTerminal
56     {
57         SENF_LOG_CLASS_AREA();
58     public:
59         TelnetTerminal();
60
61         ///\name AbstractTerminal interface implementation
62         //\{
63         virtual void setCallbacks(AbstractTerminal::Callbacks & cb);
64         virtual std::string terminalType();
65         virtual unsigned width() const;
66         virtual unsigned height() const;
67         virtual void write(char ch);
68         //\}
69
70     protected:
71
72 #   ifndef DOXYGEN
73     private:
74 #   endif
75         virtual void v_setupFailed() = 0; ///< Called when the telnet setup has failed
76
77     private:
78         virtual void v_setupComplete();
79         virtual void v_charReceived(char ch);
80         virtual void v_windowSizeChanged();
81
82         AbstractTerminal::Callbacks * callbacks_;
83         bool setupFailed_;
84     };
85
86 }}
87
88 //-/////////////////////////////////////////////////////////////////////////////////////////////////
89 //#include "TelnetTerminal.cci"
90 //#include "TelnetTerminal.ct"
91 //#include "TelnetTerminal.cti"
92 #endif
93
94 \f
95 // Local Variables:
96 // mode: c++
97 // fill-column: 100
98 // comment-column: 40
99 // c-file-style: "senf"
100 // indent-tabs-mode: nil
101 // ispell-local-dictionary: "american"
102 // compile-command: "scons -u test"
103 // End: