blob: 68af60fdf0b922d557ae17b05dc7feb2d7e3631c [file] [log] [blame]
Josh Poimboeuf2f4ce5e2015-12-15 09:39:38 -06001#include <sys/select.h>
2#include <stdlib.h>
3#include <stdio.h>
4#include <string.h>
5#include <signal.h>
Andi Kleen61eb2eb2016-09-15 15:24:44 -07006#include <sys/ioctl.h>
Josh Poimboeuf2f4ce5e2015-12-15 09:39:38 -06007#include "pager.h"
Ingo Molnara930d2c2009-05-27 09:50:13 +02008#include "run-command.h"
9#include "sigchain.h"
Josh Poimboeuf096d3552015-12-15 09:39:35 -060010#include "subcmd-config.h"
Ingo Molnara930d2c2009-05-27 09:50:13 +020011
12/*
13 * This is split up from the rest of git so that we can do
14 * something different on Windows.
15 */
16
17static int spawned_pager;
Andi Kleen61eb2eb2016-09-15 15:24:44 -070018static int pager_columns;
Ingo Molnara930d2c2009-05-27 09:50:13 +020019
Josh Poimboeuf096d3552015-12-15 09:39:35 -060020void pager_init(const char *pager_env)
21{
22 subcmd_config.pager_env = pager_env;
23}
24
Ingo Molnara930d2c2009-05-27 09:50:13 +020025static void pager_preexec(void)
26{
27 /*
28 * Work around bug in "less" by not starting it until we
29 * have real input
30 */
31 fd_set in;
Sergey Senozhatskyd8d83552018-02-06 15:37:52 -080032 fd_set exception;
Ingo Molnara930d2c2009-05-27 09:50:13 +020033
34 FD_ZERO(&in);
Sergey Senozhatskyd8d83552018-02-06 15:37:52 -080035 FD_ZERO(&exception);
Ingo Molnara930d2c2009-05-27 09:50:13 +020036 FD_SET(0, &in);
Sergey Senozhatskyd8d83552018-02-06 15:37:52 -080037 FD_SET(0, &exception);
38 select(1, &in, NULL, &exception, NULL);
Ingo Molnara930d2c2009-05-27 09:50:13 +020039
40 setenv("LESS", "FRSX", 0);
41}
Ingo Molnara930d2c2009-05-27 09:50:13 +020042
43static const char *pager_argv[] = { "sh", "-c", NULL, NULL };
44static struct child_process pager_process;
45
46static void wait_for_pager(void)
47{
48 fflush(stdout);
49 fflush(stderr);
50 /* signal EOF to pager */
51 close(1);
52 close(2);
53 finish_command(&pager_process);
54}
55
56static void wait_for_pager_signal(int signo)
57{
58 wait_for_pager();
59 sigchain_pop(signo);
60 raise(signo);
61}
62
63void setup_pager(void)
64{
Josh Poimboeuf096d3552015-12-15 09:39:35 -060065 const char *pager = getenv(subcmd_config.pager_env);
Andi Kleen61eb2eb2016-09-15 15:24:44 -070066 struct winsize sz;
Ingo Molnara930d2c2009-05-27 09:50:13 +020067
68 if (!isatty(1))
69 return;
Andi Kleen61eb2eb2016-09-15 15:24:44 -070070 if (ioctl(1, TIOCGWINSZ, &sz) == 0)
71 pager_columns = sz.ws_col;
Ingo Molnara930d2c2009-05-27 09:50:13 +020072 if (!pager)
73 pager = getenv("PAGER");
Michael Lentine21cfc5e2014-05-20 11:48:49 +020074 if (!(pager || access("/usr/bin/pager", X_OK)))
75 pager = "/usr/bin/pager";
76 if (!(pager || access("/usr/bin/less", X_OK)))
77 pager = "/usr/bin/less";
Ingo Molnara930d2c2009-05-27 09:50:13 +020078 if (!pager)
Michael Lentine21cfc5e2014-05-20 11:48:49 +020079 pager = "cat";
80 if (!*pager || !strcmp(pager, "cat"))
Ingo Molnara930d2c2009-05-27 09:50:13 +020081 return;
82
83 spawned_pager = 1; /* means we are emitting to terminal */
84
85 /* spawn the pager */
86 pager_argv[2] = pager;
87 pager_process.argv = pager_argv;
88 pager_process.in = -1;
Ingo Molnara930d2c2009-05-27 09:50:13 +020089 pager_process.preexec_cb = pager_preexec;
Ingo Molnarfde953c2009-06-27 06:06:39 +020090
Ingo Molnara930d2c2009-05-27 09:50:13 +020091 if (start_command(&pager_process))
92 return;
93
94 /* original process continues, but writes to the pipe */
95 dup2(pager_process.in, 1);
96 if (isatty(2))
97 dup2(pager_process.in, 2);
98 close(pager_process.in);
99
100 /* this makes sure that the parent terminates after the pager */
101 sigchain_push_common(wait_for_pager_signal);
102 atexit(wait_for_pager);
103}
104
105int pager_in_use(void)
106{
Josh Poimboeufa871a772015-12-13 22:18:08 -0600107 return spawned_pager;
Ingo Molnara930d2c2009-05-27 09:50:13 +0200108}
Andi Kleen61eb2eb2016-09-15 15:24:44 -0700109
110int pager_get_columns(void)
111{
112 char *s;
113
114 s = getenv("COLUMNS");
115 if (s)
116 return atoi(s);
117
118 return (pager_columns ? pager_columns : 80) - 2;
119}