]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/basic/terminal-util.h
Add SPDX license identifiers to source files under the LGPL
[thirdparty/systemd.git] / src / basic / terminal-util.h
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
288a74cc
RC
2#pragma once
3
4/***
5 This file is part of systemd.
6
7 Copyright 2010 Lennart Poettering
8
9 systemd is free software; you can redistribute it and/or modify it
10 under the terms of the GNU Lesser General Public License as published by
11 the Free Software Foundation; either version 2.1 of the License, or
12 (at your option) any later version.
13
14 systemd is distributed in the hope that it will be useful, but
15 WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 Lesser General Public License for more details.
18
19 You should have received a copy of the GNU Lesser General Public License
20 along with systemd; If not, see <http://www.gnu.org/licenses/>.
21***/
22
288a74cc 23#include <stdarg.h>
71d35b6b 24#include <stdbool.h>
288a74cc 25#include <stdio.h>
11c3a366 26#include <sys/types.h>
288a74cc
RC
27
28#include "macro.h"
29#include "time-util.h"
30
1fc464f6
LP
31#define ANSI_RED "\x1B[0;31m"
32#define ANSI_GREEN "\x1B[0;32m"
33#define ANSI_UNDERLINE "\x1B[0;4m"
34#define ANSI_HIGHLIGHT "\x1B[0;1;39m"
35#define ANSI_HIGHLIGHT_RED "\x1B[0;1;31m"
36#define ANSI_HIGHLIGHT_GREEN "\x1B[0;1;32m"
37#define ANSI_HIGHLIGHT_YELLOW "\x1B[0;1;33m"
38#define ANSI_HIGHLIGHT_BLUE "\x1B[0;1;34m"
39#define ANSI_HIGHLIGHT_UNDERLINE "\x1B[0;1;4m"
16484a8a
ZJS
40#define ANSI_HIGHLIGHT_RED_UNDERLINE "\x1B[0;1;4;31m"
41#define ANSI_HIGHLIGHT_GREEN_UNDERLINE "\x1B[0;1;4;32m"
42#define ANSI_HIGHLIGHT_YELLOW_UNDERLINE "\x1B[0;1;4;33m"
43#define ANSI_HIGHLIGHT_BLUE_UNDERLINE "\x1B[0;1;4;34m"
1fc464f6
LP
44#define ANSI_NORMAL "\x1B[0m"
45
288a74cc
RC
46#define ANSI_ERASE_TO_END_OF_LINE "\x1B[K"
47
1fc464f6
LP
48/* Set cursor to top left corner and clear screen */
49#define ANSI_HOME_CLEAR "\x1B[H\x1B[2J"
50
288a74cc
RC
51int reset_terminal_fd(int fd, bool switch_to_text);
52int reset_terminal(const char *name);
53
54int open_terminal(const char *name, int mode);
55int acquire_terminal(const char *name, bool fail, bool force, bool ignore_tiocstty_eperm, usec_t timeout);
56int release_terminal(void);
57
58int terminal_vhangup_fd(int fd);
59int terminal_vhangup(const char *name);
60
61int chvt(int vt);
62
63int read_one_char(FILE *f, char *ret, usec_t timeout, bool *need_nl);
64int ask_char(char *ret, const char *replies, const char *text, ...) _printf_(3, 4);
65int ask_string(char **ret, const char *text, ...) _printf_(2, 3);
66
67int vt_disallocate(const char *name);
68
69char *resolve_dev_console(char **active);
6af62124 70int get_kernel_consoles(char ***consoles);
288a74cc
RC
71bool tty_is_vc(const char *tty);
72bool tty_is_vc_resolve(const char *tty);
73bool tty_is_console(const char *tty) _pure_;
74int vtnr_from_tty(const char *tty);
75const char *default_term_for_tty(const char *tty);
76
288a74cc
RC
77int make_stdio(int fd);
78int make_null_stdio(void);
79int make_console_stdio(void);
80
288a74cc
RC
81int fd_columns(int fd);
82unsigned columns(void);
83int fd_lines(int fd);
84unsigned lines(void);
85void columns_lines_cache_reset(int _unused_ signum);
86
87bool on_tty(void);
ac96418b 88bool terminal_is_dumb(void);
40c9fe4c 89bool colors_enabled(void);
526664f6 90bool underline_enabled(void);
288a74cc 91
5c98198f
ZJS
92#define DEFINE_ANSI_FUNC(name, NAME) \
93 static inline const char *ansi_##name(void) { \
94 return colors_enabled() ? ANSI_##NAME : ""; \
95 } \
96 struct __useless_struct_to_allow_trailing_semicolon__
97
526664f6
LP
98#define DEFINE_ANSI_FUNC_UNDERLINE(name, NAME, REPLACEMENT) \
99 static inline const char *ansi_##name(void) { \
100 return underline_enabled() ? ANSI_##NAME : \
101 colors_enabled() ? ANSI_##REPLACEMENT : ""; \
102 } \
103 struct __useless_struct_to_allow_trailing_semicolon__
104
105
5c98198f 106DEFINE_ANSI_FUNC(highlight, HIGHLIGHT);
5c98198f
ZJS
107DEFINE_ANSI_FUNC(highlight_red, HIGHLIGHT_RED);
108DEFINE_ANSI_FUNC(highlight_green, HIGHLIGHT_GREEN);
109DEFINE_ANSI_FUNC(highlight_yellow, HIGHLIGHT_YELLOW);
110DEFINE_ANSI_FUNC(highlight_blue, HIGHLIGHT_BLUE);
5c98198f 111DEFINE_ANSI_FUNC(normal, NORMAL);
288a74cc 112
526664f6
LP
113DEFINE_ANSI_FUNC_UNDERLINE(underline, UNDERLINE, NORMAL);
114DEFINE_ANSI_FUNC_UNDERLINE(highlight_underline, HIGHLIGHT_UNDERLINE, HIGHLIGHT);
115DEFINE_ANSI_FUNC_UNDERLINE(highlight_red_underline, HIGHLIGHT_RED_UNDERLINE, HIGHLIGHT_RED);
116DEFINE_ANSI_FUNC_UNDERLINE(highlight_green_underline, HIGHLIGHT_GREEN_UNDERLINE, HIGHLIGHT_GREEN);
117DEFINE_ANSI_FUNC_UNDERLINE(highlight_yellow_underline, HIGHLIGHT_YELLOW_UNDERLINE, HIGHLIGHT_YELLOW);
118DEFINE_ANSI_FUNC_UNDERLINE(highlight_blue_underline, HIGHLIGHT_BLUE_UNDERLINE, HIGHLIGHT_BLUE);
119
288a74cc
RC
120int get_ctty_devnr(pid_t pid, dev_t *d);
121int get_ctty(pid_t, dev_t *_devnr, char **r);
122
123int getttyname_malloc(int fd, char **r);
124int getttyname_harder(int fd, char **r);
a07c35c3 125
66cb2fde 126int ptsname_malloc(int fd, char **ret);
a07c35c3 127int ptsname_namespace(int pty, char **ret);
66cb2fde
LP
128
129int openpt_in_namespace(pid_t pid, int flags);
40e1f4ea 130int open_terminal_in_namespace(pid_t pid, const char *name, int mode);
c83f349c
LP
131
132int vt_default_utf8(void);
133int vt_reset_keyboard(int fd);