Skip to content

Commit

Permalink
color: delay auto-color decision until point of use
Browse files Browse the repository at this point in the history
When we read a color value either from a config file or from
the command line, we use git_config_colorbool to convert it
from the tristate always/never/auto into a single yes/no
boolean value.

This has some timing implications with respect to starting
a pager.

If we start (or decide not to start) the pager before
checking the colorbool, everything is fine. Either isatty(1)
will give us the right information, or we will properly
check for pager_in_use().

However, if we decide to start a pager after we have checked
the colorbool, things are not so simple. If stdout is a tty,
then we will have already decided to use color. However, the
user may also have configured color.pager not to use color
with the pager. In this case, we need to actually turn off
color. Unfortunately, the pager code has no idea which color
variables were turned on (and there are many of them
throughout the code, and they may even have been manipulated
after the colorbool selection by something like "--color" on
the command line).

This bug can be seen any time a pager is started after
config and command line options are checked. This has
affected "git diff" since 89d07f7 (diff: don't run pager if
user asked for a diff style exit code, 2007-08-12). It has
also affect the log family since 1fda91b (Fix 'git log'
early pager startup error case, 2010-08-24).

This patch splits the notion of parsing a colorbool and
actually checking the configuration. The "use_color"
variables now have an additional possible value,
GIT_COLOR_AUTO. Users of the variable should use the new
"want_color()" wrapper, which will lazily determine and
cache the auto-color decision.

Signed-off-by: Jeff King <[email protected]>
Signed-off-by: Junio C Hamano <[email protected]>
  • Loading branch information
peff authored and gitster committed Aug 19, 2011
1 parent e269eb7 commit daa0c3d
Show file tree
Hide file tree
Showing 11 changed files with 59 additions and 19 deletions.
2 changes: 1 addition & 1 deletion builtin/branch.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ static int git_branch_config(const char *var, const char *value, void *cb)

static const char *branch_get_color(enum color_branch ix)
{
if (branch_use_color > 0)
if (want_color(branch_use_color))
return branch_colors[ix];
return "";
}
Expand Down
2 changes: 2 additions & 0 deletions builtin/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,8 @@ static int get_colorbool(int print)
get_colorbool_found = git_use_color_default;
}

get_colorbool_found = want_color(get_colorbool_found);

if (print) {
printf("%s\n", get_colorbool_found ? "true" : "false");
return 0;
Expand Down
4 changes: 2 additions & 2 deletions builtin/show-branch.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ static const char **default_arg;

static const char *get_color_code(int idx)
{
if (showbranch_use_color)
if (want_color(showbranch_use_color))
return column_colors_ansi[idx % column_colors_ansi_max];
return "";
}

static const char *get_color_reset_code(void)
{
if (showbranch_use_color)
if (want_color(showbranch_use_color))
return GIT_COLOR_RESET;
return "";
}
Expand Down
20 changes: 18 additions & 2 deletions color.c
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ int git_config_colorbool(const char *var, const char *value)
if (!strcasecmp(value, "always"))
return 1;
if (!strcasecmp(value, "auto"))
goto auto_color;
return GIT_COLOR_AUTO;
}

if (!var)
Expand All @@ -177,7 +177,11 @@ int git_config_colorbool(const char *var, const char *value)
return 0;

/* any normal truth value defaults to 'auto' */
auto_color:
return GIT_COLOR_AUTO;
}

