10 #include "parse-options.h"
17 #define QUOTE_PYTHON 4
20 typedef enum { FIELD_STR, FIELD_ULONG, FIELD_TIME } cmp_type;
24 unsigned long ul; /* used for sorting when not FIELD_STR */
28 struct ref_sort *next;
29 int atom; /* index into used_atom array */
35 unsigned char objectname[20];
36 struct atom_value *value;
45 { "objectsize", FIELD_ULONG },
49 { "numparent", FIELD_ULONG },
56 { "authordate", FIELD_TIME },
60 { "committerdate", FIELD_TIME },
64 { "taggerdate", FIELD_TIME },
66 { "creatordate", FIELD_TIME },
74 * An atom is a valid field atom listed above, possibly prefixed with
75 * a "*" to denote deref_tag().
77 * We parse given format string and sort specifiers, and make a list
78 * of properties that we need to extract out of objects. refinfo
79 * structure will hold an array of values extracted that can be
80 * indexed with the "atom number", which is an index into this
83 static const char **used_atom;
84 static cmp_type *used_atom_type;
85 static int used_atom_cnt, sort_atom_limit, need_tagged;
88 * Used to parse format string and sort specifiers
90 static int parse_atom(const char *atom, const char *ep)
96 if (*sp == '*' && sp < ep)
99 die("malformed field name: %.*s", (int)(ep-atom), atom);
101 /* Do we have the atom already used elsewhere? */
102 for (i = 0; i < used_atom_cnt; i++) {
103 int len = strlen(used_atom[i]);
104 if (len == ep - atom && !memcmp(used_atom[i], atom, len))
108 /* Is the atom a valid one? */
109 for (i = 0; i < ARRAY_SIZE(valid_atom); i++) {
110 int len = strlen(valid_atom[i].name);
112 * If the atom name has a colon, strip it and everything after
113 * it off - it specifies the format for this entry, and
114 * shouldn't be used for checking against the valid_atom
117 const char *formatp = strchr(sp, ':');
118 if (!formatp || ep < formatp)
120 if (len == formatp - sp && !memcmp(valid_atom[i].name, sp, len))
124 if (ARRAY_SIZE(valid_atom) <= i)
125 die("unknown field name: %.*s", (int)(ep-atom), atom);
127 /* Add it in, including the deref prefix */
130 used_atom = xrealloc(used_atom,
131 (sizeof *used_atom) * used_atom_cnt);
132 used_atom_type = xrealloc(used_atom_type,
133 (sizeof(*used_atom_type) * used_atom_cnt));
134 used_atom[at] = xmemdupz(atom, ep - atom);
135 used_atom_type[at] = valid_atom[i].cmp_type;
140 * In a format string, find the next occurrence of %(atom).
142 static const char *find_next(const char *cp)
146 /* %( is the start of an atom;
147 * %% is a quoted per-cent.
151 else if (cp[1] == '%')
152 cp++; /* skip over two % */
153 /* otherwise this is a singleton, literal % */
161 * Make sure the format string is well formed, and parse out
164 static int verify_format(const char *format)
167 for (cp = format; *cp && (sp = find_next(cp)); ) {
168 const char *ep = strchr(sp, ')');
170 return error("malformed format string %s", sp);
171 /* sp points at "%(" and ep points at the closing ")" */
172 parse_atom(sp + 2, ep);
179 * Given an object name, read the object data and size, and return a
180 * "struct object". If the object data we are returning is also borrowed
181 * by the "struct object" representation, set *eaten as well---it is a
182 * signal from parse_object_buffer to us not to free the buffer.
184 static void *get_obj(const unsigned char *sha1, struct object **obj, unsigned long *sz, int *eaten)
186 enum object_type type;
187 void *buf = read_sha1_file(sha1, &type, sz);
190 *obj = parse_object_buffer(sha1, type, *sz, buf, eaten);
196 /* See grab_values */
197 static void grab_common_values(struct atom_value *val, int deref, struct object *obj, void *buf, unsigned long sz)
201 for (i = 0; i < used_atom_cnt; i++) {
202 const char *name = used_atom[i];
203 struct atom_value *v = &val[i];
204 if (!!deref != (*name == '*'))
208 if (!strcmp(name, "objecttype"))
209 v->s = typename(obj->type);
210 else if (!strcmp(name, "objectsize")) {
211 char *s = xmalloc(40);
212 sprintf(s, "%lu", sz);
216 else if (!strcmp(name, "objectname")) {
217 char *s = xmalloc(41);
218 strcpy(s, sha1_to_hex(obj->sha1));
224 /* See grab_values */
225 static void grab_tag_values(struct atom_value *val, int deref, struct object *obj, void *buf, unsigned long sz)
228 struct tag *tag = (struct tag *) obj;
230 for (i = 0; i < used_atom_cnt; i++) {
231 const char *name = used_atom[i];
232 struct atom_value *v = &val[i];
233 if (!!deref != (*name == '*'))
237 if (!strcmp(name, "tag"))
239 else if (!strcmp(name, "type") && tag->tagged)
240 v->s = typename(tag->tagged->type);
241 else if (!strcmp(name, "object") && tag->tagged) {
242 char *s = xmalloc(41);
243 strcpy(s, sha1_to_hex(tag->tagged->sha1));
249 static int num_parents(struct commit *commit)
251 struct commit_list *parents;
254 for (i = 0, parents = commit->parents;
256 parents = parents->next)
261 /* See grab_values */
262 static void grab_commit_values(struct atom_value *val, int deref, struct object *obj, void *buf, unsigned long sz)
265 struct commit *commit = (struct commit *) obj;
267 for (i = 0; i < used_atom_cnt; i++) {
268 const char *name = used_atom[i];
269 struct atom_value *v = &val[i];
270 if (!!deref != (*name == '*'))
274 if (!strcmp(name, "tree")) {
275 char *s = xmalloc(41);
276 strcpy(s, sha1_to_hex(commit->tree->object.sha1));
279 if (!strcmp(name, "numparent")) {
280 char *s = xmalloc(40);
281 v->ul = num_parents(commit);
282 sprintf(s, "%lu", v->ul);
285 else if (!strcmp(name, "parent")) {
286 int num = num_parents(commit);
288 struct commit_list *parents;
289 char *s = xmalloc(41 * num + 1);
291 for (i = 0, parents = commit->parents;
293 parents = parents->next, i = i + 41) {
294 struct commit *parent = parents->item;
295 strcpy(s+i, sha1_to_hex(parent->object.sha1));
305 static const char *find_wholine(const char *who, int wholen, const char *buf, unsigned long sz)
309 if (!strncmp(buf, who, wholen) &&
311 return buf + wholen + 1;
312 eol = strchr(buf, '\n');
317 return ""; /* end of header */
323 static const char *copy_line(const char *buf)
325 const char *eol = strchrnul(buf, '\n');
326 return xmemdupz(buf, eol - buf);
329 static const char *copy_name(const char *buf)
332 for (cp = buf; *cp && *cp != '\n'; cp++) {
333 if (!strncmp(cp, " <", 2))
334 return xmemdupz(buf, cp - buf);
339 static const char *copy_email(const char *buf)
341 const char *email = strchr(buf, '<');
345 eoemail = strchr(email, '>');
348 return xmemdupz(email, eoemail + 1 - email);
351 static void grab_date(const char *buf, struct atom_value *v, const char *atomname)
353 const char *eoemail = strstr(buf, "> ");
355 unsigned long timestamp;
357 enum date_mode date_mode = DATE_NORMAL;
361 * We got here because atomname ends in "date" or "date<something>";
362 * it's not possible that <something> is not ":<format>" because
363 * parse_atom() wouldn't have allowed it, so we can assume that no
364 * ":" means no format is specified, and use the default.
366 formatp = strchr(atomname, ':');
367 if (formatp != NULL) {
369 date_mode = parse_date_format(formatp);
374 timestamp = strtoul(eoemail + 2, &zone, 10);
375 if (timestamp == ULONG_MAX)
377 tz = strtol(zone, NULL, 10);
378 if ((tz == LONG_MIN || tz == LONG_MAX) && errno == ERANGE)
380 v->s = xstrdup(show_date(timestamp, tz, date_mode));
388 /* See grab_values */
389 static void grab_person(const char *who, struct atom_value *val, int deref, struct object *obj, void *buf, unsigned long sz)
392 int wholen = strlen(who);
393 const char *wholine = NULL;
395 for (i = 0; i < used_atom_cnt; i++) {
396 const char *name = used_atom[i];
397 struct atom_value *v = &val[i];
398 if (!!deref != (*name == '*'))
402 if (strncmp(who, name, wholen))
404 if (name[wholen] != 0 &&
405 strcmp(name + wholen, "name") &&
406 strcmp(name + wholen, "email") &&
407 prefixcmp(name + wholen, "date"))
410 wholine = find_wholine(who, wholen, buf, sz);
412 return; /* no point looking for it */
413 if (name[wholen] == 0)
414 v->s = copy_line(wholine);
415 else if (!strcmp(name + wholen, "name"))
416 v->s = copy_name(wholine);
417 else if (!strcmp(name + wholen, "email"))
418 v->s = copy_email(wholine);
419 else if (!prefixcmp(name + wholen, "date"))
420 grab_date(wholine, v, name);
423 /* For a tag or a commit object, if "creator" or "creatordate" is
424 * requested, do something special.
426 if (strcmp(who, "tagger") && strcmp(who, "committer"))
427 return; /* "author" for commit object is not wanted */
429 wholine = find_wholine(who, wholen, buf, sz);
432 for (i = 0; i < used_atom_cnt; i++) {
433 const char *name = used_atom[i];
434 struct atom_value *v = &val[i];
435 if (!!deref != (*name == '*'))
440 if (!prefixcmp(name, "creatordate"))
441 grab_date(wholine, v, name);
442 else if (!strcmp(name, "creator"))
443 v->s = copy_line(wholine);
447 static void find_subpos(const char *buf, unsigned long sz, const char **sub, const char **body)
450 const char *eol = strchr(buf, '\n');
453 if (eol[1] == '\n') {
455 break; /* found end of header */
463 *sub = buf; /* first non-empty line */
464 buf = strchr(buf, '\n');
467 return; /* no body */
470 buf++; /* skip blank between subject and body */
474 /* See grab_values */
475 static void grab_sub_body_contents(struct atom_value *val, int deref, struct object *obj, void *buf, unsigned long sz)
478 const char *subpos = NULL, *bodypos = NULL;
480 for (i = 0; i < used_atom_cnt; i++) {
481 const char *name = used_atom[i];
482 struct atom_value *v = &val[i];
483 if (!!deref != (*name == '*'))
487 if (strcmp(name, "subject") &&
488 strcmp(name, "body") &&
489 strcmp(name, "contents"))
492 find_subpos(buf, sz, &subpos, &bodypos);
496 if (!strcmp(name, "subject"))
497 v->s = copy_line(subpos);
498 else if (!strcmp(name, "body"))
499 v->s = xstrdup(bodypos);
500 else if (!strcmp(name, "contents"))
501 v->s = xstrdup(subpos);
505 /* We want to have empty print-string for field requests
506 * that do not apply (e.g. "authordate" for a tag object)
508 static void fill_missing_values(struct atom_value *val)
511 for (i = 0; i < used_atom_cnt; i++) {
512 struct atom_value *v = &val[i];
519 * val is a list of atom_value to hold returned values. Extract
520 * the values for atoms in used_atom array out of (obj, buf, sz).
521 * when deref is false, (obj, buf, sz) is the object that is
522 * pointed at by the ref itself; otherwise it is the object the
523 * ref (which is a tag) refers to.
525 static void grab_values(struct atom_value *val, int deref, struct object *obj, void *buf, unsigned long sz)
527 grab_common_values(val, deref, obj, buf, sz);
530 grab_tag_values(val, deref, obj, buf, sz);
531 grab_sub_body_contents(val, deref, obj, buf, sz);
532 grab_person("tagger", val, deref, obj, buf, sz);
535 grab_commit_values(val, deref, obj, buf, sz);
536 grab_sub_body_contents(val, deref, obj, buf, sz);
537 grab_person("author", val, deref, obj, buf, sz);
538 grab_person("committer", val, deref, obj, buf, sz);
541 // grab_tree_values(val, deref, obj, buf, sz);
544 // grab_blob_values(val, deref, obj, buf, sz);
547 die("Eh? Object of type %d?", obj->type);
552 * Parse the object referred by ref, and grab needed value.
554 static void populate_value(struct refinfo *ref)
560 const unsigned char *tagged;
562 ref->value = xcalloc(sizeof(struct atom_value), used_atom_cnt);
564 buf = get_obj(ref->objectname, &obj, &size, &eaten);
566 die("missing object %s for %s",
567 sha1_to_hex(ref->objectname), ref->refname);
569 die("parse_object_buffer failed on %s for %s",
570 sha1_to_hex(ref->objectname), ref->refname);
572 /* Fill in specials first */
573 for (i = 0; i < used_atom_cnt; i++) {
574 const char *name = used_atom[i];
575 struct atom_value *v = &ref->value[i];
585 if (!prefixcmp(name, "refname"))
586 refname = ref->refname;
587 else if(!prefixcmp(name, "upstream")) {
588 struct branch *branch;
589 /* only local branches may have an upstream */
590 if (prefixcmp(ref->refname, "refs/heads/"))
592 branch = branch_get(ref->refname + 11);
594 if (!branch || !branch->merge || !branch->merge[0] ||
595 !branch->merge[0]->dst)
597 refname = branch->merge[0]->dst;
602 formatp = strchr(name, ':');
603 /* look for "short" refname format */
606 if (!strcmp(formatp, "short"))
607 refname = shorten_unambiguous_ref(refname,
608 warn_ambiguous_refs);
610 die("unknown %.*s format %s",
611 (int)(formatp - name), name, formatp);
617 int len = strlen(refname);
618 char *s = xmalloc(len + 4);
619 sprintf(s, "%s^{}", refname);
624 grab_values(ref->value, 0, obj, buf, size);
628 /* If there is no atom that wants to know about tagged
629 * object, we are done.
631 if (!need_tagged || (obj->type != OBJ_TAG))
634 /* If it is a tag object, see if we use a value that derefs
635 * the object, and if we do grab the object it refers to.
637 tagged = ((struct tag *)obj)->tagged->sha1;
639 /* NEEDSWORK: This derefs tag only once, which
640 * is good to deal with chains of trust, but
641 * is not consistent with what deref_tag() does
642 * which peels the onion to the core.
644 buf = get_obj(tagged, &obj, &size, &eaten);
646 die("missing object %s for %s",
647 sha1_to_hex(tagged), ref->refname);
649 die("parse_object_buffer failed on %s for %s",
650 sha1_to_hex(tagged), ref->refname);
651 grab_values(ref->value, 1, obj, buf, size);
657 * Given a ref, return the value for the atom. This lazily gets value
658 * out of the object by calling populate value.
660 static void get_value(struct refinfo *ref, int atom, struct atom_value **v)
664 fill_missing_values(ref->value);
666 *v = &ref->value[atom];
669 struct grab_ref_cbdata {
670 struct refinfo **grab_array;
671 const char **grab_pattern;
676 * A call-back given to for_each_ref(). It is unfortunate that we
677 * need to use global variables to pass extra information to this
680 static int grab_single_ref(const char *refname, const unsigned char *sha1, int flag, void *cb_data)
682 struct grab_ref_cbdata *cb = cb_data;
686 if (*cb->grab_pattern) {
687 const char **pattern;
688 int namelen = strlen(refname);
689 for (pattern = cb->grab_pattern; *pattern; pattern++) {
690 const char *p = *pattern;
691 int plen = strlen(p);
693 if ((plen <= namelen) &&
694 !strncmp(refname, p, plen) &&
695 (refname[plen] == '\0' ||
696 refname[plen] == '/' ||
699 if (!fnmatch(p, refname, FNM_PATHNAME))
706 /* We do not open the object yet; sort may only need refname
707 * to do its job and the resulting list may yet to be pruned
710 ref = xcalloc(1, sizeof(*ref));
711 ref->refname = xstrdup(refname);
712 hashcpy(ref->objectname, sha1);
715 cb->grab_array = xrealloc(cb->grab_array,
716 sizeof(*cb->grab_array) * (cnt + 1));
717 cb->grab_array[cnt++] = ref;
722 static int cmp_ref_sort(struct ref_sort *s, struct refinfo *a, struct refinfo *b)
724 struct atom_value *va, *vb;
726 cmp_type cmp_type = used_atom_type[s->atom];
728 get_value(a, s->atom, &va);
729 get_value(b, s->atom, &vb);
732 cmp = strcmp(va->s, vb->s);
737 else if (va->ul == vb->ul)
743 return (s->reverse) ? -cmp : cmp;
746 static struct ref_sort *ref_sort;
747 static int compare_refs(const void *a_, const void *b_)
749 struct refinfo *a = *((struct refinfo **)a_);
750 struct refinfo *b = *((struct refinfo **)b_);
753 for (s = ref_sort; s; s = s->next) {
754 int cmp = cmp_ref_sort(s, a, b);
761 static void sort_refs(struct ref_sort *sort, struct refinfo **refs, int num_refs)
764 qsort(refs, num_refs, sizeof(struct refinfo *), compare_refs);
767 static void print_value(struct refinfo *ref, int atom, int quote_style)
769 struct atom_value *v;
770 get_value(ref, atom, &v);
771 switch (quote_style) {
776 sq_quote_print(stdout, v->s);
779 perl_quote_print(stdout, v->s);
782 python_quote_print(stdout, v->s);
785 tcl_quote_print(stdout, v->s);
790 static int hex1(char ch)
792 if ('0' <= ch && ch <= '9')
794 else if ('a' <= ch && ch <= 'f')
795 return ch - 'a' + 10;
796 else if ('A' <= ch && ch <= 'F')
797 return ch - 'A' + 10;
800 static int hex2(const char *cp)
803 return (hex1(cp[0]) << 4) | hex1(cp[1]);
808 static void emit(const char *cp, const char *ep)
810 while (*cp && (!ep || cp < ep)) {
815 int ch = hex2(cp + 1);
828 static void show_ref(struct refinfo *info, const char *format, int quote_style)
830 const char *cp, *sp, *ep;
832 for (cp = format; *cp && (sp = find_next(cp)); cp = ep + 1) {
833 ep = strchr(sp, ')');
836 print_value(info, parse_atom(sp + 2, ep), quote_style);
839 sp = cp + strlen(cp);
845 static struct ref_sort *default_sort(void)
847 static const char cstr_name[] = "refname";
849 struct ref_sort *sort = xcalloc(1, sizeof(*sort));
852 sort->atom = parse_atom(cstr_name, cstr_name + strlen(cstr_name));
856 static int opt_parse_sort(const struct option *opt, const char *arg, int unset)
858 struct ref_sort **sort_tail = opt->value;
862 if (!arg) /* should --no-sort void the list ? */
865 *sort_tail = s = xcalloc(1, sizeof(*s));
872 s->atom = parse_atom(arg, arg+len);
876 static char const * const for_each_ref_usage[] = {
877 "git for-each-ref [options] [<pattern>]",
881 int cmd_for_each_ref(int argc, const char **argv, const char *prefix)
884 const char *format = "%(objectname) %(objecttype)\t%(refname)";
885 struct ref_sort *sort = NULL, **sort_tail = &sort;
886 int maxcount = 0, quote_style = 0;
887 struct refinfo **refs;
888 struct grab_ref_cbdata cbdata;
890 struct option opts[] = {
891 OPT_BIT('s', "shell", "e_style,
892 "quote placeholders suitably for shells", QUOTE_SHELL),
893 OPT_BIT('p', "perl", "e_style,
894 "quote placeholders suitably for perl", QUOTE_PERL),
895 OPT_BIT(0 , "python", "e_style,
896 "quote placeholders suitably for python", QUOTE_PYTHON),
897 OPT_BIT(0 , "tcl", "e_style,
898 "quote placeholders suitably for tcl", QUOTE_TCL),
901 OPT_INTEGER( 0 , "count", &maxcount, "show only <n> matched refs"),
902 OPT_STRING( 0 , "format", &format, "format", "format to use for the output"),
903 OPT_CALLBACK(0 , "sort", sort_tail, "key",
904 "field name to sort on", &opt_parse_sort),
908 parse_options(argc, argv, prefix, opts, for_each_ref_usage, 0);
910 error("invalid --count argument: `%d'", maxcount);
911 usage_with_options(for_each_ref_usage, opts);
913 if (HAS_MULTI_BITS(quote_style)) {
914 error("more than one quoting style?");
915 usage_with_options(for_each_ref_usage, opts);
917 if (verify_format(format))
918 usage_with_options(for_each_ref_usage, opts);
921 sort = default_sort();
922 sort_atom_limit = used_atom_cnt;
924 /* for warn_ambiguous_refs */
925 git_config(git_default_config, NULL);
927 memset(&cbdata, 0, sizeof(cbdata));
928 cbdata.grab_pattern = argv;
929 for_each_ref(grab_single_ref, &cbdata);
930 refs = cbdata.grab_array;
931 num_refs = cbdata.grab_cnt;
933 for (i = 0; i < used_atom_cnt; i++) {
934 if (used_atom[i][0] == '*') {
940 sort_refs(sort, refs, num_refs);
942 if (!maxcount || num_refs < maxcount)
944 for (i = 0; i < maxcount; i++)
945 show_ref(refs[i], format, quote_style);