4 static int git_use_color_default = GIT_COLOR_AUTO;
5 int color_stdout_is_tty = -1;
8 * The list of available column colors.
10 const char *column_colors_ansi[] = {
19 GIT_COLOR_BOLD_YELLOW,
21 GIT_COLOR_BOLD_MAGENTA,
26 /* Ignore the RESET at the end when giving the size */
27 const int column_colors_ansi_max = ARRAY_SIZE(column_colors_ansi) - 1;
29 static int parse_color(const char *name, int len)
31 static const char * const color_names[] = {
32 "normal", "black", "red", "green", "yellow",
33 "blue", "magenta", "cyan", "white"
37 for (i = 0; i < ARRAY_SIZE(color_names); i++) {
38 const char *str = color_names[i];
39 if (!strncasecmp(name, str, len) && !str[len])
42 i = strtol(name, &end, 10);
43 if (end - name == len && i >= -1 && i <= 255)
48 static int parse_attr(const char *name, int len)
50 static const int attr_values[] = { 1, 2, 4, 5, 7 };
51 static const char * const attr_names[] = {
52 "bold", "dim", "ul", "blink", "reverse"
55 for (i = 0; i < ARRAY_SIZE(attr_names); i++) {
56 const char *str = attr_names[i];
57 if (!strncasecmp(name, str, len) && !str[len])
58 return attr_values[i];
63 int color_parse(const char *value, char *dst)
65 return color_parse_mem(value, strlen(value), dst);
68 int color_parse_mem(const char *value, int value_len, char *dst)
70 const char *ptr = value;
72 unsigned int attr = 0;
76 if (!strncasecmp(value, "reset", len)) {
77 strcpy(dst, GIT_COLOR_RESET);
81 /* [fg [bg]] [attr]... */
83 const char *word = ptr;
86 while (len > 0 && !isspace(word[wordlen])) {
92 while (len > 0 && isspace(*ptr)) {
97 val = parse_color(word, wordlen);
109 val = parse_attr(word, wordlen);
116 if (attr || fg >= 0 || bg >= 0) {
123 for (i = 0; attr; i++) {
124 unsigned bit = (1 << i);
139 dst += sprintf(dst, "38;5;%d", fg);
149 dst += sprintf(dst, "48;5;%d", bg);
157 return error(_("invalid color value: %.*s"), value_len, value);
160 int git_config_colorbool(const char *var, const char *value)
163 if (!strcasecmp(value, "never"))
165 if (!strcasecmp(value, "always"))
167 if (!strcasecmp(value, "auto"))
168 return GIT_COLOR_AUTO;
174 /* Missing or explicit false to turn off colorization */
175 if (!git_config_bool(var, value))
178 /* any normal truth value defaults to 'auto' */
179 return GIT_COLOR_AUTO;
182 static int check_auto_color(void)
184 if (color_stdout_is_tty < 0)
185 color_stdout_is_tty = isatty(1);
186 if (color_stdout_is_tty || (pager_in_use() && pager_use_color)) {
187 char *term = getenv("TERM");
188 if (term && strcmp(term, "dumb"))
194 int want_color(int var)
196 static int want_auto = -1;
199 var = git_use_color_default;
201 if (var == GIT_COLOR_AUTO) {
203 want_auto = check_auto_color();
209 int git_color_config(const char *var, const char *value, void *cb)
211 if (!strcmp(var, "color.ui")) {
212 git_use_color_default = git_config_colorbool(var, value);
219 int git_color_default_config(const char *var, const char *value, void *cb)
221 if (git_color_config(var, value, cb) < 0)
224 return git_default_config(var, value, cb);
227 void color_print_strbuf(FILE *fp, const char *color, const struct strbuf *sb)
230 fprintf(fp, "%s", color);
231 fprintf(fp, "%s", sb->buf);
233 fprintf(fp, "%s", GIT_COLOR_RESET);
236 static int color_vfprintf(FILE *fp, const char *color, const char *fmt,
237 va_list args, const char *trail)
242 r += fprintf(fp, "%s", color);
243 r += vfprintf(fp, fmt, args);
245 r += fprintf(fp, "%s", GIT_COLOR_RESET);
247 r += fprintf(fp, "%s", trail);
253 int color_fprintf(FILE *fp, const char *color, const char *fmt, ...)
258 r = color_vfprintf(fp, color, fmt, args, NULL);
263 int color_fprintf_ln(FILE *fp, const char *color, const char *fmt, ...)
268 r = color_vfprintf(fp, color, fmt, args, "\n");
273 int color_is_nil(const char *c)
275 return !strcmp(c, "NIL");