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 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2008 by Eran Ifrah
// file name : winprocess.cpp
//
// -------------------------------------------------------------------------
// A
// _____ _ _ _ _
// / __ \ | | | | (_) |
// | / \/ ___ __| | ___| | _| |_ ___
// | | / _ \ / _ |/ _ \ | | | __/ _ )
// | \__/\ (_) | (_| | __/ |___| | || __/
// \____/\___/ \__,_|\___\_____/_|\__\___|
//
// F i l e
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
#ifdef __WXMSW__
#include "winprocess_impl.h"
#include "file_logger.h"
#include "fileutils.h"
#include "processreaderthread.h"
#include "procutils.h"
#include "smart_ptr.h"
#include <atomic>
#include <memory>
#include <wx/filefn.h>
#include <wx/msgqueue.h>
#include <wx/string.h>
#ifdef _WIN32_WINNT
#undef _WIN32_WINNT
#endif
#define _WIN32_WINNT 0x0501 // Make AttachConsole(DWORD) visible
class MyDirGuard
{
wxString _d;
public:
MyDirGuard()
: _d(wxGetCwd())
{
}
~MyDirGuard() { wxSetWorkingDirectory(_d); }
};
/**
* @class ConsoleAttacher
* @date 11/03/10
* @brief a helper class to attach this process to a process' console
* this allows us to write directly into that process console-input-buffer
* One should check isAttached once this object is constructed
*/
class ConsoleAttacher
{
public:
bool isAttached;
public:
ConsoleAttacher(long pid) { isAttached = AttachConsole(pid); }
~ConsoleAttacher()
{
if(isAttached) {
FreeConsole();
}
isAttached = false;
}
};
static bool CheckIsAlive(HANDLE hProcess)
{
DWORD dwExitCode;
if(GetExitCodeProcess(hProcess, &dwExitCode)) {
if(dwExitCode == STILL_ACTIVE)
return true;
}
return false;
}
template <typename T> bool WriteStdin(const T& buffer, HANDLE hStdin, HANDLE hProcess)
{
DWORD dwMode;
// Make the pipe to non-blocking mode
dwMode = PIPE_READMODE_BYTE | PIPE_WAIT;
SetNamedPipeHandleState(hStdin, &dwMode, NULL, NULL);
DWORD bytesLeft = buffer.length();
long offset = 0;
static constexpr int max_retry_count = 100;
size_t retryCount = 0;
while(bytesLeft > 0 && (retryCount < max_retry_count)) {
DWORD dwWritten = 0;
if(!WriteFile(hStdin, buffer.c_str() + offset, bytesLeft, &dwWritten, NULL)) {
int errorCode = GetLastError();
LOG_IF_DEBUG { clDEBUG() << ">> WriteStdin: (WriteFile) error:" << errorCode << endl; }
return false;
}
if(!CheckIsAlive(hProcess)) {
LOG_IF_DEBUG { clDEBUG() << "WriteStdin failed. Process is not alive" << endl; }
return false;
}
if(dwWritten == 0) {
std::this_thread::sleep_for(std::chrono::milliseconds(1));
}
bytesLeft -= dwWritten;
offset += dwWritten;
++retryCount;
}
if(retryCount >= max_retry_count) {
clERROR() << "Failed to write to process after" << max_retry_count << "retries. Written"
<< (buffer.length() - bytesLeft) << "/" << buffer.length() << "bytes" << endl;
return false;
}
return true;
}
class WXDLLIMPEXP_CL WinWriterThread
{
std::thread* m_thread = nullptr;
wxMessageQueue<std::string> m_outgoingQueue;
std::atomic_bool m_shutdown;
HANDLE m_hProcess = INVALID_HANDLE_VALUE;
HANDLE m_hStdin = INVALID_HANDLE_VALUE;
public:
WinWriterThread(HANDLE hProcess, HANDLE hStdin)
: m_hProcess(hProcess)
, m_hStdin(hStdin)
{
m_shutdown.store(false);
}
~WinWriterThread() {}
void Start() { m_thread = new std::thread(&WinWriterThread::Entry, this, m_hStdin); }
void Stop()
{
if(m_thread) {
m_shutdown.store(true);
m_thread->join();
wxDELETE(m_thread);
}
}
static void Entry(WinWriterThread* thr, HANDLE hStdin)
{
auto& Q = thr->m_outgoingQueue;
while(!thr->m_shutdown.load()) {
std::string cstr;
if(Q.ReceiveTimeout(50, cstr) == wxMSGQUEUE_NO_ERROR) {
if(WriteStdin(cstr, hStdin, thr->m_hProcess)) {
LOG_IF_TRACE { clDEBUG1() << "Writer thread: wrote buffer of" << cstr.length() << "bytes"; }
}
}
}
LOG_IF_TRACE { clDEBUG1() << "Write thread going down"; }
}
void Write(const std::string& buffer) { m_outgoingQueue.Post(buffer); }
};
static wxString __JoinArray(const wxArrayString& args, size_t flags)
{
wxString command;
if(flags & IProcessWrapInShell) {
// CMD /C [command] ...
// Make sure that the first command is wrapped with "" if it contains spaces
LOG_IF_TRACE
{
clDEBUG1() << "==> __JoinArray called for" << args << endl;
clDEBUG1() << "args[2] is:" << args[2] << endl;
}
if((args.size() > 3) && (!args[2].StartsWith("\"")) && (args[2].Contains(" "))) {
LOG_IF_DEBUG { clDEBUG() << "==> Fixing" << args << endl; }
wxArrayString tmparr = args;
wxString& firstCommand = tmparr[2];
firstCommand.Prepend("\"").Append("\"");
command = wxJoin(tmparr, ' ', 0);
} else {
command = wxJoin(args, ' ', 0);
}
} else if(flags & IProcessCreateSSH) {
// simple join
command = wxJoin(args, ' ', 0);
} else {
wxArrayString arr;
arr.reserve(args.size());
arr = args;
for(auto& arg : arr) {
if(arg.Contains(" ")) {
// escape any " before we start escaping
arg.Replace("\"", "\\\"");
// now wrap with double quotes
arg.Prepend("\"").Append("\"");
}
command << arg << " ";
}
}
command.Trim().Trim(false);
return command;
}
IProcess* WinProcessImpl::Execute(wxEvtHandler* parent, const wxArrayString& args, size_t flags,
const wxString& workingDirectory, IProcessCallback* cb)
{
wxString cmd = __JoinArray(args, flags);
LOG_IF_TRACE { clDEBUG1() << "Windows process starting:" << cmd << endl; }
return Execute(parent, cmd, flags, workingDirectory, cb);
}
/*static*/
IProcess* WinProcessImpl::Execute(wxEvtHandler* parent, const wxString& cmd, size_t flags, const wxString& workingDir,
IProcessCallback* cb)
{
SECURITY_ATTRIBUTES saAttr;
BOOL fSuccess;
MyDirGuard dg;
wxString wd(workingDir);
if(workingDir.IsEmpty()) {
wd = wxGetCwd();
}
wxSetWorkingDirectory(wd);
// Set the bInheritHandle flag so pipe handles are inherited.
saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
saAttr.bInheritHandle = TRUE;
saAttr.lpSecurityDescriptor = NULL;
WinProcessImpl* prc = new WinProcessImpl(parent);
prc->m_callback = cb;
prc->m_flags = flags;
bool redirectOutput = !(flags & IProcessNoRedirect);
// The steps for redirecting child process's STDOUT:
// 1. Save current STDOUT, to be restored later.
// 2. Create anonymous pipe to be STDOUT for child process.
// 3. Set STDOUT of the parent process to be write handle to
// the pipe, so it is inherited by the child process.
// 4. Create a noninheritable duplicate of the read handle and
// close the inheritable read handle.
if(redirectOutput) {
// Save the handle to the current STDOUT.
prc->hSaveStdout = GetStdHandle(STD_OUTPUT_HANDLE);
// Create a pipe for the child process's STDOUT.
if(!CreatePipe(&prc->hChildStdoutRd, &prc->hChildStdoutWr, &saAttr, 0)) {
delete prc;
return NULL;
}
// Set a write handle to the pipe to be STDOUT.
if(!SetStdHandle(STD_OUTPUT_HANDLE, prc->hChildStdoutWr)) {
delete prc;
return NULL;
}
// Create noninheritable read handle and close the inheritable read handle.
fSuccess = DuplicateHandle(GetCurrentProcess(), prc->hChildStdoutRd, GetCurrentProcess(),
&prc->hChildStdoutRdDup, 0, FALSE, DUPLICATE_SAME_ACCESS);
if(!fSuccess) {
delete prc;
return NULL;
}
CloseHandle(prc->hChildStdoutRd);
// The steps for redirecting child process's STDERR:
// 1. Save current STDERR, to be restored later.
// 2. Create anonymous pipe to be STDERR for child process.
// 3. Set STDERR of the parent process to be write handle to
// the pipe, so it is inherited by the child process.
// 4. Create a noninheritable duplicate of the read handle and
// close the inheritable read handle.
// Save the handle to the current STDERR.
prc->hSaveStderr = GetStdHandle(STD_ERROR_HANDLE);
// Create a pipe for the child process's STDERR.
if(!CreatePipe(&prc->hChildStderrRd, &prc->hChildStderrWr, &saAttr, 0)) {
delete prc;
return NULL;
}
// Set a write handle to the pipe to be STDERR.
if(!SetStdHandle(STD_ERROR_HANDLE, prc->hChildStderrWr)) {
delete prc;
return NULL;
}
// Create noninheritable read handle and close the inheritable read handle.
fSuccess = DuplicateHandle(GetCurrentProcess(), prc->hChildStderrRd, GetCurrentProcess(),
&prc->hChildStderrRdDup, 0, FALSE, DUPLICATE_SAME_ACCESS);
if(!fSuccess) {
delete prc;
return NULL;
}
CloseHandle(prc->hChildStderrRd);
// The steps for redirecting child process's STDIN:
// 1. Save current STDIN, to be restored later.
// 2. Create anonymous pipe to be STDIN for child process.
// 3. Set STDIN of the parent to be the read handle to the
// pipe, so it is inherited by the child process.
// 4. Create a noninheritable duplicate of the write handle,
// and close the inheritable write handle.
// Save the handle to the current STDIN.
prc->hSaveStdin = GetStdHandle(STD_INPUT_HANDLE);
// Create a pipe for the child process's STDIN.
if(!CreatePipe(&prc->hChildStdinRd, &prc->hChildStdinWr, &saAttr, 0)) {
delete prc;
return NULL;
}
// Set a read handle to the pipe to be STDIN.
if(!SetStdHandle(STD_INPUT_HANDLE, prc->hChildStdinRd)) {
delete prc;
return NULL;
}
// Duplicate the write handle to the pipe so it is not inherited.
fSuccess =
DuplicateHandle(GetCurrentProcess(), prc->hChildStdinWr, GetCurrentProcess(), &prc->hChildStdinWrDup, 0,
FALSE, // not inherited
DUPLICATE_SAME_ACCESS);
if(!fSuccess) {
delete prc;
return NULL;
}
CloseHandle(prc->hChildStdinWr);
}
// Execute the child process
STARTUPINFO siStartInfo;
// Set up members of STARTUPINFO structure.
ZeroMemory(&siStartInfo, sizeof(STARTUPINFO));
siStartInfo.cb = sizeof(STARTUPINFO);
siStartInfo.dwFlags = STARTF_USESHOWWINDOW;
if(redirectOutput) {
siStartInfo.dwFlags |= STARTF_USESTDHANDLES;
siStartInfo.hStdInput = prc->hChildStdinRd;
siStartInfo.hStdOutput = prc->hChildStdoutWr;
siStartInfo.hStdError = prc->hChildStderrWr;
}
// Set the window to hide
siStartInfo.wShowWindow = flags & IProcessCreateConsole ? SW_SHOW : SW_HIDE;
DWORD creationFlags = flags & IProcessCreateConsole ? CREATE_NEW_CONSOLE : CREATE_NO_WINDOW;
if(flags & IProcessCreateWithHiddenConsole) {
siStartInfo.wShowWindow = SW_HIDE;
creationFlags = CREATE_NEW_CONSOLE | CREATE_NEW_PROCESS_GROUP;
}
LOG_IF_TRACE { clDEBUG1() << "Running process:" << cmd << endl; }
BOOL ret = CreateProcess(NULL,
cmd.wchar_str(), // shell line execution command
NULL, // process security attributes
NULL, // primary thread security attributes
TRUE, // handles are inherited
creationFlags, // creation flags
NULL, // use parent's environment
NULL, // CD to tmp dir
&siStartInfo, // STARTUPINFO pointer
&prc->piProcInfo); // receives PROCESS_INFORMATION
if(ret) {
prc->dwProcessId = prc->piProcInfo.dwProcessId;
} else {
int err = GetLastError();
wxUnusedVar(err);
delete prc;
return NULL;
}
if(redirectOutput) {
// After process creation, restore the saved STDIN and STDOUT.
if(!SetStdHandle(STD_INPUT_HANDLE, prc->hSaveStdin)) {
delete prc;
return NULL;
}
if(!SetStdHandle(STD_OUTPUT_HANDLE, prc->hSaveStdout)) {
delete prc;
return NULL;
}
if(!SetStdHandle(STD_OUTPUT_HANDLE, prc->hSaveStderr)) {
delete prc;
return NULL;
}
}
if((prc->m_flags & IProcessCreateConsole) || (prc->m_flags & IProcessCreateWithHiddenConsole)) {
ConsoleAttacher ca(prc->GetPid());
if(ca.isAttached) {
freopen("CONOUT$", "wb", stdout); // reopen stout handle as console window output
freopen("CONOUT$", "wb", stderr); // reopen stderr handle as console window output
}
}
prc->SetPid(prc->dwProcessId);
if(!(prc->m_flags & IProcessCreateSync)) {
prc->StartReaderThread();
}
prc->m_writerThread = new WinWriterThread(prc->piProcInfo.hProcess, prc->hChildStdinWrDup);
prc->m_writerThread->Start();
return prc;
}
WinProcessImpl::WinProcessImpl(wxEvtHandler* parent)
: IProcess(parent)
{
hChildStdinRd = NULL;
hChildStdinWrDup = NULL;
hChildStdoutWr = NULL;
hChildStdoutRdDup = NULL;
hChildStderrWr = NULL;
hChildStderrRdDup = NULL;
piProcInfo.hProcess = NULL;
piProcInfo.hThread = NULL;
}
WinProcessImpl::~WinProcessImpl() { Cleanup(); }
bool WinProcessImpl::Read(wxString& buff, wxString& buffErr)
{
DWORD le1(-1);
DWORD le2(-1);
buff.Clear();
buffErr.Clear();
// Sanity
if(!IsRedirect()) {
return false;
}
// Read data from STDOUT and STDERR
if(!DoReadFromPipe(hChildStderrRdDup, ((m_flags & IProcessStderrEvent) ? buffErr : buff))) {
le2 = GetLastError();
}
if(!DoReadFromPipe(hChildStdoutRdDup, buff)) {
le1 = GetLastError();
}
if((le1 == ERROR_NO_DATA) && (le2 == ERROR_NO_DATA)) {
if(IsAlive()) {
wxThread::Sleep(1);
return true;
}
}
bool success = !buff.IsEmpty() || !buffErr.IsEmpty();
if(!success) {
DWORD dwExitCode;
if(GetExitCodeProcess(piProcInfo.hProcess, &dwExitCode)) {
SetProcessExitCode(GetPid(), (int)dwExitCode);
}
}
return success;
}
bool WinProcessImpl::Write(const wxString& buff)
{
// Sanity
return Write(FileUtils::ToStdString(buff));
}
bool WinProcessImpl::Write(const std::string& buff) { return WriteRaw(buff + "\r\n"); }
bool WinProcessImpl::WriteRaw(const wxString& buff) { return WriteRaw(FileUtils::ToStdString(buff)); }
bool WinProcessImpl::WriteRaw(const std::string& buff)
{
// Sanity
if(!IsRedirect()) {
return false;
}
m_writerThread->Write(buff);
return true;
}
bool WinProcessImpl::IsAlive()
{
DWORD dwExitCode;
if(GetExitCodeProcess(piProcInfo.hProcess, &dwExitCode)) {
if(dwExitCode == STILL_ACTIVE)
return true;
}
return false;
}
void WinProcessImpl::Cleanup()
{
if(m_writerThread) {
m_writerThread->Stop();
wxDELETE(m_writerThread);
}
// Under windows, the reader thread is detached
if(m_thr) {
// Stop the reader thread
m_thr->Stop();
delete m_thr;
}
m_thr = NULL;
// terminate the process
if(IsAlive()) {
std::map<unsigned long, bool> tree;
ProcUtils::GetProcTree(tree, GetPid());
for(const auto& vt : tree) {
// don't kill ourself
if((long)vt.first == GetPid()) {
continue;
}
wxLogNull NoLog;
wxKillError rc;
wxKill(vt.first, wxSIGKILL, &rc);
}
::TerminateProcess(piProcInfo.hProcess, 0);
}
if(IsRedirect()) {
CloseHandle(hChildStdinRd);
CloseHandle(hChildStdinWrDup);
CloseHandle(hChildStdoutWr);
CloseHandle(hChildStdoutRdDup);
CloseHandle(hChildStderrWr);
CloseHandle(hChildStderrRdDup);
}
CloseHandle(piProcInfo.hProcess);
CloseHandle(piProcInfo.hThread);
hChildStdinRd = NULL;
hChildStdoutWr = NULL;
hChildStdinWrDup = NULL;
hChildStdoutRdDup = NULL;
hChildStderrWr = NULL;
hChildStderrRdDup = NULL;
piProcInfo.hProcess = NULL;
piProcInfo.hThread = NULL;
}
void WinProcessImpl::StartReaderThread()
{
// Launch the 'Reader' thread
m_thr = new ProcessReaderThread();
m_thr->SetProcess(this);
m_thr->SetNotifyWindow(m_parent);
m_thr->Start();
}
bool WinProcessImpl::DoReadFromPipe(HANDLE pipe, wxString& buff)
{
DWORD dwRead = 0;
DWORD dwMode;
DWORD dwTimeout;
// Make the pipe to non-blocking mode
dwMode = PIPE_READMODE_BYTE | PIPE_NOWAIT;
dwTimeout = 100;
SetNamedPipeHandleState(pipe, &dwMode, NULL, &dwTimeout);
bool read_something = false;
while(true) {
BOOL bRes = ReadFile(pipe, m_buffer, BUFFER_SIZE - 1, &dwRead, NULL);
if(bRes && (dwRead > 0)) {
wxString tmpBuff;
tmpBuff.reserve(dwRead * 2); // make enough room for the conversion
// Success read
tmpBuff = wxString(m_buffer, wxConvUTF8, dwRead);
if(tmpBuff.IsEmpty() && dwRead > 0) {
// conversion failed
tmpBuff = wxString::From8BitData(m_buffer, dwRead);
}
buff.reserve(buff.size() + tmpBuff.size() + 1);
buff.Append(tmpBuff);
read_something = true;
continue;
}
break;
}
return read_something;
}
void WinProcessImpl::Terminate()
{
// terminate the process
if(IsAlive()) {
std::map<unsigned long, bool> tree;
ProcUtils::GetProcTree(tree, GetPid());
for(const auto& vt : tree) {
if((long)vt.first == GetPid()) {
continue;
}
wxLogNull NoLOG;
wxKillError rc;
wxKill(vt.first, wxSIGKILL, &rc);
}
TerminateProcess(piProcInfo.hProcess, 0);
}
}
bool WinProcessImpl::WriteToConsole(const wxString& buff)
{
wxString pass(buff);
pass.Trim().Trim(false);
// To write password, we need to attach to the child process console
if(!(m_flags & (IProcessCreateWithHiddenConsole | IProcessCreateConsole)))
return false;
ConsoleAttacher ca(GetPid());
if(ca.isAttached == false)
return false;
HANDLE hStdIn = ::CreateFile(L"CONIN$", GENERIC_WRITE | GENERIC_READ, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL,
OPEN_EXISTING, 0, 0);
if(hStdIn == INVALID_HANDLE_VALUE) {
return false;
}
pass += wxT("\r\n");
SmartPtr<INPUT_RECORD> pKeyEvents(new INPUT_RECORD[pass.Len()]);
for(size_t i = 0; i < pass.Len(); i++) {
(pKeyEvents.Get())[i].EventType = KEY_EVENT;
(pKeyEvents.Get())[i].Event.KeyEvent.bKeyDown = TRUE;
(pKeyEvents.Get())[i].Event.KeyEvent.wRepeatCount = 1;
(pKeyEvents.Get())[i].Event.KeyEvent.wVirtualKeyCode = LOBYTE(::VkKeyScan(pass[i]));
(pKeyEvents.Get())[i].Event.KeyEvent.wVirtualScanCode = 0;
(pKeyEvents.Get())[i].Event.KeyEvent.uChar.UnicodeChar = pass[i];
(pKeyEvents.Get())[i].Event.KeyEvent.dwControlKeyState = 0;
}
DWORD dwTextWritten;
if(::WriteConsoleInput(hStdIn, pKeyEvents.Get(), pass.Len(), &dwTextWritten) == FALSE) {
CloseHandle(hStdIn);
return false;
}
CloseHandle(hStdIn);
return true;
}
void WinProcessImpl::Detach()
{
if(m_thr) {
// Stop the reader thread
m_thr->Stop();
delete m_thr;
}
m_thr = NULL;
}
void WinProcessImpl::Signal(wxSignal sig) { wxKill(GetPid(), sig, NULL, wxKILL_CHILDREN); }
#endif //__WXMSW__
|