for-each-ref.c 27.6 KB
Newer Older
1
#include "builtin.h"
2 3 4 5 6 7 8 9
#include "cache.h"
#include "refs.h"
#include "object.h"
#include "tag.h"
#include "commit.h"
#include "tree.h"
#include "blob.h"
#include "quote.h"
10
#include "parse-options.h"
11
#include "remote.h"
12
#include "color.h"
13 14 15 16 17

/* Quoting styles */
#define QUOTE_NONE 0
#define QUOTE_SHELL 1
#define QUOTE_PERL 2
18 19
#define QUOTE_PYTHON 4
#define QUOTE_TCL 8
20 21 22 23 24 25 26 27 28 29 30 31 32 33

typedef enum { FIELD_STR, FIELD_ULONG, FIELD_TIME } cmp_type;

struct atom_value {
	const char *s;
	unsigned long ul; /* used for sorting when not FIELD_STR */
};

struct ref_sort {
	struct ref_sort *next;
	int atom; /* index into used_atom array */
	unsigned reverse : 1;
};

34
struct ref_array_item {
35
	unsigned char objectname[20];
36 37
	int flag;
	const char *symref;
38
	struct atom_value *value;
39
	char *refname;
40 41 42 43 44 45 46 47 48 49 50
};

static struct {
	const char *name;
	cmp_type cmp_type;
} valid_atom[] = {
	{ "refname" },
	{ "objecttype" },
	{ "objectsize", FIELD_ULONG },
	{ "objectname" },
	{ "tree" },
51
	{ "parent" },
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
	{ "numparent", FIELD_ULONG },
	{ "object" },
	{ "type" },
	{ "tag" },
	{ "author" },
	{ "authorname" },
	{ "authoremail" },
	{ "authordate", FIELD_TIME },
	{ "committer" },
	{ "committername" },
	{ "committeremail" },
	{ "committerdate", FIELD_TIME },
	{ "tagger" },
	{ "taggername" },
	{ "taggeremail" },
	{ "taggerdate", FIELD_TIME },
68 69
	{ "creator" },
	{ "creatordate", FIELD_TIME },
70 71 72
	{ "subject" },
	{ "body" },
	{ "contents" },
73 74 75
	{ "contents:subject" },
	{ "contents:body" },
	{ "contents:signature" },
76
	{ "upstream" },
77
	{ "push" },
78
	{ "symref" },
J
Junio C Hamano 已提交
79
	{ "flag" },
80
	{ "HEAD" },
81
	{ "color" },
82 83 84 85 86 87 88
};

/*
 * An atom is a valid field atom listed above, possibly prefixed with
 * a "*" to denote deref_tag().
 *
 * We parse given format string and sort specifiers, and make a list
89
 * of properties that we need to extract out of objects.  ref_array_item
90 91 92 93 94 95
 * structure will hold an array of values extracted that can be
 * indexed with the "atom number", which is an index into this
 * array.
 */
static const char **used_atom;
static cmp_type *used_atom_type;
96
static int used_atom_cnt, need_tagged, need_symref;
97
static int need_color_reset_at_eol;
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122

/*
 * Used to parse format string and sort specifiers
 */
static int parse_atom(const char *atom, const char *ep)
{
	const char *sp;
	int i, at;

	sp = atom;
	if (*sp == '*' && sp < ep)
		sp++; /* deref */
	if (ep <= sp)
		die("malformed field name: %.*s", (int)(ep-atom), atom);

	/* Do we have the atom already used elsewhere? */
	for (i = 0; i < used_atom_cnt; i++) {
		int len = strlen(used_atom[i]);
		if (len == ep - atom && !memcmp(used_atom[i], atom, len))
			return i;
	}

	/* Is the atom a valid one? */
	for (i = 0; i < ARRAY_SIZE(valid_atom); i++) {
		int len = strlen(valid_atom[i].name);
123 124 125 126 127 128 129
		/*
		 * If the atom name has a colon, strip it and everything after
		 * it off - it specifies the format for this entry, and
		 * shouldn't be used for checking against the valid_atom
		 * table.
		 */
		const char *formatp = strchr(sp, ':');
130
		if (!formatp || ep < formatp)
131 132
			formatp = ep;
		if (len == formatp - sp && !memcmp(valid_atom[i].name, sp, len))
133 134 135 136 137 138 139 140 141
			break;
	}

	if (ARRAY_SIZE(valid_atom) <= i)
		die("unknown field name: %.*s", (int)(ep-atom), atom);

	/* Add it in, including the deref prefix */
	at = used_atom_cnt;
	used_atom_cnt++;
142 143
	REALLOC_ARRAY(used_atom, used_atom_cnt);
	REALLOC_ARRAY(used_atom_type, used_atom_cnt);
P
Pierre Habouzit 已提交
144
	used_atom[at] = xmemdupz(atom, ep - atom);
145
	used_atom_type[at] = valid_atom[i].cmp_type;
146 147
	if (*atom == '*')
		need_tagged = 1;
148 149
	if (!strcmp(used_atom[at], "symref"))
		need_symref = 1;
150 151 152 153 154 155 156 157 158 159
	return at;
}

