summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2012-05-18 08:48:24 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2012-05-18 08:48:24 +0200
commite3ba3e8f66cf6d32a7408fe3e3666805ddf82578 (patch)
tree51e24e03d53c3d642c54b4bae27cd80c2290a55c
parent6c6398d355d91c56c2a0637ca659b013ae82355a (diff)
downloadfastd-e3ba3e8f66cf6d32a7408fe3e3666805ddf82578.tar
fastd-e3ba3e8f66cf6d32a7408fe3e3666805ddf82578.zip
Uninline pr_log
-rw-r--r--src/fastd.c1
-rw-r--r--src/fastd.h68
-rw-r--r--src/printf.c54
3 files changed, 62 insertions, 61 deletions
diff --git a/src/fastd.c b/src/fastd.c
index a73c73d..b3b5e4c 100644
--- a/src/fastd.c
+++ b/src/fastd.c
@@ -48,6 +48,7 @@ static volatile bool sighup = false;
static volatile bool terminate = false;
+
static void on_sighup(int signo) {
sighup = true;
}
diff --git a/src/fastd.h b/src/fastd.h
index 8d86334..7f4753e 100644
--- a/src/fastd.h
+++ b/src/fastd.h
@@ -220,6 +220,7 @@ void fastd_handle_receive(fastd_context *ctx, fastd_peer *peer, fastd_buffer buf
void fastd_resolve_peer(fastd_context *ctx, const fastd_peer_config *peer);
int fastd_vsnprintf(const fastd_context *ctx, char *buffer, size_t size, const char *format, va_list ap);
+void fastd_logf(const fastd_context *ctx, int level, const char *format, ...);
void fastd_read_peer_dir(fastd_context *ctx, fastd_config *conf, const char *dir);
bool fastd_read_config(fastd_context *ctx, fastd_config *conf, const char *filename, bool peer_config, int depth);
@@ -242,67 +243,12 @@ static inline int fastd_rand(fastd_context *ctx, int min, int max) {
#define FASTD_DEFAULT_LOG_LEVEL LOG_INFO
-static inline const char* get_log_prefix(int log_level) {
- switch(log_level) {
- case LOG_CRIT:
- return "Fatal: ";
- case LOG_ERR:
- return "Error: ";
- case LOG_WARNING:
- return "Warning: ";
- case LOG_NOTICE:
- return "Info: ";
- case LOG_INFO:
- return "Verbose: ";
- case LOG_DEBUG:
- return "DEBUG: ";
- default:
- return "";
- }
-}
-
-static inline void pr_log(const fastd_context *ctx, int level, const char *format, ...) {
- char buffer[1024];
- char timestr[100] = "";
- va_list ap;
-
- va_start(ap, format);
- fastd_vsnprintf(ctx, buffer, sizeof(buffer), format, ap);
- va_end(ap);
-
- buffer[sizeof(buffer)-1] = 0;
-
- if (ctx->conf == NULL || level <= ctx->conf->log_stderr_level || ctx->conf->log_files) {
- time_t t;
- struct tm tm;
-
- t = time(NULL);
- if (localtime_r(&t, &tm) != NULL) {
- if (strftime(timestr, sizeof(timestr), "%F %T %z --- ", &tm) <= 0)
- *timestr = 0;
- }
- }
-
- if (ctx->conf == NULL || level <= ctx->conf->log_stderr_level)
- fprintf(stderr, "%s%s%s\n", timestr, get_log_prefix(level), buffer);
-
- if (level <= ctx->conf->log_syslog_level)
- syslog(level, "%s", buffer);
-
- fastd_log_fd *file;
- for (file = ctx->log_files; file; file = file->next) {
- if (level <= file->config->level)
- dprintf(file->fd, "%s%s%s\n", timestr, get_log_prefix(level), buffer);
- }
-}
-
-
-#define pr_fatal(ctx, args...) pr_log(ctx, LOG_CRIT, args)
-#define pr_error(ctx, args...) pr_log(ctx, LOG_ERR, args)
-#define pr_warn(ctx, args...) pr_log(ctx, LOG_WARNING, args)
-#define pr_info(ctx, args...) pr_log(ctx, LOG_NOTICE, args)
-#define pr_verbose(ctx, args...) pr_log(ctx, LOG_INFO, args)
-#define pr_debug(ctx, args...) pr_log(ctx, LOG_DEBUG, args)
+#define pr_fatal(ctx, args...) fastd_logf(ctx, LOG_CRIT, args)
+#define pr_error(ctx, args...) fastd_logf(ctx, LOG_ERR, args)
+#define pr_warn(ctx, args...) fastd_logf(ctx, LOG_WARNING, args)
+#define pr_info(ctx, args...) fastd_logf(ctx, LOG_NOTICE, args)
+#define pr_verbose(ctx, args...) fastd_logf(ctx, LOG_INFO, args)
+#define pr_debug(ctx, args...) fastd_logf(ctx, LOG_DEBUG, args)
#define pr_warn_errno(ctx, message) pr_warn(ctx, "%s: %s", message, strerror(errno))
#define pr_error_errno(ctx, message) pr_warn(ctx, "%s: %s", message, strerror(errno))
diff --git a/src/printf.c b/src/printf.c
index bf2bc35..c5a8209 100644
--- a/src/printf.c
+++ b/src/printf.c
@@ -147,3 +147,57 @@ int fastd_vsnprintf(const fastd_context *ctx, char *buffer, size_t size, const c
return buffer-buffer_start;
}
+
+static inline const char* get_log_prefix(int log_level) {
+ switch(log_level) {
+ case LOG_CRIT:
+ return "Fatal: ";
+ case LOG_ERR:
+ return "Error: ";
+ case LOG_WARNING:
+ return "Warning: ";
+ case LOG_NOTICE:
+ return "Info: ";
+ case LOG_INFO:
+ return "Verbose: ";
+ case LOG_DEBUG:
+ return "DEBUG: ";
+ default:
+ return "";
+ }
+}
+
+void fastd_logf(const fastd_context *ctx, int level, const char *format, ...) {
+ char buffer[1024];
+ char timestr[100] = "";
+ va_list ap;
+
+ va_start(ap, format);
+ fastd_vsnprintf(ctx, buffer, sizeof(buffer), format, ap);
+ va_end(ap);
+
+ buffer[sizeof(buffer)-1] = 0;
+
+ if (ctx->conf == NULL || level <= ctx->conf->log_stderr_level || ctx->conf->log_files) {
+ time_t t;
+ struct tm tm;
+
+ t = time(NULL);
+ if (localtime_r(&t, &tm) != NULL) {
+ if (strftime(timestr, sizeof(timestr), "%F %T %z --- ", &tm) <= 0)
+ *timestr = 0;
+ }
+ }
+
+ if (ctx->conf == NULL || level <= ctx->conf->log_stderr_level)
+ fprintf(stderr, "%s%s%s\n", timestr, get_log_prefix(level), buffer);
+
+ if (level <= ctx->conf->log_syslog_level)
+ syslog(level, "%s", buffer);
+
+ fastd_log_fd *file;
+ for (file = ctx->log_files; file; file = file->next) {
+ if (level <= file->config->level)
+ dprintf(file->fd, "%s%s%s\n", timestr, get_log_prefix(level), buffer);
+ }
+}