static int check_auto_color(void)
{
if (color_stdout_is_tty < 0)
color_stdout_is_tty = isatty(1);
if (color_stdout_is_tty || (pager_in_use() && pager_use_color)) {
Expand All @@ -188,6 +192,18 @@ int git_config_colorbool(const char *var, const char *value)
return 0;
}

int want_color(int var)
{
static int want_auto = -1;

if (var == GIT_COLOR_AUTO) {
if (want_auto < 0)
want_auto = check_auto_color();
return want_auto;
}
return var > 0;
}

int git_color_default_config(const char *var, const char *value, void *cb)
{
if (!strcmp(var, "color.ui")) {
Expand Down
11 changes: 11 additions & 0 deletions color.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,16 @@ struct strbuf;
/* A special value meaning "no color selected" */
#define GIT_COLOR_NIL "NIL"

/*
* The first three are chosen to match common usage in the code, and what is
* returned from git_config_colorbool. The "auto" value can be returned from
* config_colorbool, and will be converted by want_color() into either 0 or 1.
*/
#define GIT_COLOR_UNKNOWN -1
#define GIT_COLOR_NEVER 0
#define GIT_COLOR_ALWAYS 1
#define GIT_COLOR_AUTO 2

/*
* This variable stores the value of color.ui
*/
Expand All @@ -69,6 +79,7 @@ extern int color_stdout_is_tty;
int git_color_default_config(const char *var, const char *value, void *cb);

int git_config_colorbool(const char *var, const char *value);
int want_color(int var);
void color_parse(const char *value, const char *var, char *dst);
void color_parse_mem(const char *value, int len, const char *var, char *dst);
__attribute__((format (printf, 3, 4)))
Expand Down
17 changes: 7 additions & 10 deletions diff.c
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,7 @@ static void emit_rewrite_diff(const char *name_a,
size_two = fill_textconv(textconv_two, two, &data_two);

memset(&ecbdata, 0, sizeof(ecbdata));
ecbdata.color_diff = o->use_color > 0;
ecbdata.color_diff = want_color(o->use_color);
ecbdata.found_changesp = &o->found_changes;
ecbdata.ws_rule = whitespace_rule(name_b ? name_b : name_a);
ecbdata.opt = o;
Expand Down Expand Up @@ -1003,7 +1003,7 @@ static void free_diff_words_data(struct emit_callback *ecbdata)

const char *diff_get_color(int diff_use_color, enum color_diff ix)
{
if (diff_use_color > 0)
if (want_color(diff_use_color))
return diff_colors[ix];
return "";
}
Expand Down Expand Up @@ -2133,7 +2133,7 @@ static void builtin_diff(const char *name_a,
memset(&xecfg, 0, sizeof(xecfg));
memset(&ecbdata, 0, sizeof(ecbdata));
ecbdata.label_path = lbl;
ecbdata.color_diff = o->use_color > 0;
ecbdata.color_diff = want_color(o->use_color);
ecbdata.found_changesp = &o->found_changes;
ecbdata.ws_rule = whitespace_rule(name_b ? name_b : name_a);
if (ecbdata.ws_rule & WS_BLANK_AT_EOF)
Expand Down Expand Up @@ -2181,7 +2181,7 @@ static void builtin_diff(const char *name_a,
break;
}
}
if (o->use_color > 0) {
if (want_color(o->use_color)) {
struct diff_words_style *st = ecbdata.diff_words->style;
st->old.color = diff_get_color_opt(o, DIFF_FILE_OLD);
st->new.color = diff_get_color_opt(o, DIFF_FILE_NEW);
Expand Down Expand Up @@ -2831,7 +2831,7 @@ static void run_diff_cmd(const char *pgm,
*/
fill_metainfo(msg, name, other, one, two, o, p,
&must_show_header,
o->use_color > 0 && !pgm);
want_color(o->use_color) && !pgm);
xfrm_msg = msg->len ? msg->buf : NULL;
}

Expand Down Expand Up @@ -3374,12 +3374,9 @@ int diff_opt_parse(struct diff_options *options, const char **av, int ac)
options->use_color = 1;
else if (!prefixcmp(arg, "--color=")) {
int value = git_config_colorbool(NULL, arg+8);
if (value == 0)
options->use_color = 0;
else if (value > 0)
options->use_color = 1;
else
if (value < 0)
return error("option `color' expects \"always\", \"auto\", or \"never\"");
options->use_color = value;
}
else if (!strcmp(arg, "--no-color"))
options->use_color = 0;
Expand Down
2 changes: 1 addition & 1 deletion graph.c
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ static struct commit_list *first_interesting_parent(struct git_graph *graph)

static unsigned short graph_get_current_column_color(const struct git_graph *graph)
{
if (graph->revs->diffopt.use_color <= 0)
if (!want_color(graph->revs->diffopt.use_color))
return column_colors_max;
return graph->default_column_color;
}
Expand Down
2 changes: 1 addition & 1 deletion grep.c
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ static int word_char(char ch)
static void output_color(struct grep_opt *opt, const void *data, size_t size,
const char *color)
{
if (opt->color && color && color[0]) {
if (want_color(opt->color) && color && color[0]) {
opt->output(opt, color, strlen(color));
opt->output(opt, data, size);
opt->output(opt, GIT_COLOR_RESET, strlen(GIT_COLOR_RESET));
Expand Down
2 changes: 1 addition & 1 deletion log-tree.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ static char decoration_colors[][COLOR_MAXLEN] = {

static const char *decorate_get_color(int decorate_use_color, enum decoration_type ix)
{
if (decorate_use_color > 0)
if (want_color(decorate_use_color))
return decoration_colors[ix];
return "";
}
Expand Down
12 changes: 12 additions & 0 deletions t/t7006-pager.sh
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,18 @@ test_expect_success TTY 'color when writing to a pager' '
colorful paginated.out
'

test_expect_success TTY 'colors are suppressed by color.pager' '
rm -f paginated.out &&
test_config color.ui auto &&
test_config color.pager false &&
(
TERM=vt100 &&
export TERM &&
test_terminal git log
) &&
! colorful paginated.out
'

test_expect_success 'color when writing to a file intended for a pager' '
rm -f colorful.log &&
test_config color.ui auto ||
Expand Down
4 changes: 3 additions & 1 deletion wt-status.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ static char default_wt_status_colors[][COLOR_MAXLEN] = {

static const char *color(int slot, struct wt_status *s)
{
const char *c = s->use_color > 0 ? s->color_palette[slot] : "";
const char *c = "";
if (want_color(s->use_color))
c = s->color_palette[slot];
if (slot == WT_STATUS_ONBRANCH && color_is_nil(c))
c = s->color_palette[WT_STATUS_HEADER];
return c;
Expand Down

0 comments on commit daa0c3d

Please sign in to comment.