wt-status.c 9.0 KB
Newer Older
1
#include "cache.h"
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#include "wt-status.h"
#include "color.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 */
};
18 19 20 21 22 23 24

static const char use_add_msg[] =
"use \"git add <file>...\" to update what will be committed";
static const char use_add_rm_msg[] =
"use \"git add/rm <file>...\" to update what will be committed";
static const char use_add_to_include_msg[] =
"use \"git add <file>...\" to include in what will be committed";
25 26 27 28 29

static int parse_status_slot(const char *var, int offset)
{
	if (!strcasecmp(var+offset, "header"))
		return WT_STATUS_HEADER;
30 31
	if (!strcasecmp(var+offset, "updated")
		|| !strcasecmp(var+offset, "added"))
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
		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;

50
	memset(s, 0, sizeof(*s));
51
	head = resolve_ref("HEAD", sha1, 0, NULL);
52
	s->branch = head ? xstrdup(head) : NULL;
53 54 55
	s->reference = "HEAD";
}

56 57 58
static void wt_status_print_cached_header(const char *reference)
{
	const char *c = color(WT_STATUS_HEADER);
59
	color_printf_ln(c, "# Changes to be committed:");
60
	if (reference) {
61
		color_printf_ln(c, "#   (use \"git reset %s <file>...\" to unstage)", reference);
62 63 64 65 66 67
	} else {
		color_printf_ln(c, "#   (use \"git rm --cached <file>...\" to unstage)");
	}
	color_printf_ln(c, "#");
}

68 69 70 71 72 73 74 75 76 77 78 79 80
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), "#");
}

81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
static const char *quote_crlf(const char *in, char *buf, size_t sz)
{
	const char *scan;
	char *out;
	const char *ret = in;

	for (scan = in, out = buf; *scan; scan++) {
		int ch = *scan;
		int quoted;

		switch (ch) {
		case '\n':
			quoted = 'n';
			break;
		case '\r':
			quoted = 'r';
			break;
		default:
			*out++ = ch;
			continue;
		}
		*out++ = '\\';
		*out++ = quoted;
		ret = buf;
	}
	*out = '\0';
	return ret;
}

