📄 log.c
字号:
static char rcsid[] = "log.c,v 1.39 1996/01/17 20:51:15 duane Exp";/* * log.c - Logging facilities for Essence system. * * Darren Hardy, hardy@cs.colorado.edu, February 1994 * * ---------------------------------------------------------------------- * Copyright (c) 1994, 1995. All rights reserved. * * The Harvest software was developed by the Internet Research Task * Force Research Group on Resource Discovery (IRTF-RD): * * Mic Bowman of Transarc Corporation. * Peter Danzig of the University of Southern California. * Darren R. Hardy of the University of Colorado at Boulder. * Udi Manber of the University of Arizona. * Michael F. Schwartz of the University of Colorado at Boulder. * Duane Wessels of the University of Colorado at Boulder. * * This copyright notice applies to software in the Harvest * ``src/'' directory only. Users should consult the individual * copyright notices in the ``components/'' subdirectories for * copyright information about other software bundled with the * Harvest source code distribution. * * TERMS OF USE * * The Harvest software may be used and re-distributed without * charge, provided that the software origin and research team are * cited in any use of the system. Most commonly this is * accomplished by including a link to the Harvest Home Page * (http://harvest.cs.colorado.edu/) from the query page of any * Broker you deploy, as well as in the query result pages. These * links are generated automatically by the standard Broker * software distribution. * * The Harvest software is provided ``as is'', without express or * implied warranty, and with no support nor obligation to assist * in its use, correction, modification or enhancement. We assume * no liability with respect to the infringement of copyrights, * trade secrets, or any patents, and are not responsible for * consequential damages. Proper use of the Harvest software is * entirely the responsibility of the user. * * DERIVATIVE WORKS * * Users may make derivative works from the Harvest software, subject * to the following constraints: * * - You must include the above copyright notice and these * accompanying paragraphs in all forms of derivative works, * and any documentation and other materials related to such * distribution and use acknowledge that the software was * developed at the above institutions. * * - You must notify IRTF-RD regarding your distribution of * the derivative work. * * - You must clearly notify users that your are distributing * a modified version and not the original Harvest software. * * - Any derivative product is also subject to these copyright * and use restrictions. * * Note that the Harvest software is NOT in the public domain. We * retain copyright, as specified above. * * HISTORY OF FREE SOFTWARE STATUS * * Originally we required sites to license the software in cases * where they were going to build commercial products/services * around Harvest. In June 1995 we changed this policy. We now * allow people to use the core Harvest software (the code found in * the Harvest ``src/'' directory) for free. We made this change * in the interest of encouraging the widest possible deployment of * the technology. The Harvest software is really a reference * implementation of a set of protocols and formats, some of which * we intend to standardize. We encourage commercial * re-implementations of code complying to this set of standards. * */#include <stdio.h>#include <string.h>#include <unistd.h>#include <errno.h>#include <time.h>#include <fcntl.h>#include <sys/types.h>#include <sys/stat.h>#include <sys/file.h>#if defined(__STRICT_ANSI__)#include <stdarg.h>#else#include <varargs.h>#endif#include "util.h"/* Local functions */static char *standard_msg();static void log_flush();/* Local variables */static FILE *fp_log = NULL;static FILE *fp_errs = NULL;static int pid;static char *pname = NULL;int do_log_sync = 1; /* global var to tweak log syncing */static char lbuf[4096];#if defined(USE_LOG_SYNC) && defined(HAVE_FLOCK)static void lock_file(fp) FILE *fp;{ if (flock(fileno(fp), LOCK_EX) < 0) perror("lockf"); /* use perror, not log_errno */ if (fseek(fp, 0, SEEK_END) < 0) /* because recursion could */ perror("fseek"); /* occur */}static void unlock_file(fp) FILE *fp;{ if (flock(fileno(fp), LOCK_UN) < 0) perror("lockf");}#else#define lock_file(fp) /* nops */#define unlock_file(fp)#endif/* * init_log() - Initializes the logging routines. Log() prints to * FILE *a, and errorlog() prints to FILE *b; */void init_log(a, b) FILE *a, *b;{ struct stat sb; fp_log = a; fp_errs = b; pid = getpid(); pname = NULL; do_log_sync = 1; if (fp_log) { if (fstat(fileno(fp_log), &sb) > -1) { if (!S_ISREG(sb.st_mode)) do_log_sync = 0; } /* force writes at the end */ fcntl(fileno(fp_log), F_SETFL, O_APPEND); } if (fp_errs) { if (fstat(fileno(fp_errs), &sb) > -1) { if (!S_ISREG(sb.st_mode)) do_log_sync = 0; } /* force writes at the end */ fcntl(fileno(fp_errs), F_SETFL, O_APPEND); }}void init_log3(pn, a, b) char *pn; FILE *a, *b;{ struct stat sb; fp_log = a; fp_errs = b; pid = getpid(); pname = xstrdup(pn); if (strlen(pname) > 8) *(pname + 8) = '\0'; do_log_sync = 1; if (fp_log) if (fstat(fileno(fp_log), &sb) > -1) { if (!S_ISREG(sb.st_mode)) do_log_sync = 0; } if (fp_errs) if (fstat(fileno(fp_errs), &sb) > -1) { if (!S_ISREG(sb.st_mode)) do_log_sync = 0; }}/* * Log() - used like printf(3). Prints message to stdout. */#if defined(__STRICT_ANSI__)void Log(char *fmt,...){ va_list ap; if (fp_log == NULL) return; va_start(ap, fmt);#elsevoid Log(va_alist) va_dcl{ va_list ap; char *fmt; if (fp_log == NULL) return; va_start(ap); fmt = va_arg(ap, char *);#endif /* __STRICT_ANSI__ */ if (fp_log == NULL) return; if (do_log_sync) { lock_file(fp_log); } lbuf[0] = '\0'; vsprintf(lbuf, fmt, ap); va_end(ap); fprintf(fp_log, "%s: %s", standard_msg(), lbuf); if (do_log_sync) { log_flush(fp_log); unlock_file(fp_log); }}/* * errorlog() - used like printf(3). Prints error message to stderr. */#if defined(__STRICT_ANSI__)void errorlog(char *fmt,...){ va_list ap; if (fp_errs == NULL) return; va_start(ap, fmt);#elsevoid errorlog(va_alist) va_dcl{ va_list ap; char *fmt; if (fp_errs == NULL) return; va_start(ap); fmt = va_arg(ap, char *);#endif /* __STRICT_ANSI__ */ if (fp_errs == NULL) return; if (do_log_sync) { lock_file(fp_errs); } lbuf[0] = '\0'; vsprintf(lbuf, fmt, ap); va_end(ap); fprintf(fp_errs, "%s: ERROR: %s", standard_msg(), lbuf); if (do_log_sync) { log_flush(fp_errs); unlock_file(fp_errs); }}/* * fatal() - used like printf(3). Prints error message to stderr and exits */#if defined(__STRICT_ANSI__)void fatal(char *fmt,...){ va_list ap; if (fp_errs == NULL) exit(1); va_start(ap, fmt);#elsevoid fatal(va_alist) va_dcl{ va_list ap; char *fmt; if (fp_errs == NULL) exit(1); va_start(ap); fmt = va_arg(ap, char *);#endif /* __STRICT_ANSI__ */ if (fp_errs == NULL) exit(1); if (do_log_sync) { lock_file(fp_errs); } lbuf[0] = '\0'; vsprintf(lbuf, fmt, ap); va_end(ap); fprintf(fp_errs, "%s: FATAL: %s", standard_msg(), lbuf); if (do_log_sync) { log_flush(fp_errs); unlock_file(fp_errs); } exit(1);}/* * log_errno() - Same as perror(); doesn't print when errno == 0 */void log_errno(s) char *s;{ if (errno != 0) errorlog("%s: %s\n", s, strerror(errno));}/* * log_errno2() - Same as perror(); doesn't print when errno == 0 */void log_errno2(file, line, s) char *file; int line; char *s;{ if (errno != 0) errorlog("%s [%d]: %s: %s\n", file, line, s, strerror(errno));}/* * fatal_errno() - Same as perror() */void fatal_errno(s) char *s;{ fatal("%s: %s\n", s, strerror(errno));}/* * standard_msg() - Prints the standard pid and timestamp */static char *standard_msg(){ static char buf[BUFSIZ]; buf[0] = '\0'; if (pname != NULL) sprintf(buf, "%8.8s", pname); else sprintf(buf, "%8d", pid);#ifdef LOG_TIMES { time_t t; struct tm *lt; t = time(NULL); lt = localtime(&t); if (lt != NULL) { #ifdef Y2K_TIME (void) strftime(buf + strlen(buf), 63, ": %Y%m%d %H:%M:%S", lt); #else (void) strftime(buf + strlen(buf), 63, ": %y%m%d %H:%M:%S", lt); #endif } }#endif return buf;}static void log_flush(fp) FILE *fp;{ fflush(fp);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -