chiark / gitweb /
journal: implement parallel traversal in client
[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 /* TODO:
29  *
30  *   - implement rotation
31  *   - check LE/BE conversion for 8bit, 16bit, 32bit values
32  *   - implement parallel traversal
33  *   - implement inotify usage on client
34  *   - implement audit gateway
35  *   - implement native gateway
36  *   - extend hash table/bisect table as we go
37  */
38
39 typedef struct sd_journal sd_journal;
40
41 int sd_journal_open(sd_journal **ret);
42 void sd_journal_close(sd_journal *j);
43
44 int sd_journal_previous(sd_journal *j);
45 int sd_journal_next(sd_journal *j);
46
47 int sd_journal_get(sd_journal *j, const char *field, const void **data, size_t *size);
48 int sd_journal_get_seqnum(sd_journal *j, uint64_t *ret);
49 int sd_journal_get_realtime_usec(sd_journal *j, uint64_t *ret);
50 int sd_journal_get_monotonic_usec(sd_journal *j, uint64_t *ret);
51
52 int sd_journal_add_match(sd_journal *j, const char *field, const void *data, size_t size);
53 void sd_journal_flush_matches(sd_journal *j);
54
55 int sd_journal_seek_head(sd_journal *j);
56 int sd_journal_seek_tail(sd_journal *j);
57
58 int sd_journal_seek_seqnum(sd_journal *j, uint64_t seqnum);
59 int sd_journal_seek_monotonic_usec(sd_journal *j, uint64_t usec);
60 int sd_journal_seek_realtime_usec(sd_journal *j, uint64_t usec);
61
62 int sd_journal_get_cursor(sd_journal *j, void **cursor, size_t *size);
63 int sd_journal_set_cursor(sd_journal *j, const void *cursor, size_t size);
64
65 int sd_journal_get_fd(sd_journal *j);
66
67 #endif