forked from github/server
230a2d8fba
this somehow eliminates bogus cppcheck warnings
396 lines
10 KiB
C
396 lines
10 KiB
C
/*
|
|
+-------------------+ Christian Schlittchen <corwin@amber.kn-bremen.de>
|
|
| | Enno Rehling <enno@eressea.de>
|
|
| Eressea PBEM host | Katja Zedel <katze@felidae.kn-bremen.de>
|
|
| (c) 1998 - 2003 | Henning Peters <faroul@beyond.kn-bremen.de>
|
|
| | Ingo Wilken <Ingo.Wilken@informatik.uni-oldenburg.de>
|
|
+-------------------+ Stefan Reich <reich@halbling.de>
|
|
|
|
This program may not be used, modified or distributed
|
|
without prior permission by the authors of Eressea.
|
|
*/
|
|
#include <platform.h>
|
|
#include "log.h"
|
|
|
|
#include "path.h"
|
|
#include "strings.h"
|
|
#include "unicode.h"
|
|
|
|
#include <critbit.h>
|
|
|
|
#include <assert.h>
|
|
#include <errno.h>
|
|
#include <limits.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
#include <time.h>
|
|
|
|
void errno_check(const char * file, int line) {
|
|
if (errno) {
|
|
log_info("errno is %d (%s) at %s:%d",
|
|
errno, strerror(errno), file, line);
|
|
errno = 0;
|
|
}
|
|
}
|
|
|
|
#ifdef STDIO_CP
|
|
static int stdio_codepage = STDIO_CP;
|
|
#else
|
|
static int stdio_codepage = 0;
|
|
#endif
|
|
|
|
typedef struct log_t {
|
|
void(*log)(void *data, int level, const char *module, const char *format, va_list args);
|
|
void *data;
|
|
int flags;
|
|
struct log_t *next;
|
|
} log_t;
|
|
|
|
static log_t *loggers;
|
|
|
|
log_t *log_create(int flags, void *data, log_fun call) {
|
|
log_t *lgr = malloc(sizeof(log_t));
|
|
if (!lgr) abort();
|
|
lgr->log = call;
|
|
lgr->flags = flags;
|
|
lgr->data = data;
|
|
lgr->next = loggers;
|
|
loggers = lgr;
|
|
return lgr;
|
|
}
|
|
|
|
void log_destroy(log_t *handle) {
|
|
log_t ** lp = &loggers;
|
|
while (*lp) {
|
|
log_t *lg = *lp;
|
|
if (lg==handle) {
|
|
*lp = lg->next;
|
|
free(lg);
|
|
break;
|
|
}
|
|
lp = &lg->next;
|
|
}
|
|
}
|
|
|
|
#define MAXLENGTH 4096 /* because I am lazy, CP437 output is limited to this many chars */
|
|
#define LOG_MAXBACKUPS 5
|
|
|
|
static int
|
|
cp_convert(const char *format, unsigned char *buffer, size_t length, int codepage)
|
|
{
|
|
/* when console output on MSDOS, convert to codepage */
|
|
const char *input = format;
|
|
unsigned char *pos = buffer;
|
|
|
|
while (pos + 1 < buffer + length && *input) {
|
|
size_t size = 0;
|
|
int result = 0;
|
|
if (codepage == 437) {
|
|
result = unicode_utf8_to_cp437(pos, input, &size);
|
|
}
|
|
else if (codepage == 1252) {
|
|
result = unicode_utf8_to_cp1252(pos, input, &size);
|
|
}
|
|
if (result != 0) {
|
|
*pos = 0; /* just in case caller ignores our return value */
|
|
return result;
|
|
}
|
|
++pos;
|
|
input += length;
|
|
}
|
|
*pos = 0;
|
|
return 0;
|
|
}
|
|
|
|
void log_rotate(const char *filename, int maxindex)
|
|
{
|
|
char buffer[2][PATH_MAX];
|
|
int dst = 1;
|
|
assert(strlen(filename) < sizeof(buffer[0]) - 4);
|
|
|
|
sprintf(buffer[dst], "%s.%d", filename, maxindex);
|
|
if (remove(buffer[dst]) != 0) {
|
|
if (errno != ENOENT) {
|
|
fprintf(stderr, "log rotate %s: %d %s", buffer[dst], errno, strerror(errno));
|
|
}
|
|
errno = 0;
|
|
}
|
|
|
|
while (maxindex > 0) {
|
|
int src = 1 - dst;
|
|
sprintf(buffer[src], "%s.%d", filename, --maxindex);
|
|
if (rename(buffer[src], buffer[dst]) != 0) {
|
|
if (errno != ENOENT) {
|
|
fprintf(stderr, "log rotate %s: %d %s", buffer[dst], errno, strerror(errno));
|
|
}
|
|
errno = 0;
|
|
}
|
|
dst = src;
|
|
}
|
|
if (rename(filename, buffer[dst]) != 0) {
|
|
if (errno != ENOENT) {
|
|
fprintf(stderr, "log rotate %s: %d %s", buffer[dst], errno, strerror(errno));
|
|
}
|
|
errno = 0;
|
|
}
|
|
}
|
|
|
|
static const char *log_prefix(int level) {
|
|
const char * prefix = "ERROR";
|
|
if (level == LOG_CPWARNING) prefix = "WARNING";
|
|
else if (level == LOG_CPDEBUG) prefix = "DEBUG";
|
|
else if (level == LOG_CPINFO) prefix = "INFO";
|
|
return prefix;
|
|
}
|
|
|
|
static int check_dupe(const char *format, int level)
|
|
{
|
|
static int last_type; /* STATIC_XCALL: used across calls */
|
|
static char last_message[32] = { 0 }; /* STATIC_XCALL: used across calls */
|
|
static int dupes = 0; /* STATIC_XCALL: used across calls */
|
|
if (strncmp(last_message, format, sizeof(last_message)) == 0) {
|
|
/* TODO: C6054: String 'last_message' might not be zero - terminated. */
|
|
++dupes;
|
|
return 1;
|
|
}
|
|
if (dupes) {
|
|
if (level & LOG_CPERROR) {
|
|
fprintf(stderr, "%s: last message repeated %d times\n", log_prefix(last_type),
|
|
dupes + 1);
|
|
}
|
|
dupes = 0;
|
|
}
|
|
str_strlcpy(last_message, format, sizeof(last_message));
|
|
last_type = level;
|
|
return 0;
|
|
}
|
|
|
|
static void _log_write(FILE * stream, int codepage, const char *format, va_list args)
|
|
{
|
|
if (codepage) {
|
|
char buffer[MAXLENGTH];
|
|
unsigned char converted[MAXLENGTH];
|
|
vsnprintf(buffer, sizeof(buffer), format, args);
|
|
if (cp_convert(buffer, converted, MAXLENGTH, codepage) == 0) {
|
|
fputs((char *)converted, stream);
|
|
}
|
|
else {
|
|
/* fall back to non-converted output */
|
|
vfprintf(stream, format, args);
|
|
}
|
|
}
|
|
else {
|
|
vfprintf(stream, format, args);
|
|
}
|
|
}
|
|
|
|
static void log_stdio(void *data, int level, const char *module, const char *format, va_list args) {
|
|
FILE *out = (FILE *)data;
|
|
int codepage = (out == stderr || out == stdout) ? stdio_codepage : 0;
|
|
const char *prefix = log_prefix(level);
|
|
size_t len = strlen(format);
|
|
|
|
fprintf(out, "%s: ", prefix);
|
|
|
|
_log_write(out, codepage, format, args);
|
|
if (format[len - 1] != '\n') {
|
|
fputc('\n', out);
|
|
}
|
|
fflush(out);
|
|
}
|
|
|
|
log_t *log_to_file(int flags, FILE *out) {
|
|
return log_create(flags, out, log_stdio);
|
|
}
|
|
|
|
/*
|
|
* Notes for va_copy compatibility:
|
|
* MSVC: https://social.msdn.microsoft.com/Forums/vstudio/en-US/53a4fd75-9f97-48b2-aa63-2e2e5a15efa3/stdcversion-problem?forum=vclanguage
|
|
* GNU: https://www.gnu.org/software/libc/manual/html_node/Argument-Macros.html
|
|
*/
|
|
static void vlog(log_t *lg, int level, const char *format, va_list args) {
|
|
va_list copy;
|
|
va_copy(copy, args);
|
|
lg->log(lg->data, level, NULL, format, copy);
|
|
va_end(copy);
|
|
}
|
|
|
|
static void log_write(int flags, const char *module, const char *format, va_list args) {
|
|
log_t *lg;
|
|
for (lg = loggers; lg; lg = lg->next) {
|
|
int level = flags & LOG_LEVELS;
|
|
if (lg->flags & level) {
|
|
int dupe = 0;
|
|
if (lg->flags & LOG_BRIEF) {
|
|
dupe = check_dupe(format, level);
|
|
}
|
|
if (dupe == 0) {
|
|
vlog(lg, level, format, args);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void log_fatal(const char *format, ...)
|
|
{
|
|
va_list args;
|
|
va_start(args, format);
|
|
log_write(LOG_CPERROR, NULL, format, args);
|
|
va_end(args);
|
|
abort();
|
|
}
|
|
|
|
void log_error(const char *format, ...) /*-V524 */
|
|
{
|
|
va_list args;
|
|
va_start(args, format);
|
|
log_write(LOG_CPERROR, NULL, format, args);
|
|
va_end(args);
|
|
}
|
|
|
|
void log_warning(const char *format, ...)
|
|
{
|
|
va_list args;
|
|
va_start(args, format);
|
|
log_write(LOG_CPWARNING, NULL, format, args);
|
|
va_end(args);
|
|
}
|
|
|
|
void log_debug(const char *format, ...)
|
|
{
|
|
va_list args;
|
|
va_start(args, format);
|
|
log_write(LOG_CPDEBUG, NULL, format, args);
|
|
va_end(args);
|
|
}
|
|
|
|
void log_info(const char *format, ...)
|
|
{
|
|
va_list args;
|
|
va_start(args, format);
|
|
log_write(LOG_CPINFO, NULL, format, args);
|
|
va_end(args);
|
|
}
|
|
|
|
void log_printf(FILE * io, const char *format, ...)
|
|
{
|
|
va_list args;
|
|
va_start(args, format);
|
|
log_write(LOG_CPINFO, NULL, format, args);
|
|
va_end(args);
|
|
}
|
|
|
|
static FILE *logfile;
|
|
|
|
void log_close(void)
|
|
{
|
|
while (loggers) {
|
|
log_t *lgr = loggers;
|
|
loggers = lgr->next;
|
|
free(lgr);
|
|
}
|
|
if (logfile) {
|
|
time_t ltime;
|
|
time(<ime);
|
|
fprintf(logfile, "===\n=== Logfile closed at %s===\n\n", ctime(<ime));
|
|
fclose(logfile);
|
|
}
|
|
logfile = 0;
|
|
}
|
|
|
|
log_t *log_open(const char *filename, int log_flags)
|
|
{
|
|
log_rotate(filename, LOG_MAXBACKUPS);
|
|
logfile = fopen(filename, "a");
|
|
if (logfile) {
|
|
/* Get UNIX-style time and display as number and string. */
|
|
time_t ltime;
|
|
time(<ime);
|
|
fprintf(logfile, "===\n=== Logfile started at %s===\n", ctime(<ime));
|
|
return log_create(log_flags, logfile, log_stdio);
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
int log_level(log_t * log, int flags)
|
|
{
|
|
int old = log->flags;
|
|
log->flags = flags;
|
|
return old;
|
|
}
|
|
|
|
static critbit_tree stats = CRITBIT_TREE();
|
|
|
|
int stats_count(const char *stat, int delta) {
|
|
void * match;
|
|
if (cb_find_prefix_str(&stats, stat, &match, 1, 0) == 0) {
|
|
size_t len;
|
|
char data[128];
|
|
len = cb_new_kv(stat, strlen(stat), &delta, sizeof(delta), data);
|
|
cb_insert(&stats, data, len);
|
|
return delta;
|
|
}
|
|
else {
|
|
int *num;
|
|
cb_get_kv_ex(match, (void **)&num);
|
|
return *num += delta;
|
|
}
|
|
}
|
|
|
|
#if 0
|
|
#define STATS_BATCH 8
|
|
void stats_walk(const char *prefix, void(*callback)(const char *, int, void *), void *udata) {
|
|
void *match[STATS_BATCH];
|
|
int n, off = 0;
|
|
do {
|
|
int i;
|
|
n = cb_find_prefix_str(&stats, prefix, match, STATS_BATCH, off);
|
|
if (n == 0) {
|
|
break;
|
|
}
|
|
off += n;
|
|
for (i = 0; i != n; ++i) {
|
|
const void *kv = match[i];
|
|
int *num;
|
|
cb_get_kv_ex(kv, &(void *)num);
|
|
callback(kv, *num, udata);
|
|
}
|
|
} while (n == STATS_BATCH);
|
|
}
|
|
#else
|
|
|
|
struct walk_data {
|
|
int (*callback)(const char *, int, void *);
|
|
void *udata;
|
|
};
|
|
|
|
static int walk_cb(void * match, const void * key, size_t keylen, void *udata) {
|
|
struct walk_data *data = (struct walk_data *)udata;
|
|
int *num;
|
|
cb_get_kv_ex(match, (void **)&num);
|
|
return data->callback((const char*)match, *num, data->udata);
|
|
}
|
|
|
|
int stats_walk(const char *prefix, int (*callback)(const char *, int, void *), void *udata) {
|
|
struct walk_data data;
|
|
data.callback = callback;
|
|
data.udata = udata;
|
|
return cb_foreach(&stats, prefix, strlen(prefix), walk_cb, &data);
|
|
}
|
|
#endif
|
|
|
|
static int write_cb(const char *key, int val, void *udata) {
|
|
FILE * F = (FILE *)udata;
|
|
fprintf(F, "%s: %d\n", (const char *)key, val);
|
|
return 0;
|
|
}
|
|
|
|
void stats_write(FILE *F, const char *prefix) {
|
|
stats_walk(prefix, write_cb, F);
|
|
}
|
|
|
|
void stats_close(void) {
|
|
cb_clear(&stats);
|
|
}
|