2006-02-02 16:25:55 +01:00
|
|
|
/***************************************************************************
|
|
|
|
* Copyright (C) 03/2005 by Olaf Rempel *
|
|
|
|
* razzor@kopf-tisch.de *
|
|
|
|
* *
|
|
|
|
* This program 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 2 of the License, or *
|
|
|
|
* (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, write to the *
|
|
|
|
* Free Software Foundation, Inc., *
|
|
|
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
|
|
|
***************************************************************************/
|
2006-02-02 16:24:06 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2006-02-02 16:41:56 +01:00
|
|
|
#include "configfile.h"
|
2006-02-02 16:24:06 +01:00
|
|
|
|
2006-02-02 16:41:56 +01:00
|
|
|
static FILE *log_fd = NULL;
|
2006-02-02 16:24:06 +01:00
|
|
|
|
2006-02-02 16:25:55 +01:00
|
|
|
/**
|
|
|
|
* log_print()
|
|
|
|
* schreibt eine Zeile ins Logfile oder auf stderr
|
|
|
|
* wenn errno gesetzt ist, wird der error-string mit ausgegeben
|
|
|
|
*
|
2006-02-02 16:44:46 +01:00
|
|
|
* @param fmt variable argumentenliste (syntax wie bei printf)
|
|
|
|
*
|
|
|
|
* @todo code vereinfachen?
|
2006-02-02 16:25:55 +01:00
|
|
|
*/
|
2006-02-02 16:47:20 +01:00
|
|
|
void log_print(const char *fmt, ...)
|
|
|
|
{
|
2006-02-02 16:24:06 +01:00
|
|
|
va_list az;
|
2006-02-02 16:47:20 +01:00
|
|
|
char *buffer = malloc(8192);
|
2006-02-02 16:24:06 +01:00
|
|
|
|
|
|
|
va_start(az, fmt);
|
|
|
|
vsprintf(buffer, fmt, az);
|
|
|
|
va_end(az);
|
|
|
|
|
2006-02-02 16:44:46 +01:00
|
|
|
/* ins logfile loggen */
|
2006-02-02 16:24:06 +01:00
|
|
|
if (log_fd) {
|
2006-02-02 16:31:52 +01:00
|
|
|
time_t tzgr;
|
|
|
|
char tbuf[64];
|
|
|
|
time(&tzgr);
|
|
|
|
strftime(tbuf, 64, "%b %d %H:%M:%S :", localtime(&tzgr));
|
|
|
|
|
2006-02-02 16:24:06 +01:00
|
|
|
if (errno) {
|
|
|
|
fprintf(log_fd, "%s %s: %s\n", tbuf, buffer, strerror(errno));
|
|
|
|
} else {
|
|
|
|
fprintf(log_fd, "%s %s\n", tbuf, buffer);
|
|
|
|
}
|
2006-02-02 16:44:46 +01:00
|
|
|
|
|
|
|
fflush(log_fd);
|
|
|
|
|
|
|
|
/* nach stderr loggen */
|
2006-02-02 16:24:06 +01:00
|
|
|
} else {
|
|
|
|
if (errno) {
|
2006-02-02 16:31:52 +01:00
|
|
|
fprintf(stderr, "%s: %s\n", buffer, strerror(errno));
|
2006-02-02 16:24:06 +01:00
|
|
|
} else {
|
2006-02-02 16:31:52 +01:00
|
|
|
fprintf(stderr, "%s\n", buffer);
|
2006-02-02 16:24:06 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
errno = 0;
|
2006-02-02 16:47:20 +01:00
|
|
|
free(buffer);
|
2006-02-02 16:24:06 +01:00
|
|
|
}
|
2006-02-02 16:41:56 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* log_close()
|
|
|
|
* schliesst das logfile
|
|
|
|
*/
|
2006-02-02 16:47:20 +01:00
|
|
|
static void log_close()
|
|
|
|
{
|
2006-02-02 16:41:56 +01:00
|
|
|
fclose(log_fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* log_init()
|
2006-02-02 16:44:46 +01:00
|
|
|
* initialisiert das logging
|
|
|
|
*
|
|
|
|
* @param logfile filename des logfiles
|
|
|
|
* @return false bei fehler
|
2006-02-02 16:41:56 +01:00
|
|
|
*/
|
2006-02-02 16:47:20 +01:00
|
|
|
int log_init(char *logfile)
|
|
|
|
{
|
2006-02-02 16:43:41 +01:00
|
|
|
if ((log_fd = fopen(logfile, "a" )) == NULL) {
|
|
|
|
log_print("log_open('%s'): %s", logfile);
|
|
|
|
return 0;
|
|
|
|
}
|
2006-02-02 16:44:46 +01:00
|
|
|
|
|
|
|
/* beim beenden log schliessen */
|
2006-02-02 16:43:41 +01:00
|
|
|
if (atexit(log_close) != 0) {
|
|
|
|
log_print("log_open(): atexit()");
|
|
|
|
return 0;
|
2006-02-02 16:41:56 +01:00
|
|
|
}
|
2006-02-02 16:44:46 +01:00
|
|
|
|
2006-02-02 16:41:56 +01:00
|
|
|
log_print("==========================");
|
|
|
|
return 1;
|
|
|
|
}
|