Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

child.cpp 40KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622
  1. // \file child.cpp
  2. //
  3. // Copyright (C) 2014 MicroNeil Research Corporation.
  4. //
  5. // This program is part of the MicroNeil Research Open Library Project. For
  6. // more information go to http://www.microneil.com/OpenLibrary/index.html
  7. //
  8. // This program is free software; you can redistribute it and/or modify it
  9. // under the terms of the GNU General Public License as published by the
  10. // Free Software Foundation; either version 2 of the License, or (at your
  11. // option) any later version.
  12. //
  13. // This program is distributed in the hope that it will be useful, but WITHOUT
  14. // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  15. // FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  16. // more details.
  17. //
  18. // You should have received a copy of the GNU General Public License along with
  19. // this program; if not, write to the Free Software Foundation, Inc., 59 Temple
  20. // Place, Suite 330, Boston, MA 02111-1307 USA
  21. //==============================================================================
  22. #ifndef _WIN32
  23. #include <unistd.h>
  24. #include <sys/types.h>
  25. #include <sys/wait.h>
  26. #include <signal.h>
  27. #include <sys/select.h>
  28. #include <cstring>
  29. #include <cerrno>
  30. #endif
  31. #include <stdexcept>
  32. #include <utility>
  33. #include "CodeDweller/timing.hpp"
  34. #include "CodeDweller/child.hpp"
  35. namespace CodeDweller {
  36. ChildStream::ChildStream(std::vector<std::string> const &args,
  37. size_t bufSize) :
  38. std::iostream(&childStreambuf),
  39. childStreambuf(bufSize),
  40. cmdArgs(args) {
  41. init();
  42. run();
  43. }
  44. ChildStream::ChildStream(std::string const &childpath, size_t bufSize) :
  45. std::iostream(&childStreambuf),
  46. childStreambuf(bufSize) {
  47. cmdArgs.push_back(childpath);
  48. init();
  49. run();
  50. }
  51. ChildStream::ChildStream(size_t bufSize) :
  52. std::iostream(&childStreambuf),
  53. childStreambuf(bufSize) {
  54. init();
  55. }
  56. ChildStream::~ChildStream() {
  57. try {
  58. close();
  59. } catch (std::exception &e) {
  60. ;
  61. }
  62. }
  63. void ChildStream::init() {
  64. childStarted = false;
  65. childExited = false;
  66. exitCodeObtainedFlag = false;
  67. exitCode = 0;
  68. }
  69. void ChildStream::open(std::vector<std::string> const &args) {
  70. cmdArgs = args;
  71. init();
  72. run();
  73. }
  74. void ChildStream::open(std::string const &childpath) {
  75. cmdArgs.clear();
  76. cmdArgs.push_back(childpath);
  77. init();
  78. run();
  79. }
  80. size_t ChildStream::numBytesAvailable() const {
  81. return childStreambuf.numBytesAvailable();
  82. }
  83. bool ChildStream::isRunning() const {
  84. return childStarted && !childExited;
  85. }
  86. void ChildStream::run() {
  87. if (childStarted) {
  88. throw std::logic_error("Child process was active when "
  89. "run() was called");
  90. }
  91. if (cmdArgs.empty()) {
  92. throw std::invalid_argument("A child executable must be specified.");
  93. }
  94. #ifdef _WIN32
  95. // Set the bInheritHandle flag so pipe handles are inherited.
  96. SECURITY_ATTRIBUTES securityAttributes;
  97. securityAttributes.nLength = sizeof(SECURITY_ATTRIBUTES);
  98. securityAttributes.bInheritHandle = true;
  99. securityAttributes.lpSecurityDescriptor = NULL;
  100. // Create a pipe for the child process's STDOUT.
  101. HANDLE childStdOutAtChild;
  102. HANDLE childStdOutAtParent;
  103. HANDLE childStdInAtChild;
  104. HANDLE childStdInAtParent;
  105. int bufferSize = 0;
  106. if (!CreatePipe(&childStdOutAtParent,
  107. &childStdOutAtChild,
  108. &securityAttributes,
  109. bufferSize)) {
  110. throw std::runtime_error("Error from CreatePipe for stdout: " +
  111. getErrorText());
  112. }
  113. // Ensure the read handle to the pipe for STDOUT is not inherited.
  114. int inheritFlag = 0;
  115. if (!SetHandleInformation(childStdOutAtParent,
  116. HANDLE_FLAG_INHERIT,
  117. inheritFlag) ) {
  118. throw std::runtime_error("Error from GetHandleInformation for stdout: " +
  119. getErrorText());
  120. }
  121. // Create a pipe for the child process's STDIN.
  122. if (! CreatePipe(&childStdInAtChild,
  123. &childStdInAtParent,
  124. &securityAttributes,
  125. bufferSize)) {
  126. throw std::runtime_error("Error from CreatePipe for stdin: " +
  127. getErrorText());
  128. }
  129. // Ensure the write handle to the pipe for STDIN is not inherited.
  130. if (!SetHandleInformation(childStdInAtParent,
  131. HANDLE_FLAG_INHERIT,
  132. inheritFlag)) {
  133. throw std::runtime_error("Error from GetHandleInformation for stdin: " +
  134. getErrorText());
  135. }
  136. // Set up members of the PROCESS_INFORMATION structure.
  137. PROCESS_INFORMATION processInfo;
  138. std::fill((char *) &processInfo,
  139. ((char *) &processInfo) + sizeof(PROCESS_INFORMATION),
  140. 0);
  141. // Set up members of the STARTUPINFO structure. This structure
  142. // specifies the STDIN and STDOUT handles for redirection.
  143. STARTUPINFO startInfo;
  144. std::fill((char *) &startInfo,
  145. ((char *) &startInfo) + sizeof(STARTUPINFO),
  146. 0);
  147. startInfo.cb = sizeof(STARTUPINFO);
  148. startInfo.hStdError = childStdOutAtChild;
  149. startInfo.hStdOutput = childStdOutAtChild;
  150. startInfo.hStdInput = childStdInAtChild;
  151. startInfo.dwFlags |= STARTF_USESTDHANDLES;
  152. // Assemble the command line.
  153. std::string cmdline;
  154. if (cmdArgs.size() == 1) {
  155. cmdline = cmdArgs[0];
  156. } else {
  157. // Append all but last command-line arguments.
  158. for (size_t i = 0; i < cmdArgs.size() - 1; i++) {
  159. cmdline += cmdArgs[i] + " ";
  160. }
  161. cmdline += cmdArgs.back(); // Append last command-line argument.
  162. }
  163. // Create the child process.
  164. bool status;
  165. status = CreateProcess(NULL,
  166. (char *) cmdline.c_str(),
  167. NULL, // process security attributes
  168. NULL, // primary thread security attributes
  169. true, // handles are inherited
  170. 0, // creation flags
  171. NULL, // use parent's environment
  172. NULL, // use parent's current directory
  173. &startInfo, // STARTUPINFO pointer
  174. &processInfo); // receives PROCESS_INFORMATION
  175. // If an error occurs, exit the application.
  176. if (!status ) {
  177. throw std::runtime_error("Error from CreateProcess with "
  178. "command line \"" + cmdline + "\": " +
  179. getErrorText());
  180. }
  181. // Provide the stream buffers with the handles for communicating
  182. // with the child process.
  183. childStreambuf.setInputHandle(childStdOutAtParent);
  184. childStreambuf.setOutputHandle(childStdInAtParent);
  185. // Save the handles to the child process and its primary thread.
  186. childProcess = processInfo.hProcess;
  187. childThread = processInfo.hThread;
  188. // Close the child's end of the pipes.
  189. if (!CloseHandle(childStdOutAtChild)) {
  190. throw std::runtime_error("Error closing the child process "
  191. "stdout handle: " + getErrorText());
  192. }
  193. if (!CloseHandle(childStdInAtChild)) {
  194. throw std::runtime_error("Error closing the child process "
  195. "stdin handle: " + getErrorText());
  196. }
  197. #else
  198. // Create the pipes for the stdin and stdout.
  199. int childStdInPipe[2];
  200. int childStdOutPipe[2];
  201. if (pipe(childStdInPipe) != 0) {
  202. throw std::runtime_error("Error creating pipe for stdin: " +
  203. getErrorText());
  204. }
  205. if (pipe(childStdOutPipe) != 0) {
  206. ::close(childStdInPipe[0]);
  207. ::close(childStdInPipe[1]);
  208. throw std::runtime_error("Error creating pipe for stdout: " +
  209. getErrorText());
  210. }
  211. // Create the child process.
  212. childPid = fork();
  213. if (-1 == childPid) {
  214. for (int i = 0; i < 2; i++) {
  215. ::close(childStdInPipe[i]);
  216. ::close(childStdOutPipe[i]);
  217. }
  218. throw std::runtime_error("Error creating child process: " +
  219. getErrorText());
  220. }
  221. if (0 == childPid) {
  222. // The child executes this. Redirect stdin.
  223. if (dup2(childStdInPipe[0], STDIN_FILENO) == -1) {
  224. std::string errMsg;
  225. // Send message to parent.
  226. errMsg = "Error redirecting stdin in the child: " + getErrorText();
  227. ::write(childStdOutPipe[1], errMsg.data(), errMsg.size());
  228. exit(-1);
  229. }
  230. // Redirect stdout.
  231. if (dup2(childStdOutPipe[1], STDOUT_FILENO) == -1) {
  232. std::string errMsg;
  233. // Send message to parent.
  234. errMsg = "Error redirecting stdout in the child: " + getErrorText();
  235. ::write(childStdOutPipe[1], errMsg.data(), errMsg.size());
  236. exit(-1);
  237. }
  238. // Close pipes.
  239. if ( (::close(childStdInPipe[0]) != 0) ||
  240. (::close(childStdInPipe[1]) != 0) ||
  241. (::close(childStdOutPipe[0]) != 0) ||
  242. (::close(childStdOutPipe[1]) != 0) ) {
  243. std::string errMsg;
  244. // Send message to parent.
  245. errMsg = "Error closing the pipes in the child: " + getErrorText();
  246. ::write(STDOUT_FILENO, errMsg.data(), errMsg.size());
  247. exit(-1);
  248. }
  249. // Prepare the arguments.
  250. std::vector<const char *> execvArgv;
  251. for (auto &arg : cmdArgs) {
  252. execvArgv.push_back(arg.c_str());
  253. }
  254. execvArgv.push_back((char *) NULL);
  255. // Run the child process image.
  256. (void) execv(execvArgv[0], (char * const *) &(execvArgv[0]));
  257. // Error from exec.
  258. std::string errMsg;
  259. // Send message to parent.
  260. errMsg = "Error from exec: " + getErrorText();
  261. ::write(STDOUT_FILENO, errMsg.data(), errMsg.size());
  262. exit(-1);
  263. }
  264. // Provide the stream buffers with the file descriptors for
  265. // communicating with the child process.
  266. childStreambuf.setInputFileDescriptor(childStdOutPipe[0]);
  267. childStreambuf.setOutputFileDescriptor(childStdInPipe[1]);
  268. // Close the child's end of the pipes.
  269. if ( (::close(childStdInPipe[0]) != 0) ||
  270. (::close(childStdOutPipe[1]) != 0) ) {
  271. std::string errMsg;
  272. throw std::runtime_error("Error closing child's end of pipes in "
  273. "the parent: " + getErrorText());
  274. }
  275. #endif
  276. childStarted = true;
  277. }
  278. void ChildStream::close() {
  279. if (!childStarted) {
  280. throw std::logic_error("Child process was not started "
  281. "when close() was called");
  282. }
  283. // Terminate the child if it's running.
  284. if (isRunning()) {
  285. std::string errorString;
  286. bool errorOccurred = false;
  287. #ifdef _WIN32
  288. // Ignore errors. Reason: Terminating a proces that doesn't
  289. // exist (e.g. has exited) gives an error.
  290. (void) TerminateProcess(childProcess, terminateExitCode);
  291. #else
  292. if (kill(childPid, SIGKILL) != 0) {
  293. errorString += (errorOccurred ? "\n" : "");
  294. errorString += "Error terminating the child process: " +
  295. getErrorText();
  296. errorOccurred = true;
  297. } else if (waitpid(childPid, NULL, 0) != childPid) {
  298. errorString += (errorOccurred ? "\n" : "");
  299. errorString += "Error waiting for the child process: " +
  300. getErrorText();
  301. errorOccurred = true;
  302. }
  303. #endif
  304. if (errorOccurred) {
  305. throw std::runtime_error(errorString);
  306. }
  307. }
  308. // Reset.
  309. init();
  310. }
  311. bool ChildStream::isDone() {
  312. if (childExited) {
  313. return true;
  314. }
  315. if (!childStarted) {
  316. throw std::logic_error("Child process was not started "
  317. "when isDone() was called");
  318. }
  319. int result;
  320. #ifdef _WIN32
  321. if (!GetExitCodeProcess(childProcess, (LPDWORD) &result)) {
  322. throw std::runtime_error("Error checking status of child process: " +
  323. getErrorText());
  324. }
  325. if (STILL_ACTIVE == result) {
  326. return false;
  327. }
  328. // Child process has exited. Save the exit code.
  329. exitCode = result;
  330. exitCodeObtainedFlag = true;
  331. #else
  332. int status = 0;
  333. result = waitpid(childPid, &status, WNOHANG);
  334. if (-1 == result) {
  335. throw std::runtime_error("Error checking status of child process: " +
  336. getErrorText());
  337. } else if (0 == result) {
  338. // Child is still running.
  339. return false;
  340. }
  341. if (WIFEXITED(status)) {
  342. // Child exited normally.
  343. exitCode = WEXITSTATUS(status);
  344. exitCodeObtainedFlag = true;
  345. }
  346. #endif
  347. childExited = true;
  348. return true;
  349. }
  350. int32_t ChildStream::result() {
  351. if (exitCodeObtainedFlag) {
  352. return exitCode;
  353. }
  354. // Check whether the process is running, and get the exit code.
  355. if (!isDone()) {
  356. throw std::logic_error("Child process was still running "
  357. "when result() was called");
  358. }
  359. // Child process has exited.
  360. if (!exitCodeObtainedFlag) {
  361. // Exit code is not available.
  362. throw std::runtime_error("Child process has exited but the exit "
  363. "code is not available");
  364. }
  365. return exitCode;
  366. }
  367. std::string ChildStream::getErrorText() {
  368. #ifdef _WIN32
  369. LPVOID winMsgBuf;
  370. DWORD lastError = GetLastError();
  371. FormatMessage(
  372. FORMAT_MESSAGE_ALLOCATE_BUFFER |
  373. FORMAT_MESSAGE_FROM_SYSTEM |
  374. FORMAT_MESSAGE_IGNORE_INSERTS,
  375. NULL,
  376. lastError,
  377. MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
  378. (char *) &winMsgBuf,
  379. 0, NULL );
  380. std::string errMsg((char *) winMsgBuf);
  381. LocalFree(winMsgBuf);
  382. return errMsg;
  383. #else
  384. return strerror(errno);
  385. #endif
  386. }
  387. ChildStream::ChildStreambuf::ChildStreambuf(std::size_t bufSize) :
  388. #ifdef _WIN32
  389. inputHandle(0),
  390. outputHandle(0),
  391. #else
  392. inputFileDescriptor(-1),
  393. outputFileDescriptor(-1),
  394. #endif
  395. bufferSize(bufSize),
  396. readBuffer(bufferSize + 1),
  397. writeBuffer(bufferSize + 1) {
  398. // Read buffer initialization.
  399. char *end = &(readBuffer.front()) + readBuffer.size();
  400. // Indicate to underflow that underflow has not been called.
  401. setg(end, end, end);
  402. // Write buffer initialization.
  403. char *base = &(writeBuffer.front());
  404. // Indicate to overflow that overflow has not been called.
  405. setp(base, base + writeBuffer.size() - 1);
  406. }
  407. #ifdef _WIN32
  408. void ChildStream::ChildStreambuf::setInputHandle(HANDLE inHandle) {
  409. inputHandle = inHandle;
  410. }
  411. #else
  412. void ChildStream::ChildStreambuf::setInputFileDescriptor(int inFd) {
  413. inputFileDescriptor = inFd;
  414. }
  415. #endif
  416. size_t ChildStream::ChildStreambuf::numBytesAvailable() const {
  417. size_t nBytesAvailable = egptr() - gptr();
  418. #ifdef _WIN32
  419. DWORD lpTotalBytesAvail;
  420. if (!PeekNamedPipe(inputHandle,
  421. NULL,
  422. 0,
  423. NULL,
  424. &lpTotalBytesAvail,
  425. NULL)) {
  426. throw std::runtime_error("Error from PeekNamedPipe: " +
  427. getErrorText());
  428. }
  429. if (lpTotalBytesAvail > 0) {
  430. nBytesAvailable++;
  431. }
  432. #else
  433. fd_set readFd;
  434. int retVal;
  435. struct timeval timeout = {0, 0};
  436. FD_ZERO(&readFd);
  437. FD_SET(inputFileDescriptor, &readFd);
  438. // Check if input is available.
  439. retVal = select(inputFileDescriptor + 1, &readFd, NULL, NULL, &timeout);
  440. if (-1 == retVal) {
  441. throw std::runtime_error("Error from select(): " + getErrorText());
  442. } else if (retVal > 0) {
  443. nBytesAvailable++;
  444. }
  445. #endif
  446. return nBytesAvailable;
  447. }
  448. std::streambuf::int_type ChildStream::ChildStreambuf::underflow() {
  449. // Check for empty buffer.
  450. if (gptr() < egptr()) {
  451. // Not empty.
  452. return traits_type::to_int_type(*gptr());
  453. }
  454. // Need to fill the buffer.
  455. char *base = &(readBuffer.front());
  456. char *start = base;
  457. // Check whether this is the first fill.
  458. if (eback() == base) {
  459. // Not the first fill. Copy one putback character.
  460. *(eback()) = *(egptr() - 1);
  461. start++;
  462. }
  463. // start points to the start of the buffer. Fill buffer.
  464. #ifdef _WIN32
  465. DWORD nBytesRead;
  466. if (!ReadFile(inputHandle,
  467. start,
  468. readBuffer.size() - (start - base),
  469. &nBytesRead,
  470. NULL)) {
  471. return traits_type::eof();
  472. }
  473. #else
  474. ssize_t nBytesRead;
  475. nBytesRead = ::read(inputFileDescriptor,
  476. start,
  477. readBuffer.size() - (start - base));
  478. if (-1 == nBytesRead) {
  479. return traits_type::eof();
  480. }
  481. #endif
  482. // Check for EOF.
  483. if (0 == nBytesRead) {
  484. return traits_type::eof();
  485. }
  486. // Update buffer pointers.
  487. setg(base, start, start + nBytesRead);
  488. return traits_type::to_int_type(*gptr());
  489. }
  490. #ifdef _WIN32
  491. void ChildStream::ChildStreambuf::setOutputHandle(HANDLE outHandle) {
  492. outputHandle = outHandle;
  493. }
  494. #else
  495. void ChildStream::ChildStreambuf::setOutputFileDescriptor(int outFd) {
  496. outputFileDescriptor = outFd;
  497. }
  498. #endif
  499. void ChildStream::ChildStreambuf::flushBuffer() {
  500. // Write.
  501. std::ptrdiff_t nBytes = pptr() - pbase();
  502. #ifdef _WIN32
  503. DWORD nBytesWritten;
  504. if (!WriteFile(outputHandle,
  505. pbase(),
  506. nBytes,
  507. &nBytesWritten,
  508. NULL)) {
  509. // Clear the output buffer.
  510. pbump(-nBytes);
  511. throw std::runtime_error("Error writing to child process: " +
  512. getErrorText());
  513. }
  514. #else
  515. ssize_t nBytesWritten;
  516. nBytesWritten = ::write(outputFileDescriptor, pbase(), nBytes);
  517. #endif
  518. // Clear the output buffer.
  519. pbump(-nBytes);
  520. if (nBytes != nBytesWritten) {
  521. throw std::runtime_error("Not all data was written to to child "
  522. "process: " + getErrorText());
  523. }
  524. return;
  525. }
  526. std::streambuf::int_type ChildStream::ChildStreambuf::overflow(int_type ch) {
  527. // Check whether we're writing EOF.
  528. if (traits_type::eof() != ch) {
  529. // Not writing EOF.
  530. *(pptr()) = ch;
  531. pbump(1);
  532. // Write.
  533. flushBuffer();
  534. // Success.
  535. return ch;
  536. }
  537. return traits_type::eof();
  538. }
  539. int ChildStream::ChildStreambuf::sync() {
  540. flushBuffer(); // Throws exception on failure.
  541. // Success.
  542. return 1;
  543. }
  544. Child::CircularBuffer::CircularBuffer(size_t maxSize) :
  545. buffer(maxSize + 1),
  546. capacity(maxSize) {
  547. iBegin = 0;
  548. iEnd = 0;
  549. }
  550. bool Child::CircularBuffer::empty() const {
  551. return (iBegin == iEnd);
  552. }
  553. size_t Child::CircularBuffer::nUsed() const {
  554. return capacity - nFree();
  555. }
  556. void Child::CircularBuffer::clear() {
  557. iBegin = 0;
  558. iEnd = 0;
  559. }
  560. size_t Child::CircularBuffer::nFree() const {
  561. size_t iLocalBegin = iBegin;
  562. // Correct an invalid value.
  563. if (iLocalBegin >= capacity + 1) {
  564. iLocalBegin = 0;
  565. }
  566. if (iLocalBegin <= iEnd) {
  567. return capacity - (iEnd - iLocalBegin);
  568. }
  569. return iLocalBegin - iEnd - 1;
  570. }
  571. void Child::CircularBuffer::put(char const *ptr, size_t nBytes) {
  572. for (size_t i = 0; i < nBytes; i++) {
  573. buffer[iEnd] = *ptr;
  574. ptr++;
  575. nextIndex(iEnd);
  576. }
  577. }
  578. Child::Child(std::vector<std::string> const &args,
  579. size_t bufSize,
  580. std::uint16_t nominalAboveMinPollTime_ms,
  581. std::uint16_t deltaPollTime_ms) :
  582. bufferCapacity(bufSize),
  583. readBuffer(bufferCapacity),
  584. writeBuffer(bufferCapacity),
  585. nominalPollTime_ms(nominalAboveMinPollTime_ms +
  586. CodeDweller::MinimumSleeperTime),
  587. maximumPollTime_ms(nominalPollTime_ms + deltaPollTime_ms) {
  588. init();
  589. open(args);
  590. }
  591. Child::Child(std::string const &childpath,
  592. size_t bufSize,
  593. std::uint16_t nominalAboveMinPollTime_ms,
  594. std::uint16_t deltaPollTime_ms) :
  595. bufferCapacity(bufSize),
  596. readBuffer(bufferCapacity),
  597. writeBuffer(bufferCapacity),
  598. nominalPollTime_ms(nominalAboveMinPollTime_ms +
  599. CodeDweller::MinimumSleeperTime),
  600. maximumPollTime_ms(nominalPollTime_ms + deltaPollTime_ms) {
  601. init();
  602. open(childpath);
  603. }
  604. Child::Child(size_t bufSize,
  605. std::uint16_t nominalAboveMinPollTime_ms,
  606. std::uint16_t deltaPollTime_ms) :
  607. bufferCapacity(bufSize),
  608. readBuffer(bufferCapacity),
  609. writeBuffer(bufferCapacity),
  610. nominalPollTime_ms(nominalAboveMinPollTime_ms +
  611. CodeDweller::MinimumSleeperTime),
  612. maximumPollTime_ms(nominalPollTime_ms + deltaPollTime_ms) {
  613. init();
  614. }
  615. Child::~Child() {
  616. try {
  617. close();
  618. } catch (std::exception &e) {
  619. ;
  620. }
  621. }
  622. void Child::open(std::vector<std::string> const &args) {
  623. cmdArgs = args;
  624. if (isRunning()) {
  625. throw std::logic_error("The child process was already active.");
  626. }
  627. init();
  628. run();
  629. }
  630. void Child::open(std::string const &childpath) {
  631. if (isRunning()) {
  632. throw std::logic_error("The child process was already active.");
  633. }
  634. cmdArgs.clear();
  635. cmdArgs.push_back(childpath);
  636. init();
  637. run();
  638. }
  639. void Child::init() {
  640. childStarted = false;
  641. childExited = false;
  642. exitCodeObtainedFlag = false;
  643. exitCode = 0;
  644. readBuffer.clear();
  645. nWriteBytes = 0;
  646. nTransmitBytes = 0;
  647. readerThreadIsRunning = false;
  648. writerThreadIsRunning = false;
  649. stopReaderFlag = true;
  650. stopWriterFlag = true;
  651. errorText.clear();
  652. }
  653. bool Child::isFinishedWriting() const {
  654. return ( (0 == nWriteBytes) &&
  655. (0 == nTransmitBytes) );
  656. }
  657. bool Child::closeInput(std::string &errorString) {
  658. #ifdef _WIN32
  659. // Close if not already closed.
  660. if ( (NULL != inputHandle) &&
  661. (CloseHandle(inputHandle) == 0) ) {
  662. errorString += (errorString.empty() ? "" : "\n");
  663. errorString += "Error closing input to the child: " + getErrorText();
  664. return false;
  665. }
  666. // Closed successfully.
  667. inputHandle = NULL;
  668. return true;
  669. #else
  670. // Close if not already closed.
  671. if ( (-1 != inputFileDescriptor) &&
  672. (0 != ::close(inputFileDescriptor)) ) {
  673. errorString += (errorString.empty() ? "" : "\n");
  674. errorString += "Error closing input to the child: " + getErrorText();
  675. return false;
  676. }
  677. // Closed successfully.
  678. inputFileDescriptor = -1;
  679. return true;
  680. #endif
  681. }
  682. bool Child::closeOutput(std::string &errorString) {
  683. #ifdef _WIN32
  684. // Close if not already closed.
  685. if ( (NULL != outputHandle) &&
  686. (CloseHandle(outputHandle) == 0) ) {
  687. errorString += (errorString.empty() ? "" : "\n");
  688. errorString += "Error closing output to the child: " + getErrorText();
  689. return false;
  690. }
  691. // Closed successfully.
  692. outputHandle = NULL;
  693. return true;
  694. #else
  695. // Close if not already closed.
  696. if ( (-1 != outputFileDescriptor) &&
  697. (0 != ::close(outputFileDescriptor)) ) {
  698. errorString += (errorString.empty() ? "" : "\n");
  699. errorString += "Error closing output to the child: " + getErrorText();
  700. return false;
  701. }
  702. // Closed successfully.
  703. outputFileDescriptor = -1;
  704. return true;
  705. #endif
  706. }
  707. void Child::closeStdIn() {
  708. if (!childStarted) {
  709. throw std::logic_error("Child process was not started "
  710. "when close() was called");
  711. }
  712. // Stop writer thread. Note: None of the error conditions that
  713. // cause an exception to be thrown by join() can ever occur.
  714. stopWriterFlag = true;
  715. std::string errorString;
  716. if (!closeOutput(errorString)) {
  717. throw std::runtime_error(errorString);
  718. }
  719. if (writerThreadIsRunning) {
  720. writerThread.join();
  721. writerThreadIsRunning = false;
  722. }
  723. }
  724. void Child::close() {
  725. if (!childStarted) {
  726. throw std::logic_error("Child process was not started "
  727. "when close() was called");
  728. }
  729. // Stop the reader and writer threads. Note: None of the error
  730. // conditions that cause an exception to be thrown by join()
  731. // can ever occur.
  732. stopReaderFlag = true;
  733. stopWriterFlag = true;
  734. // Terminate the child if it's running.
  735. if (isRunning()) {
  736. std::string errorString;
  737. bool noErrorOccurred = true;
  738. #ifdef _WIN32
  739. // Ignore errors. Reason: Terminating a proces that doesn't
  740. // exist (e.g. has exited) gives an error.
  741. (void) TerminateProcess(childProcess, terminateExitCode);
  742. noErrorOccurred = noErrorOccurred && closeInput(errorString);
  743. noErrorOccurred = noErrorOccurred && closeOutput(errorString);
  744. #else
  745. noErrorOccurred = noErrorOccurred && closeInput(errorString);
  746. noErrorOccurred = noErrorOccurred && closeOutput(errorString);
  747. if (kill(childPid, SIGKILL) != 0) {
  748. errorString += (errorString.empty() ? "" : "\n");
  749. errorString += "Error terminating the child process: " +
  750. getErrorText();
  751. noErrorOccurred = false;
  752. } else if (waitpid(childPid, NULL, 0) != childPid) {
  753. errorString += (errorString.empty() ? "" : "\n");
  754. errorString += "Error waiting for the child process: " +
  755. getErrorText();
  756. noErrorOccurred = false;
  757. }
  758. #endif
  759. if (!noErrorOccurred) {
  760. throw std::runtime_error(errorString);
  761. }
  762. }
  763. if (readerThreadIsRunning) {
  764. readerThread.join();
  765. readerThreadIsRunning = false;
  766. }
  767. if (writerThreadIsRunning) {
  768. writerThread.join();
  769. writerThreadIsRunning = false;
  770. }
  771. // Reset.
  772. init();
  773. }
  774. bool Child::isRunning() const {
  775. return childStarted && !childExited;
  776. }
  777. bool Child::errorOccurred(std::string &errorDescription) const {
  778. errorDescription = errorText;
  779. return !errorDescription.empty();
  780. }
  781. void Child::run() {
  782. if (childStarted) {
  783. throw std::logic_error("Child process was active when "
  784. "run() was called");
  785. }
  786. if (cmdArgs.empty()) {
  787. throw std::invalid_argument("A child executable must be specified.");
  788. }
  789. #ifdef _WIN32
  790. // Set the bInheritHandle flag so pipe handles are inherited.
  791. SECURITY_ATTRIBUTES securityAttributes;
  792. securityAttributes.nLength = sizeof(SECURITY_ATTRIBUTES);
  793. securityAttributes.bInheritHandle = true;
  794. securityAttributes.lpSecurityDescriptor = NULL;
  795. // Create a pipe for the child process's STDOUT.
  796. HANDLE childStdOutAtChild;
  797. HANDLE childStdOutAtParent;
  798. HANDLE childStdInAtChild;
  799. HANDLE childStdInAtParent;
  800. int bufferSize = 0;
  801. if (!CreatePipe(&childStdOutAtParent,
  802. &childStdOutAtChild,
  803. &securityAttributes,
  804. bufferSize)) {
  805. throw std::runtime_error("Error from CreatePipe for stdout: " +
  806. getErrorText());
  807. }
  808. // Ensure the read handle to the pipe for STDOUT is not inherited.
  809. int inheritFlag = 0;
  810. if (!SetHandleInformation(childStdOutAtParent,
  811. HANDLE_FLAG_INHERIT,
  812. inheritFlag) ) {
  813. throw std::runtime_error("Error from GetHandleInformation for stdout: " +
  814. getErrorText());
  815. }
  816. // Create a pipe for the child process's STDIN.
  817. if (! CreatePipe(&childStdInAtChild,
  818. &childStdInAtParent,
  819. &securityAttributes,
  820. bufferSize)) {
  821. throw std::runtime_error("Error from CreatePipe for stdin: " +
  822. getErrorText());
  823. }
  824. // Ensure the write handle to the pipe for STDIN is not inherited.
  825. if (!SetHandleInformation(childStdInAtParent,
  826. HANDLE_FLAG_INHERIT,
  827. inheritFlag)) {
  828. throw std::runtime_error("Error from GetHandleInformation for stdin: " +
  829. getErrorText());
  830. }
  831. // Set up members of the PROCESS_INFORMATION structure.
  832. PROCESS_INFORMATION processInfo;
  833. std::fill((char *) &processInfo,
  834. ((char *) &processInfo) + sizeof(PROCESS_INFORMATION),
  835. 0);
  836. // Set up members of the STARTUPINFO structure. This structure
  837. // specifies the STDIN and STDOUT handles for redirection.
  838. STARTUPINFO startInfo;
  839. std::fill((char *) &startInfo,
  840. ((char *) &startInfo) + sizeof(STARTUPINFO),
  841. 0);
  842. startInfo.cb = sizeof(STARTUPINFO);
  843. startInfo.hStdError = childStdOutAtChild;
  844. startInfo.hStdOutput = childStdOutAtChild;
  845. startInfo.hStdInput = childStdInAtChild;
  846. startInfo.dwFlags |= STARTF_USESTDHANDLES;
  847. // Assemble the command line.
  848. std::string cmdline;
  849. if (cmdArgs.size() == 1) {
  850. cmdline = cmdArgs[0];
  851. } else {
  852. // Append all but last command-line arguments.
  853. for (size_t i = 0; i < cmdArgs.size() - 1; i++) {
  854. cmdline += cmdArgs[i] + " ";
  855. }
  856. cmdline += cmdArgs.back(); // Append last command-line argument.
  857. }
  858. // Create the child process.
  859. bool status;
  860. status = CreateProcess(NULL,
  861. (char *) cmdline.c_str(),
  862. NULL, // process security attributes
  863. NULL, // primary thread security attributes
  864. true, // handles are inherited
  865. 0, // creation flags
  866. NULL, // use parent's environment
  867. NULL, // use parent's current directory
  868. &startInfo, // STARTUPINFO pointer
  869. &processInfo); // receives PROCESS_INFORMATION
  870. // If an error occurs, exit the application.
  871. if (!status ) {
  872. throw std::runtime_error("Error from CreateProcess with "
  873. "command line \"" + cmdline + "\": " +
  874. getErrorText());
  875. }
  876. // Provide the stream buffers with the handles for communicating
  877. // with the child process.
  878. inputHandle = childStdOutAtParent;
  879. outputHandle = childStdInAtParent;
  880. // Save the handles to the child process and its primary thread.
  881. childProcess = processInfo.hProcess;
  882. childThread = processInfo.hThread;
  883. // Close the child's end of the pipes.
  884. if (!CloseHandle(childStdOutAtChild)) {
  885. throw std::runtime_error("Error closing the child process "
  886. "stdout handle: " + getErrorText());
  887. }
  888. if (!CloseHandle(childStdInAtChild)) {
  889. throw std::runtime_error("Error closing the child process "
  890. "stdin handle: " + getErrorText());
  891. }
  892. #else
  893. // Create the pipes for the stdin and stdout.
  894. int childStdInPipe[2];
  895. int childStdOutPipe[2];
  896. if (pipe(childStdInPipe) != 0) {
  897. throw std::runtime_error("Error creating pipe for stdin: " +
  898. getErrorText());
  899. }
  900. if (pipe(childStdOutPipe) != 0) {
  901. ::close(childStdInPipe[0]);
  902. ::close(childStdInPipe[1]);
  903. throw std::runtime_error("Error creating pipe for stdout: " +
  904. getErrorText());
  905. }
  906. // Create the child process.
  907. childPid = fork();
  908. if (-1 == childPid) {
  909. for (int i = 0; i < 2; i++) {
  910. ::close(childStdInPipe[i]);
  911. ::close(childStdOutPipe[i]);
  912. }
  913. throw std::runtime_error("Error creating child process: " +
  914. getErrorText());
  915. }
  916. if (0 == childPid) {
  917. // The child executes this. Redirect stdin.
  918. if (dup2(childStdInPipe[0], STDIN_FILENO) == -1) {
  919. std::string errMsg;
  920. // Send message to parent.
  921. errMsg = "Error redirecting stdin in the child: " + getErrorText();
  922. ::write(childStdOutPipe[1], errMsg.data(), errMsg.size());
  923. exit(-1);
  924. }
  925. // Redirect stdout.
  926. if (dup2(childStdOutPipe[1], STDOUT_FILENO) == -1) {
  927. std::string errMsg;
  928. // Send message to parent.
  929. errMsg = "Error redirecting stdout in the child: " + getErrorText();
  930. ::write(childStdOutPipe[1], errMsg.data(), errMsg.size());
  931. exit(-1);
  932. }
  933. // Close pipes.
  934. if ( (::close(childStdInPipe[0]) != 0) ||
  935. (::close(childStdInPipe[1]) != 0) ||
  936. (::close(childStdOutPipe[0]) != 0) ||
  937. (::close(childStdOutPipe[1]) != 0) ) {
  938. std::string errMsg;
  939. // Send message to parent.
  940. errMsg = "Error closing the pipes in the child: " + getErrorText();
  941. ::write(STDOUT_FILENO, errMsg.data(), errMsg.size());
  942. exit(-1);
  943. }
  944. // Prepare the arguments.
  945. std::vector<const char *> execvArgv;
  946. for (auto &arg : cmdArgs) {
  947. execvArgv.push_back(arg.c_str());
  948. }
  949. execvArgv.push_back((char *) NULL);
  950. // Run the child process image.
  951. (void) execv(execvArgv[0], (char * const *) &(execvArgv[0]));
  952. // Error from exec.
  953. std::string errMsg;
  954. // Send message to parent.
  955. errMsg = "Error from exec: " + getErrorText();
  956. ::write(STDOUT_FILENO, errMsg.data(), errMsg.size());
  957. exit(-1);
  958. }
  959. // Provide the stream buffers with the file descriptors for
  960. // communicating with the child process.
  961. inputFileDescriptor = childStdOutPipe[0];
  962. outputFileDescriptor = childStdInPipe[1];
  963. // Close the child's end of the pipes.
  964. if ( (::close(childStdInPipe[0]) != 0) ||
  965. (::close(childStdOutPipe[1]) != 0) ) {
  966. std::string errMsg;
  967. throw std::runtime_error("Error closing child's end of pipes in "
  968. "the parent: " + getErrorText());
  969. }
  970. #endif
  971. childStarted = true;
  972. // Start the reader and writer threads.
  973. stopReaderFlag = false;
  974. stopWriterFlag = false;
  975. try {
  976. std::thread readerTemp(&Child::readFromChild, this);
  977. readerThread = std::move(readerTemp);
  978. } catch (std::exception &e) {
  979. throw std::runtime_error("Error starting reader thread: " +
  980. getErrorText());
  981. }
  982. try {
  983. std::thread writerTemp(&Child::writeToChild, this);
  984. writerThread = std::move(writerTemp);
  985. } catch (std::exception &e) {
  986. stopReaderFlag = true;
  987. stopWriterFlag = true;
  988. readerThread.join();
  989. throw std::runtime_error("Error starting writer thread: " +
  990. getErrorText());
  991. }
  992. readerThreadIsRunning = true;
  993. writerThreadIsRunning = true;
  994. }
  995. bool Child::isDone() {
  996. if (childExited) {
  997. return true;
  998. }
  999. if (!childStarted) {
  1000. throw std::logic_error("Child process was not started "
  1001. "when isDone() was called");
  1002. }
  1003. int result;
  1004. #ifdef _WIN32
  1005. if (!GetExitCodeProcess(childProcess, (LPDWORD) &result)) {
  1006. throw std::runtime_error("Error checking status of child process: " +
  1007. getErrorText());
  1008. }
  1009. if (STILL_ACTIVE == result) {
  1010. return false;
  1011. }
  1012. // Child process has exited. Save the exit code.
  1013. exitCode = result;
  1014. exitCodeObtainedFlag = true;
  1015. #else
  1016. int status = 0;
  1017. result = waitpid(childPid, &status, WNOHANG);
  1018. if (-1 == result) {
  1019. throw std::runtime_error("Error checking status of child process: " +
  1020. getErrorText());
  1021. } else if (0 == result) {
  1022. // Child is still running.
  1023. return false;
  1024. }
  1025. if (WIFEXITED(status)) {
  1026. // Child exited normally.
  1027. exitCode = WEXITSTATUS(status);
  1028. exitCodeObtainedFlag = true;
  1029. }
  1030. #endif
  1031. childExited = true;
  1032. // Stop threads.
  1033. stopReaderFlag = true;
  1034. stopWriterFlag = true;
  1035. if (readerThreadIsRunning) {
  1036. readerThread.join();
  1037. readerThreadIsRunning = false;
  1038. }
  1039. if (writerThreadIsRunning) {
  1040. writerThread.join();
  1041. writerThreadIsRunning = false;
  1042. }
  1043. return true;
  1044. }
  1045. int32_t Child::result() {
  1046. if (exitCodeObtainedFlag) {
  1047. return exitCode;
  1048. }
  1049. // Check whether the process is running, and get the exit code.
  1050. if (!isDone()) {
  1051. throw std::logic_error("Child process was still running "
  1052. "when result() was called");
  1053. }
  1054. // Child process has exited.
  1055. if (!exitCodeObtainedFlag) {
  1056. // Exit code is not available.
  1057. throw std::runtime_error("Child process has exited but the exit "
  1058. "code is not available");
  1059. }
  1060. return exitCode;
  1061. }
  1062. std::string Child::getErrorText() {
  1063. #ifdef _WIN32
  1064. LPVOID winMsgBuf;
  1065. DWORD lastError = GetLastError();
  1066. FormatMessage(
  1067. FORMAT_MESSAGE_ALLOCATE_BUFFER |
  1068. FORMAT_MESSAGE_FROM_SYSTEM |
  1069. FORMAT_MESSAGE_IGNORE_INSERTS,
  1070. NULL,
  1071. lastError,
  1072. MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
  1073. (char *) &winMsgBuf,
  1074. 0, NULL );
  1075. std::string errMsg((char *) winMsgBuf);
  1076. LocalFree(winMsgBuf);
  1077. return errMsg;
  1078. #else
  1079. return strerror(errno);
  1080. #endif
  1081. }
  1082. void Child::readFromChild() {
  1083. std::vector<char> rxBuf(bufferCapacity);
  1084. CodeDweller::PollTimer pollTimer(nominalPollTime_ms, maximumPollTime_ms);
  1085. while (!stopReaderFlag) {
  1086. char *bufferPtr;
  1087. bufferPtr = &(rxBuf[0]);
  1088. // Blocking read from the child.
  1089. #ifdef _WIN32
  1090. DWORD nBytesRead;
  1091. if (!ReadFile(inputHandle,
  1092. bufferPtr,
  1093. bufferCapacity,
  1094. &nBytesRead,
  1095. NULL)) {
  1096. if (stopReaderFlag) {
  1097. break;
  1098. }
  1099. // Broken pipe occurs when the child exits; this is not
  1100. // necessarily an error condition.
  1101. if (GetLastError() != ERROR_BROKEN_PIPE) {
  1102. errorText = "Error reading from the child process: ";
  1103. errorText += getErrorText();
  1104. }
  1105. break;
  1106. }
  1107. #else
  1108. ssize_t nBytesRead;
  1109. nBytesRead = ::read(inputFileDescriptor,
  1110. bufferPtr,
  1111. bufferCapacity);
  1112. if (-1 == nBytesRead) {
  1113. if (stopReaderFlag) {
  1114. break;
  1115. }
  1116. errorText = "Error reading from the child process: ";
  1117. errorText += getErrorText();
  1118. break;
  1119. } else if (0 == nBytesRead) {
  1120. // EOF; child exited.
  1121. break;
  1122. }
  1123. #endif
  1124. // Copy to the shared read buffer.
  1125. while ((nBytesRead > 0) && !stopReaderFlag) {
  1126. int nBytesToPut, nBytesFree;
  1127. nBytesToPut = nBytesRead;
  1128. // Can be called in the reader thread without locking the
  1129. // mutex.
  1130. nBytesFree = readBuffer.nFree();
  1131. if (nBytesToPut > nBytesFree) {
  1132. nBytesToPut = nBytesFree;
  1133. }
  1134. if (nBytesToPut > 0) {
  1135. std::lock_guard<std::mutex> lock(readBufferMutex);
  1136. readBuffer.put(bufferPtr, nBytesToPut);
  1137. bufferPtr += nBytesToPut;
  1138. nBytesRead -= nBytesToPut;
  1139. pollTimer.reset();
  1140. } else {
  1141. pollTimer.pause();
  1142. }
  1143. }
  1144. }
  1145. }
  1146. void Child::writeToChild() {
  1147. std::vector<char> localWriteBuffer(bufferCapacity);
  1148. size_t nLocalWriteBytes;
  1149. CodeDweller::PollTimer pollTimer(nominalPollTime_ms, maximumPollTime_ms);
  1150. while (!stopWriterFlag) {
  1151. char *bufferPtr;
  1152. // Poll for data in the shared write buffer.
  1153. while ((0 == nWriteBytes) && !stopWriterFlag) {
  1154. pollTimer.pause();
  1155. }
  1156. if (stopWriterFlag) {
  1157. goto exit;
  1158. }
  1159. // Copy from the shared write buffer.
  1160. {
  1161. std::lock_guard<std::mutex> lock(writeBufferMutex);
  1162. localWriteBuffer.swap(writeBuffer);
  1163. nLocalWriteBytes = nWriteBytes;
  1164. nWriteBytes = 0;
  1165. }
  1166. if (stopWriterFlag) {
  1167. goto exit;
  1168. }
  1169. pollTimer.reset();
  1170. // Blocking write to the child.
  1171. bufferPtr = &(localWriteBuffer[0]);
  1172. while (nLocalWriteBytes > 0) {
  1173. #ifdef _WIN32
  1174. DWORD nBytesWritten;
  1175. if (!WriteFile(outputHandle,
  1176. bufferPtr,
  1177. nLocalWriteBytes,
  1178. &nBytesWritten,
  1179. NULL)) {
  1180. if (stopWriterFlag) {
  1181. goto exit;
  1182. }
  1183. errorText = "Error writing to the child process: ";
  1184. errorText += getErrorText();
  1185. goto exit;
  1186. }
  1187. if (stopWriterFlag) {
  1188. goto exit;
  1189. }
  1190. #else
  1191. ssize_t nBytesWritten;
  1192. nBytesWritten = ::write(outputFileDescriptor,
  1193. bufferPtr,
  1194. nLocalWriteBytes);
  1195. if (stopWriterFlag) {
  1196. goto exit;
  1197. }
  1198. if (-1 == nBytesWritten) {
  1199. if (ENOSPC != errno) {
  1200. // Some error other than no space.
  1201. errorText = "Error writing to the child process: ";
  1202. errorText += getErrorText();
  1203. goto exit;
  1204. }
  1205. }
  1206. #endif
  1207. nLocalWriteBytes -= nBytesWritten;
  1208. bufferPtr += nBytesWritten;
  1209. }
  1210. }
  1211. exit: return;
  1212. }
  1213. }