]> git.proxmox.com Git - systemd.git/blame - src/shared/logs-show.h
Imported Upstream version 229
[systemd.git] / src / shared / logs-show.h
CommitLineData
663996b3
MS
1#pragma once
2
3/***
4 This file is part of systemd.
5
6 Copyright 2012 Lennart Poettering
7
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
17
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20***/
21
22#include <stdbool.h>
4c89c718
MP
23#include <stddef.h>
24#include <stdio.h>
663996b3
MS
25#include <sys/types.h>
26
e735f4d4 27#include "sd-journal.h"
663996b3 28
4c89c718 29#include "macro.h"
663996b3 30#include "output-mode.h"
4c89c718
MP
31#include "time-util.h"
32#include "util.h"
663996b3
MS
33
34int output_journal(
35 FILE *f,
36 sd_journal *j,
37 OutputMode mode,
38 unsigned n_columns,
14228c0d
MB
39 OutputFlags flags,
40 bool *ellipsized);
41
60f067b4 42int add_match_this_boot(sd_journal *j, const char *machine);
663996b3
MS
43
44int add_matches_for_unit(
45 sd_journal *j,
46 const char *unit);
47
48int add_matches_for_user_unit(
49 sd_journal *j,
50 const char *unit,
51 uid_t uid);
52
53int show_journal_by_unit(
54 FILE *f,
55 const char *unit,
56 OutputMode mode,
57 unsigned n_columns,
58 usec_t not_before,
59 unsigned how_many,
60 uid_t uid,
61 OutputFlags flags,
e735f4d4
MP
62 int journal_open_flags,
63 bool system_unit,
14228c0d 64 bool *ellipsized);
663996b3
MS
65
66void json_escape(
67 FILE *f,
68 const char* p,
69 size_t l,
70 OutputFlags flags);
71
72const char* output_mode_to_string(OutputMode m) _const_;
73OutputMode output_mode_from_string(const char *s) _pure_;