Utils: Fix hexump() of nevative values
[senf.git] / 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 <senf/Scheduler/TimerEvent.hh>
31 #include <senf/Scheduler/ClockService.hh>
32 #include "Telnet.hh"
33 #include "Terminfo.hh"
34
35 //#include "TelnetTerminal.mpp"
36 ///////////////////////////////hh.p////////////////////////////////////////
37
38 namespace senf {
39 namespace term {
40
41     class TelnetTerminal
42         : public telnethandler::TerminalType,
43           public telnethandler::NAWS
44     {
45     public:
46         typedef KeyParser::keycode_t keycode_t;
47
48         static unsigned const DEFAULT_KEY_TIMEOUT_MS = 500u;
49
50         TelnetTerminal();
51
52     protected:
53         virtual void v_setupComplete();
54
55     private:
56         virtual void v_keyReceived(keycode_t key) = 0;
57
58         virtual void v_charReceived(char c);
59         void keySequenceTimeout();
60         void processKeys();
61
62         senf::term::Terminfo tifo_;
63         senf::term::KeyParser keyParser_;
64         std::string inputBuffer_;
65         senf::ClockService::clock_type keyTimeout_;
66         senf::scheduler::TimerEvent timer_;
67     };
68 }}
69
70 ///////////////////////////////hh.e////////////////////////////////////////
71 //#include "TelnetTerminal.cci"
72 //#include "TelnetTerminal.ct"
73 //#include "TelnetTerminal.cti"
74 #endif
75
76 \f
77 // Local Variables:
78 // mode: c++
79 // fill-column: 100
80 // comment-column: 40
81 // c-file-style: "senf"
82 // indent-tabs-mode: nil
83 // ispell-local-dictionary: "american"
84 // compile-command: "scons -u test"
85 // End: