2011-04-18 11:10:18 -07:00
|
|
|
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to
|
|
|
|
* deal in the Software without restriction, including without limitation the
|
|
|
|
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
|
|
* sell copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
* IN THE SOFTWARE.
|
|
|
|
*/
|
2011-04-05 01:43:17 +02:00
|
|
|
|
|
|
|
#include <io.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <windows.h>
|
|
|
|
|
2011-04-19 04:26:32 +02:00
|
|
|
#include "task.h"
|
2011-04-18 14:44:01 +02:00
|
|
|
#include "runner.h"
|
2011-04-05 01:43:17 +02:00
|
|
|
|
2011-04-18 19:25:03 +02:00
|
|
|
|
2011-04-19 04:26:32 +02:00
|
|
|
/*
|
2011-04-18 19:25:03 +02:00
|
|
|
* Define the stuff that MinGW doesn't have
|
|
|
|
*/
|
|
|
|
#ifndef GetFileSizeEx
|
|
|
|
WINBASEAPI BOOL WINAPI GetFileSizeEx(HANDLE hFile,
|
|
|
|
PLARGE_INTEGER lpFileSize);
|
2011-04-18 18:07:32 +02:00
|
|
|
#endif
|
|
|
|
|
2011-04-05 01:43:17 +02:00
|
|
|
|
2011-04-19 04:26:32 +02:00
|
|
|
/* Do platform-specific initialization. */
|
|
|
|
void platform_init() {
|
|
|
|
/* Disable the "application crashed" popup. */
|
|
|
|
SetErrorMode(SEM_FAILCRITICALERRORS | SEM_NOGPFAULTERRORBOX |
|
|
|
|
SEM_NOOPENFILEERRORBOX);
|
|
|
|
|
|
|
|
/* Disable stdio output buffering. */
|
|
|
|
setvbuf(stdout, NULL, _IONBF, 0);
|
|
|
|
setvbuf(stderr, NULL, _IONBF, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-04-05 01:43:17 +02:00
|
|
|
int process_start(char *name, process_info_t *p) {
|
|
|
|
HANDLE file = INVALID_HANDLE_VALUE;
|
|
|
|
HANDLE nul = INVALID_HANDLE_VALUE;
|
|
|
|
WCHAR path[MAX_PATH], filename[MAX_PATH];
|
|
|
|
WCHAR image[MAX_PATH + 1];
|
|
|
|
WCHAR args[MAX_PATH * 2];
|
|
|
|
STARTUPINFOW si;
|
|
|
|
PROCESS_INFORMATION pi;
|
|
|
|
DWORD result;
|
|
|
|
|
2011-04-05 16:44:09 +02:00
|
|
|
if (GetTempPathW(sizeof(path) / sizeof(WCHAR), (WCHAR*)&path) == 0)
|
2011-04-05 01:43:17 +02:00
|
|
|
goto error;
|
2011-04-07 11:02:54 +02:00
|
|
|
if (GetTempFileNameW((WCHAR*)&path, L"oio", 0, (WCHAR*)&filename) == 0)
|
2011-04-05 01:43:17 +02:00
|
|
|
goto error;
|
|
|
|
|
|
|
|
file = CreateFileW((WCHAR*)filename,
|
|
|
|
GENERIC_READ | GENERIC_WRITE,
|
|
|
|
0,
|
|
|
|
NULL,
|
|
|
|
CREATE_ALWAYS,
|
|
|
|
FILE_ATTRIBUTE_TEMPORARY | FILE_FLAG_DELETE_ON_CLOSE,
|
|
|
|
NULL);
|
|
|
|
if (file == INVALID_HANDLE_VALUE)
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
if (!SetHandleInformation(file, HANDLE_FLAG_INHERIT, HANDLE_FLAG_INHERIT))
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
nul = CreateFileA("nul",
|
|
|
|
GENERIC_READ,
|
|
|
|
FILE_SHARE_READ | FILE_SHARE_WRITE,
|
|
|
|
NULL,
|
|
|
|
OPEN_EXISTING,
|
|
|
|
FILE_ATTRIBUTE_NORMAL,
|
|
|
|
NULL);
|
|
|
|
if (nul == INVALID_HANDLE_VALUE)
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
if (!SetHandleInformation(nul, HANDLE_FLAG_INHERIT, HANDLE_FLAG_INHERIT))
|
|
|
|
goto error;
|
|
|
|
|
2011-04-05 16:44:09 +02:00
|
|
|
result = GetModuleFileNameW(NULL, (WCHAR*)&image, sizeof(image) / sizeof(WCHAR));
|
2011-04-05 01:43:17 +02:00
|
|
|
if (result == 0 || result == sizeof(image))
|
|
|
|
goto error;
|
|
|
|
|
2011-04-18 19:25:03 +02:00
|
|
|
if (_snwprintf((wchar_t*)&args,
|
|
|
|
sizeof(args) / sizeof(wchar_t),
|
|
|
|
L"\"%s\" %S",
|
|
|
|
image,
|
|
|
|
name) < 0)
|
2011-04-05 01:43:17 +02:00
|
|
|
goto error;
|
|
|
|
|
|
|
|
memset((void*)&si, 0, sizeof(si));
|
|
|
|
si.cb = sizeof(si);
|
|
|
|
si.dwFlags = STARTF_USESTDHANDLES;
|
|
|
|
si.hStdInput = nul;
|
|
|
|
si.hStdOutput = file;
|
|
|
|
si.hStdError = file;
|
|
|
|
|
|
|
|
if (!CreateProcessW(image, args, NULL, NULL, TRUE,
|
|
|
|
0, NULL, NULL, &si, &pi))
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
CloseHandle(pi.hThread);
|
|
|
|
|
|
|
|
SetHandleInformation(nul, HANDLE_FLAG_INHERIT, 0);
|
|
|
|
SetHandleInformation(file, HANDLE_FLAG_INHERIT, 0);
|
|
|
|
|
|
|
|
p->stdio_in = nul;
|
|
|
|
p->stdio_out = file;
|
|
|
|
p->process = pi.hProcess;
|
|
|
|
p->name = name;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
error:
|
|
|
|
if (file != INVALID_HANDLE_VALUE)
|
|
|
|
CloseHandle(file);
|
|
|
|
if (nul != INVALID_HANDLE_VALUE)
|
2011-04-05 16:44:09 +02:00
|
|
|
CloseHandle(nul);
|
2011-04-05 01:43:17 +02:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Timeout is is msecs. Set timeout < 0 to never time out. */
|
2011-04-05 03:03:45 +02:00
|
|
|
/* Returns 0 when all processes are terminated, -2 on timeout. */
|
2011-04-05 01:43:17 +02:00
|
|
|
int process_wait(process_info_t *vec, int n, int timeout) {
|
|
|
|
int i;
|
|
|
|
HANDLE handles[MAXIMUM_WAIT_OBJECTS];
|
|
|
|
DWORD timeout_api, result;
|
|
|
|
|
|
|
|
/* If there's nothing to wait for, return immedately. */
|
|
|
|
if (n == 0)
|
|
|
|
return 0;
|
|
|
|
|
2011-04-18 14:44:01 +02:00
|
|
|
ASSERT(n <= MAXIMUM_WAIT_OBJECTS);
|
2011-04-05 01:43:17 +02:00
|
|
|
|
|
|
|
for (i = 0; i < n; i++)
|
|
|
|
handles[i] = vec[i].process;
|
|
|
|
|
|
|
|
if (timeout >= 0) {
|
|
|
|
timeout_api = (DWORD)timeout;
|
|
|
|
} else {
|
|
|
|
timeout_api = INFINITE;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = WaitForMultipleObjects(n, handles, TRUE, timeout_api);
|
|
|
|
|
|
|
|
if (result >= WAIT_OBJECT_0 && result < WAIT_OBJECT_0 + n) {
|
|
|
|
/* All processes are terminated. */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (result == WAIT_TIMEOUT) {
|
|
|
|
return -2;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
long int process_output_size(process_info_t *p) {
|
|
|
|
LARGE_INTEGER size;
|
|
|
|
if (!GetFileSizeEx(p->stdio_out, &size))
|
|
|
|
return -1;
|
|
|
|
return (long int)size.QuadPart;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int process_copy_output(process_info_t *p, int fd) {
|
|
|
|
DWORD read;
|
|
|
|
char buf[1024];
|
|
|
|
|
|
|
|
if (SetFilePointer(p->stdio_out, 0, 0, FILE_BEGIN) == INVALID_SET_FILE_POINTER)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
while (ReadFile(p->stdio_out, (void*)&buf, sizeof(buf), &read, NULL) &&
|
|
|
|
read > 0)
|
|
|
|
write(fd, buf, read);
|
|
|
|
|
|
|
|
if (GetLastError() != ERROR_HANDLE_EOF)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
char* process_get_name(process_info_t *p) {
|
|
|
|
return p->name;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int process_terminate(process_info_t *p) {
|
|
|
|
if (!TerminateProcess(p->process, 1))
|
|
|
|
return -1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int process_reap(process_info_t *p) {
|
|
|
|
DWORD exitCode;
|
|
|
|
if (!GetExitCodeProcess(p->process, &exitCode))
|
|
|
|
return -1;
|
|
|
|
return (int)exitCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void process_cleanup(process_info_t *p) {
|
|
|
|
CloseHandle(p->process);
|
|
|
|
CloseHandle(p->stdio_in);
|
|
|
|
CloseHandle(p->stdio_out);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int rewind_cursor() {
|
|
|
|
HANDLE handle;
|
|
|
|
CONSOLE_SCREEN_BUFFER_INFO info;
|
|
|
|
COORD coord;
|
|
|
|
|
|
|
|
handle = (HANDLE)_get_osfhandle(fileno(stdout));
|
|
|
|
if (handle == INVALID_HANDLE_VALUE)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (!GetConsoleScreenBufferInfo(handle, &info))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
coord = info.dwCursorPosition;
|
|
|
|
if (coord.Y <= 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
coord.Y--;
|
|
|
|
coord.X = 0;
|
|
|
|
|
|
|
|
if (!SetConsoleCursorPosition(handle, coord))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return 0;
|
2011-04-18 11:10:18 -07:00
|
|
|
}
|