VirtualBox

Changeset 3190 in kBuild for trunk/src/kmk


Ignore:
Timestamp:
Mar 26, 2018 7:46:13 AM (7 years ago)
Author:
bird
Message:

kmk/output: Basic memory buffered output working.

Location:
trunk/src/kmk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kmk/output.c

    r3189 r3190  
    7171static void  release_semaphore (void *);
    7272static 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)?  */
     76static int combined_output = -1;
    7377
    7478/* Internal worker for output_dump and membuf_dump_most. */
     
    319323}
    320324
    321 /* write/fwrite like function. */
     325
     326
     327/* write/fwrite like function, binary mode. */
    322328void
    323 output_write (struct output *out, int is_err, const char *src, size_t len)
     329output_write_bin (struct output *out, int is_err, const char *src, size_t len)
    324330{
    325331  if (!out || !out->syncout)
    326332    {
    327333      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);
    329339      maybe_con_fwrite (src, len, 1, f);
    330 #else
     340      fflush (f);
     341      _setmode (fd, prev_mode);
     342# else
    331343      fwrite (src, len, 1, f);
    332 #endif
    333344      fflush (f);
     345# endif
    334346    }
    335347  else
     
    354366}
    355367
     368/* write/fwrite like function, text mode. */
     369void
     370output_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
    356404#endif /* CONFIG_WITH_OUTPUT_IN_MEMORY */
    357405
     
    362410{
    363411#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));
    365413#else  /* !CONFIG_WITH_OUTPUT_IN_MEMORY */
    366414  if (! out || ! out->syncout)
     
    913961output_start (void)
    914962{
    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
    916969#ifndef NO_OUTPUT_SYNC
    917970  /* If we're syncing output make sure the temporary file is set up.  */
  • trunk/src/kmk/output.h

    r3189 r3190  
    8080/* Show a message on stdout or stderr.  Will start the output if needed.  */
    8181void outputs (int is_err, const char *msg);
     82#ifdef CONFIG_WITH_OUTPUT_IN_MEMORY
     83void output_write_bin (struct output *out, int is_err, const char *src, size_t len);
     84void output_write_text (struct output *out, int is_err, const char *src, size_t len);
     85#endif
    8286
    8387#ifndef NO_OUTPUT_SYNC
  • trunk/src/kmk/w32/winchildren.c

    r3187 r3190  
    637637static void mkWinChildcareWorkerFlushUnwritten(PWINCHILD pChild, PWINCCWPIPE pPipe)
    638638{
    639     /** @todo integrate with output.c   */
    640639    DWORD cbUnwritten = pPipe->cbWritten - pPipe->offPendingRead;
    641640    if (cbUnwritten)
    642641    {
    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        }
    647656    }
    648657}
     
    693702        if (offRest > offStart)
    694703        {
    695             /** @todo integrate with output.c   */
    696704            /* Write out offStart..offRest. */
    697705            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 += cbWritten <= 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;
    703711                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                }
    704723            }
    705724        }
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette