X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fverbose.c;h=e0e382488c1d1fc39895c2ea29d791ad55aa1ec7;hb=8f3368daeca3d5c184321e96cba60886bb7fc82f;hp=7e46a333a4b3d2d992d1eede9c4f5d408723c2fe;hpb=04331cc45e03325c6470bc5285d5c09843b24afd;p=src%2Fapp-framework-binder.git diff --git a/src/verbose.c b/src/verbose.c index 7e46a333..e0e38248 100644 --- a/src/verbose.c +++ b/src/verbose.c @@ -1,5 +1,5 @@ /* - Copyright 2015 IoT.bzh + Copyright (C) 2016, 2017 "IoT.bzh" author: José Bollo @@ -16,14 +16,132 @@ limitations under the License. */ +#include +#include + #include "verbose.h" -#if !defined(NDEBUG) +#if !defined(DEFAULT_VERBOSITY) +# define DEFAULT_VERBOSITY Verbosity_Level_Warning +#endif + int verbosity = 1; +void (*verbose_observer)(int loglevel, const char *file, int line, const char *function, const char *fmt, va_list args); + +#define CROP_LOGLEVEL(x) ((x) < Log_Level_Emergency ? Log_Level_Emergency : (x) > Log_Level_Debug ? Log_Level_Debug : (x)) + +#if defined(VERBOSE_WITH_SYSLOG) + +#include + +static void _vverbose_(int loglevel, const char *file, int line, const char *function, const char *fmt, va_list args) +{ + char *p; + + if (file == NULL || vasprintf(&p, fmt, args) < 0) + vsyslog(loglevel, fmt, args); + else { + syslog(CROP_LOGLEVEL(loglevel), "%s [%s:%d, function]", p, file, line, function); + free(p); + } +} + +void verbose_set_name(const char *name, int authority) +{ + openlog(name, LOG_PERROR, authority ? LOG_AUTH : LOG_USER); +} + +#elif defined(VERBOSE_WITH_SYSTEMD) + +#define SD_JOURNAL_SUPPRESS_LOCATION + +#include + +static const char *appname; + +static int appauthority; + +static void _vverbose_(int loglevel, const char *file, int line, const char *function, const char *fmt, va_list args) +{ + char lino[20]; + + if (file == NULL) { + sd_journal_printv(loglevel, fmt, args); + } else { + sprintf(lino, "%d", line); + sd_journal_printv_with_location(loglevel, file, lino, function, fmt, args); + } +} + +void verbose_set_name(const char *name, int authority) +{ + appname = name; + appauthority = authority; +} + #else -void verbose_error(const char *file, int line) + +#include +#include + +static const char *appname; + +static int appauthority; + +static const char *prefixes[] = { + "<0> EMERGENCY", + "<1> ALERT", + "<2> CRITICAL", + "<3> ERROR", + "<4> WARNING", + "<5> NOTICE", + "<6> INFO", + "<7> DEBUG" +}; + +static void _vverbose_(int loglevel, const char *file, int line, const char *function, const char *fmt, va_list args) +{ + int saverr = errno; + int tty = isatty(fileno(stderr)); + errno = saverr; + + fprintf(stderr, "%s: ", prefixes[CROP_LOGLEVEL(loglevel)] + (tty ? 4 : 0)); + vfprintf(stderr, fmt, args); + if (file != NULL && (!tty || verbosity > 2)) + fprintf(stderr, " [%s:%d,%s]\n", file, line, function); + else + fprintf(stderr, "\n"); +} + +void verbose_set_name(const char *name, int authority) { - syslog(LOG_ERR, "error file %s line %d", file, line); + appname = name; + appauthority = authority; } + #endif +void verbose(int loglevel, const char *file, int line, const char *function, const char *fmt, ...) +{ + va_list ap; + + va_start(ap, fmt); + vverbose(loglevel, file, line, function, fmt, ap); + va_end(ap); +} + +void vverbose(int loglevel, const char *file, int line, const char *function, const char *fmt, va_list args) +{ + void (*observer)(int loglevel, const char *file, int line, const char *function, const char *fmt, va_list args) = verbose_observer; + + if (!observer) + _vverbose_(loglevel, file, line, function, fmt, args); + else { + va_list ap; + va_copy(ap, args); + _vverbose_(loglevel, file, line, function, fmt, args); + observer(loglevel, file, line, function, fmt, ap); + va_end(ap); + } +} +