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