Documentation: reset: add some missing tables
[git/dscho.git] / pager.c
blob92c03f654abd0333bd0dd48b4aebf9ae42ac4de5
1 #include "cache.h"
2 #include "run-command.h"
3 #include "sigchain.h"
5 #ifndef DEFAULT_PAGER
6 #define DEFAULT_PAGER "less"
7 #endif
9 /*
10 * This is split up from the rest of git so that we can do
11 * something different on Windows.
14 static int spawned_pager;
16 #ifndef WIN32
17 static void pager_preexec(void)
20 * Work around bug in "less" by not starting it until we
21 * have real input
23 fd_set in;
25 FD_ZERO(&in);
26 FD_SET(0, &in);
27 select(1, &in, NULL, &in, NULL);
29 #endif
31 static const char *pager_argv[] = { "sh", "-c", NULL, NULL };
32 static struct child_process pager_process;
34 static void wait_for_pager(void)
36 fflush(stdout);
37 fflush(stderr);
38 /* signal EOF to pager */
39 close(1);
40 close(2);
41 finish_command(&pager_process);
44 static void wait_for_pager_signal(int signo)
46 wait_for_pager();
47 sigchain_pop(signo);
48 raise(signo);
51 const char *git_pager(void)
53 const char *pager;
55 if (!isatty(1))
56 return NULL;
58 pager = getenv("GIT_PAGER");
59 if (!pager) {
60 if (!pager_program)
61 git_config(git_default_config, NULL);
62 pager = pager_program;
64 if (!pager)
65 pager = getenv("PAGER");
66 if (!pager)
67 pager = DEFAULT_PAGER;
68 else if (!*pager || !strcmp(pager, "cat"))
69 pager = NULL;
71 return pager;
74 void setup_pager(void)
76 const char *pager = git_pager();
78 if (!pager)
79 return;
81 spawned_pager = 1; /* means we are emitting to terminal */
83 /* spawn the pager */
84 pager_argv[2] = pager;
85 pager_process.argv = pager_argv;
86 pager_process.in = -1;
87 if (!getenv("LESS")) {
88 static const char *env[] = { "LESS=FRSX", NULL };
89 pager_process.env = env;
91 #ifndef WIN32
92 pager_process.preexec_cb = pager_preexec;
93 #endif
94 if (start_command(&pager_process))
95 return;
97 /* original process continues, but writes to the pipe */
98 dup2(pager_process.in, 1);
99 if (isatty(2))
100 dup2(pager_process.in, 2);
101 close(pager_process.in);
103 /* this makes sure that the parent terminates after the pager */
104 sigchain_push_common(wait_for_pager_signal);
105 atexit(wait_for_pager);
108 int pager_in_use(void)
110 const char *env;
112 if (spawned_pager)
113 return 1;
115 env = getenv("GIT_PAGER_IN_USE");
116 return env ? git_config_bool("GIT_PAGER_IN_USE", env) : 0;