]> git.ipfire.org Git - thirdparty/git.git/blame - pager.c
t7800: don't use test_config in a subshell
[thirdparty/git.git] / pager.c
CommitLineData
f67b45f8 1#include "cache.h"
ea27a18c 2#include "run-command.h"
a3da8821 3#include "sigchain.h"
f67b45f8 4
a3d023d0
JH
5#ifndef DEFAULT_PAGER
6#define DEFAULT_PAGER "less"
7#endif
8
f67b45f8 9/*
bfdd9ffd
JS
10 * This is split up from the rest of git so that we can do
11 * something different on Windows.
f67b45f8
LT
12 */
13
ac0ba18d 14static const char *pager_argv[] = { NULL, NULL };
d3180279 15static struct child_process pager_process = CHILD_PROCESS_INIT;
ea27a18c 16
bfdd9ffd
JS
17static void wait_for_pager(void)
18{
19 fflush(stdout);
20 fflush(stderr);
21 /* signal EOF to pager */
22 close(1);
23 close(2);
24 finish_command(&pager_process);
25}
f67b45f8 26
a3da8821
JK
27static void wait_for_pager_signal(int signo)
28{
29 wait_for_pager();
30 sigchain_pop(signo);
31 raise(signo);
32}
33
64778d24 34const char *git_pager(int stdout_is_tty)
f67b45f8 35{
63618245 36 const char *pager;
f67b45f8 37
64778d24 38 if (!stdout_is_tty)
63618245
JN
39 return NULL;
40
41 pager = getenv("GIT_PAGER");
cad3a205
JH
42 if (!pager) {
43 if (!pager_program)
ef90d6d4 44 git_config(git_default_config, NULL);
54adf370 45 pager = pager_program;
cad3a205 46 }
c27d205a
ML
47 if (!pager)
48 pager = getenv("PAGER");
402461aa 49 if (!pager)
a3d023d0 50 pager = DEFAULT_PAGER;
ed016612 51 if (!*pager || !strcmp(pager, "cat"))
63618245
JN
52 pager = NULL;
53
54 return pager;
55}
56
57void setup_pager(void)
58{
64778d24 59 const char *pager = git_pager(isatty(1));
63618245 60
c0459ca4 61 if (!pager)
402461aa
JS
62 return;
63
ad6c3739
ZJS
64 /*
65 * force computing the width of the terminal before we redirect
66 * the standard output to the pager.
67 */
68 (void) term_columns();
69
2e6c012e 70 setenv("GIT_PAGER_IN_USE", "true", 1);
85fb65ed 71
bfdd9ffd 72 /* spawn the pager */
ac0ba18d
JK
73 pager_argv[0] = pager;
74 pager_process.use_shell = 1;
ea27a18c
JK
75 pager_process.argv = pager_argv;
76 pager_process.in = -1;
a9154590
RS
77 if (!getenv("LESS"))
78 argv_array_push(&pager_process.env_array, "LESS=FRX");
79 if (!getenv("LV"))
80 argv_array_push(&pager_process.env_array, "LV=-c");
124b5190 81 argv_array_push(&pager_process.env_array, "GIT_PAGER_IN_USE");
bfdd9ffd
JS
82 if (start_command(&pager_process))
83 return;
84
85 /* original process continues, but writes to the pipe */
86 dup2(pager_process.in, 1);
a8335024
JH
87 if (isatty(2))
88 dup2(pager_process.in, 2);
bfdd9ffd
JS
89 close(pager_process.in);
90
91 /* this makes sure that the parent terminates after the pager */
a3da8821 92 sigchain_push_common(wait_for_pager_signal);
bfdd9ffd 93 atexit(wait_for_pager);
f67b45f8 94}
6e9af863
JK
95
96int pager_in_use(void)
97{
98 const char *env;
6e9af863
JK
99 env = getenv("GIT_PAGER_IN_USE");
100 return env ? git_config_bool("GIT_PAGER_IN_USE", env) : 0;
101}
ad6c3739
ZJS
102
103/*
104 * Return cached value (if set) or $COLUMNS environment variable (if
105 * set and positive) or ioctl(1, TIOCGWINSZ).ws_col (if positive),
106 * and default to 80 if all else fails.
107 */
108int term_columns(void)
109{
110 static int term_columns_at_startup;
111
112 char *col_string;
113 int n_cols;
114
115 if (term_columns_at_startup)
116 return term_columns_at_startup;
117
118 term_columns_at_startup = 80;
119
120 col_string = getenv("COLUMNS");
121 if (col_string && (n_cols = atoi(col_string)) > 0)
122 term_columns_at_startup = n_cols;
123#ifdef TIOCGWINSZ
124 else {
125 struct winsize ws;
126 if (!ioctl(1, TIOCGWINSZ, &ws) && ws.ws_col)
127 term_columns_at_startup = ws.ws_col;
128 }
129#endif
130
131 return term_columns_at_startup;
132}
4d9e079e 133
ec7ff5ba
ZJS
134/*
135 * How many columns do we need to show this number in decimal?
136 */
d306f3d3 137int decimal_width(uintmax_t number)
ec7ff5ba 138{
d306f3d3 139 int width;
ec7ff5ba 140
d306f3d3
JK
141 for (width = 1; number >= 10; width++)
142 number /= 10;
ec7ff5ba
ZJS
143 return width;
144}
4914c962 145
586f414a
TA
146/* returns 0 for "no pager", 1 for "use pager", and -1 for "not specified" */
147int check_pager_config(const char *cmd)
4914c962 148{
586f414a
TA
149 int want = -1;
150 struct strbuf key = STRBUF_INIT;
151 const char *value = NULL;
152 strbuf_addf(&key, "pager.%s", cmd);
9e9de18f
JK
153 if (git_config_key_is_valid(key.buf) &&
154 !git_config_get_value(key.buf, &value)) {
586f414a 155 int b = git_config_maybe_bool(key.buf, value);
4914c962 156 if (b >= 0)
586f414a 157 want = b;
4914c962 158 else {
586f414a
TA
159 want = 1;
160 pager_program = xstrdup(value);
4914c962
NTND
161 }
162 }
586f414a
TA
163 strbuf_release(&key);
164 return want;
4914c962 165}