]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/basic/terminal-util.h
tree-wide: remove Lennart's copyright lines
[thirdparty/systemd.git] / src / basic / terminal-util.h
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
288a74cc
RC
2#pragma once
3
288a74cc 4#include <stdarg.h>
71d35b6b 5#include <stdbool.h>
288a74cc 6#include <stdio.h>
11c3a366 7#include <sys/types.h>
288a74cc
RC
8
9#include "macro.h"
10#include "time-util.h"
11
6d1d8f66
AR
12/* Regular colors */
13#define ANSI_BLACK "\x1B[0;30m"
14#define ANSI_RED "\x1B[0;31m"
15#define ANSI_GREEN "\x1B[0;32m"
16#define ANSI_YELLOW "\x1B[0;33m"
17#define ANSI_BLUE "\x1B[0;34m"
18#define ANSI_MAGENTA "\x1B[0;35m"
19#define ANSI_CYAN "\x1B[0;36m"
20#define ANSI_WHITE "\x1B[0;37m"
21
22/* Bold/highlighted */
23#define ANSI_HIGHLIGHT_BLACK "\x1B[0;1;30m"
24#define ANSI_HIGHLIGHT_RED "\x1B[0;1;31m"
25#define ANSI_HIGHLIGHT_GREEN "\x1B[0;1;32m"
26#define ANSI_HIGHLIGHT_YELLOW "\x1B[0;1;33m"
27#define ANSI_HIGHLIGHT_BLUE "\x1B[0;1;34m"
28#define ANSI_HIGHLIGHT_MAGENTA "\x1B[0;1;35m"
29#define ANSI_HIGHLIGHT_CYAN "\x1B[0;1;36m"
30#define ANSI_HIGHLIGHT_WHITE "\x1B[0;1;37m"
31
32/* Underlined */
33#define ANSI_HIGHLIGHT_BLACK_UNDERLINE "\x1B[0;1;4;30m"
34#define ANSI_HIGHLIGHT_RED_UNDERLINE "\x1B[0;1;4;31m"
35#define ANSI_HIGHLIGHT_GREEN_UNDERLINE "\x1B[0;1;4;32m"
36#define ANSI_HIGHLIGHT_YELLOW_UNDERLINE "\x1B[0;1;4;33m"
37#define ANSI_HIGHLIGHT_BLUE_UNDERLINE "\x1B[0;1;4;34m"
38#define ANSI_HIGHLIGHT_MAGENTA_UNDERLINE "\x1B[0;1;4;35m"
39#define ANSI_HIGHLIGHT_CYAN_UNDERLINE "\x1B[0;1;4;36m"
40#define ANSI_HIGHLIGHT_WHITE_UNDERLINE "\x1B[0;1;4;37m"
41
42/* Other ANSI codes */
1fc464f6
LP
43#define ANSI_UNDERLINE "\x1B[0;4m"
44#define ANSI_HIGHLIGHT "\x1B[0;1;39m"
1fc464f6 45#define ANSI_HIGHLIGHT_UNDERLINE "\x1B[0;1;4m"
6d1d8f66
AR
46
47/* Reset/clear ANSI styles */
1fc464f6
LP
48#define ANSI_NORMAL "\x1B[0m"
49
6d1d8f66 50/* Erase characters until the end of the line */
288a74cc
RC
51#define ANSI_ERASE_TO_END_OF_LINE "\x1B[K"
52
1fc464f6
LP
53/* Set cursor to top left corner and clear screen */
54#define ANSI_HOME_CLEAR "\x1B[H\x1B[2J"
55
288a74cc
RC
56int reset_terminal_fd(int fd, bool switch_to_text);
57int reset_terminal(const char *name);
58
59int open_terminal(const char *name, int mode);
8854d795
LP
60
61/* Flags for tweaking the way we become the controlling process of a terminal. */
62typedef enum AcquireTerminalFlags {
63 /* Try to become the controlling process of the TTY. If we can't return -EPERM. */
ef31828d 64 ACQUIRE_TERMINAL_TRY = 0,
8854d795
LP
65
66 /* Tell the kernel to forcibly make us the controlling process of the TTY. Returns -EPERM if the kernel doesn't allow that. */
ef31828d 67 ACQUIRE_TERMINAL_FORCE = 1,
8854d795
LP
68
69 /* If we can't become the controlling process of the TTY right-away, then wait until we can. */
ef31828d 70 ACQUIRE_TERMINAL_WAIT = 2,
8854d795
LP
71
72 /* Pick one of the above, and then OR this flag in, in order to request permissive behaviour, if we can't become controlling process then don't mind */
ef31828d 73 ACQUIRE_TERMINAL_PERMISSIVE = 1 << 2,
8854d795
LP
74} AcquireTerminalFlags;
75
76int acquire_terminal(const char *name, AcquireTerminalFlags flags, usec_t timeout);
288a74cc
RC
77int release_terminal(void);
78
79int terminal_vhangup_fd(int fd);
80int terminal_vhangup(const char *name);
81
82int chvt(int vt);
83
84int read_one_char(FILE *f, char *ret, usec_t timeout, bool *need_nl);
85int ask_char(char *ret, const char *replies, const char *text, ...) _printf_(3, 4);
86int ask_string(char **ret, const char *text, ...) _printf_(2, 3);
87
88int vt_disallocate(const char *name);
89
7b912648 90int resolve_dev_console(char **ret);
bef41af2 91int get_kernel_consoles(char ***ret);
288a74cc
RC
92bool tty_is_vc(const char *tty);
93bool tty_is_vc_resolve(const char *tty);
94bool tty_is_console(const char *tty) _pure_;
95int vtnr_from_tty(const char *tty);
96const char *default_term_for_tty(const char *tty);
97
288a74cc
RC
98int make_console_stdio(void);
99
288a74cc
RC
100int fd_columns(int fd);
101unsigned columns(void);
102int fd_lines(int fd);
103unsigned lines(void);
c6063244 104
288a74cc 105void columns_lines_cache_reset(int _unused_ signum);
c6063244 106void reset_terminal_feature_caches(void);
288a74cc
RC
107
108bool on_tty(void);
ac96418b 109bool terminal_is_dumb(void);
40c9fe4c 110bool colors_enabled(void);
526664f6 111bool underline_enabled(void);
c2b32159 112bool dev_console_colors_enabled(void);
288a74cc 113
5c98198f
ZJS
114#define DEFINE_ANSI_FUNC(name, NAME) \
115 static inline const char *ansi_##name(void) { \
116 return colors_enabled() ? ANSI_##NAME : ""; \
f6a8265b 117 }
5c98198f 118
526664f6
LP
119#define DEFINE_ANSI_FUNC_UNDERLINE(name, NAME, REPLACEMENT) \
120 static inline const char *ansi_##name(void) { \
121 return underline_enabled() ? ANSI_##NAME : \
122 colors_enabled() ? ANSI_##REPLACEMENT : ""; \
f6a8265b 123 }
526664f6 124
5c98198f 125DEFINE_ANSI_FUNC(highlight, HIGHLIGHT);
5c98198f
ZJS
126DEFINE_ANSI_FUNC(highlight_red, HIGHLIGHT_RED);
127DEFINE_ANSI_FUNC(highlight_green, HIGHLIGHT_GREEN);
128DEFINE_ANSI_FUNC(highlight_yellow, HIGHLIGHT_YELLOW);
129DEFINE_ANSI_FUNC(highlight_blue, HIGHLIGHT_BLUE);
854a42fb 130DEFINE_ANSI_FUNC(highlight_magenta, HIGHLIGHT_MAGENTA);
5c98198f 131DEFINE_ANSI_FUNC(normal, NORMAL);
288a74cc 132
526664f6
LP
133DEFINE_ANSI_FUNC_UNDERLINE(underline, UNDERLINE, NORMAL);
134DEFINE_ANSI_FUNC_UNDERLINE(highlight_underline, HIGHLIGHT_UNDERLINE, HIGHLIGHT);
135DEFINE_ANSI_FUNC_UNDERLINE(highlight_red_underline, HIGHLIGHT_RED_UNDERLINE, HIGHLIGHT_RED);
136DEFINE_ANSI_FUNC_UNDERLINE(highlight_green_underline, HIGHLIGHT_GREEN_UNDERLINE, HIGHLIGHT_GREEN);
137DEFINE_ANSI_FUNC_UNDERLINE(highlight_yellow_underline, HIGHLIGHT_YELLOW_UNDERLINE, HIGHLIGHT_YELLOW);
138DEFINE_ANSI_FUNC_UNDERLINE(highlight_blue_underline, HIGHLIGHT_BLUE_UNDERLINE, HIGHLIGHT_BLUE);
139
288a74cc
RC
140int get_ctty_devnr(pid_t pid, dev_t *d);
141int get_ctty(pid_t, dev_t *_devnr, char **r);
142
143int getttyname_malloc(int fd, char **r);
144int getttyname_harder(int fd, char **r);
a07c35c3 145
66cb2fde 146int ptsname_malloc(int fd, char **ret);
a07c35c3 147int ptsname_namespace(int pty, char **ret);
66cb2fde
LP
148
149int openpt_in_namespace(pid_t pid, int flags);
40e1f4ea 150int open_terminal_in_namespace(pid_t pid, const char *name, int mode);
c83f349c
LP
151
152int vt_default_utf8(void);
153int vt_reset_keyboard(int fd);
23b27b39
LP
154
155int terminal_urlify(const char *url, const char *text, char **ret);
156int terminal_urlify_path(const char *path, const char *text, char **ret);
81f5e513 157
854a42fb 158typedef enum CatFlags {
ef31828d 159 CAT_FLAGS_MAIN_FILE_OPTIONAL = 1 << 0,
854a42fb
ZJS
160} CatFlags;
161
162int cat_files(const char *file, char **dropins, CatFlags flags);
cb91deaf
LP
163
164void print_separator(void);