/*
 * In a format string, find the next occurrence of %(atom).
 */
static const char *find_next(const char *cp)
{
	while (*cp) {
		if (*cp == '%') {
160 161
			/*
			 * %( is the start of an atom;
P
Pavel Roskin 已提交
162
			 * %% is a quoted per-cent.
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
			 */
			if (cp[1] == '(')
				return cp;
			else if (cp[1] == '%')
				cp++; /* skip over two % */
			/* otherwise this is a singleton, literal % */
		}
		cp++;
	}
	return NULL;
}

/*
 * Make sure the format string is well formed, and parse out
 * the used atoms.
 */
179
static int verify_format(const char *format)
180 181
{
	const char *cp, *sp;
182 183

	need_color_reset_at_eol = 0;
184
	for (cp = format; *cp && (sp = find_next(cp)); ) {
185
		const char *color, *ep = strchr(sp, ')');
186 187
		int at;

188
		if (!ep)
189
			return error("malformed format string %s", sp);
190
		/* sp points at "%(" and ep points at the closing ")" */
191
		at = parse_atom(sp + 2, ep);
192
		cp = ep + 1;
193

194 195
		if (skip_prefix(used_atom[at], "color:", &color))
			need_color_reset_at_eol = !!strcmp(color, "reset");
196
	}
197
	return 0;
198 199 200 201 202 203 204 205 206 207
}

/*
 * Given an object name, read the object data and size, and return a
 * "struct object".  If the object data we are returning is also borrowed
 * by the "struct object" representation, set *eaten as well---it is a
 * signal from parse_object_buffer to us not to free the buffer.
 */
static void *get_obj(const unsigned char *sha1, struct object **obj, unsigned long *sz, int *eaten)
{
208 209
	enum object_type type;
	void *buf = read_sha1_file(sha1, &type, sz);
210 211 212 213 214 215 216 217

	if (buf)
		*obj = parse_object_buffer(sha1, type, *sz, buf, eaten);
	else
		*obj = NULL;
	return buf;
}

218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
static int grab_objectname(const char *name, const unsigned char *sha1,
			    struct atom_value *v)
{
	if (!strcmp(name, "objectname")) {
		char *s = xmalloc(41);
		strcpy(s, sha1_to_hex(sha1));
		v->s = s;
		return 1;
	}
	if (!strcmp(name, "objectname:short")) {
		v->s = xstrdup(find_unique_abbrev(sha1, DEFAULT_ABBREV));
		return 1;
	}
	return 0;
}

234 235 236 237 238 239 240 241 242 243 244 245 246
/* See grab_values */
static void grab_common_values(struct atom_value *val, int deref, struct object *obj, void *buf, unsigned long sz)
{
	int i;

	for (i = 0; i < used_atom_cnt; i++) {
		const char *name = used_atom[i];
		struct atom_value *v = &val[i];
		if (!!deref != (*name == '*'))
			continue;
		if (deref)
			name++;
		if (!strcmp(name, "objecttype"))
247
			v->s = typename(obj->type);
248 249 250 251 252 253
		else if (!strcmp(name, "objectsize")) {
			char *s = xmalloc(40);
			sprintf(s, "%lu", sz);
			v->ul = sz;
			v->s = s;
		}
254 255
		else if (deref)
			grab_objectname(name, obj->sha1, v);
256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273
	}
}

/* See grab_values */
static void grab_tag_values(struct atom_value *val, int deref, struct object *obj, void *buf, unsigned long sz)
{
	int i;
	struct tag *tag = (struct tag *) obj;

	for (i = 0; i < used_atom_cnt; i++) {
		const char *name = used_atom[i];
		struct atom_value *v = &val[i];
		if (!!deref != (*name == '*'))
			continue;
		if (deref)
			name++;
		if (!strcmp(name, "tag"))
			v->s = tag->tag;
274 275 276 277 278 279 280
		else if (!strcmp(name, "type") && tag->tagged)
			v->s = typename(tag->tagged->type);
		else if (!strcmp(name, "object") && tag->tagged) {
			char *s = xmalloc(41);
			strcpy(s, sha1_to_hex(tag->tagged->sha1));
			v->s = s;
		}
281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303
	}
}

