chiark / gitweb /
terminal-util: remove unnecessary check of result of isatty() (#4000)
[elogind.git] / src / basic / terminal-util.h
1 #pragma once
2
3 /***
4   This file is part of systemd.
5
6   Copyright 2010 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 <stdarg.h>
23 #include <stdbool.h>
24 #include <stdio.h>
25 #include <sys/types.h>
26
27 #include "macro.h"
28 #include "time-util.h"
29
30 #define ANSI_RED "\x1B[0;31m"
31 #define ANSI_GREEN "\x1B[0;32m"
32 #define ANSI_UNDERLINE "\x1B[0;4m"
33 #define ANSI_HIGHLIGHT "\x1B[0;1;39m"
34 #define ANSI_HIGHLIGHT_RED "\x1B[0;1;31m"
35 #define ANSI_HIGHLIGHT_GREEN "\x1B[0;1;32m"
36 #define ANSI_HIGHLIGHT_YELLOW "\x1B[0;1;33m"
37 #define ANSI_HIGHLIGHT_BLUE "\x1B[0;1;34m"
38 #define ANSI_HIGHLIGHT_UNDERLINE "\x1B[0;1;4m"
39 #define ANSI_NORMAL "\x1B[0m"
40
41 #define ANSI_ERASE_TO_END_OF_LINE "\x1B[K"
42
43 /* Set cursor to top left corner and clear screen */
44 #define ANSI_HOME_CLEAR "\x1B[H\x1B[2J"
45
46 #if 0 /// UNNEEDED by elogind
47 int reset_terminal_fd(int fd, bool switch_to_text);
48 int reset_terminal(const char *name);
49 #endif // 0
50
51 int open_terminal(const char *name, int mode);
52 #if 0 /// UNNEEDED by elogind
53 int acquire_terminal(const char *name, bool fail, bool force, bool ignore_tiocstty_eperm, usec_t timeout);
54 int release_terminal(void);
55
56 int terminal_vhangup_fd(int fd);
57 int terminal_vhangup(const char *name);
58 #endif // 0
59
60 int chvt(int vt);
61
62 #if 0 /// UNNEEDED by elogind
63 int read_one_char(FILE *f, char *ret, usec_t timeout, bool *need_nl);
64 int ask_char(char *ret, const char *replies, const char *text, ...) _printf_(3, 4);
65 int ask_string(char **ret, const char *text, ...) _printf_(2, 3);
66
67 int vt_disallocate(const char *name);
68
69 char *resolve_dev_console(char **active);
70 #endif // 0
71 int get_kernel_consoles(char ***consoles);
72 bool tty_is_vc(const char *tty);
73 #if 0 /// UNNEEDED by elogind
74 bool tty_is_vc_resolve(const char *tty);
75 #endif // 0
76 bool tty_is_console(const char *tty) _pure_;
77 int vtnr_from_tty(const char *tty);
78 #if 0 /// UNNEEDED by elogind
79 const char *default_term_for_tty(const char *tty);
80 #endif // 0
81
82 int make_stdio(int fd);
83 int make_null_stdio(void);
84 #if 0 /// UNNEEDED by elogind
85 int make_console_stdio(void);
86 #endif // 0
87
88 int fd_columns(int fd);
89 unsigned columns(void);
90 int fd_lines(int fd);
91 unsigned lines(void);
92 #if 0 /// UNNEEDED by elogind
93 void columns_lines_cache_reset(int _unused_ signum);
94 #endif // 0
95
96 bool on_tty(void);
97 bool terminal_is_dumb(void);
98 bool colors_enabled(void);
99
100 static inline const char *ansi_underline(void) {
101         return colors_enabled() ? ANSI_UNDERLINE : "";
102 }
103
104 static inline const char *ansi_highlight(void) {
105         return colors_enabled() ? ANSI_HIGHLIGHT : "";
106 }
107
108 static inline const char *ansi_highlight_underline(void) {
109         return colors_enabled() ? ANSI_HIGHLIGHT_UNDERLINE : "";
110 }
111
112 static inline const char *ansi_highlight_red(void) {
113         return colors_enabled() ? ANSI_HIGHLIGHT_RED : "";
114 }
115
116 static inline const char *ansi_highlight_green(void) {
117         return colors_enabled() ? ANSI_HIGHLIGHT_GREEN : "";
118 }
119
120 static inline const char *ansi_highlight_yellow(void) {
121         return colors_enabled() ? ANSI_HIGHLIGHT_YELLOW : "";
122 }
123
124 static inline const char *ansi_highlight_blue(void) {
125         return colors_enabled() ? ANSI_HIGHLIGHT_BLUE : "";
126 }
127
128 static inline const char *ansi_normal(void) {
129         return colors_enabled() ? ANSI_NORMAL : "";
130 }
131
132 int get_ctty_devnr(pid_t pid, dev_t *d);
133 int get_ctty(pid_t, dev_t *_devnr, char **r);
134
135 int getttyname_malloc(int fd, char **r);
136 int getttyname_harder(int fd, char **r);
137
138 #if 0 /// UNNEEDED by elogind
139 int ptsname_malloc(int fd, char **ret);
140 int ptsname_namespace(int pty, char **ret);
141
142 int openpt_in_namespace(pid_t pid, int flags);
143 int open_terminal_in_namespace(pid_t pid, const char *name, int mode);
144 #endif // 0