mirror of
https://salsa.debian.org/ha-team/libqb
synced 2025-12-31 19:28:01 +00:00
This is partly to make the tests more robusts and to add some more flexibility to the logging. Signed-off-by: Angus Salkeld <asalkeld@redhat.com>
101 lines
2.1 KiB
C
101 lines
2.1 KiB
C
/*
|
|
* Copyright (C) 2011 Red Hat, Inc.
|
|
*
|
|
* All rights reserved.
|
|
*
|
|
* Author: Angus Salkeld <asalkeld@redhat.com>
|
|
*
|
|
* libqb is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 2.1 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* libqb 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 Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with libqb. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#include "os_base.h"
|
|
#include "log_int.h"
|
|
|
|
static void _file_logger(int32_t t,
|
|
struct qb_log_callsite *cs,
|
|
time_t timestamp, const char *msg)
|
|
{
|
|
char output_buffer[QB_LOG_MAX_LEN];
|
|
FILE *f = qb_log_target_user_data_get(t);
|
|
|
|
if (f == NULL) {
|
|
return;
|
|
}
|
|
|
|
qb_log_target_format(t, cs, timestamp, msg, output_buffer);
|
|
|
|
fprintf(f, "%s\n", output_buffer);
|
|
fflush(f);
|
|
}
|
|
|
|
static void _file_close(int32_t t)
|
|
{
|
|
FILE *f = qb_log_target_user_data_get(t);
|
|
|
|
if (f) {
|
|
fclose(f);
|
|
(void)qb_log_target_user_data_set(t, NULL);
|
|
}
|
|
}
|
|
|
|
static void _file_reload(int32_t target)
|
|
{
|
|
struct qb_log_target *t = qb_log_target_get(target);
|
|
|
|
if (t->instance) {
|
|
fclose(t->instance);
|
|
}
|
|
t->instance = fopen(t->name, "a+");
|
|
}
|
|
|
|
int32_t qb_log_stderr_open(struct qb_log_target *t)
|
|
{
|
|
t->logger = _file_logger;
|
|
t->reload = NULL;
|
|
t->close = NULL;
|
|
strncpy(t->name, "stderr", PATH_MAX);
|
|
t->instance = stderr;
|
|
return 0;
|
|
}
|
|
|
|
int32_t qb_log_file_open(const char *filename)
|
|
{
|
|
struct qb_log_target *t;
|
|
FILE *fp;
|
|
int32_t rc;
|
|
|
|
t = qb_log_target_alloc();
|
|
if (t == NULL) {
|
|
return -errno;
|
|
}
|
|
|
|
fp = fopen(filename, "a+");
|
|
if (fp == NULL) {
|
|
rc = -errno;
|
|
qb_log_target_free(t);
|
|
return rc;
|
|
}
|
|
t->instance = fp;
|
|
strncpy(t->name, filename, PATH_MAX);
|
|
|
|
t->logger = _file_logger;
|
|
t->reload = _file_reload;
|
|
t->close = _file_close;
|
|
return t->pos;
|
|
}
|
|
|
|
void qb_log_file_close(int32_t t)
|
|
{
|
|
qb_log_custom_close(t);
|
|
}
|