/* See grab_values */
static void grab_commit_values(struct atom_value *val, int deref, struct object *obj, void *buf, unsigned long sz)
{
	int i;
	struct commit *commit = (struct commit *) obj;

	for (i = 0; i < used_atom_cnt; i++) {
		const char *name = used_atom[i];
		struct atom_value *v = &val[i];
		if (!!deref != (*name == '*'))
			continue;
		if (deref)
			name++;
		if (!strcmp(name, "tree")) {
			char *s = xmalloc(41);
			strcpy(s, sha1_to_hex(commit->tree->object.sha1));
			v->s = s;
		}
		if (!strcmp(name, "numparent")) {
			char *s = xmalloc(40);
304
			v->ul = commit_list_count(commit->parents);
305 306 307 308
			sprintf(s, "%lu", v->ul);
			v->s = s;
		}
		else if (!strcmp(name, "parent")) {
309
			int num = commit_list_count(commit->parents);
310 311
			int i;
			struct commit_list *parents;
312
			char *s = xmalloc(41 * num + 1);
313 314 315
			v->s = s;
			for (i = 0, parents = commit->parents;
			     parents;
316
			     parents = parents->next, i = i + 41) {
317 318 319 320 321
				struct commit *parent = parents->item;
				strcpy(s+i, sha1_to_hex(parent->object.sha1));
				if (parents->next)
					s[i+40] = ' ';
			}
322 323
			if (!i)
				*s = '\0';
324 325 326 327 328 329 330 331 332 333 334 335 336 337 338
		}
	}
}

static const char *find_wholine(const char *who, int wholen, const char *buf, unsigned long sz)
{
	const char *eol;
	while (*buf) {
		if (!strncmp(buf, who, wholen) &&
		    buf[wholen] == ' ')
			return buf + wholen + 1;
		eol = strchr(buf, '\n');
		if (!eol)
			return "";
		eol++;
339
		if (*eol == '\n')
340 341 342 343 344 345
			return ""; /* end of header */
		buf = eol;
	}
	return "";
}

346
static const char *copy_line(const char *buf)
347
{
348
	const char *eol = strchrnul(buf, '\n');
P
Pierre Habouzit 已提交
349
	return xmemdupz(buf, eol - buf);
350 351
}

352
static const char *copy_name(const char *buf)
353
{
P
Pierre Habouzit 已提交
354
	const char *cp;
355
	for (cp = buf; *cp && *cp != '\n'; cp++) {
P
Pierre Habouzit 已提交
356 357 358 359
		if (!strncmp(cp, " <", 2))
			return xmemdupz(buf, cp - buf);
	}
	return "";
360 361
}

362
static const char *copy_email(const char *buf)
363 364
{
	const char *email = strchr(buf, '<');
365 366 367 368 369
	const char *eoemail;
	if (!email)
		return "";
	eoemail = strchr(email, '>');
	if (!eoemail)
370
		return "";
P
Pierre Habouzit 已提交
371
	return xmemdupz(email, eoemail + 1 - email);
372 373
}

374 375 376 377 378 379 380 381 382 383 384 385
static char *copy_subject(const char *buf, unsigned long len)
{
	char *r = xmemdupz(buf, len);
	int i;

	for (i = 0; i < len; i++)
		if (r[i] == '\n')
			r[i] = ' ';

	return r;
}

386
static void grab_date(const char *buf, struct atom_value *v, const char *atomname)
387 388 389 390 391
{
	const char *eoemail = strstr(buf, "> ");
	char *zone;
	unsigned long timestamp;
	long tz;
392 393 394 395 396 397 398 399 400 401 402 403 404 405
	enum date_mode date_mode = DATE_NORMAL;
	const char *formatp;

	/*
	 * We got here because atomname ends in "date" or "date<something>";
	 * it's not possible that <something> is not ":<format>" because
	 * parse_atom() wouldn't have allowed it, so we can assume that no
	 * ":" means no format is specified, and use the default.
	 */
	formatp = strchr(atomname, ':');
	if (formatp != NULL) {
		formatp++;
		date_mode = parse_date_format(formatp);
	}
406 407 408 409 410 411 412 413 414

	if (!eoemail)
		goto bad;
	timestamp = strtoul(eoemail + 2, &zone, 10);
	if (timestamp == ULONG_MAX)
		goto bad;
	tz = strtol(zone, NULL, 10);
	if ((tz == LONG_MIN || tz == LONG_MAX) && errno == ERANGE)
		goto bad;
415
	v->s = xstrdup(show_date(timestamp, tz, date_mode));
416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441
	v->ul = timestamp;
	return;
 bad:
	v->s = "";
	v->ul = 0;
}

