bf86afb9a0780a79ebce1087e8e16ce558b9dac7
[ghc-hetmet.git] / ghc / lib / std / cbits / inputReady.c
1 /* 
2  * (c) The GRASP/AQUA Project, Glasgow University, 1994-1998
3  *
4  * $Id: inputReady.c,v 1.10 2001/12/03 20:59:08 sof Exp $
5  *
6  * hReady Runtime Support
7  */
8
9 /* select and supporting types is not Posix */
10 /* #include "PosixSource.h" */
11 #include "HsStd.h"
12
13 /*
14  * inputReady(fd) checks to see whether input is available on the file
15  * descriptor 'fd'.  Input meaning 'can I safely read at least a
16  * *character* from this file object without blocking?'
17  */
18 int
19 inputReady(int fd, int msecs, int isSock)
20 {
21   if 
22 #ifndef mingw32_TARGET_OS
23     ( 1 ) {
24 #else
25     ( isSock ) {
26     int maxfd, ready;
27     fd_set rfd;
28     struct timeval tv;
29
30     FD_ZERO(&rfd);
31     FD_SET(fd, &rfd);
32
33     /* select() will consider the descriptor set in the range of 0 to
34      * (maxfd-1) 
35      */
36     maxfd = fd + 1;
37     tv.tv_sec  = msecs / 1000;
38     tv.tv_usec = msecs % 1000;
39
40     while ((ready = select(maxfd, &rfd, NULL, NULL, &tv)) < 0 ) {
41       if (errno != EINTR ) {
42           return -1;
43       }
44    }
45
46     /* 1 => Input ready, 0 => not ready, -1 => error */
47     return (ready);
48 #endif
49 #ifdef mingw32_TARGET_OS
50     } else {
51       DWORD rc;
52       HANDLE hFile = (HANDLE)_get_osfhandle(fd);
53     
54       rc = WaitForSingleObject( hFile,
55                                 msecs /*millisecs*/);
56     
57       /* 1 => Input ready, 0 => not ready, -1 => error */
58       switch (rc) {
59        case WAIT_TIMEOUT: return 0;
60        case WAIT_OBJECT_0: return 1;
61        default: return -1;
62       }
63     }
64 #endif
65 }