chiark / gitweb /
47feca40aaf2743d9601e7ce316fdbabaa69c14f
[elogind.git] / src / journal / journald.h
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 #ifndef foojournaldhfoo
4 #define foojournaldhfoo
5
6 /***
7   This file is part of systemd.
8
9   Copyright 2011 Lennart Poettering
10
11   systemd is free software; you can redistribute it and/or modify it
12   under the terms of the GNU General Public License as published by
13   the Free Software Foundation; either version 2 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   General Public License for more details.
20
21   You should have received a copy of the GNU General Public License
22   along with systemd; If not, see <http://www.gnu.org/licenses/>.
23 ***/
24
25 #include <inttypes.h>
26 #include <sys/types.h>
27 #include <stdbool.h>
28
29 #include "journal-file.h"
30 #include "hashmap.h"
31 #include "util.h"
32 #include "journal-rate-limit.h"
33 #include "list.h"
34
35 typedef struct StdoutStream StdoutStream;
36
37 typedef struct Server {
38         int epoll_fd;
39         int signal_fd;
40         int syslog_fd;
41         int native_fd;
42         int stdout_fd;
43
44         JournalFile *runtime_journal;
45         JournalFile *system_journal;
46         Hashmap *user_journals;
47
48         uint64_t seqnum;
49
50         char *buffer;
51         size_t buffer_size;
52
53         JournalRateLimit *rate_limit;
54         usec_t rate_limit_interval;
55         unsigned rate_limit_burst;
56
57         JournalMetrics runtime_metrics;
58         JournalMetrics system_metrics;
59
60         bool compress;
61
62         uint64_t cached_available_space;
63         usec_t cached_available_space_timestamp;
64
65         uint64_t var_available_timestamp;
66
67         LIST_HEAD(StdoutStream, stdout_streams);
68         unsigned n_stdout_streams;
69 } Server;
70
71 /* gperf lookup function */
72 const struct ConfigPerfItem* journald_gperf_lookup(const char *key, unsigned length);
73
74 #endif