2
0
Fork 0

exit on log with level LOG_LEVEL_ERROR

personal/stbuehler/wip
Thomas Porzelt 2008-07-22 16:00:31 +02:00
parent 5045a5ee04
commit 9858f4ee66
2 changed files with 17 additions and 1 deletions

View File

@ -80,9 +80,16 @@ gboolean log_write_(server *srv, connection *con, log_level_t log_level, const g
log_entry = g_slice_new(log_entry_t);
log_entry->log = log;
log_entry->msg = log_line;
log_entry->level = log_level;
g_async_queue_push(srv->log_queue, log_entry);
/* on critical error, exit */
if (log_level == LOG_LEVEL_ERROR) {
g_atomic_int_set(&srv->exiting, TRUE);
log_thread_wakeup(srv); /* just in case the logging thread is sleeping at this point */
}
return TRUE;
}
@ -172,6 +179,10 @@ void log_rotate(gchar * path, log_t *log, server * UNUSED_PARAM(srv)) {
log->lastmsg_count = 0;
}
void log_rotate_logs(server *srv) {
g_atomic_int_set(&srv->rotate_logs, TRUE);
}
void log_ref(log_t *log) {
g_atomic_int_inc(&log->refcount);
@ -192,7 +203,7 @@ log_t *log_new(server *srv, log_type_t type, GString *path) {
/* log already open, inc refcount */
if (log != NULL)
{
log->refcount++;
g_atomic_int_inc(&log->refcount);
g_mutex_unlock(srv->mutex);
return log;
}

View File

@ -99,17 +99,22 @@ struct log_t {
struct log_entry_t {
log_t *log;
log_level_t level;
GString *msg;
};
/* log_new is used to create a new log target, if a log with the same path already exists, it is referenced instead */
log_t *log_new(server *srv, log_type_t type, GString *path);
/* avoid calling log_free directly. instead use log_unref which calls log_free if refcount has reached zero */
void log_free(server *srv, log_t *log);
void log_ref(log_t *log);
void log_unref(server *srv, log_t *log);
/* do not call directly, use log_rotate_logs instead */
void log_rotate(gchar *path, log_t *log, server *srv);
void log_rotate_logs(server *srv);
gpointer log_thread(server *srv);
void log_thread_start(server *srv);