This repository was archived by the owner on Oct 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathcommon.hpp
98 lines (91 loc) · 2.27 KB
/
common.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/* vim: set et ts=4 sw=4 cindent:
*
* FreeRDP-WebConnect,
* A gateway for seamless access to your RDP-Sessions in any HTML5-compliant browser.
*
* Copyright 2012 Fritz Elfert <wsgate@fritz-elfert.de>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef _COMMON_H_
#define _COMMON_H_
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#ifdef HAVE_CONIO_H
# include <conio.h>
#endif
#ifdef HAVE_TERMIOS_H
# include <termios.h>
#endif
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include <string>
/**
* The namespace of the main proxy application.
*/
namespace wsgate {
/**
* A small helper class for providing cross-platform non-blocking keyboard input.
*/
class kbdio {
public:
/// Constructor
kbdio()
#ifndef _WIN32
: st(termios()), stsave(termios())
#endif
{
#ifndef _WIN32
tcgetattr(0, &stsave);
memcpy(&st, &stsave, sizeof(st));
st.c_lflag &= ~ICANON;
st.c_cc[VMIN] = st.c_cc[VTIME] = 0;
tcsetattr(0, TCSANOW, &st);
#endif
}
#ifdef _WIN32
bool qpressed() {
char c;
bool ret = false;
while (0 != _kbhit()) {
c = _getch();
ret |= ('q' == c);
}
return ret;
}
#else
/// Destructor
~kbdio() {
tcsetattr(0, TCSANOW, &stsave);
}
/**
* Check if the user pressed 'q'.
* @return true, if the 'q' key was pressed.
*/
bool qpressed() {
char c;
bool ret = false;
while (1 == read(0, &c, 1)) {
ret |= ('q' == c);
}
return ret;
}
private:
struct termios st;
struct termios stsave;
#endif
};
}
#endif