--- deliantra/server/common/logger.C 2007/07/01 05:00:17 1.15 +++ deliantra/server/common/logger.C 2008/04/30 06:40:28 1.18 @@ -1,11 +1,11 @@ /* - * This file is part of Crossfire TRT, the Roguelike Realtime MORPG. + * This file is part of Deliantra, the Roguelike Realtime MMORPG. * - * Copyright (©) 2005,2006,2007 Marc Alexander Lehmann / Robin Redeker / the Crossfire TRT team + * Copyright (©) 2005,2006,2007 Marc Alexander Lehmann / Robin Redeker / the Deliantra team * Copyright (©) 2002,2007 Mark Wedel & Crossfire Development Team * Copyright (©) 1992,2007 Frank Tore Johansen * - * Crossfire TRT is free software: you can redistribute it and/or modify + * Deliantra is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. @@ -18,12 +18,157 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . * - * The authors can be reached via e-mail to + * The authors can be reached via e-mail to */ #include -#include -#include +#include + +#include + +#include +#include + +#include "global.h" +#include "dynbuf.h" +#include "util.h" + +struct logline +{ + struct timeval tv; + char *buf; // includes PREFIX_LEN garbage bytes + int len; + int flags; +}; + +static SMUTEX(mutex); +static SCOND(cond); +static int logfd = STDERR_FILENO; +static int logsync = 1; +static std::vector > queue; + +void set_logfd (int fd) +{ + SMUTEX_LOCK (mutex); + logfd = fd < 0 ? STDERR_FILENO : fd; + SMUTEX_UNLOCK (mutex); +} + +#define PREFIX_LEN sizeof ("0000-00-00 00:00:00.0000+") - 1 + +static void +log_sync (logline &line) +{ + struct tm lt; + char pfx [PREFIX_LEN]; + + localtime_r (&line.tv.tv_sec, <); + + sprintf (pfx, "%04d-%02d-%02d %02d:%02d:%02d.%04d", + lt.tm_year + 1900, + lt.tm_mon + 1, + lt.tm_mday, + lt.tm_hour, + lt.tm_min, + lt.tm_sec, + (int)(line.tv.tv_usec / 100) + ); + + pfx [PREFIX_LEN - 1] = line.flags & logSync ? '=' : ' '; + + struct iovec iov [2]; + + iov [0].iov_base = pfx; + iov [0].iov_len = PREFIX_LEN; + + char *buf = line.buf; + + while (char *end = strchr (buf, '\n')) + { + iov [1].iov_base = buf; + iov [1].iov_len = end - buf + 1; + + writev (STDERR_FILENO, iov, 2); + if (logfd != STDERR_FILENO) + writev (logfd, iov, 2); + + buf = end + 1; + + if (buf == line.buf + line.len) + break; + + pfx [PREFIX_LEN - 1] = '+'; + } + + sfree (line.buf, line.len); +} + +static void * +logthread_proc (void *arg) +{ + int idx = 0; + + for (;;) + { + logline line; + + SMUTEX_LOCK (mutex); + + while (queue.empty ()) + SCOND_WAIT (cond, mutex); + + line = queue [idx++]; + + // this algorithm could result in an ever-increasing vector + // size if we log faster than we can write, but if that happens + // we have bigger problems. + if (idx == queue.size ()) + { + queue.clear (); + idx = 0; + } + + SMUTEX_UNLOCK (mutex); + + log_sync (line); + } +} + +void +log_cleanup () +{ + logsync = 1; + + for (;;) + { + int done; + + SMUTEX_LOCK (mutex); + done = queue.empty (); + SMUTEX_UNLOCK (mutex); + + if (done) + break; + + usleep (10000); + } +} + +static void +af_child () +{ + logsync = 1; +} + +static struct logthread : thread +{ + logthread () + { + pthread_atfork (0, 0, af_child); + start (logthread_proc); + logsync = 0; + } +} logthread; void LOG (int flags, const char *format, ...) @@ -33,29 +178,48 @@ if (level > settings.debug) return; - char buf[20480]; + logline line; + gettimeofday (&line.tv, 0); - struct timeval tv; - gettimeofday (&tv, 0); - struct tm *ptime = localtime (&tv.tv_sec); - - int len = strftime (buf, sizeof (buf) - 7, "%Y-%m-%d %H:%M:%S", ptime); - len += sprintf (buf + len, ".%04d ", (int)(tv.tv_usec / 100)); + static dynbuf_text buf; va_list ap; va_start (ap, format); - len += vsnprintf (buf + len, sizeof (buf) - len, format, ap); + buf.vprintf (format, ap); va_end (ap); - len = min (sizeof (buf) - 1, len); + buf << '\n'; + + line.buf = buf.linearise (); + line.len = buf.size (); - if (buf [len - 1] != '\n') - buf [len++] = '\n'; // not 0-terminated + if (line.buf [line.len - 2] == '\n') + --line.len; - write (STDERR_FILENO, buf, len); - if (logfile != stderr) - fwrite (buf, 1, len, logfile); + line.buf = salloc (line.len, line.buf); + + buf.clear (); + + if (logsync) + flags |= logSync; if (flags & logBacktrace) - log_backtrace (buf); + { + line.buf [line.len - 1] = 0; + log_backtrace (line.buf); + line.buf [line.len - 1] = '\n'; + } + + line.flags = flags; + + if (line.flags & logSync) + log_sync (line); + else + { + SMUTEX_LOCK (mutex); + queue.push_back (line); + SMUTEX_UNLOCK (mutex); + SCOND_SIGNAL (cond); + } } +