/* See grab_values */
static void grab_person(const char *who, struct atom_value *val, int deref, struct object *obj, void *buf, unsigned long sz)
{
	int i;
	int wholen = strlen(who);
	const char *wholine = NULL;

	for (i = 0; i < used_atom_cnt; i++) {
		const char *name = used_atom[i];
		struct atom_value *v = &val[i];
		if (!!deref != (*name == '*'))
			continue;
		if (deref)
			name++;
		if (strncmp(who, name, wholen))
			continue;
		if (name[wholen] != 0 &&
		    strcmp(name + wholen, "name") &&
		    strcmp(name + wholen, "email") &&
442
		    !starts_with(name + wholen, "date"))
443 444 445 446 447 448 449 450 451 452 453
			continue;
		if (!wholine)
			wholine = find_wholine(who, wholen, buf, sz);
		if (!wholine)
			return; /* no point looking for it */
		if (name[wholen] == 0)
			v->s = copy_line(wholine);
		else if (!strcmp(name + wholen, "name"))
			v->s = copy_name(wholine);
		else if (!strcmp(name + wholen, "email"))
			v->s = copy_email(wholine);
454
		else if (starts_with(name + wholen, "date"))
455
			grab_date(wholine, v, name);
456
	}
457

458 459
	/*
	 * For a tag or a commit object, if "creator" or "creatordate" is
460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475
	 * requested, do something special.
	 */
	if (strcmp(who, "tagger") && strcmp(who, "committer"))
		return; /* "author" for commit object is not wanted */
	if (!wholine)
		wholine = find_wholine(who, wholen, buf, sz);
	if (!wholine)
		return;
	for (i = 0; i < used_atom_cnt; i++) {
		const char *name = used_atom[i];
		struct atom_value *v = &val[i];
		if (!!deref != (*name == '*'))
			continue;
		if (deref)
			name++;

476
		if (starts_with(name, "creatordate"))
477
			grab_date(wholine, v, name);
478 479 480
		else if (!strcmp(name, "creator"))
			v->s = copy_line(wholine);
	}
481 482
}

483 484
static void find_subpos(const char *buf, unsigned long sz,
			const char **sub, unsigned long *sublen,
485 486 487
			const char **body, unsigned long *bodylen,
			unsigned long *nonsiglen,
			const char **sig, unsigned long *siglen)
488
{
489 490 491 492 493 494 495
	const char *eol;
	/* skip past header until we hit empty line */
	while (*buf && *buf != '\n') {
		eol = strchrnul(buf, '\n');
		if (*eol)
			eol++;
		buf = eol;
496
	}
497
	/* skip any empty lines */
498 499
	while (*buf == '\n')
		buf++;
500

501 502 503 504
	/* parse signature first; we might not even have a subject line */
	*sig = buf + parse_signature(buf, strlen(buf));
	*siglen = strlen(*sig);

505 506
	/* subject is first non-empty line */
	*sub = buf;
507
	/* subject goes to first empty line */
508
	while (buf < *sig && *buf && *buf != '\n') {
509 510 511 512 513 514 515 516 517
		eol = strchrnul(buf, '\n');
		if (*eol)
			eol++;
		buf = eol;
	}
	*sublen = buf - *sub;
	/* drop trailing newline, if present */
	if (*sublen && (*sub)[*sublen - 1] == '\n')
		*sublen -= 1;
518 519

	/* skip any empty lines */
520
	while (*buf == '\n')
521
		buf++;
522
	*body = buf;
523
	*bodylen = strlen(buf);
524
	*nonsiglen = *sig - buf;
525 526 527 528 529 530
}

/* See grab_values */
static void grab_sub_body_contents(struct atom_value *val, int deref, struct object *obj, void *buf, unsigned long sz)
{
	int i;
531 532
	const char *subpos = NULL, *bodypos = NULL, *sigpos = NULL;
	unsigned long sublen = 0, bodylen = 0, nonsiglen = 0, siglen = 0;
533 534 535 536 537 538 539 540 541 542

	for (i = 0; i < used_atom_cnt; i++) {
		const char *name = used_atom[i];
		struct atom_value *v = &val[i];
		if (!!deref != (*name == '*'))
			continue;
		if (deref)
			name++;
		if (strcmp(name, "subject") &&
		    strcmp(name, "body") &&
543 544 545 546
		    strcmp(name, "contents") &&
		    strcmp(name, "contents:subject") &&
		    strcmp(name, "contents:body") &&
		    strcmp(name, "contents:signature"))
547 548
			continue;
		if (!subpos)
549 550
			find_subpos(buf, sz,
				    &subpos, &sublen,
551 552
				    &bodypos, &bodylen, &nonsiglen,
				    &sigpos, &siglen);
553 554

		if (!strcmp(name, "subject"))
555
			v->s = copy_subject(subpos, sublen);
556 557
		else if (!strcmp(name, "contents:subject"))
			v->s = copy_subject(subpos, sublen);
558
		else if (!strcmp(name, "body"))
559
			v->s = xmemdupz(bodypos, bodylen);
560 561 562 563
		else if (!strcmp(name, "contents:body"))
			v->s = xmemdupz(bodypos, nonsiglen);
		else if (!strcmp(name, "contents:signature"))
			v->s = xmemdupz(sigpos, siglen);
564
		else if (!strcmp(name, "contents"))
565
			v->s = xstrdup(subpos);
566 567 568
	}
}

569 570
/*
 * We want to have empty print-string for field requests
571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605
 * that do not apply (e.g. "authordate" for a tag object)
 */
static void fill_missing_values(struct atom_value *val)
{
	int i;
	for (i = 0; i < used_atom_cnt; i++) {
		struct atom_value *v = &val[i];
		if (v->s == NULL)
			v->s = "";
	}
}

