This repository was archived by the owner on Jul 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathio.c
196 lines (160 loc) · 3.89 KB
/
io.c
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
/* io.c */
#include <windows.h>
#include <stdlib.h>
#include "include/child.h"
#include "child_private.h"
static inline void SetErrorFlag(DWORD dwError, HCHILD hcl)
{
switch (dwError) {
case ERROR_SUCCESS:
break;
case ERROR_BROKEN_PIPE:
case ERROR_NO_DATA:
hcl->iFlags |= CHILD_EPIPE;
break;
case ERROR_IO_INCOMPLETE:
hcl->iFlags |= CHILD_ETIME;
break;
default:
hcl->iFlags |= CHILD_EIO;
break;
}
}
static BOOL HandleOverlappedResult(BOOL bIoSuccess, DWORD dwIoError,
LPOVERLAPPED lpOverlapped,
LPDWORD lpNumberOfBytesTransferred,
HCHILD hcl)
{
BOOL bSuccess;
DWORD dwError;
hcl->iFlags &= ~(CHILD_ETIME | CHILD_EIO);
if (!bIoSuccess && dwIoError != ERROR_IO_PENDING) {
SetErrorFlag(dwIoError, hcl);
return FALSE;
}
WaitForSingleObject(lpOverlapped->hEvent, PIPE_TIMEOUT);
bSuccess = GetOverlappedResult(hcl->hPipe, lpOverlapped,
lpNumberOfBytesTransferred, FALSE);
dwError = GetLastError();
if (!bSuccess) {
if (dwError == ERROR_IO_INCOMPLETE)
CancelIo(hcl->hPipe);
SetErrorFlag(dwError, hcl);
return FALSE;
}
return TRUE;
}
static BOOL DoReadPipe(HCHILD hcl)
{
BOOL bSuccess;
DWORD dwError;
DWORD nRead;
OVERLAPPED Overlapped = { 0 };
Overlapped.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
bSuccess = ReadFile(hcl->hPipe, hcl->pchReadBuf, PIPE_BUFSIZ,
NULL, &Overlapped);
dwError = GetLastError();
bSuccess = HandleOverlappedResult(bSuccess, dwError, &Overlapped,
&nRead, hcl);
CloseHandle(Overlapped.hEvent);
if (!bSuccess)
return FALSE;
hcl->nReadCount = nRead;
if (--hcl->nReadCount < 0) {
hcl->nReadCount = 0;
return FALSE;
}
return TRUE;
}
static int FillBuffer(HCHILD hcl)
{
if (hcl->pchReadBuf == NULL) {
hcl->pchReadBuf = (char *) malloc(PIPE_BUFSIZ);
if (hcl->pchReadBuf == NULL)
return CHILD_EOF;
}
hcl->pchReadPos = hcl->pchReadBuf;
if (!DoReadPipe(hcl))
return CHILD_EOF;
return (unsigned char) *hcl->pchReadPos++;
}
#define GetChar(hcl) (--(hcl)->nReadCount >= 0 \
? *(hcl)->pchReadPos++ : FillBuffer(hcl))
_CHILDIMP char *__cdecl child_gets(char *sz, int n, HCHILD hcl)
{
register int ch;
register char *pch;
pch = sz;
while (--n > 0 && (ch = GetChar(hcl)) != CHILD_EOF) {
if (ch != '\r')
*pch++ = ch;
else
n++;
if (ch == '\n')
break;
}
*pch = '\0';
return (ch == CHILD_EOF && pch == sz) ? NULL : sz;
}
static BOOL DoWritePipe(HCHILD hcl)
{
BOOL bSuccess;
DWORD dwError;
DWORD nToWrite;
DWORD nWritten;
OVERLAPPED Overlapped = { 0 };
Overlapped.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
nToWrite = hcl->pchWritePos - hcl->pchWriteBuf;
bSuccess = WriteFile(hcl->hPipe, hcl->pchWriteBuf, nToWrite,
NULL, &Overlapped);
dwError = GetLastError();
bSuccess = HandleOverlappedResult(bSuccess, dwError,
&Overlapped, &nWritten, hcl);
CloseHandle(Overlapped.hEvent);
if (!bSuccess || nToWrite != nWritten)
return FALSE;
return TRUE;
}
static int FlushBuffer(int ch, HCHILD hcl)
{
if (hcl->pchWriteBuf == NULL) {
hcl->pchWriteBuf = (char *) malloc(PIPE_BUFSIZ);
if (hcl->pchWriteBuf == NULL)
return CHILD_EOF;
} else if (!DoWritePipe(hcl)) {
return CHILD_EOF;
}
hcl->nWriteCount = PIPE_BUFSIZ - 1;
hcl->pchWritePos = hcl->pchWriteBuf;
*hcl->pchWritePos++ = (char)ch;
return ch;
}
static inline int Flush(HCHILD hcl)
{
int ch;
ch = FlushBuffer(0, hcl);
hcl->nWriteCount = PIPE_BUFSIZ;
hcl->pchWritePos = hcl->pchWriteBuf;
return ch;
}
#define PutChar(ch, hcl) (--(hcl)->nWriteCount >= 0 \
? *(hcl)->pchWritePos++ = (char) (ch) : FlushBuffer((ch), hcl))
_CHILDIMP int __cdecl child_puts(const char *csz, HCHILD hcl)
{
int ch;
while ((ch = *csz++)) {
if (ch == '\n') {
PutChar('\r', hcl);
PutChar('\n', hcl);
Flush(hcl);
} else {
PutChar(ch, hcl);
}
}
return (hcl->iFlags & (CHILD_ETIME | CHILD_EPIPE | CHILD_EIO))
? CHILD_EOF : 0;
}
_CHILDIMP int __cdecl child_flush(HCHILD hcl)
{
return Flush(hcl);
}