claws-mail/src/common/log.c
Colin Leroy 0cf759dbea 2007-10-04 [colin] 3.0.2cvs9
* src/action.c
	* src/addrbook.c
	* src/addrindex.c
	* src/compose.c
	* src/exporthtml.c
	* src/exportldif.c
	* src/folder.c
	* src/main.c
	* src/matcher.c
	* src/mbox.c
	* src/messageview.c
	* src/mh.c
	* src/news.c
	* src/partial_download.c
	* src/pop.c
	* src/procmime.c
	* src/procmsg.c
	* src/toolbar.c
	* src/common/log.c
	* src/common/mgutils.c
	* src/common/plugin.c
	* src/common/utils.c
	* src/common/xml.c
	* src/common/xml.h
	* src/common/xmlprops.c
	* src/common/xmlprops.h
	* src/plugins/bogofilter/bogofilter.c
	* src/plugins/clamav/clamav_plugin.c
	* src/plugins/dillo_viewer/dillo_prefs.c
	* src/plugins/pgpcore/prefs_gpg.c
	* src/plugins/pgpinline/pgpinline.c
	* src/plugins/pgpmime/pgpmime.c
	* src/plugins/spamassassin/spamassassin.c
	* src/plugins/trayicon/trayicon_prefs.c
		Verify success on writes. Will fix possible strange
		failure on disk full.
2007-10-04 17:36:57 +00:00

348 lines
8.6 KiB
C

