chiark / gitweb /
log.h: new log_oom() -> int -ENOMEM, use it
[elogind.git] / src / shared / log.h
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 #pragma once
4
5 /***
6   This file is part of systemd.
7
8   Copyright 2010 Lennart Poettering
9
10   systemd is free software; you can redistribute it and/or modify it
11   under the terms of the GNU Lesser General Public License as published by
12   the Free Software Foundation; either version 2.1 of the License, or
13   (at your option) any later version.
14
15   systemd is distributed in the hope that it will be useful, but
16   WITHOUT ANY WARRANTY; without even the implied warranty of
17   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18   Lesser General Public License for more details.
19
20   You should have received a copy of the GNU Lesser General Public License
21   along with systemd; If not, see <http://www.gnu.org/licenses/>.
22 ***/
23
24 #include <syslog.h>
25 #include <stdbool.h>
26 #include <stdarg.h>
27 #include <errno.h>
28
29 #include "macro.h"
30
31 typedef enum LogTarget{
32         LOG_TARGET_CONSOLE,
33         LOG_TARGET_KMSG,
34         LOG_TARGET_JOURNAL,
35         LOG_TARGET_JOURNAL_OR_KMSG,
36         LOG_TARGET_SYSLOG,
37         LOG_TARGET_SYSLOG_OR_KMSG,
38         LOG_TARGET_AUTO, /* console if stderr is tty, JOURNAL_OR_KMSG otherwise */
39         LOG_TARGET_SAFE, /* console if stderr is tty, KMSG otherwise */
40         LOG_TARGET_NULL,
41         _LOG_TARGET_MAX,
42         _LOG_TARGET_INVALID = -1
43 }  LogTarget;
44
45 void log_set_target(LogTarget target);
46 void log_set_max_level(int level);
47 void log_set_facility(int facility);
48
49 int log_set_target_from_string(const char *e);
50 int log_set_max_level_from_string(const char *e);
51
52 void log_show_color(bool b);
53 void log_show_location(bool b);
54
55 int log_show_color_from_string(const char *e);
56 int log_show_location_from_string(const char *e);
57
58 LogTarget log_get_target(void);
59 int log_get_max_level(void);
60
61 int log_open(void);
62 void log_close(void);
63 void log_forget_fds(void);
64
65 void log_close_syslog(void);
66 void log_close_journal(void);
67 void log_close_kmsg(void);
68 void log_close_console(void);
69
70 void log_parse_environment(void);
71
72 int log_meta(
73         int level,
74         const char*file,
75         int line,
76         const char *func,
77         const char *format, ...) _printf_attr_(5,6);
78
79 int log_metav(
80         int level,
81         const char*file,
82         int line,
83         const char *func,
84         const char *format,
85         va_list ap);
86
87 _noreturn_ void log_assert_failed(const char *text, const char *file, int line, const char *func);
88 _noreturn_ void log_assert_failed_unreachable(const char *text, const char *file, int line, const char *func);
89
90 /* This modifies the buffer passed! */
91 int log_dump_internal(
92         int level,
93         const char*file,
94         int line,
95         const char *func,
96         char *buffer);
97
98 #define log_full(level, ...) log_meta(level,   __FILE__, __LINE__, __func__, __VA_ARGS__)
99
100 #define log_debug(...)   log_meta(LOG_DEBUG,   __FILE__, __LINE__, __func__, __VA_ARGS__)
101 #define log_info(...)    log_meta(LOG_INFO,    __FILE__, __LINE__, __func__, __VA_ARGS__)
102 #define log_notice(...)  log_meta(LOG_NOTICE,  __FILE__, __LINE__, __func__, __VA_ARGS__)
103 #define log_warning(...) log_meta(LOG_WARNING, __FILE__, __LINE__, __func__, __VA_ARGS__)
104 #define log_error(...)   log_meta(LOG_ERR,     __FILE__, __LINE__, __func__, __VA_ARGS__)
105
106 static inline int log_oom(void) {
107        log_error("Out of memory.");
108        return -ENOMEM;
109 }
110
111 /* This modifies the buffer passed! */
112 #define log_dump(level, buffer) log_dump_internal(level, __FILE__, __LINE__, __func__, buffer)
113
114 const char *log_target_to_string(LogTarget target);
115 LogTarget log_target_from_string(const char *s);