/*
 * val is a list of atom_value to hold returned values.  Extract
 * the values for atoms in used_atom array out of (obj, buf, sz).
 * when deref is false, (obj, buf, sz) is the object that is
 * pointed at by the ref itself; otherwise it is the object the
 * ref (which is a tag) refers to.
 */
static void grab_values(struct atom_value *val, int deref, struct object *obj, void *buf, unsigned long sz)
{
	grab_common_values(val, deref, obj, buf, sz);
	switch (obj->type) {
	case OBJ_TAG:
		grab_tag_values(val, deref, obj, buf, sz);
		grab_sub_body_contents(val, deref, obj, buf, sz);
		grab_person("tagger", val, deref, obj, buf, sz);
		break;
	case OBJ_COMMIT:
		grab_commit_values(val, deref, obj, buf, sz);
		grab_sub_body_contents(val, deref, obj, buf, sz);
		grab_person("author", val, deref, obj, buf, sz);
		grab_person("committer", val, deref, obj, buf, sz);
		break;
	case OBJ_TREE:
606
		/* grab_tree_values(val, deref, obj, buf, sz); */
607 608
		break;
	case OBJ_BLOB:
609
		/* grab_blob_values(val, deref, obj, buf, sz); */
610 611 612 613 614 615
		break;
	default:
		die("Eh?  Object of type %d?", obj->type);
	}
}

J
Junio C Hamano 已提交
616 617 618 619 620 621 622
static inline char *copy_advance(char *dst, const char *src)
{
	while (*src)
		*dst++ = *src++;
	return dst;
}

623 624 625
/*
 * Parse the object referred by ref, and grab needed value.
 */