110 111 112
static void wt_status_print_filepair(int t, struct diff_filepair *p)
{
	const char *c = color(t);
113 114 115 116 117 118
	const char *one, *two;
	char onebuf[PATH_MAX], twobuf[PATH_MAX];

	one = quote_crlf(p->one->path, onebuf, sizeof(onebuf));
	two = quote_crlf(p->two->path, twobuf, sizeof(twobuf));

119 120 121
	color_printf(color(WT_STATUS_HEADER), "#\t");
	switch (p->status) {
	case DIFF_STATUS_ADDED:
122 123
		color_printf(c, "new file:   %s", one);
		break;
124
	case DIFF_STATUS_COPIED:
125
		color_printf(c, "copied:     %s -> %s", one, two);
126 127
		break;
	case DIFF_STATUS_DELETED:
128 129
		color_printf(c, "deleted:    %s", one);
		break;
130
	case DIFF_STATUS_MODIFIED:
131 132
		color_printf(c, "modified:   %s", one);
		break;
133
	case DIFF_STATUS_RENAMED:
134
		color_printf(c, "renamed:    %s -> %s", one, two);
135 136
		break;
	case DIFF_STATUS_TYPE_CHANGED:
137 138
		color_printf(c, "typechange: %s", one);
		break;
139
	case DIFF_STATUS_UNKNOWN:
140 141
		color_printf(c, "unknown:    %s", one);
		break;
142
	case DIFF_STATUS_UNMERGED:
143 144
		color_printf(c, "unmerged:   %s", one);
		break;
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
	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;
	for (i = 0; i < q->nr; i++) {
		if (q->queue[i]->status == 'U')
			continue;
		if (!shown_header) {
162
			wt_status_print_cached_header(s->reference);
163 164 165 166 167 168 169 170 171 172 173 174 175
			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)
{
176
	struct wt_status *s = data;
177
	int i;
178
	if (q->nr) {
179
		const char *msg = use_add_msg;
180
		s->workdir_dirty = 1;
181 182 183 184 185 186
		for (i = 0; i < q->nr; i++)
			if (q->queue[i]->status == DIFF_STATUS_DELETED) {
				msg = use_add_rm_msg;
				break;
			}
		wt_status_print_header("Changed but not updated", msg);
187
	}
188 189 190 191 192 193
	for (i = 0; i < q->nr; i++)
		wt_status_print_filepair(WT_STATUS_CHANGED, q->queue[i]);
	if (q->nr)
		wt_status_print_trailer();
}

194 195 196 197 198 199
static void wt_read_cache(struct wt_status *s)
{
	discard_cache();
	read_cache();
}

200 201 202
void wt_status_print_initial(struct wt_status *s)
{
	int i;
203 204
	char buf[PATH_MAX];

205
	wt_read_cache(s);
206 207
	if (active_nr) {
		s->commitable = 1;
208
		wt_status_print_cached_header(NULL);
209 210 211 212
	}
	for (i = 0; i < active_nr; i++) {
		color_printf(color(WT_STATUS_HEADER), "#\t");
		color_printf_ln(color(WT_STATUS_UPDATED), "new file: %s",
213 214
				quote_crlf(active_cache[i]->name,
					   buf, sizeof(buf)));
215 216 217 218 219 220 221 222 223
	}
	if (active_nr)
		wt_status_print_trailer();
}

static void wt_status_print_updated(struct wt_status *s)
{
	struct rev_info rev;
	init_revisions(&rev, NULL);
224
	setup_revisions(0, NULL, &rev, s->reference);
225 226 227 228
	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;
229
	wt_read_cache(s);
230 231 232 233 234 235 236
	run_diff_index(&rev, 1);
}

static void wt_status_print_changed(struct wt_status *s)
{
	struct rev_info rev;
	init_revisions(&rev, "");
237
	setup_revisions(0, NULL, &rev, NULL);
238 239 240
	rev.diffopt.output_format |= DIFF_FORMAT_CALLBACK;
	rev.diffopt.format_callback = wt_status_print_changed_cb;
	rev.diffopt.format_callback_data = s;
241
	wt_read_cache(s);
242 243 244
	run_diff_files(&rev, 0);
}

245
static void wt_status_print_untracked(struct wt_status *s)
246 247 248 249 250 251 252 253 254
{
	struct dir_struct dir;
	const char *x;
	int i;
	int shown_header = 0;

	memset(&dir, 0, sizeof(dir));

	dir.exclude_per_dir = ".gitignore";
255 256 257 258
	if (!s->untracked) {
		dir.show_other_directories = 1;
		dir.hide_empty_directories = 1;
	}
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279
	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) {
280
			s->workdir_untracked = 1;
281 282
			wt_status_print_header("Untracked files",
					       use_add_to_include_msg);
283 284 285 286 287 288 289 290 291 292 293 294
			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;
	init_revisions(&rev, NULL);
295
	setup_revisions(0, NULL, &rev, s->reference);
296 297
	rev.diffopt.output_format |= DIFF_FORMAT_PATCH;
	rev.diffopt.detect_rename = 1;
298
	wt_read_cache(s);
299 300 301 302 303
	run_diff_index(&rev, 1);
}

void wt_status_print(struct wt_status *s)
{
304 305 306
	unsigned char sha1[20];
	s->is_initial = get_sha1(s->reference, sha1) ? 1 : 0;

J
Junio C Hamano 已提交
307 308 309
	if (s->branch) {
		const char *on_what = "On branch ";
		const char *branch_name = s->branch;
310
		if (!prefixcmp(branch_name, "refs/heads/"))
J
Junio C Hamano 已提交
311 312 313 314 315
			branch_name += 11;
		else if (!strcmp(branch_name, "HEAD")) {
			branch_name = "";
			on_what = "Not currently on any branch.";
		}
316
		color_printf_ln(color(WT_STATUS_HEADER),
J
Junio C Hamano 已提交
317 318
			"# %s%s", on_what, branch_name);
	}
319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334

	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);
	}

	wt_status_print_changed(s);
	wt_status_print_untracked(s);

	if (s->verbose && !s->is_initial)
		wt_status_print_verbose(s);
335 336 337
	if (!s->commitable) {
		if (s->amend)
			printf("# No changes\n");
338
		else if (s->workdir_dirty)
339
			printf("no changes added to commit (use \"git add\" and/or \"git commit -a\")\n");
340 341 342 343 344 345
		else if (s->workdir_untracked)
			printf("nothing added to commit but untracked files present (use \"git add\" to track)\n");
		else if (s->is_initial)
			printf("nothing to commit (create/copy files and use \"git add\" to track)\n");
		else
			printf("nothing to commit (working directory clean)\n");
346
	}
347 348 349 350
}

int git_status_config(const char *k, const char *v)
{
351
	if (!strcmp(k, "status.color") || !strcmp(k, "color.status")) {
352 353 354
		wt_status_use_color = git_config_colorbool(k, v);
		return 0;
	}
355
	if (!prefixcmp(k, "status.color.") || !prefixcmp(k, "color.status.")) {
356 357 358 359 360
		int slot = parse_status_slot(k, 13);
		color_parse(v, k, wt_status_colors[slot]);
	}
	return git_default_config(k, v);
}