/src/mosh/src/statesync/completeterminal.h
Line | Count | Source |
1 | | /* |
2 | | Mosh: the mobile shell |
3 | | Copyright 2012 Keith Winstein |
4 | | |
5 | | This program is free software: you can redistribute it and/or modify |
6 | | it under the terms of the GNU General Public License as published by |
7 | | the Free Software Foundation, either version 3 of the License, or |
8 | | (at your option) any later version. |
9 | | |
10 | | This program is distributed in the hope that it will be useful, |
11 | | but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 | | GNU General Public License for more details. |
14 | | |
15 | | You should have received a copy of the GNU General Public License |
16 | | along with this program. If not, see <http://www.gnu.org/licenses/>. |
17 | | |
18 | | In addition, as a special exception, the copyright holders give |
19 | | permission to link the code of portions of this program with the |
20 | | OpenSSL library under certain conditions as described in each |
21 | | individual source file, and distribute linked combinations including |
22 | | the two. |
23 | | |
24 | | You must obey the GNU General Public License in all respects for all |
25 | | of the code used other than OpenSSL. If you modify file(s) with this |
26 | | exception, you may extend this exception to your version of the |
27 | | file(s), but you are not obligated to do so. If you do not wish to do |
28 | | so, delete this exception statement from your version. If you delete |
29 | | this exception statement from all source files in the program, then |
30 | | also delete it here. |
31 | | */ |
32 | | |
33 | | #ifndef COMPLETE_TERMINAL_HPP |
34 | | #define COMPLETE_TERMINAL_HPP |
35 | | |
36 | | #include <cstdint> |
37 | | #include <list> |
38 | | |
39 | | #include "src/terminal/parser.h" |
40 | | #include "src/terminal/terminal.h" |
41 | | |
42 | | /* This class represents the complete terminal -- a UTF8Parser feeding Actions to an Emulator. */ |
43 | | |
44 | | namespace Terminal { |
45 | | class Complete |
46 | | { |
47 | | private: |
48 | | Parser::UTF8Parser parser; |
49 | | Terminal::Emulator terminal; |
50 | | Terminal::Display display; |
51 | | |
52 | | // Only used locally by act(), but kept here as a performance optimization, |
53 | | // to avoid construction/destruction. It must always be empty |
54 | | // outside calls to act() to keep horrible things from happening. |
55 | | Parser::Actions actions; |
56 | | |
57 | | using input_history_type = std::list<std::pair<uint64_t, uint64_t>>; |
58 | | input_history_type input_history; |
59 | | uint64_t echo_ack; |
60 | | |
61 | | static const int ECHO_TIMEOUT = 50; /* for late ack */ |
62 | | |
63 | | public: |
64 | | Complete( size_t width, size_t height ) |
65 | 120 | : parser(), terminal( width, height ), display( false ), actions(), input_history(), echo_ack( 0 ) |
66 | 120 | {} |
67 | | |
68 | | std::string act( const std::string& str ); |
69 | | std::string act( const Parser::Action& act ); |
70 | | |
71 | 120 | const Framebuffer& get_fb( void ) const { return terminal.get_fb(); } |
72 | 0 | void reset_input( void ) { parser.reset_input(); } |
73 | 0 | uint64_t get_echo_ack( void ) const { return echo_ack; } |
74 | | bool set_echo_ack( uint64_t now ); |
75 | | void register_input_frame( uint64_t n, uint64_t now ); |
76 | | int wait_time( uint64_t now ) const; |
77 | | |
78 | | /* interface for Network::Transport */ |
79 | 0 | void subtract( const Complete* ) const {} |
80 | | std::string diff_from( const Complete& existing ) const; |
81 | | std::string init_diff( void ) const; |
82 | | void apply_string( const std::string& diff ); |
83 | | bool operator==( const Complete& x ) const; |
84 | | |
85 | | bool compare( const Complete& other ) const; |
86 | | }; |
87 | | } |
88 | | |
89 | | #endif |