626
static void populate_value(struct ref_array_item *ref)
627 628 629 630 631 632 633
{
	void *buf;
	struct object *obj;
	int eaten, i;
	unsigned long size;
	const unsigned char *tagged;

634
	ref->value = xcalloc(used_atom_cnt, sizeof(struct atom_value));
635

636 637
	if (need_symref && (ref->flag & REF_ISSYMREF) && !ref->symref) {
		unsigned char unused1[20];
638 639
		ref->symref = resolve_refdup(ref->refname, RESOLVE_REF_READING,
					     unused1, NULL);
640
		if (!ref->symref)
641 642 643
			ref->symref = "";
	}

644 645 646 647
	/* Fill in specials first */
	for (i = 0; i < used_atom_cnt; i++) {
		const char *name = used_atom[i];
		struct atom_value *v = &ref->value[i];
648
		int deref = 0;
649 650
		const char *refname;
		const char *formatp;
651
		struct branch *branch = NULL;
652

653 654 655 656 657
		if (*name == '*') {
			deref = 1;
			name++;
		}

658
		if (starts_with(name, "refname"))
659
			refname = ref->refname;
660
		else if (starts_with(name, "symref"))
661
			refname = ref->symref ? ref->symref : "";
662
		else if (starts_with(name, "upstream")) {
663
			const char *branch_name;
664
			/* only local branches may have an upstream */
665 666
			if (!skip_prefix(ref->refname, "refs/heads/",
					 &branch_name))
667
				continue;
668
			branch = branch_get(branch_name);
669

670
			refname = branch_get_upstream(branch, NULL);
671
			if (!refname)
672
				continue;
673 674 675 676 677 678 679 680 681 682
		} else if (starts_with(name, "push")) {
			const char *branch_name;
			if (!skip_prefix(ref->refname, "refs/heads/",
					 &branch_name))
				continue;
			branch = branch_get(branch_name);

			refname = branch_get_push(branch, NULL);
			if (!refname)
				continue;
683
		} else if (starts_with(name, "color:")) {
684 685
			char color[COLOR_MAXLEN] = "";

686 687
			if (color_parse(name + 6, color) < 0)
				die(_("unable to parse format"));
688 689 690
			v->s = xstrdup(color);
			continue;
		} else if (!strcmp(name, "flag")) {
J
Junio C Hamano 已提交
691 692 693 694 695 696 697 698 699 700 701 702
			char buf[256], *cp = buf;
			if (ref->flag & REF_ISSYMREF)
				cp = copy_advance(cp, ",symref");
			if (ref->flag & REF_ISPACKED)
				cp = copy_advance(cp, ",packed");
			if (cp == buf)
				v->s = "";
			else {
				*cp = '\0';
				v->s = xstrdup(buf + 1);
			}
			continue;
703
		} else if (!deref && grab_objectname(name, ref->objectname, v)) {
704
			continue;
705 706 707
		} else if (!strcmp(name, "HEAD")) {
			const char *head;
			unsigned char sha1[20];
708

709 710
			head = resolve_ref_unsafe("HEAD", RESOLVE_REF_READING,
						  sha1, NULL);
711 712 713 714 715 716
			if (!strcmp(ref->refname, head))
				v->s = "*";
			else
				v->s = " ";
			continue;
		} else
717 718 719 720
			continue;

		formatp = strchr(name, ':');
		if (formatp) {
721 722
			int num_ours, num_theirs;

723 724
			formatp++;
			if (!strcmp(formatp, "short"))
725 726
				refname = shorten_unambiguous_ref(refname,
						      warn_ambiguous_refs);
727
			else if (!strcmp(formatp, "track") &&
728 729
				 (starts_with(name, "upstream") ||
				  starts_with(name, "push"))) {
730 731
				char buf[40];

732
				if (stat_tracking_info(branch, &num_ours,
733
						       &num_theirs, NULL))
734 735
					continue;

736 737 738 739 740 741 742 743 744 745 746 747 748 749 750
				if (!num_ours && !num_theirs)
					v->s = "";
				else if (!num_ours) {
					sprintf(buf, "[behind %d]", num_theirs);
					v->s = xstrdup(buf);
				} else if (!num_theirs) {
					sprintf(buf, "[ahead %d]", num_ours);
					v->s = xstrdup(buf);
				} else {
					sprintf(buf, "[ahead %d, behind %d]",
						num_ours, num_theirs);
					v->s = xstrdup(buf);
				}
				continue;
			} else if (!strcmp(formatp, "trackshort") &&
751 752
				   (starts_with(name, "upstream") ||
				    starts_with(name, "push"))) {
753
				assert(branch);
754 755

				if (stat_tracking_info(branch, &num_ours,
756
							&num_theirs, NULL))
757 758
					continue;

759 760 761 762 763 764 765 766 767 768
				if (!num_ours && !num_theirs)
					v->s = "=";
				else if (!num_ours)
					v->s = "<";
				else if (!num_theirs)
					v->s = ">";
				else
					v->s = "<>";
				continue;
			} else
769 770 771 772 773 774 775 776 777 778 779
				die("unknown %.*s format %s",
				    (int)(formatp - name), name, formatp);
		}

		if (!deref)
			v->s = refname;
		else {
			int len = strlen(refname);
			char *s = xmalloc(len + 4);
			sprintf(s, "%s^{}", refname);
			v->s = s;
780 781 782
		}
	}

783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798
	for (i = 0; i < used_atom_cnt; i++) {
		struct atom_value *v = &ref->value[i];
		if (v->s == NULL)
			goto need_obj;
	}
	return;

 need_obj:
	buf = get_obj(ref->objectname, &obj, &size, &eaten);
	if (!buf)
		die("missing object %s for %s",
		    sha1_to_hex(ref->objectname), ref->refname);
	if (!obj)
		die("parse_object_buffer failed on %s for %s",
		    sha1_to_hex(ref->objectname), ref->refname);

799 800 801 802
	grab_values(ref->value, 0, obj, buf, size);
	if (!eaten)
		free(buf);

803 804
	/*
	 * If there is no atom that wants to know about tagged
805 806 807 808 809
	 * object, we are done.
	 */
	if (!need_tagged || (obj->type != OBJ_TAG))
		return;

810 811
	/*
	 * If it is a tag object, see if we use a value that derefs
812 813 814 815
	 * the object, and if we do grab the object it refers to.
	 */
	tagged = ((struct tag *)obj)->tagged->sha1;

816 817
	/*
	 * NEEDSWORK: This derefs tag only once, which
818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837
	 * is good to deal with chains of trust, but
	 * is not consistent with what deref_tag() does
	 * which peels the onion to the core.
	 */
	buf = get_obj(tagged, &obj, &size, &eaten);
	if (!buf)
		die("missing object %s for %s",
		    sha1_to_hex(tagged), ref->refname);
	if (!obj)
		die("parse_object_buffer failed on %s for %s",
		    sha1_to_hex(tagged), ref->refname);
	grab_values(ref->value, 1, obj, buf, size);
	if (!eaten)
		free(buf);
}

/*
 * Given a ref, return the value for the atom.  This lazily gets value
 * out of the object by calling populate value.
 */
838
static void get_value(struct ref_array_item *ref, int atom, struct atom_value **v)
839 840 841 842 843 844 845 846
{
	if (!ref->value) {
		populate_value(ref);
		fill_missing_values(ref->value);
	}
	*v = &ref->value[atom];
}

847
struct grab_ref_cbdata {
848
	struct ref_array_item **grab_array;
849 850 851
	const char **grab_pattern;
	int grab_cnt;
};
852

853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877
/*
 * Return 1 if the refname matches one of the patterns, otherwise 0.
 * A pattern can be path prefix (e.g. a refname "refs/heads/master"
 * matches a pattern "refs/heads/") or a wildcard (e.g. the same ref
 * matches "refs/heads/m*",too).
 */
static int match_name_as_path(const char **pattern, const char *refname)
{
	int namelen = strlen(refname);
	for (; *pattern; pattern++) {
		const char *p = *pattern;
		int plen = strlen(p);

		if ((plen <= namelen) &&
		    !strncmp(refname, p, plen) &&
		    (refname[plen] == '\0' ||
		     refname[plen] == '/' ||
		     p[plen-1] == '/'))
			return 1;
		if (!wildmatch(p, refname, WM_PATHNAME, NULL))
			return 1;
	}
	return 0;
}

