diff options
author | fishsoupisgood <github@madingley.org> | 2018-04-02 13:44:37 +0100 |
---|---|---|
committer | fishsoupisgood <github@madingley.org> | 2018-04-02 13:44:37 +0100 |
commit | c9b8482030929f53937e32fce63c78a4a0acadfd (patch) | |
tree | 8be9975d6dc207b123011b7ce4c344503c9b5e53 /src/log.c | |
parent | a579468e37a003185329493eb8db2792204865fb (diff) | |
download | sympathy-c9b8482030929f53937e32fce63c78a4a0acadfd.tar.gz sympathy-c9b8482030929f53937e32fce63c78a4a0acadfd.tar.bz2 sympathy-c9b8482030929f53937e32fce63c78a4a0acadfd.zip |
some fixes and support for syslog logging
Diffstat (limited to 'src/log.c')
-rw-r--r-- | src/log.c | 78 |
1 files changed, 78 insertions, 0 deletions
@@ -68,6 +68,8 @@ static char rcsid[] = "$Id$"; #include "project.h" +#include <syslog.h> + typedef struct { LOG_SIGNATURE; @@ -78,6 +80,15 @@ typedef struct int needs_newline; } File_Log; +typedef struct +{ + LOG_SIGNATURE; + char buf[256]; + unsigned ptr; + int priority; +} Syslog_Log; + + static Log *loggers = NULL; @@ -301,6 +312,73 @@ file_log_new (char *fn, int rotate) return (Log *) l; } + + +static void +slog_log_bytes (Log * _l, void *_buf, int len) +{ + Syslog_Log *l = (Syslog_Log *) _l; + uint8_t *buf = (uint8_t *) _buf; + + while (len--) + { + if (*buf == '\n') + { + l->buf[l->ptr]=0; + syslog(l->priority,"%s",l->buf); + l->ptr=0; + } + else + { + l->buf[l->ptr++]=*buf; + } + + + if (l->ptr==(sizeof(l->buf)-1)) { + l->buf[l->ptr]=0; + syslog(l->priority,"%s",l->buf); + l->ptr=0; + } + + buf++; + } +} + +static void +slog_log (Log * _l, char *buf) +{ + Syslog_Log *l = (Syslog_Log *) _l; + + syslog(l->priority,"%s",buf); +} + +static void +slog_close (Log * _l) +{ + free (_l); +} + + + + +Log * +syslog_log_new (int pri) +{ + Syslog_Log *l; + + l = xmalloc (sizeof (Syslog_Log)); + + l->log = slog_log; + l->log_bytes = slog_log_bytes; + l->close= slog_close; + l->priority = pri; + l->ptr=0; + + log_add ((Log *) l); + + return (Log *) l; +} + void log_f (Log * log, char *fmt, ...) { |