1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
6 This file is part of systemd.
8 Copyright 2011 Lennart Poettering
10 systemd is free software; you can redistribute it and/or modify it
11 under the terms of the GNU Lesser General Public License as published by
12 the Free Software Foundation; either version 2.1 of the License, or
13 (at your option) any later version.
15 systemd is distributed in the hope that it will be useful, but
16 WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 Lesser General Public License for more details.
20 You should have received a copy of the GNU Lesser General Public License
21 along with systemd; If not, see <http://www.gnu.org/licenses/>.
24 #include <sys/types.h>
29 #include "sd-journal.h"
32 #include "journal-def.h"
33 #include "journal-file.h"
37 typedef struct Match Match
;
38 typedef struct Location Location
;
39 typedef struct Directory Directory
;
41 typedef enum MatchType
{
50 LIST_FIELDS(Match
, matches
);
52 /* For concrete matches */
58 LIST_HEAD(Match
, matches
);
90 OrderedHashmap
*files
;
93 Location current_location
;
95 JournalFile
*current_file
;
96 uint64_t current_field
;
98 Match
*level0
, *level1
, *level2
;
103 unsigned current_invalidate_counter
, last_invalidate_counter
;
104 usec_t last_process_usec
;
107 JournalFile
*unique_file
;
108 uint64_t unique_offset
;
114 bool unique_file_lost
; /* File we were iterating over got
115 removed, and there were no more
116 files, so sd_j_enumerate_unique
117 will return a value equal to 0. */
119 size_t data_threshold
;
121 Hashmap
*directories_by_path
;
122 Hashmap
*directories_by_wd
;
127 char *journal_make_match_string(sd_journal
*j
);
128 void journal_print_header(sd_journal
*j
);
130 DEFINE_TRIVIAL_CLEANUP_FUNC(sd_journal
*, sd_journal_close
);
131 #define _cleanup_journal_close_ _cleanup_(sd_journal_closep)
133 #define JOURNAL_FOREACH_DATA_RETVAL(j, data, l, retval) \
134 for (sd_journal_restart_data(j); ((retval) = sd_journal_enumerate_data((j), &(data), &(l))) > 0; )