878 879 880 881
/* Allocate space for a new ref_array_item and copy the objectname and flag to it */
static struct ref_array_item *new_ref_array_item(const char *refname,
						 const unsigned char *objectname,
						 int flag)
882
{
883
	struct ref_array_item *ref = xcalloc(1, sizeof(struct ref_array_item));
884 885 886 887 888 889 890
	ref->refname = xstrdup(refname);
	hashcpy(ref->objectname, objectname);
	ref->flag = flag;

	return ref;
}

891
/*
892 893
 * A call-back given to for_each_ref().  Filter refs and keep them for
 * later object processing.
894
 */
895 896
static int grab_single_ref(const char *refname, const struct object_id *oid,
			   int flag, void *cb_data)
897
{
898
	struct grab_ref_cbdata *cb = cb_data;
899
	struct ref_array_item *ref;
900

901 902 903 904 905
	if (flag & REF_BAD_NAME) {
		  warning("ignoring ref with broken name %s", refname);
		  return 0;
	}

906 907
	if (*cb->grab_pattern && !match_name_as_path(cb->grab_pattern, refname))
		return 0;
908

909 910
	/*
	 * We do not open the object yet; sort may only need refname
911 912 913
	 * to do its job and the resulting list may yet to be pruned
	 * by maxcount logic.
	 */
914
	ref = new_ref_array_item(refname, oid->hash, flag);
915

K
Karthik Nayak 已提交
916 917
	REALLOC_ARRAY(cb->grab_array, cb->grab_cnt + 1);
	cb->grab_array[cb->grab_cnt++] = ref;
918 919 920
	return 0;
}

921
static int cmp_ref_sort(struct ref_sort *s, struct ref_array_item *a, struct ref_array_item *b)
922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947
{
	struct atom_value *va, *vb;
	int cmp;
	cmp_type cmp_type = used_atom_type[s->atom];

	get_value(a, s->atom, &va);
	get_value(b, s->atom, &vb);
	switch (cmp_type) {
	case FIELD_STR:
		cmp = strcmp(va->s, vb->s);
		break;
	default:
		if (va->ul < vb->ul)
			cmp = -1;
		else if (va->ul == vb->ul)
			cmp = 0;
		else
			cmp = 1;
		break;
	}
	return (s->reverse) ? -cmp : cmp;
}

static struct ref_sort *ref_sort;
static int compare_refs(const void *a_, const void *b_)
{
948 949
	struct ref_array_item *a = *((struct ref_array_item **)a_);
	struct ref_array_item *b = *((struct ref_array_item **)b_);
950 951 952 953 954 955 956 957 958 959
	struct ref_sort *s;

	for (s = ref_sort; s; s = s->next) {
		int cmp = cmp_ref_sort(s, a, b);
		if (cmp)
			return cmp;
	}
	return 0;
}

960
static void sort_refs(struct ref_sort *sort, struct ref_array_item **refs, int num_refs)
961 962
{
	ref_sort = sort;
963
	qsort(refs, num_refs, sizeof(struct ref_array_item *), compare_refs);
964 965
}

966
static void print_value(struct atom_value *v, int quote_style)
967
{
968
	struct strbuf sb = STRBUF_INIT;
969 970 971 972 973
	switch (quote_style) {
	case QUOTE_NONE:
		fputs(v->s, stdout);
		break;
	case QUOTE_SHELL:
974
		sq_quote_buf(&sb, v->s);
975 976
		break;
	case QUOTE_PERL:
977
		perl_quote_buf(&sb, v->s);
978 979
		break;
	case QUOTE_PYTHON:
980
		python_quote_buf(&sb, v->s);
981
		break;
982
	case QUOTE_TCL:
983
		tcl_quote_buf(&sb, v->s);
984
		break;
985
	}
986 987 988 989
	if (quote_style != QUOTE_NONE) {
		fputs(sb.buf, stdout);
		strbuf_release(&sb);
	}
990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029
}

static int hex1(char ch)
{
	if ('0' <= ch && ch <= '9')
		return ch - '0';
	else if ('a' <= ch && ch <= 'f')
		return ch - 'a' + 10;
	else if ('A' <= ch && ch <= 'F')
		return ch - 'A' + 10;
	return -1;
}
static int hex2(const char *cp)
{
	if (cp[0] && cp[1])
		return (hex1(cp[0]) << 4) | hex1(cp[1]);
	else
		return -1;
}

static void emit(const char *cp, const char *ep)
{
	while (*cp && (!ep || cp < ep)) {
		if (*cp == '%') {
			if (cp[1] == '%')
				cp++;
			else {
				int ch = hex2(cp + 1);
				if (0 <= ch) {
					putchar(ch);
					cp += 3;
					continue;
				}
			}
		}
		putchar(*cp);
		cp++;
	}
}

