chiark / gitweb /
journal: add preliminary incomplete implementation
[elogind.git] / src / journal / wjournal.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
27 typedef struct WJournal WJournal;
28
29 int wjournal_open(const char *fn, WJournal **ret);
30 void wjournal_close(WJournal *j);
31
32 int wjournal_write_object_begin(WJournal *j, uint64_t type, uint64_t size, Object **ret);
33 int wjournal_write_object_finish(WJournal *j, Object *ret);
34
35 int wjournal_write_field(WJournal *j, const char *buffer, uint64_t size, Object **ret);
36 int wjournal_write_entry(WJournal *j, const Field *fields, unsigned n_fields, Object **ret);
37 int wjournal_write_eof(WJournal *j);
38
39 #endif