chiark / gitweb /
tree-wide: remove Lennart's copyright lines
[elogind.git] / src / shared / output-mode.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 #include "macro.h"
5
6 typedef enum OutputMode {
7         OUTPUT_SHORT,
8         OUTPUT_SHORT_FULL,
9         OUTPUT_SHORT_ISO,
10         OUTPUT_SHORT_ISO_PRECISE,
11         OUTPUT_SHORT_PRECISE,
12         OUTPUT_SHORT_MONOTONIC,
13         OUTPUT_SHORT_UNIX,
14         OUTPUT_VERBOSE,
15         OUTPUT_EXPORT,
16         OUTPUT_JSON,
17         OUTPUT_JSON_PRETTY,
18         OUTPUT_JSON_SSE,
19         OUTPUT_CAT,
20         OUTPUT_WITH_UNIT,
21         _OUTPUT_MODE_MAX,
22         _OUTPUT_MODE_INVALID = -1
23 } OutputMode;
24
25 /* The output flags definitions are shared by the logs and process tree output. Some apply to both, some only to the
26  * logs output, others only to the process tree output. */
27
28 typedef enum OutputFlags {
29         OUTPUT_SHOW_ALL       = 1 << 0,
30         OUTPUT_FOLLOW         = 1 << 1,
31         OUTPUT_WARN_CUTOFF    = 1 << 2,
32         OUTPUT_FULL_WIDTH     = 1 << 3,
33         OUTPUT_COLOR          = 1 << 4,
34         OUTPUT_CATALOG        = 1 << 5,
35         OUTPUT_BEGIN_NEWLINE  = 1 << 6,
36         OUTPUT_UTC            = 1 << 7,
37         OUTPUT_KERNEL_THREADS = 1 << 8,
38         OUTPUT_NO_HOSTNAME    = 1 << 9,
39 } OutputFlags;
40
41 const char* output_mode_to_string(OutputMode m) _const_;
42 OutputMode output_mode_from_string(const char *s) _pure_;