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