X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/b3e8e7c79e5d1fb33556ea3cb9cf9830085c22a5..85909931857090541511e7ab9a085225e0db0407:/log.c diff --git a/log.c b/log.c index 139f0025..64e584b0 100644 --- a/log.c +++ b/log.c @@ -37,12 +37,13 @@ extern int msg_fd_out; extern int allow_8bit_chars; extern int protocol_version; extern int preserve_times; -extern int log_format_has_i; -extern int log_format_has_o_or_i; +extern int stdout_format_has_i; +extern int stdout_format_has_o_or_i; +extern int logfile_format_has_i; extern int logfile_format_has_o_or_i; extern mode_t orig_umask; extern char *auth_user; -extern char *log_format; +extern char *stdout_format; extern char *logfile_format; extern char *logfile_name; #if defined HAVE_ICONV_OPEN && defined HAVE_ICONV_H @@ -237,7 +238,7 @@ void rwrite(enum logcode code, char *buf, int len) code = FINFO; else if (am_daemon || logfile_name) { static int in_block; - char msg[2048], *s; + char msg[2048]; int priority = code == FERROR ? LOG_WARNING : LOG_INFO; if (in_block) @@ -246,8 +247,7 @@ void rwrite(enum logcode code, char *buf, int len) if (!log_initialised) log_init(); strlcpy(msg, buf, MIN((int)sizeof msg, len + 1)); - for (s = msg; *s == '\n' && s[1]; s++) {} - logit(priority, s); + logit(priority, msg); in_block = 0; if (code == FLOG || (am_daemon && !am_server)) @@ -272,17 +272,8 @@ void rwrite(enum logcode code, char *buf, int len) case FERROR: log_got_error = 1; f = stderr; - goto pre_scan; - case FINFO: - f = am_server ? stderr : stdout; - pre_scan: - while (len > 1 && *buf == '\n') { - fputc(*buf, f); - buf++; - len--; - } break; - case FNAME: + case FINFO: f = am_server ? stderr : stdout; break; default: @@ -410,8 +401,7 @@ void rflush(enum logcode code) fflush(f); } -/* a generic logging routine for send/recv, with parameter - * substitiution */ +/* A generic logging routine for send/recv, with parameter substitiution. */ static void log_formatted(enum logcode code, char *format, char *op, struct file_struct *file, struct stats *initial_stats, int iflags, char *hlink) @@ -673,16 +663,19 @@ int log_format_has(const char *format, char esc) return 0; } -/* log the transfer of a file */ -void log_item(struct file_struct *file, struct stats *initial_stats, - int iflags, char *hlink) +/* Log the transfer of a file. If the code is FCLIENT, the output just goes + * to stdout. If it is FLOG, it just goes to the log file. Otherwise we + * output to both. */ +void log_item(enum logcode code, struct file_struct *file, + struct stats *initial_stats, int iflags, char *hlink) { char *s_or_r = am_sender ? "send" : "recv"; - if (log_format && !am_server) { - log_formatted(FNAME, log_format, s_or_r, + if (code != FLOG && stdout_format && !am_server) { + log_formatted(FCLIENT, stdout_format, s_or_r, file, initial_stats, iflags, hlink); - } else if (logfile_format) { + } + if (code != FCLIENT && logfile_format && *logfile_format) { log_formatted(FLOG, logfile_format, s_or_r, file, initial_stats, iflags, hlink); } @@ -693,14 +686,17 @@ void maybe_log_item(struct file_struct *file, int iflags, int itemizing, { int significant_flags = iflags & SIGNIFICANT_ITEM_FLAGS; int see_item = itemizing && (significant_flags || *buf - || log_format_has_i > 1 || (verbose > 1 && log_format_has_i)); + || stdout_format_has_i > 1 || (verbose > 1 && stdout_format_has_i)); int local_change = iflags & ITEM_LOCAL_CHANGE && significant_flags; if (am_server) { - if (logfile_name && !dry_run && see_item) - log_item(file, &stats, iflags, buf); + if (logfile_name && !dry_run && see_item + && (significant_flags || logfile_format_has_i)) + log_item(FLOG, file, &stats, iflags, buf); } else if (see_item || local_change || *buf - || (S_ISDIR(file->mode) && significant_flags)) - log_item(file, &stats, iflags, buf); + || (S_ISDIR(file->mode) && significant_flags)) { + enum logcode code = significant_flags || logfile_format_has_i ? FINFO : FCLIENT; + log_item(code, file, &stats, iflags, buf); + } } void log_delete(char *fname, int mode) @@ -712,14 +708,14 @@ void log_delete(char *fname, int mode) file.mode = mode; file.basename = fname; - if (!verbose && !log_format) + if (!verbose && !stdout_format) ; else if (am_server && protocol_version >= 29 && len < MAXPATHLEN) { if (S_ISDIR(mode)) len++; /* directories include trailing null */ send_msg(MSG_DELETED, fname, len); } else { - fmt = log_format_has_o_or_i ? log_format : "deleting %n"; + fmt = stdout_format_has_o_or_i ? stdout_format : "deleting %n"; log_formatted(FCLIENT, fmt, "del.", &file, &stats, ITEM_DELETED, NULL); }