chiark / gitweb /
Merge branch 'master' into journal
[elogind.git] / src / journal / journalctl.c
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 /***
4   This file is part of systemd.
5
6   Copyright 2011 Lennart Poettering
7
8   systemd is free software; you can redistribute it and/or modify it
9   under the terms of the GNU General Public License as published by
10   the Free Software Foundation; either version 2 of the License, or
11   (at your option) any later version.
12
13   systemd is distributed in the hope that it will be useful, but
14   WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16   General Public License for more details.
17
18   You should have received a copy of the GNU General Public License
19   along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 #include <fcntl.h>
23 #include <errno.h>
24 #include <stddef.h>
25 #include <string.h>
26 #include <stdio.h>
27 #include <unistd.h>
28 #include <stdlib.h>
29
30 #include "sd-journal.h"
31 #include "log.h"
32
33 int main(int argc, char *argv[]) {
34         int r, i;
35         sd_journal *j = NULL;
36
37         log_set_max_level(LOG_DEBUG);
38         log_set_target(LOG_TARGET_CONSOLE);
39
40         log_parse_environment();
41         log_open();
42
43         r = sd_journal_open(&j);
44         if (r < 0) {
45                 log_error("Failed to open journal: %s", strerror(-r));
46                 goto finish;
47         }
48
49         for (i = 1; i < argc; i++) {
50                 r = sd_journal_add_match(j, argv[i], strlen(argv[i]));
51                 if (r < 0) {
52                         log_error("Failed to add match: %s", strerror(-r));
53                         goto finish;
54                 }
55         }
56
57         SD_JOURNAL_FOREACH(j) {
58
59                 const void *data;
60                 size_t length;
61                 char *cursor;
62                 uint64_t realtime = 0, monotonic = 0;
63
64                 r = sd_journal_get_cursor(j, &cursor);
65                 if (r < 0) {
66                         log_error("Failed to get cursor: %s", strerror(-r));
67                         goto finish;
68                 }
69
70                 printf("entry: %s\n", cursor);
71                 free(cursor);
72
73                 sd_journal_get_realtime_usec(j, &realtime);
74                 sd_journal_get_monotonic_usec(j, &monotonic, NULL);
75                 printf("realtime: %llu\n"
76                        "monotonic: %llu\n",
77                        (unsigned long long) realtime,
78                        (unsigned long long) monotonic);
79
80                 SD_JOURNAL_FOREACH_DATA(j, data, length)
81                         printf("\t%.*s\n", (int) length, (const char*) data);
82
83         }
84
85 finish:
86         if (j)
87                 sd_journal_close(j);
88
89         return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
90 }