Line data Source code
1 : // Copyright (c) 2018-2022 The Bitcoin Core developers 2 : // Distributed under the MIT software license, see the accompanying 3 : // file COPYING or http://www.opensource.org/licenses/mit-license.php. 4 : 5 : #include <compat/stdin.h> 6 : 7 : #include <cstdio> 8 : 9 : #ifdef WIN32 10 : #include <windows.h> 11 : #include <io.h> 12 : #else 13 : #include <termios.h> 14 : #include <unistd.h> 15 : #include <poll.h> 16 : #endif 17 : 18 : // https://stackoverflow.com/questions/1413445/reading-a-password-from-stdcin 19 0 : void SetStdinEcho(bool enable) 20 : { 21 : #ifdef WIN32 22 : HANDLE hStdin = GetStdHandle(STD_INPUT_HANDLE); 23 : DWORD mode; 24 : GetConsoleMode(hStdin, &mode); 25 : if (!enable) { 26 : mode &= ~ENABLE_ECHO_INPUT; 27 : } else { 28 : mode |= ENABLE_ECHO_INPUT; 29 : } 30 : SetConsoleMode(hStdin, mode); 31 : #else 32 : struct termios tty; 33 0 : tcgetattr(STDIN_FILENO, &tty); 34 0 : if (!enable) { 35 0 : tty.c_lflag &= ~ECHO; 36 0 : } else { 37 0 : tty.c_lflag |= ECHO; 38 : } 39 0 : (void)tcsetattr(STDIN_FILENO, TCSANOW, &tty); 40 : #endif 41 0 : } 42 : 43 0 : bool StdinTerminal() 44 : { 45 : #ifdef WIN32 46 : return _isatty(_fileno(stdin)); 47 : #else 48 0 : return isatty(fileno(stdin)); 49 : #endif 50 : } 51 : 52 0 : bool StdinReady() 53 : { 54 0 : if (!StdinTerminal()) { 55 0 : return true; 56 : } 57 : #ifdef WIN32 58 : return false; 59 : #else 60 : struct pollfd fds; 61 0 : fds.fd = STDIN_FILENO; 62 0 : fds.events = POLLIN; 63 0 : return poll(&fds, 1, 0) == 1; 64 : #endif 65 0 : } 66 : 67 0 : NoechoInst::NoechoInst() { SetStdinEcho(false); } 68 0 : NoechoInst::~NoechoInst() { SetStdinEcho(true); }