chiark / gitweb /
8d7e314223c1ce008b2fc23224fc1a16c95c79e9
[elogind.git] / src / journal / sd-journal.h
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 #ifndef foojournalhfoo
4 #define foojournalhfoo
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
28 #include "sd-id128.h"
29
30 /* TODO:
31  *
32  *   - check LE/BE conversion for 8bit, 16bit, 32bit values
33  *   - implement inotify usage on client
34  *   - implement audit gateway
35  *   - implement native gateway
36  *   - implement stdout gateway
37  *   - extend hash tables table as we go
38  *   - accelerate looking for "all hostnames" and suchlike.
39  *   - throttling
40  *   - enforce limit on open journal files in journald and journalctl
41  *   - cryptographic hash
42  *   - fix space reservation logic
43  *   - comm, argv can be manipulated, should it be _COMM=, _CMDLINE= or COMM=, CMDLINE=?
44  */
45
46 typedef struct sd_journal sd_journal;
47
48 int sd_journal_open(sd_journal **ret);
49 void sd_journal_close(sd_journal *j);
50
51 int sd_journal_previous(sd_journal *j);
52 int sd_journal_next(sd_journal *j);
53
54 int sd_journal_previous_skip(sd_journal *j, uint64_t skip);
55 int sd_journal_next_skip(sd_journal *j, uint64_t skip);
56
57 int sd_journal_get_realtime_usec(sd_journal *j, uint64_t *ret);
58 int sd_journal_get_monotonic_usec(sd_journal *j, uint64_t *ret, sd_id128_t *ret_boot_id);
59 int sd_journal_get_data(sd_journal *j, const char *field, const void **data, size_t *l);
60 int sd_journal_enumerate_data(sd_journal *j, const void **data, size_t *l);
61 void sd_journal_restart_data(sd_journal *j);
62
63 int sd_journal_add_match(sd_journal *j, const void *data, size_t size);
64 void sd_journal_flush_matches(sd_journal *j);
65
66 int sd_journal_seek_head(sd_journal *j);
67 int sd_journal_seek_tail(sd_journal *j);
68 int sd_journal_seek_monotonic_usec(sd_journal *j, sd_id128_t boot_id, uint64_t usec);
69 int sd_journal_seek_realtime_usec(sd_journal *j, uint64_t usec);
70 int sd_journal_seek_cursor(sd_journal *j, const char *cursor);
71
72 int sd_journal_get_cursor(sd_journal *j, char **cursor);
73
74 int sd_journal_query_unique(sd_journal *j, const char *field);      /* missing */
75 int sd_journal_enumerate_unique(sd_journal *j, const void **data, size_t *l); /* missing */
76 void sd_journal_restart_unique(sd_journal *j);                      /* missing */
77
78 enum {
79         SD_JOURNAL_NOP,
80         SD_JOURNAL_APPEND,
81         SD_JOURNAL_INVALIDATE_ADD,
82         SD_JOURNAL_INVALIDATE_REMOVE
83 };
84
85 int sd_journal_get_fd(sd_journal *j);                              /* missing */
86 int sd_journal_process(sd_journal *j);                             /* missing */
87
88 #define SD_JOURNAL_FOREACH(j)                                           \
89         if (sd_journal_seek_head(j) >= 0)                               \
90                 while (sd_journal_next(j) > 0)                          \
91
92 #define SD_JOURNAL_FOREACH_BACKWARDS(j)                                 \
93         if (sd_journal_seek_tail(j) >= 0)                               \
94                 while (sd_journal_previous(j) > 0)                      \
95
96 #define SD_JOURNAL_FOREACH_DATA(j, data, l)                             \
97         for (sd_journal_restart_data(j); sd_journal_enumerate_data((j), &(data), &(l)) > 0; )
98
99 #define SD_JOURNAL_FOREACH_UNIQUE(j, data, l)                           \
100         for (sd_journal_restart_unique(j); sd_journal_enumerate_data((j), &(data), &(l)) > 0; )
101
102 #endif