summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 3ca9338)
raw | patch | inline | side by side (parent: 3ca9338)
author | Sebastian Harl <sh@tokkee.org> | |
Tue, 10 Dec 2013 17:56:59 +0000 (18:56 +0100) | ||
committer | Sebastian Harl <sh@tokkee.org> | |
Tue, 10 Dec 2013 17:56:59 +0000 (18:56 +0100) |
Later, we'll use the module from the daemon and client.
20 files changed:
src/Makefile.am | patch | blob | history | |
src/backend/collectd/unixsock.c | patch | blob | history | |
src/backend/mk-livestatus.c | patch | blob | history | |
src/backend/puppet/store-configs.c | patch | blob | history | |
src/core/error.c | [deleted file] | patch | blob | history |
src/core/plugin.c | patch | blob | history | |
src/core/store.c | patch | blob | history | |
src/daemon/config.c | patch | blob | history | |
src/daemon/sysdbd.c | patch | blob | history | |
src/frontend/connection.c | patch | blob | history | |
src/frontend/query.c | patch | blob | history | |
src/frontend/sock.c | patch | blob | history | |
src/include/core/error.h | [deleted file] | patch | blob | history |
src/include/utils/error.h | [new file with mode: 0644] | patch | blob |
src/plugins/cname/dns.c | patch | blob | history | |
src/plugins/syslog.c | patch | blob | history | |
src/utils/dbi.c | patch | blob | history | |
src/utils/error.c | [new file with mode: 0644] | patch | blob |
src/utils/proto.c | patch | blob | history | |
src/utils/unixsock.c | patch | blob | history |
diff --git a/src/Makefile.am b/src/Makefile.am
index 5a18c7be82abc563d64f751052030c6c8a25eb3b..4bbc3fb582c04be5ff665bd521dac1698d68bf02 100644 (file)
--- a/src/Makefile.am
+++ b/src/Makefile.am
pkgcoreincludedir = $(pkgincludedir)/core
pkgcoreinclude_HEADERS = \
include/core/data.h \
- include/core/error.h \
include/core/object.h \
include/core/plugin.h \
include/core/store.h \
pkgutilsinclude_HEADERS = \
include/utils/channel.h \
include/utils/dbi.h \
+ include/utils/error.h \
include/utils/llist.h \
include/utils/proto.h \
include/utils/strbuf.h \
core/plugin.c include/core/plugin.h \
core/store.c include/core/store.h \
include/core/data.h \
- core/error.c include/core/error.h \
frontend/connection.c include/frontend/connection.h \
include/frontend/connection-private.h \
frontend/sock.c include/frontend/sock.h \
frontend/session.c \
frontend/query.c \
utils/channel.c include/utils/channel.h \
+ utils/error.c include/utils/error.h \
utils/llist.c include/utils/llist.h \
utils/proto.c include/utils/proto.h \
utils/strbuf.c include/utils/strbuf.h \
index c01b0f324b874ab2ac4ac2ec97a91fd5e254175e..766bbce9f78bc4297890b5e7749cbbc4f494f407 100644 (file)
#include "sysdb.h"
#include "core/plugin.h"
#include "core/store.h"
-#include "core/error.h"
+#include "utils/error.h"
#include "utils/unixsock.h"
#include "liboconfig/utils.h"
index d672b36c9ee8468c13a8e2ed5487d9c1b3a96a84..bf45da6fdd35df6d3170ed4a4ebafbc1b513b49a 100644 (file)
#include "sysdb.h"
#include "core/plugin.h"
#include "core/store.h"
-#include "core/error.h"
+#include "utils/error.h"
#include "utils/unixsock.h"
#include "liboconfig/utils.h"
index 4343920552461c5e53987062024c0cb2ca1a764d..a9a0ff777e9d6f35bd364885832b485d1f88beef 100644 (file)
#include "sysdb.h"
#include "core/plugin.h"
#include "core/store.h"
-#include "core/error.h"
#include "utils/dbi.h"
+#include "utils/error.h"
#include "liboconfig/utils.h"
diff --git a/src/core/error.c b/src/core/error.c
--- a/src/core/error.c
+++ /dev/null
@@ -1,283 +0,0 @@
-/*
- * SysDB - src/core/error.c
- * Copyright (C) 2013 Sebastian 'tokkee' Harl <sh@tokkee.org>
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
- * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
- * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
- * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
- * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
- * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "core/error.h"
-#include "core/plugin.h"
-#include "utils/strbuf.h"
-
-#include <pthread.h>
-
-#include <stdarg.h>
-#include <stdio.h>
-#include <string.h>
-
-#include <stdlib.h>
-
-/*
- * private data types
- */
-
-typedef struct {
- int prio;
- sdb_strbuf_t *msg;
- _Bool logged;
-} sdb_error_ctx_t;
-#define SDB_ERROR_INIT { -1, NULL, 1 }
-
-/*
- * private variables
- */
-
-static sdb_error_ctx_t default_error_ctx = SDB_ERROR_INIT;
-
-static pthread_key_t error_ctx_key;
-static _Bool error_ctx_key_initialized = 0;
-
-/*
- * private helper functions
- */
-
-static void
-sdb_error_ctx_destructor(void *p)
-{
- sdb_error_ctx_t *ctx = p;
-
- if (! ctx)
- return;
-
- sdb_strbuf_destroy(ctx->msg);
- free(ctx);
-} /* sdb_error_ctx_destructor */
-
-static void
-sdb_error_ctx_init(void)
-{
- if (error_ctx_key_initialized)
- return;
-
- pthread_key_create(&error_ctx_key, sdb_error_ctx_destructor);
- error_ctx_key_initialized = 1;
-} /* sdb_error_init */
-
-static sdb_error_ctx_t *
-sdb_error_ctx_create(void)
-{
- sdb_error_ctx_t *ctx;
-
- ctx = malloc(sizeof(*ctx));
- if (! ctx)
- return NULL;
-
- *ctx = default_error_ctx;
- ctx->msg = sdb_strbuf_create(64);
- if (! ctx->msg) {
- free(ctx);
- return NULL;
- }
-
- if (! error_ctx_key_initialized)
- sdb_error_ctx_init();
- pthread_setspecific(error_ctx_key, ctx);
- return ctx;
-} /* sdb_error_ctx_create */
-
-static sdb_error_ctx_t *
-sdb_error_get_ctx(void)
-{
- sdb_error_ctx_t *ctx;
-
- if (! error_ctx_key_initialized)
- sdb_error_ctx_init();
- ctx = pthread_getspecific(error_ctx_key);
-
- if (! ctx)
- ctx = sdb_error_ctx_create();
- if (! ctx)
- return NULL;
- return ctx;
-} /* sdb_error_get_ctx */
-
-static int
-sdb_error_vprintf(const char *fmt, va_list ap)
-{
- sdb_error_ctx_t *ctx;
-
- ctx = sdb_error_get_ctx();
- if (! ctx)
- return -1;
-
- ctx->logged = 0;
- return (int)sdb_strbuf_vsprintf(ctx->msg, fmt, ap);
-} /* sdb_error_vprintf */
-
-static int
-sdb_error_vappend(const char *fmt, va_list ap)
-{
- sdb_error_ctx_t *ctx;
-
- ctx = sdb_error_get_ctx();
- if (! ctx)
- return -1;
-
- ctx->logged = 0;
- return (int)sdb_strbuf_vappend(ctx->msg, fmt, ap);
-} /* sdb_error_vappend */
-
-static int
-sdb_do_log(int prio)
-{
- sdb_error_ctx_t *ctx;
- int ret;
-
- ctx = sdb_error_get_ctx();
- if (! ctx)
- return -1;
-
- if (prio >= 0)
- ctx->prio = prio;
-
- if (ctx->logged)
- return 0;
-
- ret = sdb_plugin_log(prio, sdb_strbuf_string(ctx->msg));
- ctx->logged = 1;
- return ret;
-} /* sdb_do_log */
-
-/*
- * public API
- */
-
-int
-sdb_log(int prio, const char *fmt, ...)
-{
- va_list ap;
- int ret;
-
- va_start(ap, fmt);
- ret = sdb_error_vprintf(fmt, ap);
- va_end(ap);
-
- if (ret > 0)
- sdb_do_log(prio);
- return ret;
-} /* sdb_log */
-
-int
-sdb_error_set(const char *fmt, ...)
-{
- va_list ap;
- int ret;
-
- va_start(ap, fmt);
- ret = sdb_error_vprintf(fmt, ap);
- va_end(ap);
-
- return ret;
-} /* sdb_error_set */
-
-int
-sdb_error_append(const char *fmt, ...)
-{
- va_list ap;
- int ret;
-
- va_start(ap, fmt);
- ret = sdb_error_vappend(fmt, ap);
- va_end(ap);
-
- return ret;
-} /* sdb_error_append */
-
-int
-sdb_error_chomp(void)
-{
- sdb_error_ctx_t *ctx;
-
- ctx = sdb_error_get_ctx();
- if (! ctx)
- return -1;
-
- sdb_strbuf_chomp(ctx->msg);
- return 0;
-} /* sdb_error_chomp */
-
-int
-sdb_error_log(int prio)
-{
- return sdb_do_log(prio);
-} /* sdb_error_log */
-
-const char *
-sdb_error_get(void)
-{
- sdb_error_ctx_t *ctx;
-
- ctx = sdb_error_get_ctx();
- if (! ctx)
- return "success";
- return sdb_strbuf_string(ctx->msg);
-} /* sdb_error_get */
-
-int
-sdb_error_get_prio(void)
-{
- sdb_error_ctx_t *ctx;
-
- ctx = sdb_error_get_ctx();
- if (! ctx)
- return -1;
- return ctx->prio;
-} /* sdb_error_get_prio */
-
-char *
-sdb_strerror(int errnum, char *strerrbuf, size_t buflen)
-{
-#if STRERROR_R_CHAR_P
- {
- char *tmp = strerror_r(errnum, strerrbuf, buflen);
- if (*strerrbuf = '\0') {
- if (tmp && (tmp != strerrbuf) && (*tmp != '\0'))
- strncpy(strerrbuf, tmp, buflen);
- else
- snprintf(strerrbuf, buflen, "unknown error #%i "
- "(strerror_r(3) did not return an error message)",
- errnum);
- }
- }
-#else
- if (strerror_r(errnum, strerrbuf, buflen))
- snprintf(strerrbuf, buflen, "unknown error #%i "
- "(strerror_r(3) failed)", errnum);
-#endif
-
- strerrbuf[buflen - 1] = '\0';
- return strerrbuf;
-} /* sdb_strerror */
-
-/* vim: set tw=78 sw=4 ts=4 noexpandtab : */
-
diff --git a/src/core/plugin.c b/src/core/plugin.c
index 09d5ccea3ebdcd4fbcc01465ee827e2e313cfd35..8200338a9d8fbb0804869b96f9267ed7b776e683 100644 (file)
--- a/src/core/plugin.c
+++ b/src/core/plugin.c
#include "sysdb.h"
#include "core/plugin.h"
-#include "core/error.h"
#include "core/time.h"
+#include "utils/error.h"
#include "utils/llist.h"
#include "utils/strbuf.h"
diff --git a/src/core/store.c b/src/core/store.c
index 587c527a5185699efe18d104d65f499c12801145..8f5cae350c6de13f68ddf75cb0741ada5f1f9950 100644 (file)
--- a/src/core/store.c
+++ b/src/core/store.c
#include "sysdb.h"
#include "core/store.h"
-#include "core/error.h"
#include "core/plugin.h"
+#include "utils/error.h"
#include "utils/llist.h"
#include <assert.h>
diff --git a/src/daemon/config.c b/src/daemon/config.c
index beb0217baa323d5bbd17aff02891aeaed73a5ea7..906f4c5e61989c62e400dafc894de18c41ae4239 100644 (file)
--- a/src/daemon/config.c
+++ b/src/daemon/config.c
#include "sysdb.h"
#include "core/plugin.h"
-#include "core/error.h"
#include "core/time.h"
+#include "utils/error.h"
#include "daemon/config.h"
diff --git a/src/daemon/sysdbd.c b/src/daemon/sysdbd.c
index 67d4515600f469f7806129822a128863a67948e7..6952c1ce7df5a85ab5a12804acef8f3900221b4a 100644 (file)
--- a/src/daemon/sysdbd.c
+++ b/src/daemon/sysdbd.c
#include "sysdb.h"
#include "core/plugin.h"
#include "core/store.h"
-#include "core/error.h"
+#include "utils/error.h"
#include "frontend/sock.h"
index 096a7590444c3ef467372f606ee70dda9cdbbe72..636396a2434c1edca22edfdb9b3b2103036499cc 100644 (file)
*/
#include "sysdb.h"
-#include "core/error.h"
#include "core/object.h"
#include "frontend/connection-private.h"
+#include "utils/error.h"
#include "utils/strbuf.h"
#include "utils/proto.h"
diff --git a/src/frontend/query.c b/src/frontend/query.c
index fa493a6dd04be5a8139c0cae0485d2bea43703c6..b3bf05e3bc83939d85b5de86faf099df49d392d1 100644 (file)
--- a/src/frontend/query.c
+++ b/src/frontend/query.c
#include "sysdb.h"
-#include "core/error.h"
#include "core/store.h"
#include "frontend/connection-private.h"
+#include "utils/error.h"
#include "utils/strbuf.h"
#include <errno.h>
diff --git a/src/frontend/sock.c b/src/frontend/sock.c
index cac49e1db1648b93cc7cd55d933383dd274103f9..4cf1d79e295a832e44d08a272156f4800fe6eb6b 100644 (file)
--- a/src/frontend/sock.c
+++ b/src/frontend/sock.c
*/
#include "sysdb.h"
-#include "core/error.h"
#include "core/object.h"
#include "frontend/connection-private.h"
#include "frontend/sock.h"
#include "utils/channel.h"
+#include "utils/error.h"
#include "utils/llist.h"
#include "utils/strbuf.h"
diff --git a/src/include/core/error.h b/src/include/core/error.h
--- a/src/include/core/error.h
+++ /dev/null
@@ -1,139 +0,0 @@
-/*
- * SysDB - src/include/core/error.h
- * Copyright (C) 2013 Sebastian 'tokkee' Harl <sh@tokkee.org>
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
- * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
- * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
- * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
- * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
- * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-/*
- * SysDB error handling:
- * Error handling in SysDB is done on a by-thread basis, that is, each thread
- * will use its own memory region to store information about the last reported
- * error.
- * Once the error message has been passed to SysDB, it will log the entire
- * message at once. The message will be sent to all registered log functions.
- */
-
-#ifndef SDB_CORE_ERROR_H
-#define SDB_CORE_ERROR_H 1
-
-#include <stddef.h>
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/* max length of any error message */
-#ifndef SDB_MAX_ERROR
-# define SDB_MAX_ERROR 4096
-#endif /* ! SDB_MAX_ERROR */
-
-/* On Linux systems and possibly others, this should be the same as the LOG_
- * constants defined by syslog. */
-enum {
- SDB_LOG_EMERG = 0,
- SDB_LOG_ERR = 3,
- SDB_LOG_WARNING = 4,
- SDB_LOG_NOTICE = 5,
- SDB_LOG_INFO = 6,
- SDB_LOG_DEBUG = 7,
-};
-#define SDB_LOG_PRIO_TO_STRING(prio) \
- (((prio) == SDB_LOG_EMERG) ? "EMERG" \
- : ((prio) == SDB_LOG_ERR) ? "ERROR" \
- : ((prio) == SDB_LOG_WARNING) ? "WARNING" \
- : ((prio) == SDB_LOG_NOTICE) ? "NOTICE" \
- : ((prio) == SDB_LOG_INFO) ? "INFO" \
- : ((prio) == SDB_LOG_DEBUG) ? "DEBUG" : "UNKNOWN")
-
-/*
- * sdb_log:
- * Log the specified message. The string will be formatted in printf-style
- * using the specified format and arguments and logged with the specified
- * priority. In addition, the error message will be stored as the current
- * error message. This function is basically the same as calling sdb_error_set
- * and sdb_error_log. XXX: SDB_LOG_EMERG might, at some point and/or depending
- * on configuration, try a clean shut-down of the process.
- */
-int
-sdb_log(int prio, const char *fmt, ...);
-
-/*
- * sdb_error_set, sdb_error_append:
- * Compose the current error message. The string will be formatted in printf-
- * style using the specified format and arguments. No automatic logging will
- * be done.
- */
-int
-sdb_error_set(const char *fmt, ...);
-int
-sdb_error_append(const char *fmt, ...);
-
-/*
- * sdb_error_chomp:
- * Remove all consecutive newline characters at the end of the error message.
- */
-int
-sdb_error_chomp(void);
-
-/*
- * sdb_error_log:
- * Log the current error message with the specified priority. See sdb_log for
- * more information.
- */
-int
-sdb_error_log(int prio);
-
-/*
- * sdb_error_get:
- * Get the current error message. The string returned by this function is
- * owned by SysDB and might point to static memory -- do not modify or free
- * it.
- */
-const char *
-sdb_error_get(void);
-
-/*
- * sdb_error_get_prio:
- * Get the priority of the last logged error message -- see the SDB_LOG_
- * constants for details.
- */
-int
-sdb_error_get_prio(void);
-
-/*
- * sdb_strerror:
- * This is a wrapper around the system's strerror function which ensures that
- * a pointer to the formatted error message is returned.
- */
-char *
-sdb_strerror(int errnum, char *strerrbuf, size_t buflen);
-
-#ifdef __cplusplus
-} /* extern "C" */
-#endif
-
-#endif /* ! SDB_CORE_ERROR_H */
-
-/* vim: set tw=78 sw=4 ts=4 noexpandtab : */
-
diff --git a/src/include/utils/error.h b/src/include/utils/error.h
--- /dev/null
@@ -0,0 +1,139 @@
+/*
+ * SysDB - src/include/utils/error.h
+ * Copyright (C) 2013 Sebastian 'tokkee' Harl <sh@tokkee.org>
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+ * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
+ * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+ * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
+ * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+/*
+ * SysDB error handling:
+ * Error handling in SysDB is done on a by-thread basis, that is, each thread
+ * will use its own memory region to store information about the last reported
+ * error.
+ * Once the error message has been passed to SysDB, it will log the entire
+ * message at once. The message will be sent to all registered log functions.
+ */
+
+#ifndef SDB_UTILS_ERROR_H
+#define SDB_UTILS_ERROR_H 1
+
+#include <stddef.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/* max length of any error message */
+#ifndef SDB_MAX_ERROR
+# define SDB_MAX_ERROR 4096
+#endif /* ! SDB_MAX_ERROR */
+
+/* On Linux systems and possibly others, this should be the same as the LOG_
+ * constants defined by syslog. */
+enum {
+ SDB_LOG_EMERG = 0,
+ SDB_LOG_ERR = 3,
+ SDB_LOG_WARNING = 4,
+ SDB_LOG_NOTICE = 5,
+ SDB_LOG_INFO = 6,
+ SDB_LOG_DEBUG = 7,
+};
+#define SDB_LOG_PRIO_TO_STRING(prio) \
+ (((prio) == SDB_LOG_EMERG) ? "EMERG" \
+ : ((prio) == SDB_LOG_ERR) ? "ERROR" \
+ : ((prio) == SDB_LOG_WARNING) ? "WARNING" \
+ : ((prio) == SDB_LOG_NOTICE) ? "NOTICE" \
+ : ((prio) == SDB_LOG_INFO) ? "INFO" \
+ : ((prio) == SDB_LOG_DEBUG) ? "DEBUG" : "UNKNOWN")
+
+/*
+ * sdb_log:
+ * Log the specified message. The string will be formatted in printf-style
+ * using the specified format and arguments and logged with the specified
+ * priority. In addition, the error message will be stored as the current
+ * error message. This function is basically the same as calling sdb_error_set
+ * and sdb_error_log. XXX: SDB_LOG_EMERG might, at some point and/or depending
+ * on configuration, try a clean shut-down of the process.
+ */
+int
+sdb_log(int prio, const char *fmt, ...);
+
+/*
+ * sdb_error_set, sdb_error_append:
+ * Compose the current error message. The string will be formatted in printf-
+ * style using the specified format and arguments. No automatic logging will
+ * be done.
+ */
+int
+sdb_error_set(const char *fmt, ...);
+int
+sdb_error_append(const char *fmt, ...);
+
+/*
+ * sdb_error_chomp:
+ * Remove all consecutive newline characters at the end of the error message.
+ */
+int
+sdb_error_chomp(void);
+
+/*
+ * sdb_error_log:
+ * Log the current error message with the specified priority. See sdb_log for
+ * more information.
+ */
+int
+sdb_error_log(int prio);
+
+/*
+ * sdb_error_get:
+ * Get the current error message. The string returned by this function is
+ * owned by SysDB and might point to static memory -- do not modify or free
+ * it.
+ */
+const char *
+sdb_error_get(void);
+
+/*
+ * sdb_error_get_prio:
+ * Get the priority of the last logged error message -- see the SDB_LOG_
+ * constants for details.
+ */
+int
+sdb_error_get_prio(void);
+
+/*
+ * sdb_strerror:
+ * This is a wrapper around the system's strerror function which ensures that
+ * a pointer to the formatted error message is returned.
+ */
+char *
+sdb_strerror(int errnum, char *strerrbuf, size_t buflen);
+
+#ifdef __cplusplus
+} /* extern "C" */
+#endif
+
+#endif /* ! SDB_UTILS_ERROR_H */
+
+/* vim: set tw=78 sw=4 ts=4 noexpandtab : */
+
index d989e52bc4841fb4317317c86d92a3515f6966ae..6f5d518c5c3b5b0645ff5dd4e82141239d23eb68 100644 (file)
--- a/src/plugins/cname/dns.c
+++ b/src/plugins/cname/dns.c
#include "sysdb.h"
#include "core/plugin.h"
-#include "core/error.h"
+#include "utils/error.h"
#include <assert.h>
#include <string.h>
diff --git a/src/plugins/syslog.c b/src/plugins/syslog.c
index b548988a82835be9aedac97099aeed29d7d3caf2..a4875215055361dbdd950f01e74a7737654dc699 100644 (file)
--- a/src/plugins/syslog.c
+++ b/src/plugins/syslog.c
#include "sysdb.h"
#include "core/plugin.h"
-#include "core/error.h"
+#include "utils/error.h"
#include <assert.h>
#include <syslog.h>
diff --git a/src/utils/dbi.c b/src/utils/dbi.c
index db93857fad42d9103d40c24d243fb48511af807e..26926183e4528a71dd0d495c10377d0c6adbfa67 100644 (file)
--- a/src/utils/dbi.c
+++ b/src/utils/dbi.c
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include "core/error.h"
#include "utils/dbi.h"
+#include "utils/error.h"
#include <assert.h>
diff --git a/src/utils/error.c b/src/utils/error.c
--- /dev/null
+++ b/src/utils/error.c
@@ -0,0 +1,283 @@
+/*
+ * SysDB - src/utils/error.c
+ * Copyright (C) 2013 Sebastian 'tokkee' Harl <sh@tokkee.org>
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+ * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
+ * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+ * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
+ * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include "core/plugin.h"
+#include "utils/error.h"
+#include "utils/strbuf.h"
+
+#include <pthread.h>
+
+#include <stdarg.h>
+#include <stdio.h>
+#include <string.h>
+
+#include <stdlib.h>
+
+/*
+ * private data types
+ */
+
+typedef struct {
+ int prio;
+ sdb_strbuf_t *msg;
+ _Bool logged;
+} sdb_error_ctx_t;
+#define SDB_ERROR_INIT { -1, NULL, 1 }
+
+/*
+ * private variables
+ */
+
+static sdb_error_ctx_t default_error_ctx = SDB_ERROR_INIT;
+
+static pthread_key_t error_ctx_key;
+static _Bool error_ctx_key_initialized = 0;
+
+/*
+ * private helper functions
+ */
+
+static void
+sdb_error_ctx_destructor(void *p)
+{
+ sdb_error_ctx_t *ctx = p;
+
+ if (! ctx)
+ return;
+
+ sdb_strbuf_destroy(ctx->msg);
+ free(ctx);
+} /* sdb_error_ctx_destructor */
+
+static void
+sdb_error_ctx_init(void)
+{
+ if (error_ctx_key_initialized)
+ return;
+
+ pthread_key_create(&error_ctx_key, sdb_error_ctx_destructor);
+ error_ctx_key_initialized = 1;
+} /* sdb_error_init */
+
+static sdb_error_ctx_t *
+sdb_error_ctx_create(void)
+{
+ sdb_error_ctx_t *ctx;
+
+ ctx = malloc(sizeof(*ctx));
+ if (! ctx)
+ return NULL;
+
+ *ctx = default_error_ctx;
+ ctx->msg = sdb_strbuf_create(64);
+ if (! ctx->msg) {
+ free(ctx);
+ return NULL;
+ }
+
+ if (! error_ctx_key_initialized)
+ sdb_error_ctx_init();
+ pthread_setspecific(error_ctx_key, ctx);
+ return ctx;
+} /* sdb_error_ctx_create */
+
+static sdb_error_ctx_t *
+sdb_error_get_ctx(void)
+{
+ sdb_error_ctx_t *ctx;
+
+ if (! error_ctx_key_initialized)
+ sdb_error_ctx_init();
+ ctx = pthread_getspecific(error_ctx_key);
+
+ if (! ctx)
+ ctx = sdb_error_ctx_create();
+ if (! ctx)
+ return NULL;
+ return ctx;
+} /* sdb_error_get_ctx */
+
+static int
+sdb_error_vprintf(const char *fmt, va_list ap)
+{
+ sdb_error_ctx_t *ctx;
+
+ ctx = sdb_error_get_ctx();
+ if (! ctx)
+ return -1;
+
+ ctx->logged = 0;
+ return (int)sdb_strbuf_vsprintf(ctx->msg, fmt, ap);
+} /* sdb_error_vprintf */
+
+static int
+sdb_error_vappend(const char *fmt, va_list ap)
+{
+ sdb_error_ctx_t *ctx;
+
+ ctx = sdb_error_get_ctx();
+ if (! ctx)
+ return -1;
+
+ ctx->logged = 0;
+ return (int)sdb_strbuf_vappend(ctx->msg, fmt, ap);
+} /* sdb_error_vappend */
+
+static int
+sdb_do_log(int prio)
+{
+ sdb_error_ctx_t *ctx;
+ int ret;
+
+ ctx = sdb_error_get_ctx();
+ if (! ctx)
+ return -1;
+
+ if (prio >= 0)
+ ctx->prio = prio;
+
+ if (ctx->logged)
+ return 0;
+
+ ret = sdb_plugin_log(prio, sdb_strbuf_string(ctx->msg));
+ ctx->logged = 1;
+ return ret;
+} /* sdb_do_log */
+
+/*
+ * public API
+ */
+
+int
+sdb_log(int prio, const char *fmt, ...)
+{
+ va_list ap;
+ int ret;
+
+ va_start(ap, fmt);
+ ret = sdb_error_vprintf(fmt, ap);
+ va_end(ap);
+
+ if (ret > 0)
+ sdb_do_log(prio);
+ return ret;
+} /* sdb_log */
+
+int
+sdb_error_set(const char *fmt, ...)
+{
+ va_list ap;
+ int ret;
+
+ va_start(ap, fmt);
+ ret = sdb_error_vprintf(fmt, ap);
+ va_end(ap);
+
+ return ret;
+} /* sdb_error_set */
+
+int
+sdb_error_append(const char *fmt, ...)
+{
+ va_list ap;
+ int ret;
+
+ va_start(ap, fmt);
+ ret = sdb_error_vappend(fmt, ap);
+ va_end(ap);
+
+ return ret;
+} /* sdb_error_append */
+
+int
+sdb_error_chomp(void)
+{
+ sdb_error_ctx_t *ctx;
+
+ ctx = sdb_error_get_ctx();
+ if (! ctx)
+ return -1;
+
+ sdb_strbuf_chomp(ctx->msg);
+ return 0;
+} /* sdb_error_chomp */
+
+int
+sdb_error_log(int prio)
+{
+ return sdb_do_log(prio);
+} /* sdb_error_log */
+
+const char *
+sdb_error_get(void)
+{
+ sdb_error_ctx_t *ctx;
+
+ ctx = sdb_error_get_ctx();
+ if (! ctx)
+ return "success";
+ return sdb_strbuf_string(ctx->msg);
+} /* sdb_error_get */
+
+int
+sdb_error_get_prio(void)
+{
+ sdb_error_ctx_t *ctx;
+
+ ctx = sdb_error_get_ctx();
+ if (! ctx)
+ return -1;
+ return ctx->prio;
+} /* sdb_error_get_prio */
+
+char *
+sdb_strerror(int errnum, char *strerrbuf, size_t buflen)
+{
+#if STRERROR_R_CHAR_P
+ {
+ char *tmp = strerror_r(errnum, strerrbuf, buflen);
+ if (*strerrbuf = '\0') {
+ if (tmp && (tmp != strerrbuf) && (*tmp != '\0'))
+ strncpy(strerrbuf, tmp, buflen);
+ else
+ snprintf(strerrbuf, buflen, "unknown error #%i "
+ "(strerror_r(3) did not return an error message)",
+ errnum);
+ }
+ }
+#else
+ if (strerror_r(errnum, strerrbuf, buflen))
+ snprintf(strerrbuf, buflen, "unknown error #%i "
+ "(strerror_r(3) failed)", errnum);
+#endif
+
+ strerrbuf[buflen - 1] = '\0';
+ return strerrbuf;
+} /* sdb_strerror */
+
+/* vim: set tw=78 sw=4 ts=4 noexpandtab : */
+
diff --git a/src/utils/proto.c b/src/utils/proto.c
index 85a4cb849f3a5457ec14859306fcb93a38e8b38d..29783efd5aefb3db7cd09037f6f534fa4363b020 100644 (file)
--- a/src/utils/proto.c
+++ b/src/utils/proto.c
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+#include "utils/error.h"
#include "utils/proto.h"
-#include "core/error.h"
#include <arpa/inet.h>
#include <errno.h>
diff --git a/src/utils/unixsock.c b/src/utils/unixsock.c
index 256cf9f7ba7ed56f8917b9110acee9fefdfded15..59bf5631f451e4f401883532e8cd9b1dc4c8791d 100644 (file)
--- a/src/utils/unixsock.c
+++ b/src/utils/unixsock.c
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+#include "utils/error.h"
#include "utils/unixsock.h"
-#include "core/error.h"
#include <assert.h>
#include <errno.h>