Changeset 3190 in kBuild for trunk/src/kmk
- Timestamp:
- Mar 26, 2018 7:46:13 AM (7 years ago)
- Location:
- trunk/src/kmk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/output.c
r3189 r3190 71 71 static void release_semaphore (void *); 72 72 static int log_working_directory (int); 73 74 /* Is make's stdout going to the same place as stderr? 75 Also, did we already sync_init (== -1)? */ 76 static int combined_output = -1; 73 77 74 78 /* Internal worker for output_dump and membuf_dump_most. */ … … 319 323 } 320 324 321 /* write/fwrite like function. */ 325 326 327 /* write/fwrite like function, binary mode. */ 322 328 void 323 output_write (struct output *out, int is_err, const char *src, size_t len)329 output_write_bin (struct output *out, int is_err, const char *src, size_t len) 324 330 { 325 331 if (!out || !out->syncout) 326 332 { 327 333 FILE *f = is_err ? stderr : stdout; 328 #ifdef KBUILD_OS_WINDOWS 334 # ifdef KBUILD_OS_WINDOWS 335 /* On windows we need to disable \n -> \r\n convers that is common on 336 standard output/error. Also optimize for console output. */ 337 int fd = fileno (f); 338 int prev_mode = _setmode (fd, _O_BINARY); 329 339 maybe_con_fwrite (src, len, 1, f); 330 #else 340 fflush (f); 341 _setmode (fd, prev_mode); 342 # else 331 343 fwrite (src, len, 1, f); 332 #endif333 344 fflush (f); 345 # endif 334 346 } 335 347 else … … 354 366 } 355 367 368 /* write/fwrite like function, text mode. */ 369 void 370 output_write_text (struct output *out, int is_err, const char *src, size_t len) 371 { 372 # if defined (KBUILD_OS_WINDOWS) || defined (KBUILD_OS_OS2) || defined (KBUILD_OS_DOS) 373 if (out && out->syncout) 374 { 375 /* ASSUME fwrite does the desired conversion. */ 376 FILE *f = is_err ? stderr : stdout; 377 # ifdef KBUILD_OS_WINDOWS 378 maybe_con_fwrite (src, len, 1, f); 379 # else 380 fwrite (src, len, 1, f); 381 # endif 382 fflush (f); 383 } 384 else 385 { 386 /* Work the buffer line by line, replacing each \n with \r\n. */ 387 while (len > 0) 388 { 389 const char *nl = memchr ( src, '\n', len); 390 size_t line_len = nl ? nl - src : len; 391 output_write_bin (out, is_err, src, line_len); 392 if (!nl) 393 break; 394 output_write_bin (out, is_err, "\r\n", 2); 395 len -= line_len + 1; 396 src += line_len + 1; 397 } 398 } 399 # else 400 output_write_bin (out, is_err, src, len); 401 # endif 402 } 403 356 404 #endif /* CONFIG_WITH_OUTPUT_IN_MEMORY */ 357 405 … … 362 410 { 363 411 #ifdef CONFIG_WITH_OUTPUT_IN_MEMORY 364 output_write (out, is_err, msg, strlen (msg));412 output_write_text (out, is_err, msg, strlen (msg)); 365 413 #else /* !CONFIG_WITH_OUTPUT_IN_MEMORY */ 366 414 if (! out || ! out->syncout) … … 913 961 output_start (void) 914 962 { 915 #ifndef CONFIG_WITH_OUTPUT_IN_MEMORY 963 #ifdef CONFIG_WITH_OUTPUT_IN_MEMORY 964 /* If we're syncing output make sure the sempahore (win) is set up. */ 965 if (output_context && output_context->syncout) 966 if (combined_output < 0) 967 combined_output = sync_init (); 968 #else 916 969 #ifndef NO_OUTPUT_SYNC 917 970 /* If we're syncing output make sure the temporary file is set up. */ -
trunk/src/kmk/output.h
r3189 r3190 80 80 /* Show a message on stdout or stderr. Will start the output if needed. */ 81 81 void outputs (int is_err, const char *msg); 82 #ifdef CONFIG_WITH_OUTPUT_IN_MEMORY 83 void output_write_bin (struct output *out, int is_err, const char *src, size_t len); 84 void output_write_text (struct output *out, int is_err, const char *src, size_t len); 85 #endif 82 86 83 87 #ifndef NO_OUTPUT_SYNC -
trunk/src/kmk/w32/winchildren.c
r3187 r3190 637 637 static void mkWinChildcareWorkerFlushUnwritten(PWINCHILD pChild, PWINCCWPIPE pPipe) 638 638 { 639 /** @todo integrate with output.c */640 639 DWORD cbUnwritten = pPipe->cbWritten - pPipe->offPendingRead; 641 640 if (cbUnwritten) 642 641 { 643 DWORD cbWritten = 0; 644 if (WriteFile(GetStdHandle(pPipe->iWhich == 1 ? STD_OUTPUT_HANDLE : STD_ERROR_HANDLE), 645 &pPipe->pbBuffer[pPipe->cbWritten], cbUnwritten, &cbWritten, NULL)) 646 pPipe->cbWritten += cbWritten <= cbUnwritten ? cbWritten : cbUnwritten; /* paranoia */ 642 #ifdef CONFIG_WITH_OUTPUT_IN_MEMORY 643 if (pChild->pMkChild) 644 { 645 output_write_bin(&pChild->pMkChild->output, pPipe->iWhich == 2, &pPipe->pbBuffer[pPipe->cbWritten], cbUnwritten); 646 pPipe->cbWritten += cbUnwritten; 647 } 648 else 649 #endif 650 { 651 DWORD cbWritten = 0; 652 if (WriteFile(GetStdHandle(pPipe->iWhich == 1 ? STD_OUTPUT_HANDLE : STD_ERROR_HANDLE), 653 &pPipe->pbBuffer[pPipe->cbWritten], cbUnwritten, &cbWritten, NULL)) 654 pPipe->cbWritten += cbWritten <= cbUnwritten ? cbWritten : cbUnwritten; /* paranoia */ 655 } 647 656 } 648 657 } … … 693 702 if (offRest > offStart) 694 703 { 695 /** @todo integrate with output.c */696 704 /* Write out offStart..offRest. */ 697 705 DWORD cbToWrite = offRest - offStart; 698 DWORD cbWritten = 0; 699 if ( WriteFile(GetStdHandle(pPipe->iWhich == 1 ? STD_OUTPUT_HANDLE : STD_ERROR_HANDLE),700 &pPipe->pbBuffer[offStart], cbToWrite, &cbWritten, NULL))701 {702 offStart += cb Written <= cbToWrite ? cbWritten : cbToWrite; /* paranoia */706 #ifdef CONFIG_WITH_OUTPUT_IN_MEMORY 707 if (pChild->pMkChild) 708 { 709 output_write_bin(&pChild->pMkChild->output, pPipe->iWhich == 2, &pPipe->pbBuffer[offStart], cbToWrite); 710 offStart += cbToWrite; 703 711 pPipe->cbWritten = offStart; 712 } 713 else 714 #endif 715 { 716 DWORD cbWritten = 0; 717 if (WriteFile(GetStdHandle(pPipe->iWhich == 1 ? STD_OUTPUT_HANDLE : STD_ERROR_HANDLE), 718 &pPipe->pbBuffer[offStart], cbToWrite, &cbWritten, NULL)) 719 { 720 offStart += cbWritten <= cbToWrite ? cbWritten : cbToWrite; /* paranoia */ 721 pPipe->cbWritten = offStart; 722 } 704 723 } 705 724 }
Note:
See TracChangeset
for help on using the changeset viewer.