Menu

[0b4401]: / PythonScript / src / ProcessExecute.cpp  Maximize  Restore  History

Download this file

412 lines (327 with data), 11.3 kB

  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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
#include "stdafx.h"
#include "ProcessExecute.h"
#include "WcharMbcsConverter.h"
/* The Console Redirection is taken from the TagsView plugin from Vitaliy Dovgan.
* My thanks to him for pointing me in the right direction. :)
* And of course for NppExec, without which, Notepad++ would only
* be half as powerful.
*/
#define DEFAULT_PIPE_SIZE 1
#define PIPE_READBUFSIZE 4096
const char *ProcessExecute::STREAM_NAME_STDOUT = "OUT";
const char *ProcessExecute::STREAM_NAME_STDERR = "ERR";
ProcessExecute::ProcessExecute()
{
}
ProcessExecute::~ProcessExecute()
{
}
bool ProcessExecute::isWindowsNT()
{
OSVERSIONINFO osv;
osv.dwOSVersionInfoSize = sizeof(osv);
::GetVersionEx(&osv);
return (osv.dwPlatformId >= VER_PLATFORM_WIN32_NT);
}
DWORD ProcessExecute::execute(const TCHAR *commandLine, boost::python::object pyStdout, boost::python::object pyStderr, boost::python::object /*pyStdin*/, bool spoolToFile /* = false */)
{
DWORD returnValue = 0;
if (pyStdout.is_none())
throw process_start_exception("stdout cannot be None");
if (pyStderr.is_none())
throw process_start_exception("stderr cannot be None");
// Create out, err, and in pipes (ignore in, initially)
SECURITY_DESCRIPTOR sd;
SECURITY_ATTRIBUTES sa;
process_start_exception exceptionThrown("");
bool thrown = false;
PipeReaderArgs stdoutReaderArgs;
PipeReaderArgs stderrReaderArgs;
// Only used if spooling, but we need to delete it later.
TCHAR tmpFilename[MAX_PATH] = {0};
HANDLE hStdOutReadPipe, hStdOutWritePipe;
HANDLE hStdErrReadPipe, hStdErrWritePipe;
Py_BEGIN_ALLOW_THREADS
try
{
if (isWindowsNT())
{
::InitializeSecurityDescriptor( &sd, SECURITY_DESCRIPTOR_REVISION );
::SetSecurityDescriptorDacl( &sd, TRUE, NULL, FALSE );
sa.lpSecurityDescriptor = &sd;
}
else
{
sa.lpSecurityDescriptor = NULL;
}
sa.nLength = sizeof(SECURITY_ATTRIBUTES);
sa.bInheritHandle = TRUE;
if (!::CreatePipe(&hStdOutReadPipe, &hStdOutWritePipe, &sa, DEFAULT_PIPE_SIZE))
{
throw process_start_exception("Error creating pipe for stdout");
}
if (!::CreatePipe(&hStdErrReadPipe, &hStdErrWritePipe, &sa, DEFAULT_PIPE_SIZE))
{
throw process_start_exception("Error creating pipe for stderr");
}
HANDLE stopEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
DWORD dwThreadId;
stdoutReaderArgs.processExecute = this;
stdoutReaderArgs.hPipeRead = hStdOutReadPipe;
stdoutReaderArgs.hPipeWrite = hStdOutWritePipe;
stdoutReaderArgs.pythonFile = pyStdout;
stdoutReaderArgs.stopEvent = stopEvent;
stdoutReaderArgs.completedEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
stdoutReaderArgs.streamName = STREAM_NAME_STDOUT;
stdoutReaderArgs.toFile = false;
stderrReaderArgs.processExecute = this;
stderrReaderArgs.hPipeRead = hStdErrReadPipe;
stderrReaderArgs.hPipeWrite = hStdErrWritePipe;
stderrReaderArgs.pythonFile = pyStderr;
stderrReaderArgs.stopEvent = stopEvent;
stderrReaderArgs.completedEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
stderrReaderArgs.streamName = STREAM_NAME_STDERR;
stderrReaderArgs.toFile = false;
/* If we're in an event, we need to spool the output to a file
* first, before we write it to python - so that the python writing is
* done in *this* thread
*/
if (spoolToFile)
{
stdoutReaderArgs.toFile = true;
stderrReaderArgs.toFile = true;
/// Create the mutex for writing to the file
stdoutReaderArgs.fileMutex = CreateMutex(NULL, FALSE, NULL);
stderrReaderArgs.fileMutex = stdoutReaderArgs.fileMutex;
/// Create the temp file
TCHAR tmpPath[MAX_PATH];
GetTempPath(MAX_PATH, tmpPath);
if(!GetTempFileName(tmpPath, _T("py"), 0, tmpFilename))
{
throw process_start_exception("Error creating temporary filename for output spooling");
}
stdoutReaderArgs.file = new std::fstream(tmpFilename, std::fstream::binary | std::fstream::in | std::fstream::out);
stderrReaderArgs.file = stdoutReaderArgs.file;
/*
stdoutReaderArgs.fileHandle = CreateFile(tmpFilename, GENERIC_READ | GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
stderrReaderArgs.fileHandle = stdoutReaderArgs.fileHandle;
if (INVALID_HANDLE_VALUE == stdoutReaderArgs.fileHandle)
{
throw process_start_exception("Error opening temporary file for output spooling");
}
*/
}
// start thread functions for stdout and stderr
HANDLE hStdoutThread = CreateThread(
NULL, // no security attribute
0, // default stack size
pipeReader, // thread proc
(LPVOID) &stdoutReaderArgs, // thread parameter
0, // not suspended
&dwThreadId); // returns thread ID
HANDLE hStderrThread = CreateThread(
NULL, // no security attribute
0, // default stack size
pipeReader, // thread proc
(LPVOID) &stderrReaderArgs, // thread parameter
0, // not suspended
&dwThreadId); // returns thread ID
// start process
PROCESS_INFORMATION pi;
STARTUPINFO si;
::SetHandleInformation(hStdOutReadPipe, HANDLE_FLAG_INHERIT, 0);
::SetHandleInformation(hStdErrReadPipe, HANDLE_FLAG_INHERIT, 0);
// initialize STARTUPINFO struct
::ZeroMemory( &si, sizeof(STARTUPINFO) );
si.cb = sizeof(STARTUPINFO);
si.dwFlags = STARTF_USESHOWWINDOW | STARTF_USESTDHANDLES;
si.wShowWindow = SW_HIDE;
si.hStdInput = NULL;
si.hStdOutput = hStdOutWritePipe;
si.hStdError = hStdErrWritePipe;
::ZeroMemory( &pi, sizeof(PROCESS_INFORMATION) );
size_t commandLineLength = _tcslen(commandLine) + 1;
// We use an auto_ptr here because of a potential early out due to an exception thrown.
std::auto_ptr<TCHAR> cmdLine(new TCHAR[commandLineLength]);
_tcscpy_s(cmdLine.get(), commandLineLength, commandLine);
bool processStartSuccess;
if ( ::CreateProcess(
NULL,
cmdLine.get(),
NULL, // security
NULL, // security
TRUE, // inherits handles
CREATE_NEW_PROCESS_GROUP, // creation flags
NULL, // environment
NULL, // current directory
&si, // startup info
&pi // process info
))
{
// wait for process to exit
::WaitForSingleObject(pi.hProcess, INFINITE);
CloseHandle(pi.hThread);
processStartSuccess = true;
}
else
{
processStartSuccess = false;
}
// Stop the reader threads
SetEvent(stopEvent);
// Wait for the pipe reader threads to complete
HANDLE handles[] = { stdoutReaderArgs.completedEvent, stderrReaderArgs.completedEvent };
WaitForMultipleObjects(2, handles, TRUE, INFINITE);
CloseHandle(stdoutReaderArgs.completedEvent);
CloseHandle(stderrReaderArgs.completedEvent);
CloseHandle(hStdoutThread);
CloseHandle(hStderrThread);
CloseHandle(stopEvent);
CloseHandle(hStdOutReadPipe);
CloseHandle(hStdOutWritePipe);
CloseHandle(hStdErrReadPipe);
CloseHandle(hStdErrWritePipe);
if (processStartSuccess)
{
GetExitCodeProcess(pi.hProcess, &returnValue);
CloseHandle(pi.hProcess);
}
else
{
DWORD errorNo = ::GetLastError();
TCHAR *buffer;
::FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_ALLOCATE_BUFFER, NULL, errorNo, 0, reinterpret_cast<LPTSTR>(&buffer), 0, NULL);
std::shared_ptr<char> message = WcharMbcsConverter::tchar2char(buffer);
process_start_exception ex(message.get());
::LocalFree(buffer);
throw ex;
}
}
catch(process_start_exception& ex)
{
exceptionThrown = ex;
thrown = true;
}
Py_END_ALLOW_THREADS
if (spoolToFile)
{
CloseHandle(stdoutReaderArgs.fileMutex);
spoolFile(stdoutReaderArgs.file, pyStdout, pyStderr);
stdoutReaderArgs.file->close();
if (tmpFilename[0] != 0)
{
DeleteFile(tmpFilename);
}
}
if (thrown)
{
throw exceptionThrown;
}
return returnValue;
}
DWORD WINAPI ProcessExecute::pipeReader(void *args)
{
PipeReaderArgs* pipeReaderArgs = reinterpret_cast<PipeReaderArgs*>(args);
DWORD bytesRead;
char buffer[PIPE_READBUFSIZE];
BOOL processFinished = FALSE;
for(;;)
{
::PeekNamedPipe(pipeReaderArgs->hPipeRead, NULL, 0, NULL, &bytesRead, NULL);
if (processFinished && 0 == bytesRead)
{
break;
}
if (bytesRead > 0)
{
if (ReadFile(pipeReaderArgs->hPipeRead, buffer, PIPE_READBUFSIZE - 1, &bytesRead, NULL))
{
if (pipeReaderArgs->toFile)
{
pipeReaderArgs->processExecute->writeToFile(pipeReaderArgs, bytesRead, buffer);
}
else
{
pipeReaderArgs->processExecute->writeToPython(pipeReaderArgs, bytesRead, buffer);
}
}
}
else
{
DWORD handleIndex = WaitForSingleObject(pipeReaderArgs->stopEvent, 100);
if (WAIT_OBJECT_0 == handleIndex)
{
processFinished = TRUE;
}
}
}
SetEvent(pipeReaderArgs->completedEvent);
return 0;
}
void ProcessExecute::writeToPython(PipeReaderArgs *pipeReaderArgs, DWORD bytesRead, char *buffer)
{
buffer[bytesRead] = '\0';
PyGILState_STATE gstate = PyGILState_Ensure();
try
{
pipeReaderArgs->pythonFile.attr("write")(boost::python::str(const_cast<const char *>(buffer)));
}
catch(...)
{
PyErr_Print();
}
PyGILState_Release(gstate);
}
void ProcessExecute::writeToFile(PipeReaderArgs *pipeReaderArgs, DWORD bytesRead, char *buffer)
{
WaitForSingleObject(pipeReaderArgs->fileMutex, INFINITE);
pipeReaderArgs->file->write(pipeReaderArgs->streamName, ProcessExecute::STREAM_NAME_LENGTH);
if (pipeReaderArgs->file->bad())
throw process_start_exception("Error writing to spool file");
char byteCount[20];
sprintf_s(byteCount, 20, "%ul\n", bytesRead);
pipeReaderArgs->file->write(byteCount, strlen(byteCount));
pipeReaderArgs->file->write(buffer, bytesRead);
if (pipeReaderArgs->file->bad())
throw process_start_exception("Error writing buffer to spool file");
ReleaseMutex(pipeReaderArgs->fileMutex);
}
void ProcessExecute::spoolFile(std::fstream* file, boost::python::object pyStdout, boost::python::object pyStderr)
{
// Rewind
file->seekg(0);
char infoBuffer[30];
char *buffer = NULL;
size_t bufferSize = 0;
size_t bytesToRead;
while (!file->eof())
{
file->getline(infoBuffer, 30, '\n');
if (file->eof())
break;
bytesToRead = strtoul(infoBuffer + STREAM_NAME_LENGTH, NULL, 0);
if (bufferSize < bytesToRead || !buffer)
{
if (buffer)
delete[] buffer;
bufferSize = bytesToRead + 1;
buffer = new char[bufferSize];
}
file->read(buffer, bytesToRead);
buffer[bytesToRead] = '\0';
if (0 == strncmp(infoBuffer, STREAM_NAME_STDOUT, STREAM_NAME_LENGTH))
{
// Is a stdout message
pyStdout.attr("write")(boost::python::str(const_cast<const char *>(buffer)));
}
else
{
// is a stderr message
pyStderr.attr("write")(boost::python::str(const_cast<const char *>(buffer)));
}
}
if (buffer)
{
delete[] buffer;
}
}