X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=cbits%2FconsUtils.c;h=b20eb7ae07c496c55b20c8943fc058b868863aab;hb=7dbb606d7b57cdad87a0ffbdb6ea4a274ebca7c0;hp=3514d63c2b1bf6a8c7bef9c5fcf27be1146143d7;hpb=2e909d6efed2182f4d49238ffc3be0cb9f28ddfc;p=ghc-base.git diff --git a/cbits/consUtils.c b/cbits/consUtils.c index 3514d63..b20eb7a 100644 --- a/cbits/consUtils.c +++ b/cbits/consUtils.c @@ -3,18 +3,40 @@ * * Win32 Console API support */ -#include "config.h" -#if defined(mingw32_TARGET_OS) || defined(cygwin32_TARGET_OS) || defined(__MINGW32__) || defined(_MSC_VER) +#if defined(_MSC_VER) || defined(__MINGW32__) || defined(_WIN32) || defined(__CYGWIN__) /* to the end */ #include "consUtils.h" #include #include -#if defined(cygwin32_TARGET_OS) +#if defined(__CYGWIN__) #define _get_osfhandle get_osfhandle #endif +int is_console__(int fd) { + DWORD st; + HANDLE h; + if (!_isatty(fd)) { + /* TTY must be a character device */ + return 0; + } + h = (HANDLE)_get_osfhandle(fd); + if (h == INVALID_HANDLE_VALUE) { + /* Broken handle can't be terminal */ + return 0; + } + if (!GetConsoleMode(h, &st)) { + /* GetConsoleMode appears to fail when it's not a TTY. In + particular, it's what most of our terminal functions + assume works, so if it doesn't work for all intents + and purposes we're not dealing with a terminal. */ + return 0; + } + return 1; +} + + int set_console_buffering__(int fd, int cooked) { @@ -64,4 +86,26 @@ get_console_echo__(int fd) return -1; } -#endif /* defined(mingw32_TARGET_OS) || ... */ +int +flush_input_console__(int fd) +{ + HANDLE h = (HANDLE)_get_osfhandle(fd); + + if ( h != INVALID_HANDLE_VALUE ) { + /* If the 'fd' isn't connected to a console; treat the flush + * operation as a NOP. + */ + DWORD unused; + if ( !GetConsoleMode(h,&unused) && + GetLastError() == ERROR_INVALID_HANDLE ) { + return 0; + } + if ( FlushConsoleInputBuffer(h) ) { + return 0; + } + } + /* ToDo: translate GetLastError() into something errno-friendly */ + return -1; +} + +#endif /* defined(__MINGW32__) || ... */