pager.con commit vcbuild/README: update to accommodate for missing common-cmds.h (ede8d89)
   1#include "cache.h"
   2#include "config.h"
   3#include "run-command.h"
   4#include "sigchain.h"
   5#include "alias.h"
   6
   7#ifndef DEFAULT_PAGER
   8#define DEFAULT_PAGER "less"
   9#endif
  10
  11static struct child_process pager_process = CHILD_PROCESS_INIT;
  12static const char *pager_program;
  13
  14static void wait_for_pager(int in_signal)
  15{
  16        if (!in_signal) {
  17                fflush(stdout);
  18                fflush(stderr);
  19        }
  20        /* signal EOF to pager */
  21        close(1);
  22        close(2);
  23        if (in_signal)
  24                finish_command_in_signal(&pager_process);
  25        else
  26                finish_command(&pager_process);
  27}
  28
  29static void wait_for_pager_atexit(void)
  30{
  31        wait_for_pager(0);
  32}
  33
  34static void wait_for_pager_signal(int signo)
  35{
  36        wait_for_pager(1);
  37        sigchain_pop(signo);
  38        raise(signo);
  39}
  40
  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
  48const char *git_pager(int stdout_is_tty)
  49{
  50        const char *pager;
  51
  52        if (!stdout_is_tty)
  53                return NULL;
  54
  55        pager = getenv("GIT_PAGER");
  56        if (!pager) {
  57                if (!pager_program)
  58                        read_early_config(core_pager_config, NULL);
  59                pager = pager_program;
  60        }
  61        if (!pager)
  62                pager = getenv("PAGER");
  63        if (!pager)
  64                pager = DEFAULT_PAGER;
  65        if (!*pager || !strcmp(pager, "cat"))
  66                pager = NULL;
  67
  68        return pager;
  69}
  70
  71static void setup_pager_env(struct argv_array *env)
  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 = '=';
  91                        argv_array_push(env, argv[i]);
  92                }
  93        }
  94        free(pager_env);
  95        free(argv);
  96}
  97
  98void prepare_pager_args(struct child_process *pager_process, const char *pager)
  99{
 100        argv_array_push(&pager_process->args, pager);
 101        pager_process->use_shell = 1;
 102        setup_pager_env(&pager_process->env_array);
 103}
 104
 105void setup_pager(void)
 106{
 107        const char *pager = git_pager(isatty(1));
 108
 109        if (!pager)
 110                return;
 111
 112        /*
 113         * force computing the width of the terminal before we redirect
 114         * the standard output to the pager.
 115         */
 116        (void) term_columns();
 117
 118        setenv("GIT_PAGER_IN_USE", "true", 1);
 119
 120        /* spawn the pager */
 121        prepare_pager_args(&pager_process, pager);
 122        pager_process.in = -1;
 123        argv_array_push(&pager_process.env_array, "GIT_PAGER_IN_USE");
 124        if (start_command(&pager_process))
 125                return;
 126
 127        /* original process continues, but writes to the pipe */
 128        dup2(pager_process.in, 1);
 129        if (isatty(2))
 130                dup2(pager_process.in, 2);
 131        close(pager_process.in);
 132
 133        /* this makes sure that the parent terminates after the pager */
 134        sigchain_push_common(wait_for_pager_signal);
 135        atexit(wait_for_pager_atexit);
 136}
 137
 138int pager_in_use(void)
 139{
 140        return git_env_bool("GIT_PAGER_IN_USE", 0);
 141}
 142
 143/*
 144 * Return cached value (if set) or $COLUMNS environment variable (if
 145 * set and positive) or ioctl(1, TIOCGWINSZ).ws_col (if positive),
 146 * and default to 80 if all else fails.
 147 */
 148int term_columns(void)
 149{
 150        static int term_columns_at_startup;
 151
 152        char *col_string;
 153        int n_cols;
 154
 155        if (term_columns_at_startup)
 156                return term_columns_at_startup;
 157
 158        term_columns_at_startup = 80;
 159
 160        col_string = getenv("COLUMNS");
 161        if (col_string && (n_cols = atoi(col_string)) > 0)
 162                term_columns_at_startup = n_cols;
 163#ifdef TIOCGWINSZ
 164        else {
 165                struct winsize ws;
 166                if (!ioctl(1, TIOCGWINSZ, &ws) && ws.ws_col)
 167                        term_columns_at_startup = ws.ws_col;
 168        }
 169#endif
 170
 171        return term_columns_at_startup;
 172}
 173
 174/*
 175 * How many columns do we need to show this number in decimal?
 176 */
 177int decimal_width(uintmax_t number)
 178{
 179        int width;
 180
 181        for (width = 1; number >= 10; width++)
 182                number /= 10;
 183        return width;
 184}
 185
 186struct pager_command_config_data {
 187        const char *cmd;
 188        int want;
 189        char *value;
 190};
 191
 192static int pager_command_config(const char *var, const char *value, void *vdata)
 193{
 194        struct pager_command_config_data *data = vdata;
 195        const char *cmd;
 196
 197        if (skip_prefix(var, "pager.", &cmd) && !strcmp(cmd, data->cmd)) {
 198                int b = git_parse_maybe_bool(value);
 199                if (b >= 0)
 200                        data->want = b;
 201                else {
 202                        data->want = 1;
 203                        data->value = xstrdup(value);
 204                }
 205        }
 206
 207        return 0;
 208}
 209
 210/* returns 0 for "no pager", 1 for "use pager", and -1 for "not specified" */
 211int check_pager_config(const char *cmd)
 212{
 213        struct pager_command_config_data data;
 214
 215        data.cmd = cmd;
 216        data.want = -1;
 217        data.value = NULL;
 218
 219        read_early_config(pager_command_config, &data);
 220
 221        if (data.value)
 222                pager_program = data.value;
 223        return data.want;
 224}