2004-11-21 21:31:28 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
|
|
/***
|
2006-06-19 21:53:48 +00:00
|
|
|
This file is part of PulseAudio.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-02-13 15:35:19 +00:00
|
|
|
Copyright 2004-2006 Lennart Poettering
|
|
|
|
|
Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is free software; you can redistribute it and/or modify
|
2004-11-21 21:31:28 +00:00
|
|
|
it under the terms of the GNU Lesser General Public License as
|
|
|
|
|
published by the Free Software Foundation; either version 2 of the
|
|
|
|
|
License, or (at your option) any later version.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is distributed in the hope that it will be useful, but
|
2004-11-21 21:31:28 +00:00
|
|
|
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.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-11-21 21:31:28 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2006-06-19 21:53:48 +00:00
|
|
|
License along with PulseAudio; if not, write to the Free Software
|
2004-11-21 21:31:28 +00:00
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
|
USA.
|
|
|
|
|
***/
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2004-09-05 00:03:16 +00:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
#include <stdio.h>
|
2006-02-23 02:27:19 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <string.h>
|
2004-09-05 00:03:16 +00:00
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
#ifdef HAVE_SYSLOG_H
|
|
|
|
|
#include <syslog.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulse/utf8.h>
|
|
|
|
|
#include <pulse/xmalloc.h>
|
2006-08-18 21:26:01 +00:00
|
|
|
#include <pulse/util.h>
|
2006-05-17 16:34:18 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
#include <pulsecore/macro.h>
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulsecore/core-util.h>
|
2006-02-17 12:10:58 +00:00
|
|
|
|
2004-09-05 00:03:16 +00:00
|
|
|
#include "log.h"
|
|
|
|
|
|
2006-06-19 23:56:54 +00:00
|
|
|
#define ENV_LOGLEVEL "PULSE_LOG"
|
2006-08-18 21:26:01 +00:00
|
|
|
#define ENV_LOGMETA "PULSE_LOG_META"
|
2005-01-11 20:47:10 +00:00
|
|
|
|
2006-05-18 10:36:36 +00:00
|
|
|
static char *log_ident = NULL, *log_ident_local = NULL;
|
2006-01-27 16:25:31 +00:00
|
|
|
static pa_log_target_t log_target = PA_LOG_STDERR;
|
|
|
|
|
static void (*user_log_func)(pa_log_level_t l, const char *s) = NULL;
|
|
|
|
|
static pa_log_level_t maximal_level = PA_LOG_NOTICE;
|
2004-12-11 00:10:41 +00:00
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
#ifdef HAVE_SYSLOG_H
|
2004-12-11 00:10:41 +00:00
|
|
|
static const int level_to_syslog[] = {
|
|
|
|
|
[PA_LOG_ERROR] = LOG_ERR,
|
|
|
|
|
[PA_LOG_WARN] = LOG_WARNING,
|
|
|
|
|
[PA_LOG_NOTICE] = LOG_NOTICE,
|
|
|
|
|
[PA_LOG_INFO] = LOG_INFO,
|
|
|
|
|
[PA_LOG_DEBUG] = LOG_DEBUG
|
|
|
|
|
};
|
2006-01-10 17:51:06 +00:00
|
|
|
#endif
|
2004-09-05 00:03:16 +00:00
|
|
|
|
2007-05-27 16:37:05 +00:00
|
|
|
static const char level_to_char[] = {
|
|
|
|
|
[PA_LOG_ERROR] = 'E',
|
|
|
|
|
[PA_LOG_WARN] = 'W',
|
|
|
|
|
[PA_LOG_NOTICE] = 'N',
|
|
|
|
|
[PA_LOG_INFO] = 'I',
|
|
|
|
|
[PA_LOG_DEBUG] = 'D'
|
|
|
|
|
};
|
|
|
|
|
|
2004-09-05 00:03:16 +00:00
|
|
|
void pa_log_set_ident(const char *p) {
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_xfree(log_ident);
|
|
|
|
|
pa_xfree(log_ident_local);
|
2004-09-05 00:03:16 +00:00
|
|
|
|
|
|
|
|
log_ident = pa_xstrdup(p);
|
2007-10-28 19:13:50 +00:00
|
|
|
if (!(log_ident_local = pa_utf8_to_locale(log_ident)))
|
2006-05-18 10:36:36 +00:00
|
|
|
log_ident_local = pa_xstrdup(log_ident);
|
2004-09-05 00:03:16 +00:00
|
|
|
}
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
/* To make valgrind shut up. */
|
|
|
|
|
static void ident_destructor(void) PA_GCC_DESTRUCTOR;
|
|
|
|
|
static void ident_destructor(void) {
|
|
|
|
|
pa_xfree(log_ident);
|
|
|
|
|
pa_xfree(log_ident_local);
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
void pa_log_set_maximal_level(pa_log_level_t l) {
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_assert(l < PA_LOG_LEVEL_MAX);
|
|
|
|
|
|
2004-12-11 00:10:41 +00:00
|
|
|
maximal_level = l;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
void pa_log_set_target(pa_log_target_t t, void (*func)(pa_log_level_t l, const char*s)) {
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_assert(t == PA_LOG_USER || !func);
|
|
|
|
|
|
2004-09-05 00:03:16 +00:00
|
|
|
log_target = t;
|
|
|
|
|
user_log_func = func;
|
|
|
|
|
}
|
|
|
|
|
|
2006-08-18 21:26:01 +00:00
|
|
|
void pa_log_levelv_meta(
|
|
|
|
|
pa_log_level_t level,
|
|
|
|
|
const char*file,
|
|
|
|
|
int line,
|
|
|
|
|
const char *func,
|
|
|
|
|
const char *format,
|
|
|
|
|
va_list ap) {
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2005-01-11 20:47:10 +00:00
|
|
|
const char *e;
|
2006-08-19 01:14:59 +00:00
|
|
|
char *text, *t, *n, *location;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_assert(level < PA_LOG_LEVEL_MAX);
|
|
|
|
|
pa_assert(format);
|
2004-09-05 00:03:16 +00:00
|
|
|
|
2005-01-11 20:47:10 +00:00
|
|
|
if ((e = getenv(ENV_LOGLEVEL)))
|
|
|
|
|
maximal_level = atoi(e);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-12-11 00:10:41 +00:00
|
|
|
if (level > maximal_level)
|
|
|
|
|
return;
|
2005-01-11 20:47:10 +00:00
|
|
|
|
2006-02-23 02:27:19 +00:00
|
|
|
text = pa_vsprintf_malloc(format, ap);
|
|
|
|
|
|
2006-08-18 21:26:01 +00:00
|
|
|
if (getenv(ENV_LOGMETA) && file && line > 0 && func)
|
|
|
|
|
location = pa_sprintf_malloc("[%s:%i %s()] ", file, line, func);
|
|
|
|
|
else if (file)
|
|
|
|
|
location = pa_sprintf_malloc("%s: ", pa_path_get_filename(file));
|
2006-08-19 01:14:59 +00:00
|
|
|
else
|
|
|
|
|
location = pa_xstrdup("");
|
2006-08-18 21:26:01 +00:00
|
|
|
|
2006-05-22 15:20:46 +00:00
|
|
|
if (!pa_utf8_valid(text))
|
|
|
|
|
pa_log_level(level, __FILE__": invalid UTF-8 string following below:");
|
|
|
|
|
|
2006-02-23 02:27:19 +00:00
|
|
|
for (t = text; t; t = n) {
|
|
|
|
|
if ((n = strchr(t, '\n'))) {
|
|
|
|
|
*n = 0;
|
|
|
|
|
n++;
|
|
|
|
|
}
|
2006-01-10 17:51:06 +00:00
|
|
|
|
2006-02-23 02:27:19 +00:00
|
|
|
if (!*t)
|
|
|
|
|
continue;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-02-23 02:27:19 +00:00
|
|
|
switch (log_target) {
|
|
|
|
|
case PA_LOG_STDERR: {
|
|
|
|
|
const char *prefix = "", *suffix = "";
|
2006-05-18 10:36:36 +00:00
|
|
|
char *local_t;
|
2006-05-11 11:03:17 +00:00
|
|
|
|
2007-01-04 13:43:45 +00:00
|
|
|
#ifndef OS_IS_WIN32
|
2006-02-23 02:27:19 +00:00
|
|
|
/* Yes indeed. Useless, but fun! */
|
|
|
|
|
if (isatty(STDERR_FILENO)) {
|
|
|
|
|
if (level <= PA_LOG_ERROR) {
|
|
|
|
|
prefix = "\x1B[1;31m";
|
|
|
|
|
suffix = "\x1B[0m";
|
|
|
|
|
} else if (level <= PA_LOG_WARN) {
|
|
|
|
|
prefix = "\x1B[1m";
|
|
|
|
|
suffix = "\x1B[0m";
|
|
|
|
|
}
|
|
|
|
|
}
|
2006-05-11 11:03:17 +00:00
|
|
|
#endif
|
|
|
|
|
|
2006-05-18 10:36:36 +00:00
|
|
|
local_t = pa_utf8_to_locale(t);
|
2007-05-27 16:37:05 +00:00
|
|
|
if (!local_t)
|
|
|
|
|
fprintf(stderr, "%c: %s%s%s%s\n", level_to_char[level], location, prefix, t, suffix);
|
|
|
|
|
else {
|
|
|
|
|
fprintf(stderr, "%c: %s%s%s%s\n", level_to_char[level], location, prefix, local_t, suffix);
|
2006-05-18 10:36:36 +00:00
|
|
|
pa_xfree(local_t);
|
|
|
|
|
}
|
|
|
|
|
|
2006-02-23 02:27:19 +00:00
|
|
|
break;
|
|
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
|
|
|
|
#ifdef HAVE_SYSLOG_H
|
2006-05-18 10:36:36 +00:00
|
|
|
case PA_LOG_SYSLOG: {
|
|
|
|
|
char *local_t;
|
|
|
|
|
|
|
|
|
|
openlog(log_ident_local ? log_ident_local : "???", LOG_PID, LOG_USER);
|
|
|
|
|
|
|
|
|
|
local_t = pa_utf8_to_locale(t);
|
|
|
|
|
if (!local_t)
|
2006-08-18 21:26:01 +00:00
|
|
|
syslog(level_to_syslog[level], "%s%s", location, t);
|
2006-05-18 10:36:36 +00:00
|
|
|
else {
|
2006-08-18 21:26:01 +00:00
|
|
|
syslog(level_to_syslog[level], "%s%s", location, local_t);
|
2006-05-18 10:36:36 +00:00
|
|
|
pa_xfree(local_t);
|
|
|
|
|
}
|
|
|
|
|
|
2006-02-23 02:27:19 +00:00
|
|
|
closelog();
|
2007-01-04 13:43:45 +00:00
|
|
|
break;
|
2006-05-18 10:36:36 +00:00
|
|
|
}
|
2006-01-10 17:51:06 +00:00
|
|
|
#endif
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-08-18 21:26:01 +00:00
|
|
|
case PA_LOG_USER: {
|
|
|
|
|
char *x;
|
|
|
|
|
|
|
|
|
|
x = pa_sprintf_malloc("%s%s", location, t);
|
|
|
|
|
user_log_func(level, x);
|
|
|
|
|
pa_xfree(x);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-02-23 02:27:19 +00:00
|
|
|
break;
|
2006-08-18 21:26:01 +00:00
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-02-23 02:27:19 +00:00
|
|
|
case PA_LOG_NULL:
|
|
|
|
|
default:
|
|
|
|
|
break;
|
2004-09-05 00:03:16 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2006-02-23 02:27:19 +00:00
|
|
|
pa_xfree(text);
|
2006-08-18 21:26:01 +00:00
|
|
|
pa_xfree(location);
|
2004-12-11 00:10:41 +00:00
|
|
|
}
|
|
|
|
|
|
2006-08-18 21:26:01 +00:00
|
|
|
void pa_log_level_meta(
|
|
|
|
|
pa_log_level_t level,
|
|
|
|
|
const char*file,
|
|
|
|
|
int line,
|
|
|
|
|
const char *func,
|
|
|
|
|
const char *format, ...) {
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-12-11 00:10:41 +00:00
|
|
|
va_list ap;
|
|
|
|
|
va_start(ap, format);
|
2006-08-18 21:26:01 +00:00
|
|
|
pa_log_levelv_meta(level, file, line, func, format, ap);
|
2004-12-11 00:10:41 +00:00
|
|
|
va_end(ap);
|
|
|
|
|
}
|
|
|
|
|
|
2006-08-18 21:26:01 +00:00
|
|
|
void pa_log_levelv(pa_log_level_t level, const char *format, va_list ap) {
|
|
|
|
|
pa_log_levelv_meta(level, NULL, 0, NULL, format, ap);
|
2004-12-11 00:10:41 +00:00
|
|
|
}
|
|
|
|
|
|
2006-08-18 21:26:01 +00:00
|
|
|
void pa_log_level(pa_log_level_t level, const char *format, ...) {
|
2004-12-11 00:10:41 +00:00
|
|
|
va_list ap;
|
2007-10-28 19:13:50 +00:00
|
|
|
|
2004-12-11 00:10:41 +00:00
|
|
|
va_start(ap, format);
|
2006-08-18 21:26:01 +00:00
|
|
|
pa_log_levelv_meta(level, NULL, 0, NULL, format, ap);
|
2004-09-05 00:03:16 +00:00
|
|
|
va_end(ap);
|
|
|
|
|
}
|