]>
git.ipfire.org Git - thirdparty/systemd.git/blob - src/shared/output-mode.h
ffd2e4fe8098128195d908e1d08c574b92b40bff
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
6 typedef enum OutputMode
{
10 OUTPUT_SHORT_ISO_PRECISE
,
12 OUTPUT_SHORT_MONOTONIC
,
24 _OUTPUT_MODE_INVALID
= -EINVAL
,
27 static inline bool OUTPUT_MODE_IS_JSON(OutputMode m
) {
28 return IN_SET(m
, OUTPUT_JSON
, OUTPUT_JSON_PRETTY
, OUTPUT_JSON_SSE
, OUTPUT_JSON_SEQ
);
31 /* The output flags definitions are shared by the logs and process tree output. Some apply to both, some only to the
32 * logs output, others only to the process tree output. */
34 typedef enum OutputFlags
{
35 OUTPUT_SHOW_ALL
= 1 << 0,
36 OUTPUT_FULL_WIDTH
= 1 << 1,
37 OUTPUT_COLOR
= 1 << 2,
39 /* Specific to log output */
40 OUTPUT_WARN_CUTOFF
= 1 << 3,
41 OUTPUT_CATALOG
= 1 << 4,
42 OUTPUT_BEGIN_NEWLINE
= 1 << 5,
44 OUTPUT_NO_HOSTNAME
= 1 << 7,
45 OUTPUT_TRUNCATE_NEWLINE
= 1 << 8,
47 /* Specific to process tree output */
48 OUTPUT_KERNEL_THREADS
= 1 << 9,
49 OUTPUT_CGROUP_XATTRS
= 1 << 10,
50 OUTPUT_CGROUP_ID
= 1 << 11,
53 sd_json_format_flags_t
output_mode_to_json_format_flags(OutputMode m
);
55 const char* output_mode_to_string(OutputMode m
) _const_
;
56 OutputMode
output_mode_from_string(const char *s
) _pure_
;