1030
static void show_ref(struct ref_array_item *info, const char *format, int quote_style)
1031 1032 1033 1034
{
	const char *cp, *sp, *ep;

	for (cp = format; *cp && (sp = find_next(cp)); cp = ep + 1) {
1035 1036
		struct atom_value *atomv;

1037 1038 1039
		ep = strchr(sp, ')');
		if (cp < sp)
			emit(cp, sp);
1040 1041
		get_value(info, parse_atom(sp + 2, ep), &atomv);
		print_value(atomv, quote_style);
1042 1043 1044 1045 1046
	}
	if (*cp) {
		sp = cp + strlen(cp);
		emit(cp, sp);
	}
1047 1048 1049 1050
	if (need_color_reset_at_eol) {
		struct atom_value resetv;
		char color[COLOR_MAXLEN] = "";

1051 1052
		if (color_parse("reset", color) < 0)
			die("BUG: couldn't parse 'reset' as a color");
1053 1054 1055
		resetv.s = color;
		print_value(&resetv, quote_style);
	}
1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069
	putchar('\n');
}

static struct ref_sort *default_sort(void)
{
	static const char cstr_name[] = "refname";

	struct ref_sort *sort = xcalloc(1, sizeof(*sort));

	sort->next = NULL;
	sort->atom = parse_atom(cstr_name, cstr_name + strlen(cstr_name));
	return sort;
}

1070
static int opt_parse_sort(const struct option *opt, const char *arg, int unset)
1071 1072 1073 1074 1075 1076 1077 1078
{
	struct ref_sort **sort_tail = opt->value;
	struct ref_sort *s;
	int len;

	if (!arg) /* should --no-sort void the list ? */
		return -1;

1079 1080 1081
	s = xcalloc(1, sizeof(*s));
	s->next = *sort_tail;
	*sort_tail = s;
1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092

	if (*arg == '-') {
		s->reverse = 1;
		arg++;
	}
	len = strlen(arg);
	s->atom = parse_atom(arg, arg+len);
	return 0;
}

static char const * const for_each_ref_usage[] = {
1093
	N_("git for-each-ref [<options>] [<pattern>]"),
1094 1095 1096 1097
	NULL
};

int cmd_for_each_ref(int argc, const char **argv, const char *prefix)
1098 1099
{
	int i, num_refs;
1100
	const char *format = "%(objectname) %(objecttype)\t%(refname)";
1101
	struct ref_sort *sort = NULL, **sort_tail = &sort;
1102
	int maxcount = 0, quote_style = 0;
1103
	struct ref_array_item **refs;
1104
	struct grab_ref_cbdata cbdata;
1105

1106
	struct option opts[] = {
1107
		OPT_BIT('s', "shell", &quote_style,
1108
			N_("quote placeholders suitably for shells"), QUOTE_SHELL),
1109
		OPT_BIT('p', "perl",  &quote_style,
1110
			N_("quote placeholders suitably for perl"), QUOTE_PERL),
1111
		OPT_BIT(0 , "python", &quote_style,
1112
			N_("quote placeholders suitably for python"), QUOTE_PYTHON),
1113
		OPT_BIT(0 , "tcl",  &quote_style,
1114
			N_("quote placeholders suitably for Tcl"), QUOTE_TCL),
1115 1116

		OPT_GROUP(""),
1117 1118 1119 1120
		OPT_INTEGER( 0 , "count", &maxcount, N_("show only <n> matched refs")),
		OPT_STRING(  0 , "format", &format, N_("format"), N_("format to use for the output")),
		OPT_CALLBACK(0 , "sort", sort_tail, N_("key"),
			    N_("field name to sort on"), &opt_parse_sort),
1121 1122 1123
		OPT_END(),
	};

1124
	parse_options(argc, argv, prefix, opts, for_each_ref_usage, 0);
1125 1126 1127
	if (maxcount < 0) {
		error("invalid --count argument: `%d'", maxcount);
		usage_with_options(for_each_ref_usage, opts);
1128
	}
1129
	if (HAS_MULTI_BITS(quote_style)) {
1130
		error("more than one quoting style?");
1131 1132 1133 1134
		usage_with_options(for_each_ref_usage, opts);
	}
	if (verify_format(format))
		usage_with_options(for_each_ref_usage, opts);
1135 1136 1137 1138

	if (!sort)
		sort = default_sort();

1139 1140 1141
	/* for warn_ambiguous_refs */
	git_config(git_default_config, NULL);

1142
	memset(&cbdata, 0, sizeof(cbdata));
1143
	cbdata.grab_pattern = argv;
1144
	for_each_rawref(grab_single_ref, &cbdata);
1145 1146
	refs = cbdata.grab_array;
	num_refs = cbdata.grab_cnt;
1147 1148 1149 1150 1151 1152 1153 1154 1155

	sort_refs(sort, refs, num_refs);

	if (!maxcount || num_refs < maxcount)
		maxcount = num_refs;
	for (i = 0; i < maxcount; i++)
		show_ref(refs[i], format, quote_style);
	return 0;
}