2006-09-08 10:03:18 +02:00
|
|
|
#include "cache.h"
|
2006-12-19 23:34:12 +01:00
|
|
|
#include "color.h"
|
2006-09-08 10:03:18 +02:00
|
|
|
|
2008-02-18 08:26:03 +01:00
|
|
|
int git_use_color_default = 0;
|
|
|
|
|
2006-09-08 10:03:18 +02:00
|
|
|
static int parse_color(const char *name, int len)
|
|
|
|
{
|
|
|
|
static const char * const color_names[] = {
|
|
|
|
"normal", "black", "red", "green", "yellow",
|
|
|
|
"blue", "magenta", "cyan", "white"
|
|
|
|
};
|
|
|
|
char *end;
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < ARRAY_SIZE(color_names); i++) {
|
|
|
|
const char *str = color_names[i];
|
|
|
|
if (!strncasecmp(name, str, len) && !str[len])
|
|
|
|
return i - 1;
|
|
|
|
}
|
|
|
|
i = strtol(name, &end, 10);
|
2008-02-06 13:16:08 +01:00
|
|
|
if (end - name == len && i >= -1 && i <= 255)
|
2006-09-08 10:03:18 +02:00
|
|
|
return i;
|
|
|
|
return -2;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int parse_attr(const char *name, int len)
|
|
|
|
{
|
|
|
|
static const int attr_values[] = { 1, 2, 4, 5, 7 };
|
|
|
|
static const char * const attr_names[] = {
|
|
|
|
"bold", "dim", "ul", "blink", "reverse"
|
|
|
|
};
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < ARRAY_SIZE(attr_names); i++) {
|
|
|
|
const char *str = attr_names[i];
|
|
|
|
if (!strncasecmp(name, str, len) && !str[len])
|
|
|
|
return attr_values[i];
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void color_parse(const char *value, const char *var, char *dst)
|
2009-01-20 05:30:30 +01:00
|
|
|
{
|
|
|
|
color_parse_mem(value, strlen(value), var, dst);
|
|
|
|
}
|
|
|
|
|
|
|
|
void color_parse_mem(const char *value, int value_len, const char *var,
|
|
|
|
char *dst)
|
2006-09-08 10:03:18 +02:00
|
|
|
{
|
|
|
|
const char *ptr = value;
|
2009-01-20 05:30:30 +01:00
|
|
|
int len = value_len;
|
2010-02-28 03:56:38 +01:00
|
|
|
unsigned int attr = 0;
|
2006-09-08 10:03:18 +02:00
|
|
|
int fg = -2;
|
|
|
|
int bg = -2;
|
|
|
|
|
2009-01-20 05:30:30 +01:00
|
|
|
if (!strncasecmp(value, "reset", len)) {
|
2009-02-13 22:53:40 +01:00
|
|
|
strcpy(dst, GIT_COLOR_RESET);
|
2006-09-08 10:03:18 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-02-28 03:56:38 +01:00
|
|
|
/* [fg [bg]] [attr]... */
|
2009-01-20 05:30:30 +01:00
|
|
|
while (len > 0) {
|
2006-09-08 10:03:18 +02:00
|
|
|
const char *word = ptr;
|
2009-01-20 05:30:30 +01:00
|
|
|
int val, wordlen = 0;
|
2006-09-08 10:03:18 +02:00
|
|
|
|
2009-01-20 05:30:30 +01:00
|
|
|
while (len > 0 && !isspace(word[wordlen])) {
|
|
|
|
wordlen++;
|
|
|
|
len--;
|
|
|
|
}
|
2006-09-08 10:03:18 +02:00
|
|
|
|
2009-01-20 05:30:30 +01:00
|
|
|
ptr = word + wordlen;
|
|
|
|
while (len > 0 && isspace(*ptr)) {
|
2006-09-08 10:03:18 +02:00
|
|
|
ptr++;
|
2009-01-20 05:30:30 +01:00
|
|
|
len--;
|
|
|
|
}
|
2006-09-08 10:03:18 +02:00
|
|
|
|
2009-01-20 05:30:30 +01:00
|
|
|
val = parse_color(word, wordlen);
|
2006-09-08 10:03:18 +02:00
|
|
|
if (val >= -1) {
|
|
|
|
if (fg == -2) {
|
|
|
|
fg = val;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (bg == -2) {
|
|
|
|
bg = val;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
goto bad;
|
|
|
|
}
|
2009-01-20 05:30:30 +01:00
|
|
|
val = parse_attr(word, wordlen);
|
2010-02-28 03:56:38 +01:00
|
|
|
if (0 <= val)
|
|
|
|
attr |= (1 << val);
|
|
|
|
else
|
2006-09-08 10:03:18 +02:00
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
|
2010-02-28 03:56:38 +01:00
|
|
|
if (attr || fg >= 0 || bg >= 0) {
|
2006-09-08 10:03:18 +02:00
|
|
|
int sep = 0;
|
2010-02-28 03:56:38 +01:00
|
|
|
int i;
|
2006-09-08 10:03:18 +02:00
|
|
|
|
|
|
|
*dst++ = '\033';
|
|
|
|
*dst++ = '[';
|
2010-02-28 03:56:38 +01:00
|
|
|
|
|
|
|
for (i = 0; attr; i++) {
|
|
|
|
unsigned bit = (1 << i);
|
|
|
|
if (!(attr & bit))
|
|
|
|
continue;
|
|
|
|
attr &= ~bit;
|
|
|
|
if (sep++)
|
|
|
|
*dst++ = ';';
|
|
|
|
*dst++ = '0' + i;
|
2006-09-08 10:03:18 +02:00
|
|
|
}
|
|
|
|
if (fg >= 0) {
|
|
|
|
if (sep++)
|
|
|
|
*dst++ = ';';
|
|
|
|
if (fg < 8) {
|
|
|
|
*dst++ = '3';
|
|
|
|
*dst++ = '0' + fg;
|
|
|
|
} else {
|
|
|
|
dst += sprintf(dst, "38;5;%d", fg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (bg >= 0) {
|
|
|
|
if (sep++)
|
|
|
|
*dst++ = ';';
|
|
|
|
if (bg < 8) {
|
|
|
|
*dst++ = '4';
|
|
|
|
*dst++ = '0' + bg;
|
|
|
|
} else {
|
|
|
|
dst += sprintf(dst, "48;5;%d", bg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*dst++ = 'm';
|
|
|
|
}
|
|
|
|
*dst = 0;
|
|
|
|
return;
|
|
|
|
bad:
|
2009-01-20 05:30:30 +01:00
|
|
|
die("bad color value '%.*s' for variable '%s'", value_len, value, var);
|
2006-09-08 10:03:18 +02:00
|
|
|
}
|
|
|
|
|
2007-12-06 02:26:11 +01:00
|
|
|
int git_config_colorbool(const char *var, const char *value, int stdout_is_tty)
|
2006-09-08 10:03:18 +02:00
|
|
|
{
|
2007-11-26 23:30:28 +01:00
|
|
|
if (value) {
|
|
|
|
if (!strcasecmp(value, "never"))
|
|
|
|
return 0;
|
|
|
|
if (!strcasecmp(value, "always"))
|
|
|
|
return 1;
|
|
|
|
if (!strcasecmp(value, "auto"))
|
|
|
|
goto auto_color;
|
2006-09-08 10:03:18 +02:00
|
|
|
}
|
2007-11-26 23:30:28 +01:00
|
|
|
|
Add an optional argument for --color options
Make git-branch, git-show-branch, git-grep, and all the diff-based
programs accept an optional argument <when> for --color. The argument
is a colorbool: "always", "never", or "auto". If no argument is given,
"always" is used; --no-color is an alias for --color=never. This makes
the command-line interface consistent with other GNU tools, such as `ls'
and `grep', and with the git-config color options. Note that, without
an argument, --color and --no-color work exactly as before.
To implement this, two internal changes were made:
1. Allow the first argument of git_config_colorbool() to be NULL,
in which case it returns -1 if the argument isn't "always", "never",
or "auto".
2. Add OPT_COLOR_FLAG(), OPT__COLOR(), and parse_opt_color_flag_cb()
to the option parsing library. The callback uses
git_config_colorbool(), so color.h is now a dependency
of parse-options.c.
Signed-off-by: Mark Lodato <lodatom@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2010-02-17 05:55:58 +01:00
|
|
|
if (!var)
|
|
|
|
return -1;
|
|
|
|
|
2007-11-26 23:30:28 +01:00
|
|
|
/* Missing or explicit false to turn off colorization */
|
|
|
|
if (!git_config_bool(var, value))
|
2006-09-08 10:03:18 +02:00
|
|
|
return 0;
|
2007-11-26 23:30:28 +01:00
|
|
|
|
|
|
|
/* any normal truth value defaults to 'auto' */
|
|
|
|
auto_color:
|
2007-12-06 02:26:11 +01:00
|
|
|
if (stdout_is_tty < 0)
|
|
|
|
stdout_is_tty = isatty(1);
|
2007-12-11 07:27:33 +01:00
|
|
|
if (stdout_is_tty || (pager_in_use() && pager_use_color)) {
|
2007-11-26 23:30:28 +01:00
|
|
|
char *term = getenv("TERM");
|
|
|
|
if (term && strcmp(term, "dumb"))
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
2006-09-08 10:03:18 +02:00
|
|
|
}
|
|
|
|
|
2008-05-14 19:46:53 +02:00
|
|
|
int git_color_default_config(const char *var, const char *value, void *cb)
|
2008-02-18 08:26:03 +01:00
|
|
|
{
|
|
|
|
if (!strcmp(var, "color.ui")) {
|
|
|
|
git_use_color_default = git_config_colorbool(var, value, -1);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-05-14 19:46:53 +02:00
|
|
|
return git_default_config(var, value, cb);
|
2008-02-18 08:26:03 +01:00
|
|
|
}
|
|
|
|
|
2007-09-18 02:06:42 +02:00
|
|
|
static int color_vfprintf(FILE *fp, const char *color, const char *fmt,
|
2006-09-08 10:03:18 +02:00
|
|
|
va_list args, const char *trail)
|
|
|
|
{
|
|
|
|
int r = 0;
|
|
|
|
|
|
|
|
if (*color)
|
2007-09-18 02:06:42 +02:00
|
|
|
r += fprintf(fp, "%s", color);
|
|
|
|
r += vfprintf(fp, fmt, args);
|
2006-09-08 10:03:18 +02:00
|
|
|
if (*color)
|
2009-02-13 22:53:40 +01:00
|
|
|
r += fprintf(fp, "%s", GIT_COLOR_RESET);
|
2006-09-08 10:03:18 +02:00
|
|
|
if (trail)
|
2007-09-18 02:06:42 +02:00
|
|
|
r += fprintf(fp, "%s", trail);
|
2006-09-08 10:03:18 +02:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-09-18 02:06:42 +02:00
|
|
|
int color_fprintf(FILE *fp, const char *color, const char *fmt, ...)
|
2006-09-08 10:03:18 +02:00
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
int r;
|
|
|
|
va_start(args, fmt);
|
2007-09-18 02:06:42 +02:00
|
|
|
r = color_vfprintf(fp, color, fmt, args, NULL);
|
2006-09-08 10:03:18 +02:00
|
|
|
va_end(args);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2007-09-18 02:06:42 +02:00
|
|
|
int color_fprintf_ln(FILE *fp, const char *color, const char *fmt, ...)
|
2006-09-08 10:03:18 +02:00
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
int r;
|
|
|
|
va_start(args, fmt);
|
2007-09-18 02:06:42 +02:00
|
|
|
r = color_vfprintf(fp, color, fmt, args, "\n");
|
2006-09-08 10:03:18 +02:00
|
|
|
va_end(args);
|
|
|
|
return r;
|
|
|
|
}
|