-
Notifications
You must be signed in to change notification settings - Fork 0
/
pipe.cpp
261 lines (225 loc) · 9.31 KB
/
pipe.cpp
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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
/* wcecompat: Windows CE C Runtime Library "compatibility" library.
*
* Copyright (C) 2001-2002 Essemer Pty Ltd. All rights reserved.
* http://www.essemer.com.au/
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <windows.h>
#include <stdio.h>
#include <tchar.h>
#include "pipe.h"
#include "ts_string.h"
// dwCreationDisposition can be one of the following values from CreateFile:
// CREATE_NEW Fail if the pipe already exists
// OPEN_EXISTING Fail if the pipe does not exist
Pipe* createPipe(const TCHAR* name, DWORD dwCreationDisposition)
{
if (dwCreationDisposition != CREATE_NEW && dwCreationDisposition != OPEN_EXISTING)
return NULL;
BOOL result = FALSE;
Pipe* pipe = new Pipe;
if (pipe == NULL)
return NULL;
pipe->hReadableEvent = NULL;
pipe->hWriteableEvent = NULL;
pipe->hMutex = NULL;
pipe->hFileMapping = NULL;
pipe->pBuffer = NULL;
pipe->bufferLength = 16384;
TCHAR mutexName[100];
_stprintf(mutexName, TEXT("%s.mutex"), name);
pipe->hMutex = CreateMutex(NULL, FALSE, mutexName);
if (pipe->hMutex == NULL)
goto cleanup;
else if (GetLastError() == ERROR_ALREADY_EXISTS)
{
if (dwCreationDisposition == CREATE_NEW)
goto cleanup;
}
else
{
if (dwCreationDisposition == OPEN_EXISTING)
goto cleanup;
}
TCHAR readableEventName[100];
_stprintf(readableEventName, TEXT("%s.readable"), name);
pipe->hReadableEvent = CreateEvent(NULL, TRUE, FALSE, readableEventName);
if (pipe->hReadableEvent == NULL)
goto cleanup;
else if (GetLastError() == ERROR_ALREADY_EXISTS)
{
if (dwCreationDisposition == CREATE_NEW)
goto cleanup;
}
else
{
if (dwCreationDisposition == OPEN_EXISTING)
goto cleanup;
}
TCHAR writeableEventName[100];
_stprintf(writeableEventName, TEXT("%s.writeable"), name);
pipe->hWriteableEvent = CreateEvent(NULL, TRUE, TRUE, writeableEventName);
if (pipe->hWriteableEvent == NULL)
goto cleanup;
else if (GetLastError() == ERROR_ALREADY_EXISTS)
{
if (dwCreationDisposition == CREATE_NEW)
goto cleanup;
}
else
{
if (dwCreationDisposition == OPEN_EXISTING)
goto cleanup;
}
TCHAR memName[100];
_stprintf(memName, TEXT("%s.mem"), name);
pipe->hFileMapping = CreateFileMapping((HANDLE)INVALID_HANDLE_VALUE, NULL, PAGE_READWRITE, 0, pipe->bufferLength, memName);
if (pipe->hFileMapping == NULL)
goto cleanup;
else if (GetLastError() == ERROR_ALREADY_EXISTS)
{
if (dwCreationDisposition == CREATE_NEW)
goto cleanup;
}
else
{
if (dwCreationDisposition == OPEN_EXISTING)
goto cleanup;
}
pipe->pBuffer = (char*)MapViewOfFile(pipe->hFileMapping, FILE_MAP_WRITE, 0, 0, 0);
if (pipe->pBuffer == NULL)
goto cleanup;
memset(pipe->pBuffer, 0, pipe->bufferLength);
result = TRUE;
cleanup:
if (result == FALSE)
{
closePipe(pipe);
pipe = NULL;
}
return pipe;
}
void closePipe(Pipe* pipe)
{
if (pipe != NULL)
{
if (pipe->hReadableEvent != NULL)
CloseHandle(pipe->hReadableEvent);
if (pipe->hWriteableEvent != NULL)
CloseHandle(pipe->hWriteableEvent);
if (pipe->hMutex != NULL)
CloseHandle(pipe->hMutex);
if (pipe->pBuffer != NULL)
UnmapViewOfFile(pipe->pBuffer);
if (pipe->hFileMapping != NULL)
CloseHandle(pipe->hFileMapping);
delete pipe;
}
}
bool pipeReadable(Pipe* pipe)
{
if (pipe == NULL)
return false;
// check if the pipe is readable
return (WaitForSingleObject(pipe->hReadableEvent, 0) == WAIT_OBJECT_0);
}
int pipeRead(Pipe* pipe, unsigned char* data, int max_len)
{
int bytes_read = 0;
if (pipe == NULL)
return 0;
// wait for pipe to become readable
// NOTE: what if the caller already did this, such as the "select" loop in cerunner???
// this is a waste and unnecessary penalty then
WaitForSingleObject(pipe->hReadableEvent, INFINITE);
// serialise access through mutex (timeout after 5 seconds)
DWORD waitResult = WaitForSingleObject(pipe->hMutex, 5000);
if (waitResult == WAIT_FAILED || waitResult == WAIT_TIMEOUT)
return 0;
// get length from shared memory
int length = ((DWORD*)pipe->pBuffer)[0];
int maxLength = pipe->bufferLength - sizeof(DWORD);
bool full = (length >= maxLength);
// copy data
if (max_len >= (int)length)
{
bytes_read = length;
memcpy(data, &((DWORD*)pipe->pBuffer)[1], bytes_read);
((DWORD*)pipe->pBuffer)[0] = 0;
ResetEvent(pipe->hReadableEvent); // no data left for reading
if (full)
SetEvent(pipe->hWriteableEvent); // now writeable (only set if was full)
}
else
{
bytes_read = max_len;
memcpy(data, &((DWORD*)pipe->pBuffer)[1], bytes_read);
length -= bytes_read;
((DWORD*)pipe->pBuffer)[0] = length;
memmove(&((DWORD*)pipe->pBuffer)[1], ((unsigned char*)&((DWORD*)pipe->pBuffer)[1])+bytes_read, length);
if (full && length < maxLength)
SetEvent(pipe->hWriteableEvent); // now writeable (only set if was full)
}
// release mutex
ReleaseMutex(pipe->hMutex);
return bytes_read;
}
int pipeWrite(Pipe* pipe, unsigned char* data, int length)
{
int bytes_written = 0;
if (pipe == NULL)
return EOF;
while (length > 0)
{
// wait for pipe to become writeable
// NOTE: what if the caller already did this, such as the "select" loop in cerunner???
// this is a waste and unnecessary penalty then
WaitForSingleObject(pipe->hWriteableEvent, INFINITE);
// serialise access through mutex (timeout after 5 seconds)
DWORD waitResult = WaitForSingleObject(pipe->hMutex, 5000);
if (waitResult == WAIT_FAILED || waitResult == WAIT_TIMEOUT)
return EOF;
DWORD originalLength = ((DWORD*)pipe->pBuffer)[0];
DWORD currentLength = originalLength;
DWORD maxLength = pipe->bufferLength - sizeof(DWORD);
if (currentLength < maxLength)
{
DWORD lengthToWriteNow = length;
if (currentLength+length > maxLength)
lengthToWriteNow = maxLength - currentLength;
// copy data into shared memory
memcpy(((unsigned char*)&((DWORD*)pipe->pBuffer)[1])+currentLength, data, lengthToWriteNow);
// write length into shared memory
currentLength += lengthToWriteNow;
((DWORD*)pipe->pBuffer)[0] = currentLength;
if (currentLength >= (DWORD)maxLength)
ResetEvent(pipe->hWriteableEvent); // buffer full, no longer writeable
// keep track of total bytes written during this writePipe() call
bytes_written += lengthToWriteNow;
// adjust data pointer and length for next write
data += bytes_written;
length -= bytes_written;
}
// signal data available for reading
if (originalLength == 0)
{ // only signal if there was no data in the buffer
SetEvent(pipe->hReadableEvent);
}
// release mutex
ReleaseMutex(pipe->hMutex);
}
return bytes_written;
}