Browse Source
* jk/diff: wt-status: remove extraneous newline from 'deleted:' output git-status: document colorization config options Teach runstatus about --untracked git-commit.sh: convert run_status to a C builtin Move color option parsing out of diff.c and into color.[ch] diff: support custom callbacks for outputmaint
Junio C Hamano
18 years ago
15 changed files with 576 additions and 232 deletions
@ -0,0 +1,36 @@
@@ -0,0 +1,36 @@
|
||||
#include "wt-status.h" |
||||
#include "cache.h" |
||||
|
||||
extern int wt_status_use_color; |
||||
|
||||
static const char runstatus_usage[] = |
||||
"git-runstatus [--color|--nocolor] [--amend] [--verbose]"; |
||||
|
||||
int cmd_runstatus(int argc, const char **argv, const char *prefix) |
||||
{ |
||||
struct wt_status s; |
||||
int i; |
||||
|
||||
git_config(git_status_config); |
||||
wt_status_prepare(&s); |
||||
|
||||
for (i = 1; i < argc; i++) { |
||||
if (!strcmp(argv[i], "--color")) |
||||
wt_status_use_color = 1; |
||||
else if (!strcmp(argv[i], "--nocolor")) |
||||
wt_status_use_color = 0; |
||||
else if (!strcmp(argv[i], "--amend")) { |
||||
s.amend = 1; |
||||
s.reference = "HEAD^1"; |
||||
} |
||||
else if (!strcmp(argv[i], "--verbose")) |
||||
s.verbose = 1; |
||||
else if (!strcmp(argv[i], "--untracked")) |
||||
s.untracked = 1; |
||||
else |
||||
usage(runstatus_usage); |
||||
} |
||||
|
||||
wt_status_print(&s); |
||||
return s.commitable ? 0 : 1; |
||||
} |
@ -0,0 +1,176 @@
@@ -0,0 +1,176 @@
|
||||
#include "color.h" |
||||
#include "cache.h" |
||||
#include "git-compat-util.h" |
||||
|
||||
#include <stdarg.h> |
||||
|
||||
#define COLOR_RESET "\033[m" |
||||
|
||||
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); |
||||
if (*name && !*end && i >= -1 && i <= 255) |
||||
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) |
||||
{ |
||||
const char *ptr = value; |
||||
int attr = -1; |
||||
int fg = -2; |
||||
int bg = -2; |
||||
|
||||
if (!strcasecmp(value, "reset")) { |
||||
strcpy(dst, "\033[m"); |
||||
return; |
||||
} |
||||
|
||||
/* [fg [bg]] [attr] */ |
||||
while (*ptr) { |
||||
const char *word = ptr; |
||||
int val, len = 0; |
||||
|
||||
while (word[len] && !isspace(word[len])) |
||||
len++; |
||||
|
||||
ptr = word + len; |
||||
while (*ptr && isspace(*ptr)) |
||||
ptr++; |
||||
|
||||
val = parse_color(word, len); |
||||
if (val >= -1) { |
||||
if (fg == -2) { |
||||
fg = val; |
||||
continue; |
||||
} |
||||
if (bg == -2) { |
||||
bg = val; |
||||
continue; |
||||
} |
||||
goto bad; |
||||
} |
||||
val = parse_attr(word, len); |
||||
if (val < 0 || attr != -1) |
||||
goto bad; |
||||
attr = val; |
||||
} |
||||
|
||||
if (attr >= 0 || fg >= 0 || bg >= 0) { |
||||
int sep = 0; |
||||
|
||||
*dst++ = '\033'; |
||||
*dst++ = '['; |
||||
if (attr >= 0) { |
||||
*dst++ = '0' + attr; |
||||
sep++; |
||||
} |
||||
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: |
||||
die("bad config value '%s' for variable '%s'", value, var); |
||||
} |
||||
|
||||
int git_config_colorbool(const char *var, const char *value) |
||||
{ |
||||
if (!value) |
||||
return 1; |
||||
if (!strcasecmp(value, "auto")) { |
||||
if (isatty(1) || (pager_in_use && pager_use_color)) { |
||||
char *term = getenv("TERM"); |
||||
if (term && strcmp(term, "dumb")) |
||||
return 1; |
||||
} |
||||
return 0; |
||||
} |
||||
if (!strcasecmp(value, "never")) |
||||
return 0; |
||||
if (!strcasecmp(value, "always")) |
||||
return 1; |
||||
return git_config_bool(var, value); |
||||
} |
||||
|
||||
static int color_vprintf(const char *color, const char *fmt, |
||||
va_list args, const char *trail) |
||||
{ |
||||
int r = 0; |
||||
|
||||
if (*color) |
||||
r += printf("%s", color); |
||||
r += vprintf(fmt, args); |
||||
if (*color) |
||||
r += printf("%s", COLOR_RESET); |
||||
if (trail) |
||||
r += printf("%s", trail); |
||||
return r; |
||||
} |
||||
|
||||
|
||||
|
||||
int color_printf(const char *color, const char *fmt, ...) |
||||
{ |
||||
va_list args; |
||||
int r; |
||||
va_start(args, fmt); |
||||
r = color_vprintf(color, fmt, args, NULL); |
||||
va_end(args); |
||||
return r; |
||||
} |
||||
|
||||
int color_printf_ln(const char *color, const char *fmt, ...) |
||||
{ |
||||
va_list args; |
||||
int r; |
||||
va_start(args, fmt); |
||||
r = color_vprintf(color, fmt, args, "\n"); |
||||
va_end(args); |
||||
return r; |
||||
} |
@ -0,0 +1,12 @@
@@ -0,0 +1,12 @@
|
||||
#ifndef COLOR_H |
||||
#define COLOR_H |
||||
|
||||
/* "\033[1;38;5;2xx;48;5;2xxm\0" is 23 bytes */ |
||||
#define COLOR_MAXLEN 24 |
||||
|
||||
int git_config_colorbool(const char *var, const char *value); |
||||
void color_parse(const char *var, const char *value, char *dst); |
||||
int color_printf(const char *color, const char *fmt, ...); |
||||
int color_printf_ln(const char *color, const char *fmt, ...); |
||||
|
||||
#endif /* COLOR_H */ |
@ -0,0 +1,276 @@
@@ -0,0 +1,276 @@
|
||||
#include "wt-status.h" |
||||
#include "color.h" |
||||
#include "cache.h" |
||||
#include "object.h" |
||||
#include "dir.h" |
||||
#include "commit.h" |
||||
#include "diff.h" |
||||
#include "revision.h" |
||||
#include "diffcore.h" |
||||
|
||||
int wt_status_use_color = 0; |
||||
static char wt_status_colors[][COLOR_MAXLEN] = { |
||||
"", /* WT_STATUS_HEADER: normal */ |
||||
"\033[32m", /* WT_STATUS_UPDATED: green */ |
||||
"\033[31m", /* WT_STATUS_CHANGED: red */ |
||||
"\033[31m", /* WT_STATUS_UNTRACKED: red */ |
||||
}; |
||||
|
||||
static int parse_status_slot(const char *var, int offset) |
||||
{ |
||||
if (!strcasecmp(var+offset, "header")) |
||||
return WT_STATUS_HEADER; |
||||
if (!strcasecmp(var+offset, "updated")) |
||||
return WT_STATUS_UPDATED; |
||||
if (!strcasecmp(var+offset, "changed")) |
||||
return WT_STATUS_CHANGED; |
||||
if (!strcasecmp(var+offset, "untracked")) |
||||
return WT_STATUS_UNTRACKED; |
||||
die("bad config variable '%s'", var); |
||||
} |
||||
|
||||
static const char* color(int slot) |
||||
{ |
||||
return wt_status_use_color ? wt_status_colors[slot] : ""; |
||||
} |
||||
|
||||
void wt_status_prepare(struct wt_status *s) |
||||
{ |
||||
unsigned char sha1[20]; |
||||
const char *head; |
||||
|
||||
s->is_initial = get_sha1("HEAD", sha1) ? 1 : 0; |
||||
|
||||
head = resolve_ref(git_path("HEAD"), sha1, 0); |
||||
s->branch = head ? |
||||
strdup(head + strlen(get_git_dir()) + 1) : |
||||
NULL; |
||||
|
||||
s->reference = "HEAD"; |
||||
s->amend = 0; |
||||
s->verbose = 0; |
||||
s->commitable = 0; |
||||
s->untracked = 0; |
||||
} |
||||
|
||||
static void wt_status_print_header(const char *main, const char *sub) |
||||
{ |
||||
const char *c = color(WT_STATUS_HEADER); |
||||
color_printf_ln(c, "# %s:", main); |
||||
color_printf_ln(c, "# (%s)", sub); |
||||
color_printf_ln(c, "#"); |
||||
} |
||||
|
||||
static void wt_status_print_trailer(void) |
||||
{ |
||||
color_printf_ln(color(WT_STATUS_HEADER), "#"); |
||||
} |
||||
|
||||
static void wt_status_print_filepair(int t, struct diff_filepair *p) |
||||
{ |
||||
const char *c = color(t); |
||||
color_printf(color(WT_STATUS_HEADER), "#\t"); |
||||
switch (p->status) { |
||||
case DIFF_STATUS_ADDED: |
||||
color_printf(c, "new file: %s", p->one->path); break; |
||||
case DIFF_STATUS_COPIED: |
||||
color_printf(c, "copied: %s -> %s", |
||||
p->one->path, p->two->path); |
||||
break; |
||||
case DIFF_STATUS_DELETED: |
||||
color_printf(c, "deleted: %s", p->one->path); break; |
||||
case DIFF_STATUS_MODIFIED: |
||||
color_printf(c, "modified: %s", p->one->path); break; |
||||
case DIFF_STATUS_RENAMED: |
||||
color_printf(c, "renamed: %s -> %s", |
||||
p->one->path, p->two->path); |
||||
break; |
||||
case DIFF_STATUS_TYPE_CHANGED: |
||||
color_printf(c, "typechange: %s", p->one->path); break; |
||||
case DIFF_STATUS_UNKNOWN: |
||||
color_printf(c, "unknown: %s", p->one->path); break; |
||||
case DIFF_STATUS_UNMERGED: |
||||
color_printf(c, "unmerged: %s", p->one->path); break; |
||||
default: |
||||
die("bug: unhandled diff status %c", p->status); |
||||
} |
||||
printf("\n"); |
||||
} |
||||
|
||||
static void wt_status_print_updated_cb(struct diff_queue_struct *q, |
||||
struct diff_options *options, |
||||
void *data) |
||||
{ |
||||
struct wt_status *s = data; |
||||
int shown_header = 0; |
||||
int i; |
||||
if (q->nr) { |
||||
} |
||||
for (i = 0; i < q->nr; i++) { |
||||
if (q->queue[i]->status == 'U') |
||||
continue; |
||||
if (!shown_header) { |
||||
wt_status_print_header("Updated but not checked in", |
||||
"will commit"); |
||||
s->commitable = 1; |
||||
shown_header = 1; |
||||
} |
||||
wt_status_print_filepair(WT_STATUS_UPDATED, q->queue[i]); |
||||
} |
||||
if (shown_header) |
||||
wt_status_print_trailer(); |
||||
} |
||||
|
||||
static void wt_status_print_changed_cb(struct diff_queue_struct *q, |
||||
struct diff_options *options, |
||||
void *data) |
||||
{ |
||||
int i; |
||||
if (q->nr) |
||||
wt_status_print_header("Changed but not updated", |
||||
"use git-update-index to mark for commit"); |
||||
for (i = 0; i < q->nr; i++) |
||||
wt_status_print_filepair(WT_STATUS_CHANGED, q->queue[i]); |
||||
if (q->nr) |
||||
wt_status_print_trailer(); |
||||
} |
||||
|
||||
void wt_status_print_initial(struct wt_status *s) |
||||
{ |
||||
int i; |
||||
read_cache(); |
||||
if (active_nr) { |
||||
s->commitable = 1; |
||||
wt_status_print_header("Updated but not checked in", |
||||
"will commit"); |
||||
} |
||||
for (i = 0; i < active_nr; i++) { |
||||
color_printf(color(WT_STATUS_HEADER), "#\t"); |
||||
color_printf_ln(color(WT_STATUS_UPDATED), "new file: %s", |
||||
active_cache[i]->name); |
||||
} |
||||
if (active_nr) |
||||
wt_status_print_trailer(); |
||||
} |
||||
|
||||
static void wt_status_print_updated(struct wt_status *s) |
||||
{ |
||||
struct rev_info rev; |
||||
const char *argv[] = { NULL, NULL, NULL }; |
||||
argv[1] = s->reference; |
||||
init_revisions(&rev, NULL); |
||||
setup_revisions(2, argv, &rev, NULL); |
||||
rev.diffopt.output_format |= DIFF_FORMAT_CALLBACK; |
||||
rev.diffopt.format_callback = wt_status_print_updated_cb; |
||||
rev.diffopt.format_callback_data = s; |
||||
rev.diffopt.detect_rename = 1; |
||||
run_diff_index(&rev, 1); |
||||
} |
||||
|
||||
static void wt_status_print_changed(struct wt_status *s) |
||||
{ |
||||
struct rev_info rev; |
||||
const char *argv[] = { NULL, NULL }; |
||||
init_revisions(&rev, ""); |
||||
setup_revisions(1, argv, &rev, NULL); |
||||
rev.diffopt.output_format |= DIFF_FORMAT_CALLBACK; |
||||
rev.diffopt.format_callback = wt_status_print_changed_cb; |
||||
rev.diffopt.format_callback_data = s; |
||||
run_diff_files(&rev, 0); |
||||
} |
||||
|
||||
static void wt_status_print_untracked(const struct wt_status *s) |
||||
{ |
||||
struct dir_struct dir; |
||||
const char *x; |
||||
int i; |
||||
int shown_header = 0; |
||||
|
||||
memset(&dir, 0, sizeof(dir)); |
||||
|
||||
dir.exclude_per_dir = ".gitignore"; |
||||
if (!s->untracked) { |
||||
dir.show_other_directories = 1; |
||||
dir.hide_empty_directories = 1; |
||||
} |
||||
x = git_path("info/exclude"); |
||||
if (file_exists(x)) |
||||
add_excludes_from_file(&dir, x); |
||||
|
||||
read_directory(&dir, ".", "", 0); |
||||
for(i = 0; i < dir.nr; i++) { |
||||
/* check for matching entry, which is unmerged; lifted from |
||||
* builtin-ls-files:show_other_files */ |
||||
struct dir_entry *ent = dir.entries[i]; |
||||
int pos = cache_name_pos(ent->name, ent->len); |
||||
struct cache_entry *ce; |
||||
if (0 <= pos) |
||||
die("bug in wt_status_print_untracked"); |
||||
pos = -pos - 1; |
||||
if (pos < active_nr) { |
||||
ce = active_cache[pos]; |
||||
if (ce_namelen(ce) == ent->len && |
||||
!memcmp(ce->name, ent->name, ent->len)) |
||||
continue; |
||||
} |
||||
if (!shown_header) { |
||||
wt_status_print_header("Untracked files", |
||||
"use \"git add\" to add to commit"); |
||||
shown_header = 1; |
||||
} |
||||
color_printf(color(WT_STATUS_HEADER), "#\t"); |
||||
color_printf_ln(color(WT_STATUS_UNTRACKED), "%.*s", |
||||
ent->len, ent->name); |
||||
} |
||||
} |
||||
|
||||
static void wt_status_print_verbose(struct wt_status *s) |
||||
{ |
||||
struct rev_info rev; |
||||
const char *argv[] = { NULL, NULL, NULL }; |
||||
argv[1] = s->reference; |
||||
init_revisions(&rev, NULL); |
||||
setup_revisions(2, argv, &rev, NULL); |
||||
rev.diffopt.output_format |= DIFF_FORMAT_PATCH; |
||||
rev.diffopt.detect_rename = 1; |
||||
run_diff_index(&rev, 1); |
||||
} |
||||
|
||||
void wt_status_print(struct wt_status *s) |
||||
{ |
||||
if (s->branch && strcmp(s->branch, "refs/heads/master")) |
||||
color_printf_ln(color(WT_STATUS_HEADER), |
||||
"# On branch %s", s->branch); |
||||
|
||||
if (s->is_initial) { |
||||
color_printf_ln(color(WT_STATUS_HEADER), "#"); |
||||
color_printf_ln(color(WT_STATUS_HEADER), "# Initial commit"); |
||||
color_printf_ln(color(WT_STATUS_HEADER), "#"); |
||||
wt_status_print_initial(s); |
||||
} |
||||
else { |
||||
wt_status_print_updated(s); |
||||
discard_cache(); |
||||
} |
||||
|
||||
wt_status_print_changed(s); |
||||
wt_status_print_untracked(s); |
||||
|
||||
if (s->verbose && !s->is_initial) |
||||
wt_status_print_verbose(s); |
||||
if (!s->commitable) |
||||
printf("%s\n", s->amend ? "# No changes" : "nothing to commit"); |
||||
} |
||||
|
||||
int git_status_config(const char *k, const char *v) |
||||
{ |
||||
if (!strcmp(k, "status.color")) { |
||||
wt_status_use_color = git_config_colorbool(k, v); |
||||
return 0; |
||||
} |
||||
if (!strncmp(k, "status.color.", 13)) { |
||||
int slot = parse_status_slot(k, 13); |
||||
color_parse(v, k, wt_status_colors[slot]); |
||||
} |
||||
return git_default_config(k, v); |
||||
} |
@ -0,0 +1,25 @@
@@ -0,0 +1,25 @@
|
||||
#ifndef STATUS_H |
||||
#define STATUS_H |
||||
|
||||
enum color_wt_status { |
||||
WT_STATUS_HEADER, |
||||
WT_STATUS_UPDATED, |
||||
WT_STATUS_CHANGED, |
||||
WT_STATUS_UNTRACKED, |
||||
}; |
||||
|
||||
struct wt_status { |
||||
int is_initial; |
||||
char *branch; |
||||
const char *reference; |
||||
int commitable; |
||||
int verbose; |
||||
int amend; |
||||
int untracked; |
||||
}; |
||||
|
||||
int git_status_config(const char *var, const char *value); |
||||
void wt_status_prepare(struct wt_status *s); |
||||
void wt_status_print(struct wt_status *s); |
||||
|
||||
#endif /* STATUS_H */ |
Loading…
Reference in new issue