⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 log.c

📁 一个从网络上自动下载文件的自由工具
💻 C
📖 第 1 页 / 共 2 页
字号:
/* Messages logging.   Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,   2007, 2008 Free Software Foundation, Inc.This file is part of GNU Wget.GNU Wget is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 3 of the License, or(at your option) any later version.GNU Wget is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See theGNU General Public License for more details.You should have received a copy of the GNU General Public Licensealong with Wget.  If not, see <http://www.gnu.org/licenses/>.Additional permission under GNU GPL version 3 section 7If you modify this program, or any covered work, by linking orcombining it with the OpenSSL project's OpenSSL library (or amodified version of that library), containing parts covered by theterms of the OpenSSL or SSLeay licenses, the Free Software Foundationgrants you additional permission to convey the resulting work.Corresponding Source for a non-source form of such a combinationshall include the source code for the parts of OpenSSL used as wellas that of the covered work.  */#include <config.h>#include <stdio.h>#include <string.h>#include <stdlib.h>#include <stdarg.h>#ifdef HAVE_UNISTD_H# include <unistd.h>#endif#include <assert.h>#include <errno.h>#include "wget.h"#include "utils.h"#include "log.h"/* This file impplement support for "logging".  Logging means printing   output, plus several additional features:   - Cataloguing output by importance.  You can specify that a log   message is "verbose" or "debug", and it will not be printed unless   in verbose or debug mode, respectively.   - Redirecting the log to the file.  When Wget's output goes to the   terminal, and Wget receives SIGHUP, all further output is   redirected to a log file.  When this is the case, Wget can also   print the last several lines of "context" to the log file so that   it does not begin in the middle of a line.  For this to work, the   logging code stores the last several lines of context.  Callers may   request for certain output not to be stored.   - Inhibiting output.  When Wget receives SIGHUP, but redirecting   the output fails, logging is inhibited.  *//* The file descriptor used for logging.  This is NULL before log_init   is called; logging functions log to stderr then.  log_init sets it   either to stderr or to a file pointer obtained from fopen().  If   logging is inhibited, logfp is set back to NULL. */static FILE *logfp;/* If true, it means logging is inhibited, i.e. nothing is printed or   stored.  */static bool inhibit_logging;/* Whether the last output lines are stored for use as context.  */static bool save_context_p;/* Whether the log is flushed after each command. */static bool flush_log_p = true;/* Whether any output has been received while flush_log_p was 0. */static bool needs_flushing;/* In the event of a hang-up, and if its output was on a TTY, Wget   redirects its output to `wget-log'.   For the convenience of reading this newly-created log, we store the   last several lines ("screenful", hence the choice of 24) of Wget   output, and dump them as context when the time comes.  */#define SAVED_LOG_LINES 24/* log_lines is a circular buffer that stores SAVED_LOG_LINES lines of   output.  log_line_current always points to the position in the   buffer that will be written to next.  When log_line_current reaches   SAVED_LOG_LINES, it is reset to zero.   The problem here is that we'd have to either (re)allocate and free   strings all the time, or limit the lines to an arbitrary number of   characters.  Instead of settling for either of these, we do both:   if the line is smaller than a certain "usual" line length (128   chars by default), a preallocated memory is used.  The rare lines   that are longer than 128 characters are malloc'ed and freed   separately.  This gives good performance with minimum memory   consumption and fragmentation.  */#define STATIC_LENGTH 128static struct log_ln {  char static_line[STATIC_LENGTH + 1]; /* statically allocated                                          line. */  char *malloced_line;          /* malloc'ed line, for lines of output                                   larger than 80 characters. */  char *content;                /* this points either to malloced_line                                   or to the appropriate static_line.                                   If this is NULL, it means the line                                   has not yet been used. */} log_lines[SAVED_LOG_LINES];/* The current position in the ring. */static int log_line_current = -1;/* Whether the most recently written line was "trailing", i.e. did not   finish with \n.  This is an important piece of information because   the code is always careful to append data to trailing lines, rather   than create new ones.  */static bool trailing_line;static void check_redirect_output (void);#define ROT_ADVANCE(num) do {                   \  if (++num >= SAVED_LOG_LINES)                 \    num = 0;                                    \} while (0)/* Free the log line index with NUM.  This calls free on   ln->malloced_line if it's non-NULL, and it also resets   ln->malloced_line and ln->content to NULL.  */static voidfree_log_line (int num){  struct log_ln *ln = log_lines + num;  if (ln->malloced_line)    {      xfree (ln->malloced_line);      ln->malloced_line = NULL;    }  ln->content = NULL;}/* Append bytes in the range [start, end) to one line in the log.  The   region is not supposed to contain newlines, except for the last   character (at end[-1]).  */static voidsaved_append_1 (const char *start, const char *end){  int len = end - start;  if (!len)    return;  /* First, check whether we need to append to an existing line or to     create a new one.  */  if (!trailing_line)    {      /* Create a new line. */      struct log_ln *ln;      if (log_line_current == -1)        log_line_current = 0;      else        free_log_line (log_line_current);      ln = log_lines + log_line_current;      if (len > STATIC_LENGTH)        {          ln->malloced_line = strdupdelim (start, end);          ln->content = ln->malloced_line;        }      else        {          memcpy (ln->static_line, start, len);          ln->static_line[len] = '\0';          ln->content = ln->static_line;        }    }  else    {      /* Append to the last line.  If the line is malloc'ed, we just         call realloc and append the new string.  If the line is         static, we have to check whether appending the new string         would make it exceed STATIC_LENGTH characters, and if so,         convert it to malloc(). */      struct log_ln *ln = log_lines + log_line_current;      if (ln->malloced_line)        {          /* Resize malloc'ed line and append. */          int old_len = strlen (ln->malloced_line);          ln->malloced_line = xrealloc (ln->malloced_line, old_len + len + 1);          memcpy (ln->malloced_line + old_len, start, len);          ln->malloced_line[old_len + len] = '\0';          /* might have changed due to realloc */          ln->content = ln->malloced_line;        }      else        {          int old_len = strlen (ln->static_line);          if (old_len + len > STATIC_LENGTH)            {              /* Allocate memory and concatenate the old and the new                 contents. */              ln->malloced_line = xmalloc (old_len + len + 1);              memcpy (ln->malloced_line, ln->static_line,                      old_len);              memcpy (ln->malloced_line + old_len, start, len);              ln->malloced_line[old_len + len] = '\0';              ln->content = ln->malloced_line;            }          else            {              /* Just append to the old, statically allocated                 contents.  */              memcpy (ln->static_line + old_len, start, len);              ln->static_line[old_len + len] = '\0';              ln->content = ln->static_line;            }        }    }  trailing_line = !(end[-1] == '\n');  if (!trailing_line)    ROT_ADVANCE (log_line_current);}/* Log the contents of S, as explained above.  If S consists of   multiple lines, they are logged separately.  If S does not end with   a newline, it will form a "trailing" line, to which things will get   appended the next time this function is called.  */static voidsaved_append (const char *s){  while (*s)    {      const char *end = strchr (s, '\n');      if (!end)        end = s + strlen (s);      else        ++end;      saved_append_1 (s, end);      s = end;    }}/* Check X against opt.verbose and opt.quiet.  The semantics is as   follows:   * LOG_ALWAYS - print the message unconditionally;   * LOG_NOTQUIET - print the message if opt.quiet is non-zero;   * LOG_NONVERBOSE - print the message if opt.verbose is zero;   * LOG_VERBOSE - print the message if opt.verbose is non-zero.  */#define CHECK_VERBOSE(x)                        \  switch (x)                                    \    {                                           \    case LOG_ALWAYS:                            \      break;                                    \    case LOG_NOTQUIET:                          \      if (opt.quiet)                            \        return;                                 \      break;                                    \    case LOG_NONVERBOSE:                        \      if (opt.verbose || opt.quiet)             \        return;                                 \      break;                                    \    case LOG_VERBOSE:                           \      if (!opt.verbose)                         \        return;                                 \    }/* Returns the file descriptor for logging.  This is LOGFP, except if   called before log_init, in which case it returns stderr.  This is   useful in case someone calls a logging function before log_init.   If logging is inhibited, return NULL.  */static FILE *get_log_fp (void){  if (inhibit_logging)    return NULL;  if (logfp)    return logfp;  return stderr;}/* Log a literal string S.  The string is logged as-is, without a   newline appended.  */voidlogputs (enum log_options o, const char *s){  FILE *fp;  check_redirect_output ();  if ((fp = get_log_fp ()) == NULL)    return;  CHECK_VERBOSE (o);  fputs (s, fp);  if (save_context_p)    saved_append (s);  if (flush_log_p)    logflush ();  else    needs_flushing = true;}struct logvprintf_state {  char *bigmsg;  int expected_size;  int allocated;};/* Print a message to the log.  A copy of message will be saved to   saved_log, for later reusal by log_dump_context().   Normally we'd want this function to loop around vsnprintf until   sufficient room is allocated, as the Linux man page recommends.   However each call to vsnprintf() must be preceded by va_start and   followed by va_end.  Since calling va_start/va_end is possible only   in the function that contains the `...' declaration, we cannot call   vsnprintf more than once.  Therefore this function saves its state   to logvprintf_state and signals the parent to call it again.   (An alternative approach would be to use va_copy, but that's not   portable.)  */static boollog_vprintf_internal (struct logvprintf_state *state, const char *fmt,                      va_list args){  char smallmsg[128];  char *write_ptr = smallmsg;  int available_size = sizeof (smallmsg);  int numwritten;  FILE *fp = get_log_fp ();  if (!save_context_p)    {      /* In the simple case just call vfprintf(), to avoid needless         allocation and games with vsnprintf(). */      vfprintf (fp, fmt, args);      goto flush;    }  if (state->allocated != 0)    {      write_ptr = state->bigmsg;      available_size = state->allocated;    }  /* The GNU coding standards advise not to rely on the return value     of sprintf().  However, vsnprintf() is a relatively new function     missing from legacy systems.  Therefore I consider it safe to     assume that its return value is meaningful.  On the systems where     vsnprintf() is not available, we use the implementation from     snprintf.c which does return the correct value.  */  numwritten = vsnprintf (write_ptr, available_size, fmt, args);  /* vsnprintf() will not step over the limit given by available_size.     If it fails, it returns either -1 (older implementations) or the     number of characters (not counting the terminating \0) that     *would have* been written if there had been enough room (C99).     In the former case, we double available_size and malloc to get a     larger buffer, and try again.  In the latter case, we use the     returned information to build a buffer of the correct size.  */  if (numwritten == -1)    {      /* Writing failed, and we don't know the needed size.  Try         again with doubled size. */      int newsize = available_size << 1;      state->bigmsg = xrealloc (state->bigmsg, newsize);      state->allocated = newsize;      return false;    }  else if (numwritten >= available_size)    {      /* Writing failed, but we know exactly how much space we         need. */      int newsize = numwritten + 1;      state->bigmsg = xrealloc (state->bigmsg, newsize);      state->allocated = newsize;      return false;    }  /* Writing succeeded. */  saved_append (write_ptr);  fputs (write_ptr, fp);  if (state->bigmsg)    xfree (state->bigmsg); flush:  if (flush_log_p)    logflush ();  else    needs_flushing = true;  return true;}/* Flush LOGFP.  Useful while flushing is disabled.  */void

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -