use alloc_ref rather than hand-allocating "struct ref"
[git/mingw.git] / color.c
blob22782f8ba3e044c718287bf10ab21b2af8931110
1 #include "cache.h"
2 #include "color.h"
4 static int git_use_color_default = GIT_COLOR_AUTO;
5 int color_stdout_is_tty = -1;
7 /*
8 * The list of available column colors.
9 */
10 const char *column_colors_ansi[] = {
11 GIT_COLOR_RED,
12 GIT_COLOR_GREEN,
13 GIT_COLOR_YELLOW,
14 GIT_COLOR_BLUE,
15 GIT_COLOR_MAGENTA,
16 GIT_COLOR_CYAN,
17 GIT_COLOR_BOLD_RED,
18 GIT_COLOR_BOLD_GREEN,
19 GIT_COLOR_BOLD_YELLOW,
20 GIT_COLOR_BOLD_BLUE,
21 GIT_COLOR_BOLD_MAGENTA,
22 GIT_COLOR_BOLD_CYAN,
23 GIT_COLOR_RESET,
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 /* An individual foreground or background color. */
30 struct color {
31 enum {
32 COLOR_UNSPECIFIED = 0,
33 COLOR_NORMAL,
34 COLOR_ANSI, /* basic 0-7 ANSI colors */
35 COLOR_256,
36 COLOR_RGB
37 } type;
38 /* The numeric value for ANSI and 256-color modes */
39 unsigned char value;
40 /* 24-bit RGB color values */
41 unsigned char red, green, blue;
45 * "word" is a buffer of length "len"; does it match the NUL-terminated
46 * "match" exactly?
48 static int match_word(const char *word, int len, const char *match)
50 return !strncasecmp(word, match, len) && !match[len];
53 static int get_hex_color(const char *in, unsigned char *out)
55 unsigned int val;
56 val = (hexval(in[0]) << 4) | hexval(in[1]);
57 if (val & ~0xff)
58 return -1;
59 *out = val;
60 return 0;
63 static int parse_color(struct color *out, const char *name, int len)
65 /* Positions in array must match ANSI color codes */
66 static const char * const color_names[] = {
67 "black", "red", "green", "yellow",
68 "blue", "magenta", "cyan", "white"
70 char *end;
71 int i;
72 long val;
74 /* First try the special word "normal"... */
75 if (match_word(name, len, "normal")) {
76 out->type = COLOR_NORMAL;
77 return 0;
80 /* Try a 24-bit RGB value */
81 if (len == 7 && name[0] == '#') {
82 if (!get_hex_color(name + 1, &out->red) &&
83 !get_hex_color(name + 3, &out->green) &&
84 !get_hex_color(name + 5, &out->blue)) {
85 out->type = COLOR_RGB;
86 return 0;
90 /* Then pick from our human-readable color names... */
91 for (i = 0; i < ARRAY_SIZE(color_names); i++) {
92 if (match_word(name, len, color_names[i])) {
93 out->type = COLOR_ANSI;
94 out->value = i;
95 return 0;
99 /* And finally try a literal 256-color-mode number */
100 val = strtol(name, &end, 10);
101 if (end - name == len) {
103 * Allow "-1" as an alias for "normal", but other negative
104 * numbers are bogus.
106 if (val < -1)
107 ; /* fall through to error */
108 else if (val < 0) {
109 out->type = COLOR_NORMAL;
110 return 0;
111 /* Rewrite low numbers as more-portable standard colors. */
112 } else if (val < 8) {
113 out->type = COLOR_ANSI;
114 out->value = val;
115 return 0;
116 } else if (val < 256) {
117 out->type = COLOR_256;
118 out->value = val;
119 return 0;
123 return -1;
126 static int parse_attr(const char *name, int len)
128 static const int attr_values[] = { 1, 2, 4, 5, 7,
129 22, 22, 24, 25, 27 };
130 static const char * const attr_names[] = {
131 "bold", "dim", "ul", "blink", "reverse",
132 "nobold", "nodim", "noul", "noblink", "noreverse"
134 int i;
135 for (i = 0; i < ARRAY_SIZE(attr_names); i++) {
136 const char *str = attr_names[i];
137 if (!strncasecmp(name, str, len) && !str[len])
138 return attr_values[i];
140 return -1;
143 int color_parse(const char *value, char *dst)
145 return color_parse_mem(value, strlen(value), dst);
149 * Write the ANSI color codes for "c" to "out"; the string should
150 * already have the ANSI escape code in it. "out" should have enough
151 * space in it to fit any color.
153 static char *color_output(char *out, int len, const struct color *c, char type)
155 switch (c->type) {
156 case COLOR_UNSPECIFIED:
157 case COLOR_NORMAL:
158 break;
159 case COLOR_ANSI:
160 if (len < 2)
161 die("BUG: color parsing ran out of space");
162 *out++ = type;
163 *out++ = '0' + c->value;
164 break;
165 case COLOR_256:
166 out += xsnprintf(out, len, "%c8;5;%d", type, c->value);
167 break;
168 case COLOR_RGB:
169 out += xsnprintf(out, len, "%c8;2;%d;%d;%d", type,
170 c->red, c->green, c->blue);
171 break;
173 return out;
176 static int color_empty(const struct color *c)
178 return c->type <= COLOR_NORMAL;
181 int color_parse_mem(const char *value, int value_len, char *dst)
183 const char *ptr = value;
184 int len = value_len;
185 char *end = dst + COLOR_MAXLEN;
186 unsigned int attr = 0;
187 struct color fg = { COLOR_UNSPECIFIED };
188 struct color bg = { COLOR_UNSPECIFIED };
190 if (!strncasecmp(value, "reset", len)) {
191 xsnprintf(dst, end - dst, GIT_COLOR_RESET);
192 return 0;
195 /* [fg [bg]] [attr]... */
196 while (len > 0) {
197 const char *word = ptr;
198 struct color c;
199 int val, wordlen = 0;
201 while (len > 0 && !isspace(word[wordlen])) {
202 wordlen++;
203 len--;
206 ptr = word + wordlen;
207 while (len > 0 && isspace(*ptr)) {
208 ptr++;
209 len--;
212 if (!parse_color(&c, word, wordlen)) {
213 if (fg.type == COLOR_UNSPECIFIED) {
214 fg = c;
215 continue;
217 if (bg.type == COLOR_UNSPECIFIED) {
218 bg = c;
219 continue;
221 goto bad;
223 val = parse_attr(word, wordlen);
224 if (0 <= val)
225 attr |= (1 << val);
226 else
227 goto bad;
230 #undef OUT
231 #define OUT(x) do { \
232 if (dst == end) \
233 die("BUG: color parsing ran out of space"); \
234 *dst++ = (x); \
235 } while(0)
237 if (attr || !color_empty(&fg) || !color_empty(&bg)) {
238 int sep = 0;
239 int i;
241 OUT('\033');
242 OUT('[');
244 for (i = 0; attr; i++) {
245 unsigned bit = (1 << i);
246 if (!(attr & bit))
247 continue;
248 attr &= ~bit;
249 if (sep++)
250 OUT(';');
251 dst += xsnprintf(dst, end - dst, "%d", i);
253 if (!color_empty(&fg)) {
254 if (sep++)
255 OUT(';');
256 /* foreground colors are all in the 3x range */
257 dst = color_output(dst, end - dst, &fg, '3');
259 if (!color_empty(&bg)) {
260 if (sep++)
261 OUT(';');
262 /* background colors are all in the 4x range */
263 dst = color_output(dst, end - dst, &bg, '4');
265 OUT('m');
267 OUT(0);
268 return 0;
269 bad:
270 return error(_("invalid color value: %.*s"), value_len, value);
271 #undef OUT
274 int git_config_colorbool(const char *var, const char *value)
276 if (value) {
277 if (!strcasecmp(value, "never"))
278 return 0;
279 if (!strcasecmp(value, "always"))
280 return 1;
281 if (!strcasecmp(value, "auto"))
282 return GIT_COLOR_AUTO;
285 if (!var)
286 return -1;
288 /* Missing or explicit false to turn off colorization */
289 if (!git_config_bool(var, value))
290 return 0;
292 /* any normal truth value defaults to 'auto' */
293 return GIT_COLOR_AUTO;
296 static int check_auto_color(void)
298 if (color_stdout_is_tty < 0)
299 color_stdout_is_tty = isatty(1);
300 if (color_stdout_is_tty || (pager_in_use() && pager_use_color)) {
301 char *term = getenv("TERM");
302 if (term && strcmp(term, "dumb"))
303 return 1;
305 return 0;
308 int want_color(int var)
310 static int want_auto = -1;
312 if (var < 0)
313 var = git_use_color_default;
315 if (var == GIT_COLOR_AUTO) {
316 if (want_auto < 0)
317 want_auto = check_auto_color();
318 return want_auto;
320 return var;
323 int git_color_config(const char *var, const char *value, void *cb)
325 if (!strcmp(var, "color.ui")) {
326 git_use_color_default = git_config_colorbool(var, value);
327 return 0;
330 return 0;
333 int git_color_default_config(const char *var, const char *value, void *cb)
335 if (git_color_config(var, value, cb) < 0)
336 return -1;
338 return git_default_config(var, value, cb);
341 void color_print_strbuf(FILE *fp, const char *color, const struct strbuf *sb)
343 if (*color)
344 fprintf(fp, "%s", color);
345 fprintf(fp, "%s", sb->buf);
346 if (*color)
347 fprintf(fp, "%s", GIT_COLOR_RESET);
350 static int color_vfprintf(FILE *fp, const char *color, const char *fmt,
351 va_list args, const char *trail)
353 int r = 0;
355 if (*color)
356 r += fprintf(fp, "%s", color);
357 r += vfprintf(fp, fmt, args);
358 if (*color)
359 r += fprintf(fp, "%s", GIT_COLOR_RESET);
360 if (trail)
361 r += fprintf(fp, "%s", trail);
362 return r;
367 int color_fprintf(FILE *fp, const char *color, const char *fmt, ...)
369 va_list args;
370 int r;
371 va_start(args, fmt);
372 r = color_vfprintf(fp, color, fmt, args, NULL);
373 va_end(args);
374 return r;
377 int color_fprintf_ln(FILE *fp, const char *color, const char *fmt, ...)
379 va_list args;
380 int r;
381 va_start(args, fmt);
382 r = color_vfprintf(fp, color, fmt, args, "\n");
383 va_end(args);
384 return r;
387 int color_is_nil(const char *c)
389 return !strcmp(c, "NIL");