14 #define ErrorBufferSize 4096
15 #define dwMaxHandles 32
19 static char ErrorBuffer[ErrorBufferSize];
23 static bool pipex_eof_input(pipex_t *pipex);
24 static void pipex_set_eof_input(pipex_t *pipex);
25 static void pipex_set_active(pipex_t *pipex);
26 static int pipex_read_data(pipex_t *pipex);
27 static void pipex_read_input(pipex_t *pipex);
33 static char * win32_error(){
35 FORMAT_MESSAGE_FROM_SYSTEM,
47 static DWORD WINAPI ThreadProc(LPVOID lpParam){
48 pipex_t *p=(pipex_t *) lpParam;
49 while(!pipex_eof_input(p)){
50 if(p->nReadEnd<LINE_INPUT_MAX_CHAR-1){
53 // wait until there is room in buffer
62 void pipex_open(pipex_t *pipex,
64 const char *szWorkingDir,
65 const char *szProcFile) {
66 DWORD dwMode, dwThreadId;
67 HANDLE hStdinRead, hStdinWrite, hStdoutRead, hStdoutWrite, hThread;
68 SECURITY_ATTRIBUTES sa;
70 PROCESS_INFORMATION pi;
75 pipex->command=szProcFile;
76 pipex->quit_pending=FALSE;
78 if (szProcFile == NULL) {
79 pipex->hInput = GetStdHandle(STD_INPUT_HANDLE);
80 pipex->hOutput = GetStdHandle(STD_OUTPUT_HANDLE);
81 pipex->bConsole = GetConsoleMode(pipex->hInput, &dwMode);
84 sa.nLength = sizeof(SECURITY_ATTRIBUTES);
85 sa.bInheritHandle = TRUE;
86 sa.lpSecurityDescriptor = NULL;
87 CreatePipe(&hStdinRead, &hStdinWrite, &sa, 0);
88 CreatePipe(&hStdoutRead, &hStdoutWrite, &sa, 0);
89 si.cb = sizeof(STARTUPINFO);
90 si.lpReserved = si.lpDesktop = si.lpTitle = NULL;
91 si.dwFlags = STARTF_USESTDHANDLES;
93 si.lpReserved2 = NULL;
94 si.hStdInput = hStdinRead;
95 si.hStdOutput = hStdoutWrite;
96 si.hStdError = hStdoutWrite;
97 if((szCurrentDir = (char*)_getcwd( NULL, 0 )) == NULL )
98 my_fatal("pipex_open(): no current directory: %s\n",
100 if(_chdir(szWorkingDir)){
101 my_fatal("pipex_open(): %s: %s\n",
105 if(CreateProcess(NULL,
110 DETACHED_PROCESS | CREATE_NEW_PROCESS_GROUP,
115 pipex->hProcess=pi.hProcess;
116 CloseHandle(pi.hThread);
117 CloseHandle(hStdinRead);
118 CloseHandle(hStdoutWrite);
119 pipex->hInput = hStdoutRead;
120 pipex->hOutput = hStdinWrite;
121 pipex->bConsole = FALSE;
124 my_fatal("pipex_open(): %s: %s",szProcFile,win32_error());
126 _chdir(szCurrentDir);
128 if (pipex->bConsole) {
129 SetConsoleMode(pipex->hInput,
130 dwMode & ~(ENABLE_MOUSE_INPUT | ENABLE_WINDOW_INPUT));
131 FlushConsoleInputBuffer(pipex->hInput);
133 fdInput=_open_osfhandle((long) pipex->hInput,_O_RDONLY);
135 my_fatal("pipex_open(): %s",strerror(errno));
137 pipex->fpInput=fdopen(fdInput,"r");
138 if(pipex->fpInput==NULL){
139 my_fatal("pipex_open(): %s",strerror(errno));
142 pipex->lpFeedEnd = NULL;
143 InitializeCriticalSection(&(pipex->CriticalSection));
144 pipex->hEvent=CreateEvent(NULL, // default security
146 FALSE, // not signaled
149 if(!(pipex->hEvent)){
150 my_fatal("pipex_open(): %s",win32_error());
152 hThread=CreateThread(NULL, // default security
153 0, // default stacksize
154 ThreadProc, // worker function
155 pipex, // tell worker about ourselves
156 0, // run immediately
157 &dwThreadId // dropped, but needed for the call to work in Win9x
160 my_fatal("pipex_open(): %s",win32_error());
162 pipex->dwWriteIndex=0;
163 pipex_set_active(pipex);
167 // pipex_wait_event(pipex)
169 void pipex_wait_event(pipex_t *pipex[]){
170 HANDLE hHandles[dwMaxHandles];
171 DWORD dwHandleCount=0;
173 while((p=pipex[dwHandleCount])!=NULL){
174 ASSERT((p->hEvent)!=0);
175 if(dwHandleCount>=dwMaxHandles){
176 my_fatal("pipex_wait_event(): Too many objects to wait for");
178 hHandles[dwHandleCount++]=p->hEvent;
180 WaitForMultipleObjects(dwHandleCount, // count
182 FALSE, // return if one object is signaled
183 INFINITE // no timeout
189 void pipex_send_eof(pipex_t *pipex) {
190 my_log("Adapter->%s: EOF\n",pipex->name);
191 CloseHandle(pipex->hOutput);
196 /* This routine waits for kill_timeout milliseconds for
197 * the process to exit by itself. If that doesn't
198 * happen it will kill the process.
201 void pipex_exit(pipex_t *pipex, int kill_timeout) {
205 CloseHandle(pipex->hInput);
206 CloseHandle(pipex->hOutput);
207 // ExitProcess(pipex->hProcess,0);
209 my_log("POLYGLOT Waiting for child process to exit.\n");
213 while(elapsed_time<kill_timeout){
214 GetExitCodeProcess(pipex->hProcess,&lpexit);
215 if(lpexit==STILL_ACTIVE){
216 my_log("POLYGLOT Child has not exited yet. Sleeping %dms.\n", WAIT_GRANULARITY);
217 my_sleep(WAIT_GRANULARITY);
218 elapsed_time+=WAIT_GRANULARITY;
226 my_log("POLYGLOT Child wouldn't exit by itself. Terminating it.\n");
227 TerminateProcess(pipex->hProcess,lpexit);
229 CloseHandle(pipex->hProcess);
231 if(!pipex->quit_pending){
232 // suppress further errors
233 pipex->quit_pending=TRUE;
234 my_fatal("pipex_exit(): %s: child exited unexpectedly.\n",pipex->command);
241 static bool pipex_eof_input(pipex_t *pipex){
243 EnterCriticalSection(&(pipex->CriticalSection));
244 ret=(pipex->state)&PIPEX_EOF;
245 LeaveCriticalSection(&(pipex->CriticalSection));
249 // pipex_set_eof_input()
251 static void pipex_set_eof_input(pipex_t *pipex){
252 EnterCriticalSection(&(pipex->CriticalSection));
253 (pipex->state)|=PIPEX_EOF;
254 LeaveCriticalSection(&(pipex->CriticalSection));
260 * This function returns TRUE if and only if the pipes have succesfully
261 * been created and the client has been started.
265 bool pipex_active(pipex_t *pipex){
267 EnterCriticalSection(&(pipex->CriticalSection));
268 ret=(pipex->state)&PIPEX_ACTIVE;
269 LeaveCriticalSection(&(pipex->CriticalSection));
273 // pipex_set_active()
275 static void pipex_set_active(pipex_t *pipex){
276 EnterCriticalSection(&(pipex->CriticalSection));
277 (pipex->state)|=PIPEX_ACTIVE;
278 LeaveCriticalSection(&(pipex->CriticalSection));
283 static int pipex_read_data(pipex_t *pipex){
286 // No protection. Access to nReadEnd is atomic.
287 // It is not a problem that nReadEnd becomes smaller after the call.
288 // This just means we have read less than we could have.
289 ret=fgets(pipex->lpReadBuffer,
290 LINE_INPUT_MAX_CHAR-(pipex->nReadEnd),
293 pipex_set_eof_input(pipex);
294 (pipex->lpReadBuffer)[0]='\0';
297 dwBytes=strlen(pipex->lpReadBuffer);
298 (pipex->lpReadBuffer)[dwBytes]='\0';
302 // pipex_read_input()
304 static void pipex_read_input(pipex_t *pipex) {
306 BOOL bSetEvent=FALSE;
307 // ReadData is outside the critical section otherwise everything
308 // would block during the blocking read
309 ret=pipex_read_data(pipex);
310 EnterCriticalSection(&(pipex->CriticalSection));
311 if(!pipex_eof_input(pipex)){
312 if(ret+(pipex->nReadEnd)>=LINE_INPUT_MAX_CHAR){
313 my_fatal("pipex_read_input(): Internal error: buffer overflow\n");
315 memcpy((pipex->lpBuffer)+(pipex->nReadEnd),(pipex->lpReadBuffer),ret+1);
316 (pipex->nReadEnd) += ret;
317 if(!(pipex->lpFeedEnd)){
319 (char *) memchr(pipex->lpBuffer,'\n',pipex->nReadEnd);
321 if(pipex->lpFeedEnd){
323 }else if((pipex->nReadEnd)>=LINE_INPUT_MAX_CHAR-1){
324 my_fatal("pipex_read_input(): LINE_INPUT_MAX_CHAR is equal to %d which is too small to contain a full line of engine output or GUI input.\n",LINE_INPUT_MAX_CHAR);
327 LeaveCriticalSection(&(pipex->CriticalSection));
328 if(pipex_eof_input(pipex) || bSetEvent){
329 SetEvent(pipex->hEvent);
336 * This function returns TRUE if and only if the input buffer does not
337 * contain a full line of data and EOF was encountered by
338 * the working thread.
342 bool pipex_eof(pipex_t *pipex){
344 EnterCriticalSection(&(pipex->CriticalSection));
345 if((pipex->lpFeedEnd) != NULL){
347 }else if(pipex_eof_input(pipex)){
352 LeaveCriticalSection(&(pipex->CriticalSection));
359 * This function returns FALSE if and only if the asynchronously filled
360 * input buffer does not contain a full line of data.
361 * In other words it operates in non-blocking mode.
365 bool pipex_readln_nb(pipex_t *pipex, char *szLineStr) {
370 EnterCriticalSection(&(pipex->CriticalSection));
371 if ((pipex->lpFeedEnd) == NULL) {
374 nFeedEnd = pipex->lpFeedEnd - pipex->lpBuffer;
375 memcpy(szLineStr, pipex->lpBuffer, nFeedEnd+1);
376 szLineStr[nFeedEnd] = '\0';
378 // temp hack: stolen from util.c
379 // remove CRs and LFs
382 while ((c=szLineStr[src++]) != '\0') {
383 if (c != '\r' && c != '\n') szLineStr[dst++] = c;
385 szLineStr[dst] = '\0';
386 ASSERT(strchr(szLineStr,'\n')==NULL)
387 ASSERT(strchr(szLineStr,'\r')==NULL)
390 pipex->nReadEnd -= nFeedEnd;
391 memcpy(pipex->lpBuffer, pipex->lpBuffer + nFeedEnd, pipex->nReadEnd+1);
393 (char *) memchr(pipex->lpBuffer, '\n', pipex->nReadEnd);
396 LeaveCriticalSection(&(pipex->CriticalSection));
398 my_log("%s->Adapter: %s\n",pipex->name,szLineStr);
406 * This function returns FALSE if and only if EOF has been encountered by
407 * the working thread and no full line of data is present in the input buffer.
409 * If there is a full line of data present in the input buffer it returns
412 * If none of these conditions is satisfied it blocks.
414 * As the name say this function is strictly for line input.
415 * An incomplete line of data (i.e. not ending with \n) is lost when EOF
420 bool pipex_readln(pipex_t *pipex, char *szLineStr) {
421 while(!pipex_eof(pipex)){
422 if (pipex_readln_nb(pipex,szLineStr)) {
425 WaitForSingleObject(pipex->hEvent,INFINITE);
428 my_log("%s->Adapter: EOF\n",pipex->name);
433 // GetWin32Priority()
435 static DWORD GetWin32Priority(int nice)
438 REALTIME_PRIORITY_CLASS 0x00000100
439 HIGH_PRIORITY_CLASS 0x00000080
440 ABOVE_NORMAL_PRIORITY_CLASS 0x00008000
441 NORMAL_PRIORITY_CLASS 0x00000020
442 BELOW_NORMAL_PRIORITY_CLASS 0x00004000
443 IDLE_PRIORITY_CLASS 0x00000040
445 if (nice < -15) return 0x00000080;
446 if (nice < 0) return 0x00008000;
447 if (nice == 0) return 0x00000020;
448 if (nice < 15) return 0x00004000;
452 // pipex_set_priority()
454 void pipex_set_priority(pipex_t *pipex, int value){
456 if(!SetPriorityClass(pipex->hProcess,
457 GetWin32Priority(value))){
458 my_log("POLYGLOT Unable to change priority\n");
463 // pipex_set_affinit()
465 typedef void (WINAPI *SPAM)(HANDLE, int);
466 void pipex_set_affinity(pipex_t *pipex, int value){
469 if(pipex->hProcess) return;
470 if(value==-1) return;
472 pSPAM = (SPAM) GetProcAddress(
473 GetModuleHandle(TEXT("kernel32.dll")),
474 "SetProcessAffinityMask");
476 // [HGM] avoid crash on Win95 by first checking if API call exists
477 pSPAM(pipex->hProcess,value);
479 my_log("POLYGLOT API call \"SetProcessAffinityMask\" not available\n");
485 void pipex_write(pipex_t *pipex, const char *szLineStr) {
487 size=sizeof(pipex->szWriteBuffer)-pipex->dwWriteIndex;
488 written=snprintf(pipex->szWriteBuffer + pipex->dwWriteIndex,
492 // snprintf returns how many bytes should have been written
493 // (not including the trailing zero)
494 // old versions of glibc and msvcrt return -1 in
495 // case of truncated output.
496 if(written>=size || written<0){
497 my_fatal("engine_send(): write_buffer overflow\n");
499 pipex->dwWriteIndex+=written;
506 void pipex_writeln(pipex_t *pipex, const char *szLineStr) {
508 DWORD dwLengthWriteBuffer;
509 pipex_write(pipex, szLineStr);
510 my_log("Adapter->%s: %s\n",pipex->name,pipex->szWriteBuffer);
512 dwLengthWriteBuffer = strlen(pipex->szWriteBuffer);
513 if(dwLengthWriteBuffer>=sizeof(pipex->szWriteBuffer)-3){
514 my_fatal("pipex_writeln(): write buffer overflow\n");
516 pipex->szWriteBuffer[dwLengthWriteBuffer] = '\r';
517 pipex->szWriteBuffer[dwLengthWriteBuffer + 1] = '\n';
518 // for easy debugging
519 pipex->szWriteBuffer[dwLengthWriteBuffer + 2] = '\0';
520 WriteFile(pipex->hOutput, pipex->szWriteBuffer,
521 dwLengthWriteBuffer + 2,
524 printf("%s\n",pipex->szWriteBuffer);
527 pipex->dwWriteIndex = 0;