]> git.ipfire.org Git - thirdparty/git.git/blame - pager.c
test-ref-store: remove force-create argument for create-reflog
[thirdparty/git.git] / pager.c
CommitLineData
f67b45f8 1#include "cache.h"
b2141fc1 2#include "config.h"
ea27a18c 3#include "run-command.h"
a3da8821 4#include "sigchain.h"
65b5f948 5#include "alias.h"
f67b45f8 6
a3d023d0
JH
7#ifndef DEFAULT_PAGER
8#define DEFAULT_PAGER "less"
9#endif
10
d3180279 11static struct child_process pager_process = CHILD_PROCESS_INIT;
c0c08897 12static const char *pager_program;
ea27a18c 13
9b6e2c8b
JS
14/* Is the value coming back from term_columns() just a guess? */
15static int term_columns_guessed;
16
17
61ff12fa 18static void close_pager_fds(void)
bfdd9ffd 19{
bfdd9ffd
JS
20 /* signal EOF to pager */
21 close(1);
22 close(2);
507d7804
TI
23}
24
25static void wait_for_pager_atexit(void)
26{
61ff12fa
ÆAB
27 fflush(stdout);
28 fflush(stderr);
29 close_pager_fds();
30 finish_command(&pager_process);
bfdd9ffd 31}
f67b45f8 32
a3da8821
JK
33static void wait_for_pager_signal(int signo)
34{
61ff12fa
ÆAB
35 close_pager_fds();
36 finish_command_in_signal(&pager_process);
a3da8821
JK
37 sigchain_pop(signo);
38 raise(signo);
39}
40
4babb839
JK
41static int core_pager_config(const char *var, const char *value, void *data)
42{
43 if (!strcmp(var, "core.pager"))
44 return git_config_string(&pager_program, var, value);
45 return 0;
46}
47
64778d24 48const char *git_pager(int stdout_is_tty)
f67b45f8 49{
63618245 50 const char *pager;
f67b45f8 51
64778d24 52 if (!stdout_is_tty)
63618245
JN
53 return NULL;
54
55 pager = getenv("GIT_PAGER");
cad3a205
JH
56 if (!pager) {
57 if (!pager_program)
eed27072 58 read_early_config(core_pager_config, NULL);
54adf370 59 pager = pager_program;
cad3a205 60 }
c27d205a
ML
61 if (!pager)
62 pager = getenv("PAGER");
402461aa 63 if (!pager)
a3d023d0 64 pager = DEFAULT_PAGER;
ed016612 65 if (!*pager || !strcmp(pager, "cat"))
63618245
JN
66 pager = NULL;
67
68 return pager;
69}
70
c972bf4c 71static void setup_pager_env(struct strvec *env)
995bc22d
EW
72{
73 const char **argv;
74 int i;
75 char *pager_env = xstrdup(PAGER_ENV);
76 int n = split_cmdline(pager_env, &argv);
77
78 if (n < 0)
79 die("malformed build-time PAGER_ENV: %s",
80 split_cmdline_strerror(n));
81
82 for (i = 0; i < n; i++) {
83 char *cp = strchr(argv[i], '=');
84
85 if (!cp)
86 die("malformed build-time PAGER_ENV");
87
88 *cp = '\0';
89 if (!getenv(argv[i])) {
90 *cp = '=';
c972bf4c 91 strvec_push(env, argv[i]);
995bc22d
EW
92 }
93 }
94 free(pager_env);
95 free(argv);
96}
97
3e3a4a41
JH
98void prepare_pager_args(struct child_process *pager_process, const char *pager)
99{
c972bf4c 100 strvec_push(&pager_process->args, pager);
3e3a4a41 101 pager_process->use_shell = 1;
995bc22d 102 setup_pager_env(&pager_process->env_array);
eee73d1d 103 pager_process->trace2_child_class = "pager";
3e3a4a41
JH
104}
105
63618245
JN
106void setup_pager(void)
107{
64778d24 108 const char *pager = git_pager(isatty(1));
63618245 109
c0459ca4 110 if (!pager)
402461aa
JS
111 return;
112
ad6c3739 113 /*
be11f7ad
JK
114 * After we redirect standard output, we won't be able to use an ioctl
115 * to get the terminal size. Let's grab it now, and then set $COLUMNS
116 * to communicate it to any sub-processes.
ad6c3739 117 */
be11f7ad
JK
118 {
119 char buf[64];
120 xsnprintf(buf, sizeof(buf), "%d", term_columns());
9b6e2c8b
JS
121 if (!term_columns_guessed)
122 setenv("COLUMNS", buf, 0);
be11f7ad 123 }
ad6c3739 124
2e6c012e 125 setenv("GIT_PAGER_IN_USE", "true", 1);
85fb65ed 126
bfdd9ffd 127 /* spawn the pager */
3e3a4a41 128 prepare_pager_args(&pager_process, pager);
ea27a18c 129 pager_process.in = -1;
c972bf4c 130 strvec_push(&pager_process.env_array, "GIT_PAGER_IN_USE");
bfdd9ffd
JS
131 if (start_command(&pager_process))
132 return;
133
134 /* original process continues, but writes to the pipe */
135 dup2(pager_process.in, 1);
a8335024
JH
136 if (isatty(2))
137 dup2(pager_process.in, 2);
bfdd9ffd
JS
138 close(pager_process.in);
139
140 /* this makes sure that the parent terminates after the pager */
a3da8821 141 sigchain_push_common(wait_for_pager_signal);
507d7804 142 atexit(wait_for_pager_atexit);
f67b45f8 143}
6e9af863
JK
144
145int pager_in_use(void)
146{
df2a6e38 147 return git_env_bool("GIT_PAGER_IN_USE", 0);
6e9af863 148}
ad6c3739
ZJS
149
150/*
151 * Return cached value (if set) or $COLUMNS environment variable (if
152 * set and positive) or ioctl(1, TIOCGWINSZ).ws_col (if positive),
153 * and default to 80 if all else fails.
154 */
155int term_columns(void)
156{
157 static int term_columns_at_startup;
158
159 char *col_string;
160 int n_cols;
161
162 if (term_columns_at_startup)
163 return term_columns_at_startup;
164
165 term_columns_at_startup = 80;
9b6e2c8b 166 term_columns_guessed = 1;
ad6c3739
ZJS
167
168 col_string = getenv("COLUMNS");
9b6e2c8b 169 if (col_string && (n_cols = atoi(col_string)) > 0) {
ad6c3739 170 term_columns_at_startup = n_cols;
9b6e2c8b
JS
171 term_columns_guessed = 0;
172 }
ad6c3739
ZJS
173#ifdef TIOCGWINSZ
174 else {
175 struct winsize ws;
9b6e2c8b 176 if (!ioctl(1, TIOCGWINSZ, &ws) && ws.ws_col) {
ad6c3739 177 term_columns_at_startup = ws.ws_col;
9b6e2c8b
JS
178 term_columns_guessed = 0;
179 }
ad6c3739
ZJS
180 }
181#endif
182
183 return term_columns_at_startup;
184}
4d9e079e 185
cd1096b2
SG
186/*
187 * Clear the entire line, leave cursor in first column.
188 */
189void term_clear_line(void)
190{
191 if (is_terminal_dumb())
192 /*
193 * Fall back to print a terminal width worth of space
194 * characters (hoping that the terminal is still as wide
195 * as it was upon the first call to term_columns()).
196 */
197 fprintf(stderr, "\r%*s\r", term_columns(), "");
198 else
199 /*
200 * On non-dumb terminals use an escape sequence to clear
201 * the whole line, no matter how wide the terminal.
202 */
203 fputs("\r\033[K", stderr);
204}
205
ec7ff5ba
ZJS
206/*
207 * How many columns do we need to show this number in decimal?
208 */
d306f3d3 209int decimal_width(uintmax_t number)
ec7ff5ba 210{
d306f3d3 211 int width;
ec7ff5ba 212
d306f3d3
JK
213 for (width = 1; number >= 10; width++)
214 number /= 10;
ec7ff5ba
ZJS
215 return width;
216}
4914c962 217
6a1e1bc0
JK
218struct pager_command_config_data {
219 const char *cmd;
220 int want;
221 char *value;
222};
223
224static int pager_command_config(const char *var, const char *value, void *vdata)
4914c962 225{
6a1e1bc0
JK
226 struct pager_command_config_data *data = vdata;
227 const char *cmd;
228
229 if (skip_prefix(var, "pager.", &cmd) && !strcmp(cmd, data->cmd)) {
89576613 230 int b = git_parse_maybe_bool(value);
4914c962 231 if (b >= 0)
6a1e1bc0 232 data->want = b;
4914c962 233 else {
6a1e1bc0
JK
234 data->want = 1;
235 data->value = xstrdup(value);
4914c962
NTND
236 }
237 }
6a1e1bc0
JK
238
239 return 0;
240}
241
242/* returns 0 for "no pager", 1 for "use pager", and -1 for "not specified" */
243int check_pager_config(const char *cmd)
244{
245 struct pager_command_config_data data;
246
247 data.cmd = cmd;
248 data.want = -1;
249 data.value = NULL;
250
eed27072 251 read_early_config(pager_command_config, &data);
6a1e1bc0
JK
252
253 if (data.value)
254 pager_program = data.value;
255 return data.want;
4914c962 256}