/*
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
* Copyright (C) 1999-2007 Hiroyuki Yamamoto and the Claws Mail team
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "defs.h"
#ifdef G_OS_WIN32
# include <w32lib.h>
#endif
#include <stdio.h>
#include <glib.h>
#include <glib/gi18n.h>
#include "utils.h"
#include "log.h"
#include "hooks.h"
static FILE *log_fp[LOG_INSTANCE_MAX] = {
NULL,
NULL
};
typedef struct _LogInstanceData LogInstanceData;
struct _LogInstanceData {
const char *hook;
gchar *title;
int *prefs_logwin_width;
int *prefs_logwin_height;
};
static LogInstanceData log_instances[LOG_INSTANCE_MAX] = {
{ LOG_APPEND_TEXT_HOOKLIST, NULL, NULL, NULL },
{ DEBUG_FILTERING_APPEND_TEXT_HOOKLIST, NULL, NULL, NULL }
};
gboolean prefs_common_enable_log_standard(void);
gboolean prefs_common_enable_log_warning(void);
gboolean prefs_common_enable_log_error(void);
gboolean prefs_common_enable_log_status(void);
static gboolean invoke_hook_cb (gpointer data)
{
LogText *logtext = (LogText *)data;
hooks_invoke(get_log_hook(logtext->instance), logtext);
g_free(logtext->text);
g_free(logtext);
return FALSE;
}
void set_log_file(LogInstance instance, const gchar *filename)
{
if (log_fp[instance])
return;
/* backup old logfile if existing */
if (is_file_exist(filename)) {
gchar *backupname;
backupname = g_strconcat(filename, ".bak", NULL);
if (rename(filename, backupname) < 0)
FILE_OP_ERROR(filename, "rename");
g_free(backupname);
}
log_fp[instance] = g_fopen(filename, "wb");
if (!log_fp[instance])
FILE_OP_ERROR(filename, "fopen");
}
void close_log_file(LogInstance instance)
{
if (log_fp[instance]) {
fclose(log_fp[instance]);
log_fp[instance] = NULL;
}
}
const char *get_log_hook(LogInstance instance)
{
return log_instances[instance].hook;
}
void set_log_title(LogInstance instance, gchar *title)
{
log_instances[instance].title = title;
}
gchar *get_log_title(LogInstance instance)
{
return log_instances[instance].title;
}
void set_log_prefs(LogInstance instance, int* logwin_width, int* logwin_height)
{
log_instances[instance].prefs_logwin_width = logwin_width;
log_instances[instance].prefs_logwin_height = logwin_height;
}
void get_log_prefs(LogInstance instance, int** logwin_width, int** logwin_height)
{
if (logwin_width)
*logwin_width = log_instances[instance].prefs_logwin_width;
if (logwin_height)
*logwin_height = log_instances[instance].prefs_logwin_height;
}
void log_print(LogInstance instance, const gchar *format, ...)
{
va_list args;
gchar buf[BUFFSIZE + LOG_TIME_LEN];
time_t t;
LogText *logtext = g_new0(LogText, 1);
struct tm buft;
time(&t);
strftime(buf, LOG_TIME_LEN + 1, "[%H:%M:%S] ", localtime_r(&t, &buft));
va_start(args, format);
g_vsnprintf(buf + LOG_TIME_LEN, BUFFSIZE, format, args);
va_end(args);
if (debug_get_mode()) g_print("%s", buf);
logtext->instance = instance;
logtext->text = g_strdup(buf);
logtext->type = LOG_NORMAL;
g_timeout_add(0, invoke_hook_cb, logtext);
if (log_fp[instance] && prefs_common_enable_log_standard()) {
int r;
r = fputs(buf, log_fp[instance]);
r = fflush(log_fp[instance]);
}
}
void log_message(LogInstance instance, const gchar *format, ...)
{
va_list args;
gchar buf[BUFFSIZE + LOG_TIME_LEN];
time_t t;
LogText *logtext = g_new0(LogText, 1);
struct tm buft;
time(&t);
strftime(buf, LOG_TIME_LEN + 1, "[%H:%M:%S] ", localtime_r(&t, &buft));
va_start(args, format);
g_vsnprintf(buf + LOG_TIME_LEN, BUFFSIZE, format, args);
va_end(args);
if (debug_get_mode()) g_message("%s", buf + LOG_TIME_LEN);
logtext->instance = instance;
logtext->text = g_strdup(buf + LOG_TIME_LEN);
logtext->type = LOG_MSG;
g_timeout_add(0, invoke_hook_cb, logtext);
if (log_fp[instance] && prefs_common_enable_log_standard()) {
int r;
r = fwrite(buf, 1, LOG_TIME_LEN, log_fp[instance]);
r = fputs("* message: ", log_fp[instance]);
r = fputs(buf + LOG_TIME_LEN, log_fp[instance]);
r = fflush(log_fp[instance]);
}
}
void log_warning(LogInstance instance, const gchar *format, ...)
{
va_list args;
gchar buf[BUFFSIZE + LOG_TIME_LEN];
time_t t;
LogText *logtext = g_new0(LogText, 1);
struct tm buft;
time(&t);
strftime(buf, LOG_TIME_LEN + 1, "[%H:%M:%S] ", localtime_r(&t, &buft));
va_start(args, format);
g_vsnprintf(buf + LOG_TIME_LEN, BUFFSIZE, format, args);
va_end(args);
g_warning("%s", buf);
logtext->instance = instance;
logtext->text = g_strdup(buf + LOG_TIME_LEN);
logtext->type = LOG_WARN;
g_timeout_add(0, invoke_hook_cb, logtext);
if (log_fp[instance] && prefs_common_enable_log_warning()) {
int r;
r = fwrite(buf, 1, LOG_TIME_LEN, log_fp[instance]);
r = fputs("** warning: ", log_fp[instance]);
r = fputs(buf + LOG_TIME_LEN, log_fp[instance]);
r = fflush(log_fp[instance]);
}
}
void log_error(LogInstance instance, const gchar *format, ...)
{
va_list args;
gchar buf[BUFFSIZE + LOG_TIME_LEN];
time_t t;
LogText *logtext = g_new0(LogText, 1);
struct tm buft;
time(&t);
strftime(buf, LOG_TIME_LEN + 1, "[%H:%M:%S] ", localtime_r(&t, &buft));
va_start(args, format);
g_vsnprintf(buf + LOG_TIME_LEN, BUFFSIZE, format, args);
va_end(args);
g_warning("%s", buf);
logtext->instance = instance;
logtext->text = g_strdup(buf + LOG_TIME_LEN);
logtext->type = LOG_ERROR;
g_timeout_add(0, invoke_hook_cb, logtext);
if (log_fp[instance] && prefs_common_enable_log_error()) {
int r;
r = fwrite(buf, 1, LOG_TIME_LEN, log_fp[instance]);
r = fputs("*** error: ", log_fp[instance]);
r = fputs(buf + LOG_TIME_LEN, log_fp[instance]);
r = fflush(log_fp[instance]);
}
}
void log_status_ok(LogInstance instance, const gchar *format, ...)
{
va_list args;
gchar buf[BUFFSIZE + LOG_TIME_LEN];
time_t t;
LogText *logtext = g_new0(LogText, 1);
struct tm buft;
time(&t);
strftime(buf, LOG_TIME_LEN + 1, "[%H:%M:%S] ", localtime_r(&t, &buft));
va_start(args, format);
g_vsnprintf(buf + LOG_TIME_LEN, BUFFSIZE, format, args);
va_end(args);
if (debug_get_mode()) g_message("%s", buf + LOG_TIME_LEN);
logtext->instance = instance;
logtext->text = g_strdup(buf + LOG_TIME_LEN);
logtext->type = LOG_STATUS_OK;
g_timeout_add(0, invoke_hook_cb, logtext);
if (log_fp[instance] && prefs_common_enable_log_status()) {
int r;
r = fwrite(buf, 1, LOG_TIME_LEN, log_fp[instance]);
r = fputs("* OK: ", log_fp[instance]);
r = fputs(buf + LOG_TIME_LEN, log_fp[instance]);
r = fflush(log_fp[instance]);
}
}
void log_status_nok(LogInstance instance, const gchar *format, ...)
{
va_list args;
gchar buf[BUFFSIZE + LOG_TIME_LEN];
time_t t;
LogText *logtext = g_new0(LogText, 1);
struct tm buft;
time(&t);
strftime(buf, LOG_TIME_LEN + 1, "[%H:%M:%S] ", localtime_r(&t, &buft));
va_start(args, format);
g_vsnprintf(buf + LOG_TIME_LEN, BUFFSIZE, format, args);
va_end(args);
if (debug_get_mode()) g_message("%s", buf + LOG_TIME_LEN);
logtext->instance = instance;
logtext->text = g_strdup(buf + LOG_TIME_LEN);
logtext->type = LOG_STATUS_NOK;
g_timeout_add(0, invoke_hook_cb, logtext);
if (log_fp[instance] && prefs_common_enable_log_status()) {
int r;
r = fwrite(buf, 1, LOG_TIME_LEN, log_fp[instance]);
r = fputs("* NOT OK: ", log_fp[instance]);
r = fputs(buf + LOG_TIME_LEN, log_fp[instance]);
r = fflush(log_fp[instance]);
}
}
void log_status_skip(LogInstance instance, const gchar *format, ...)
{
va_list args;
gchar buf[BUFFSIZE + LOG_TIME_LEN];
time_t t;
LogText *logtext = g_new0(LogText, 1);
struct tm buft;
time(&t);
strftime(buf, LOG_TIME_LEN + 1, "[%H:%M:%S] ", localtime_r(&t, &buft));
va_start(args, format);
g_vsnprintf(buf + LOG_TIME_LEN, BUFFSIZE, format, args);
va_end(args);
if (debug_get_mode()) g_message("%s", buf + LOG_TIME_LEN);
logtext->instance = instance;
logtext->text = g_strdup(buf + LOG_TIME_LEN);
logtext->type = LOG_STATUS_SKIP;
g_timeout_add(0, invoke_hook_cb, logtext);
if (log_fp[instance] && prefs_common_enable_log_status()) {
int r;
r = fwrite(buf, 1, LOG_TIME_LEN, log_fp[instance]);
r = fputs("* SKIPPED: ", log_fp[instance]);
r = fputs(buf + LOG_TIME_LEN, log_fp[instance]);
r = fflush(log_fp[instance]);
}
}