Git 2.45-rc1
[alt-git.git] / ref-filter.c
blob59ad6f54ddb0983d9e5d50cf7352d7462e245334
1 #include "git-compat-util.h"
2 #include "environment.h"
3 #include "gettext.h"
4 #include "config.h"
5 #include "gpg-interface.h"
6 #include "hex.h"
7 #include "parse-options.h"
8 #include "run-command.h"
9 #include "refs.h"
10 #include "wildmatch.h"
11 #include "object-name.h"
12 #include "object-store-ll.h"
13 #include "oid-array.h"
14 #include "repository.h"
15 #include "commit.h"
16 #include "mailmap.h"
17 #include "ident.h"
18 #include "remote.h"
19 #include "color.h"
20 #include "tag.h"
21 #include "quote.h"
22 #include "ref-filter.h"
23 #include "revision.h"
24 #include "utf8.h"
25 #include "versioncmp.h"
26 #include "trailer.h"
27 #include "wt-status.h"
28 #include "commit-slab.h"
29 #include "commit-reach.h"
30 #include "worktree.h"
31 #include "hashmap.h"
33 static struct ref_msg {
34 const char *gone;
35 const char *ahead;
36 const char *behind;
37 const char *ahead_behind;
38 } msgs = {
39 /* Untranslated plumbing messages: */
40 "gone",
41 "ahead %d",
42 "behind %d",
43 "ahead %d, behind %d"
46 void setup_ref_filter_porcelain_msg(void)
48 msgs.gone = _("gone");
49 msgs.ahead = _("ahead %d");
50 msgs.behind = _("behind %d");
51 msgs.ahead_behind = _("ahead %d, behind %d");
54 typedef enum { FIELD_STR, FIELD_ULONG, FIELD_TIME } cmp_type;
55 typedef enum { COMPARE_EQUAL, COMPARE_UNEQUAL, COMPARE_NONE } cmp_status;
56 typedef enum { SOURCE_NONE = 0, SOURCE_OBJ, SOURCE_OTHER } info_source;
58 struct align {
59 align_type position;
60 unsigned int width;
63 struct if_then_else {
64 cmp_status cmp_status;
65 const char *str;
66 unsigned int then_atom_seen : 1,
67 else_atom_seen : 1,
68 condition_satisfied : 1;
71 struct refname_atom {
72 enum { R_NORMAL, R_SHORT, R_LSTRIP, R_RSTRIP } option;
73 int lstrip, rstrip;
76 static struct ref_trailer_buf {
77 struct string_list filter_list;
78 struct strbuf sepbuf;
79 struct strbuf kvsepbuf;
80 } ref_trailer_buf = {STRING_LIST_INIT_NODUP, STRBUF_INIT, STRBUF_INIT};
82 static struct expand_data {
83 struct object_id oid;
84 enum object_type type;
85 unsigned long size;
86 off_t disk_size;
87 struct object_id delta_base_oid;
88 void *content;
90 struct object_info info;
91 } oi, oi_deref;
93 struct ref_to_worktree_entry {
94 struct hashmap_entry ent;
95 struct worktree *wt; /* key is wt->head_ref */
98 static int ref_to_worktree_map_cmpfnc(const void *lookupdata UNUSED,
99 const struct hashmap_entry *eptr,
100 const struct hashmap_entry *kptr,
101 const void *keydata_aka_refname)
103 const struct ref_to_worktree_entry *e, *k;
105 e = container_of(eptr, const struct ref_to_worktree_entry, ent);
106 k = container_of(kptr, const struct ref_to_worktree_entry, ent);
108 return strcmp(e->wt->head_ref,
109 keydata_aka_refname ? keydata_aka_refname : k->wt->head_ref);
112 static struct ref_to_worktree_map {
113 struct hashmap map;
114 struct worktree **worktrees;
115 } ref_to_worktree_map;
118 * The enum atom_type is used as the index of valid_atom array.
119 * In the atom parsing stage, it will be passed to used_atom.atom_type
120 * as the identifier of the atom type. We can check the type of used_atom
121 * entry by `if (used_atom[i].atom_type == ATOM_*)`.
123 enum atom_type {
124 ATOM_REFNAME,
125 ATOM_OBJECTTYPE,
126 ATOM_OBJECTSIZE,
127 ATOM_OBJECTNAME,
128 ATOM_DELTABASE,
129 ATOM_TREE,
130 ATOM_PARENT,
131 ATOM_NUMPARENT,
132 ATOM_OBJECT,
133 ATOM_TYPE,
134 ATOM_TAG,
135 ATOM_AUTHOR,
136 ATOM_AUTHORNAME,
137 ATOM_AUTHOREMAIL,
138 ATOM_AUTHORDATE,
139 ATOM_COMMITTER,
140 ATOM_COMMITTERNAME,
141 ATOM_COMMITTEREMAIL,
142 ATOM_COMMITTERDATE,
143 ATOM_TAGGER,
144 ATOM_TAGGERNAME,
145 ATOM_TAGGEREMAIL,
146 ATOM_TAGGERDATE,
147 ATOM_CREATOR,
148 ATOM_CREATORDATE,
149 ATOM_DESCRIBE,
150 ATOM_SUBJECT,
151 ATOM_BODY,
152 ATOM_TRAILERS,
153 ATOM_CONTENTS,
154 ATOM_SIGNATURE,
155 ATOM_RAW,
156 ATOM_UPSTREAM,
157 ATOM_PUSH,
158 ATOM_SYMREF,
159 ATOM_FLAG,
160 ATOM_HEAD,
161 ATOM_COLOR,
162 ATOM_WORKTREEPATH,
163 ATOM_ALIGN,
164 ATOM_END,
165 ATOM_IF,
166 ATOM_THEN,
167 ATOM_ELSE,
168 ATOM_REST,
169 ATOM_AHEADBEHIND,
173 * An atom is a valid field atom listed below, possibly prefixed with
174 * a "*" to denote deref_tag().
176 * We parse given format string and sort specifiers, and make a list
177 * of properties that we need to extract out of objects. ref_array_item
178 * structure will hold an array of values extracted that can be
179 * indexed with the "atom number", which is an index into this
180 * array.
182 static struct used_atom {
183 enum atom_type atom_type;
184 const char *name;
185 cmp_type type;
186 info_source source;
187 union {
188 char color[COLOR_MAXLEN];
189 struct align align;
190 struct {
191 enum {
192 RR_REF, RR_TRACK, RR_TRACKSHORT, RR_REMOTE_NAME, RR_REMOTE_REF
193 } option;
194 struct refname_atom refname;
195 unsigned int nobracket : 1, push : 1, push_remote : 1;
196 } remote_ref;
197 struct {
198 enum { C_BARE, C_BODY, C_BODY_DEP, C_LENGTH, C_LINES,
199 C_SIG, C_SUB, C_SUB_SANITIZE, C_TRAILERS } option;
200 struct process_trailer_options trailer_opts;
201 unsigned int nlines;
202 } contents;
203 struct {
204 enum { RAW_BARE, RAW_LENGTH } option;
205 } raw_data;
206 struct {
207 cmp_status cmp_status;
208 const char *str;
209 } if_then_else;
210 struct {
211 enum { O_FULL, O_LENGTH, O_SHORT } option;
212 unsigned int length;
213 } oid;
214 struct {
215 enum { O_SIZE, O_SIZE_DISK } option;
216 } objectsize;
217 struct {
218 enum { N_RAW, N_MAILMAP } option;
219 } name_option;
220 struct {
221 enum {
222 EO_RAW = 0,
223 EO_TRIM = 1<<0,
224 EO_LOCALPART = 1<<1,
225 EO_MAILMAP = 1<<2,
226 } option;
227 } email_option;
228 struct {
229 enum { S_BARE, S_GRADE, S_SIGNER, S_KEY,
230 S_FINGERPRINT, S_PRI_KEY_FP, S_TRUST_LEVEL } option;
231 } signature;
232 const char **describe_args;
233 struct refname_atom refname;
234 char *head;
235 } u;
236 } *used_atom;
237 static int used_atom_cnt, need_tagged, need_symref;
240 * Expand string, append it to strbuf *sb, then return error code ret.
241 * Allow to save few lines of code.
243 __attribute__((format (printf, 3, 4)))
244 static int strbuf_addf_ret(struct strbuf *sb, int ret, const char *fmt, ...)
246 va_list ap;
247 va_start(ap, fmt);
248 strbuf_vaddf(sb, fmt, ap);
249 va_end(ap);
250 return ret;
253 static int err_no_arg(struct strbuf *sb, const char *name)
255 size_t namelen = strchrnul(name, ':') - name;
256 strbuf_addf(sb, _("%%(%.*s) does not take arguments"),
257 (int)namelen, name);
258 return -1;
261 static int err_bad_arg(struct strbuf *sb, const char *name, const char *arg)
263 size_t namelen = strchrnul(name, ':') - name;
264 strbuf_addf(sb, _("unrecognized %%(%.*s) argument: %s"),
265 (int)namelen, name, arg);
266 return -1;
270 * Parse option of name "candidate" in the option string "to_parse" of
271 * the form
273 * "candidate1[=val1],candidate2[=val2],candidate3[=val3],..."
275 * The remaining part of "to_parse" is stored in "end" (if we are
276 * parsing the last candidate, then this is NULL) and the value of
277 * the candidate is stored in "valuestart" and its length in "valuelen",
278 * that is the portion after "=". Since it is possible for a "candidate"
279 * to not have a value, in such cases, "valuestart" is set to point to
280 * NULL and "valuelen" to 0.
282 * The function returns 1 on success. It returns 0 if we don't find
283 * "candidate" in "to_parse" or we find "candidate" but it is followed
284 * by more chars (for example, "candidatefoo"), that is, we don't find
285 * an exact match.
287 * This function only does the above for one "candidate" at a time. So
288 * it has to be called each time trying to parse a "candidate" in the
289 * option string "to_parse".
291 static int match_atom_arg_value(const char *to_parse, const char *candidate,
292 const char **end, const char **valuestart,
293 size_t *valuelen)
295 const char *atom;
297 if (!skip_prefix(to_parse, candidate, &atom))
298 return 0; /* definitely not "candidate" */
300 if (*atom == '=') {
301 /* we just saw "candidate=" */
302 *valuestart = atom + 1;
303 atom = strchrnul(*valuestart, ',');
304 *valuelen = atom - *valuestart;
305 } else if (*atom != ',' && *atom != '\0') {
306 /* key begins with "candidate" but has more chars */
307 return 0;
308 } else {
309 /* just "candidate" without "=val" */
310 *valuestart = NULL;
311 *valuelen = 0;
314 /* atom points at either the ',' or NUL after this key[=val] */
315 if (*atom == ',')
316 atom++;
317 else if (*atom)
318 BUG("Why is *atom not NULL yet?");
320 *end = atom;
321 return 1;
325 * Parse boolean option of name "candidate" in the option list "to_parse"
326 * of the form
328 * "candidate1[=bool1],candidate2[=bool2],candidate3[=bool3],..."
330 * The remaining part of "to_parse" is stored in "end" (if we are parsing
331 * the last candidate, then this is NULL) and the value (if given) is
332 * parsed and stored in "val", so "val" always points to either 0 or 1.
333 * If the value is not given, then "val" is set to point to 1.
335 * The boolean value is parsed using "git_parse_maybe_bool()", so the
336 * accepted values are
338 * to set true - "1", "yes", "true"
339 * to set false - "0", "no", "false"
341 * This function returns 1 on success. It returns 0 when we don't find
342 * an exact match for "candidate" or when the boolean value given is
343 * not valid.
345 static int match_atom_bool_arg(const char *to_parse, const char *candidate,
346 const char **end, int *val)
348 const char *argval;
349 char *strval;
350 size_t arglen;
351 int v;
353 if (!match_atom_arg_value(to_parse, candidate, end, &argval, &arglen))
354 return 0;
356 if (!argval) {
357 *val = 1;
358 return 1;
361 strval = xstrndup(argval, arglen);
362 v = git_parse_maybe_bool(strval);
363 free(strval);
365 if (v == -1)
366 return 0;
368 *val = v;
370 return 1;
373 static int color_atom_parser(struct ref_format *format, struct used_atom *atom,
374 const char *color_value, struct strbuf *err)
376 if (!color_value)
377 return strbuf_addf_ret(err, -1, _("expected format: %%(color:<color>)"));
378 if (color_parse(color_value, atom->u.color) < 0)
379 return strbuf_addf_ret(err, -1, _("unrecognized color: %%(color:%s)"),
380 color_value);
382 * We check this after we've parsed the color, which lets us complain
383 * about syntactically bogus color names even if they won't be used.
385 if (!want_color(format->use_color))
386 color_parse("", atom->u.color);
387 return 0;
390 static int refname_atom_parser_internal(struct refname_atom *atom, const char *arg,
391 const char *name, struct strbuf *err)
393 if (!arg)
394 atom->option = R_NORMAL;
395 else if (!strcmp(arg, "short"))
396 atom->option = R_SHORT;
397 else if (skip_prefix(arg, "lstrip=", &arg) ||
398 skip_prefix(arg, "strip=", &arg)) {
399 atom->option = R_LSTRIP;
400 if (strtol_i(arg, 10, &atom->lstrip))
401 return strbuf_addf_ret(err, -1, _("Integer value expected refname:lstrip=%s"), arg);
402 } else if (skip_prefix(arg, "rstrip=", &arg)) {
403 atom->option = R_RSTRIP;
404 if (strtol_i(arg, 10, &atom->rstrip))
405 return strbuf_addf_ret(err, -1, _("Integer value expected refname:rstrip=%s"), arg);
406 } else
407 return err_bad_arg(err, name, arg);
408 return 0;
411 static int remote_ref_atom_parser(struct ref_format *format UNUSED,
412 struct used_atom *atom,
413 const char *arg, struct strbuf *err)
415 struct string_list params = STRING_LIST_INIT_DUP;
416 int i;
418 if (!strcmp(atom->name, "push") || starts_with(atom->name, "push:"))
419 atom->u.remote_ref.push = 1;
421 if (!arg) {
422 atom->u.remote_ref.option = RR_REF;
423 return refname_atom_parser_internal(&atom->u.remote_ref.refname,
424 arg, atom->name, err);
427 atom->u.remote_ref.nobracket = 0;
428 string_list_split(&params, arg, ',', -1);
430 for (i = 0; i < params.nr; i++) {
431 const char *s = params.items[i].string;
433 if (!strcmp(s, "track"))
434 atom->u.remote_ref.option = RR_TRACK;
435 else if (!strcmp(s, "trackshort"))
436 atom->u.remote_ref.option = RR_TRACKSHORT;
437 else if (!strcmp(s, "nobracket"))
438 atom->u.remote_ref.nobracket = 1;
439 else if (!strcmp(s, "remotename")) {
440 atom->u.remote_ref.option = RR_REMOTE_NAME;
441 atom->u.remote_ref.push_remote = 1;
442 } else if (!strcmp(s, "remoteref")) {
443 atom->u.remote_ref.option = RR_REMOTE_REF;
444 atom->u.remote_ref.push_remote = 1;
445 } else {
446 atom->u.remote_ref.option = RR_REF;
447 if (refname_atom_parser_internal(&atom->u.remote_ref.refname,
448 arg, atom->name, err)) {
449 string_list_clear(&params, 0);
450 return -1;
455 string_list_clear(&params, 0);
456 return 0;
459 static int objecttype_atom_parser(struct ref_format *format UNUSED,
460 struct used_atom *atom,
461 const char *arg, struct strbuf *err)
463 if (arg)
464 return err_no_arg(err, "objecttype");
465 if (*atom->name == '*')
466 oi_deref.info.typep = &oi_deref.type;
467 else
468 oi.info.typep = &oi.type;
469 return 0;
472 static int objectsize_atom_parser(struct ref_format *format UNUSED,
473 struct used_atom *atom,
474 const char *arg, struct strbuf *err)
476 if (!arg) {
477 atom->u.objectsize.option = O_SIZE;
478 if (*atom->name == '*')
479 oi_deref.info.sizep = &oi_deref.size;
480 else
481 oi.info.sizep = &oi.size;
482 } else if (!strcmp(arg, "disk")) {
483 atom->u.objectsize.option = O_SIZE_DISK;
484 if (*atom->name == '*')
485 oi_deref.info.disk_sizep = &oi_deref.disk_size;
486 else
487 oi.info.disk_sizep = &oi.disk_size;
488 } else
489 return err_bad_arg(err, "objectsize", arg);
490 return 0;
493 static int deltabase_atom_parser(struct ref_format *format UNUSED,
494 struct used_atom *atom,
495 const char *arg, struct strbuf *err)
497 if (arg)
498 return err_no_arg(err, "deltabase");
499 if (*atom->name == '*')
500 oi_deref.info.delta_base_oid = &oi_deref.delta_base_oid;
501 else
502 oi.info.delta_base_oid = &oi.delta_base_oid;
503 return 0;
506 static int body_atom_parser(struct ref_format *format UNUSED,
507 struct used_atom *atom,
508 const char *arg, struct strbuf *err)
510 if (arg)
511 return err_no_arg(err, "body");
512 atom->u.contents.option = C_BODY_DEP;
513 return 0;
516 static int subject_atom_parser(struct ref_format *format UNUSED,
517 struct used_atom *atom,
518 const char *arg, struct strbuf *err)
520 if (!arg)
521 atom->u.contents.option = C_SUB;
522 else if (!strcmp(arg, "sanitize"))
523 atom->u.contents.option = C_SUB_SANITIZE;
524 else
525 return err_bad_arg(err, "subject", arg);
526 return 0;
529 static int parse_signature_option(const char *arg)
531 if (!arg)
532 return S_BARE;
533 else if (!strcmp(arg, "signer"))
534 return S_SIGNER;
535 else if (!strcmp(arg, "grade"))
536 return S_GRADE;
537 else if (!strcmp(arg, "key"))
538 return S_KEY;
539 else if (!strcmp(arg, "fingerprint"))
540 return S_FINGERPRINT;
541 else if (!strcmp(arg, "primarykeyfingerprint"))
542 return S_PRI_KEY_FP;
543 else if (!strcmp(arg, "trustlevel"))
544 return S_TRUST_LEVEL;
545 return -1;
548 static int signature_atom_parser(struct ref_format *format UNUSED,
549 struct used_atom *atom,
550 const char *arg, struct strbuf *err)
552 int opt = parse_signature_option(arg);
553 if (opt < 0)
554 return err_bad_arg(err, "signature", arg);
555 atom->u.signature.option = opt;
556 return 0;
559 static int trailers_atom_parser(struct ref_format *format UNUSED,
560 struct used_atom *atom,
561 const char *arg, struct strbuf *err)
563 atom->u.contents.trailer_opts.no_divider = 1;
565 if (arg) {
566 const char *argbuf = xstrfmt("%s)", arg);
567 char *invalid_arg = NULL;
569 if (format_set_trailers_options(&atom->u.contents.trailer_opts,
570 &ref_trailer_buf.filter_list,
571 &ref_trailer_buf.sepbuf,
572 &ref_trailer_buf.kvsepbuf,
573 &argbuf, &invalid_arg)) {
574 if (!invalid_arg)
575 strbuf_addf(err, _("expected %%(trailers:key=<value>)"));
576 else
577 strbuf_addf(err, _("unknown %%(trailers) argument: %s"), invalid_arg);
578 free((char *)invalid_arg);
579 return -1;
582 atom->u.contents.option = C_TRAILERS;
583 return 0;
586 static int contents_atom_parser(struct ref_format *format, struct used_atom *atom,
587 const char *arg, struct strbuf *err)
589 if (!arg)
590 atom->u.contents.option = C_BARE;
591 else if (!strcmp(arg, "body"))
592 atom->u.contents.option = C_BODY;
593 else if (!strcmp(arg, "size")) {
594 atom->type = FIELD_ULONG;
595 atom->u.contents.option = C_LENGTH;
596 } else if (!strcmp(arg, "signature"))
597 atom->u.contents.option = C_SIG;
598 else if (!strcmp(arg, "subject"))
599 atom->u.contents.option = C_SUB;
600 else if (!strcmp(arg, "trailers")) {
601 if (trailers_atom_parser(format, atom, NULL, err))
602 return -1;
603 } else if (skip_prefix(arg, "trailers:", &arg)) {
604 if (trailers_atom_parser(format, atom, arg, err))
605 return -1;
606 } else if (skip_prefix(arg, "lines=", &arg)) {
607 atom->u.contents.option = C_LINES;
608 if (strtoul_ui(arg, 10, &atom->u.contents.nlines))
609 return strbuf_addf_ret(err, -1, _("positive value expected contents:lines=%s"), arg);
610 } else
611 return err_bad_arg(err, "contents", arg);
612 return 0;
615 static int describe_atom_option_parser(struct strvec *args, const char **arg,
616 struct strbuf *err)
618 const char *argval;
619 size_t arglen = 0;
620 int optval = 0;
622 if (match_atom_bool_arg(*arg, "tags", arg, &optval)) {
623 if (!optval)
624 strvec_push(args, "--no-tags");
625 else
626 strvec_push(args, "--tags");
627 return 1;
630 if (match_atom_arg_value(*arg, "abbrev", arg, &argval, &arglen)) {
631 char *endptr;
633 if (!arglen)
634 return strbuf_addf_ret(err, -1,
635 _("argument expected for %s"),
636 "describe:abbrev");
637 if (strtol(argval, &endptr, 10) < 0)
638 return strbuf_addf_ret(err, -1,
639 _("positive value expected %s=%s"),
640 "describe:abbrev", argval);
641 if (endptr - argval != arglen)
642 return strbuf_addf_ret(err, -1,
643 _("cannot fully parse %s=%s"),
644 "describe:abbrev", argval);
646 strvec_pushf(args, "--abbrev=%.*s", (int)arglen, argval);
647 return 1;
650 if (match_atom_arg_value(*arg, "match", arg, &argval, &arglen)) {
651 if (!arglen)
652 return strbuf_addf_ret(err, -1,
653 _("value expected %s="),
654 "describe:match");
656 strvec_pushf(args, "--match=%.*s", (int)arglen, argval);
657 return 1;
660 if (match_atom_arg_value(*arg, "exclude", arg, &argval, &arglen)) {
661 if (!arglen)
662 return strbuf_addf_ret(err, -1,
663 _("value expected %s="),
664 "describe:exclude");
666 strvec_pushf(args, "--exclude=%.*s", (int)arglen, argval);
667 return 1;
670 return 0;
673 static int describe_atom_parser(struct ref_format *format UNUSED,
674 struct used_atom *atom,
675 const char *arg, struct strbuf *err)
677 struct strvec args = STRVEC_INIT;
679 for (;;) {
680 int found = 0;
681 const char *bad_arg = arg;
683 if (!arg || !*arg)
684 break;
686 found = describe_atom_option_parser(&args, &arg, err);
687 if (found < 0)
688 return found;
689 if (!found)
690 return err_bad_arg(err, "describe", bad_arg);
692 atom->u.describe_args = strvec_detach(&args);
693 return 0;
696 static int raw_atom_parser(struct ref_format *format UNUSED,
697 struct used_atom *atom,
698 const char *arg, struct strbuf *err)
700 if (!arg)
701 atom->u.raw_data.option = RAW_BARE;
702 else if (!strcmp(arg, "size")) {
703 atom->type = FIELD_ULONG;
704 atom->u.raw_data.option = RAW_LENGTH;
705 } else
706 return err_bad_arg(err, "raw", arg);
707 return 0;
710 static int oid_atom_parser(struct ref_format *format UNUSED,
711 struct used_atom *atom,
712 const char *arg, struct strbuf *err)
714 if (!arg)
715 atom->u.oid.option = O_FULL;
716 else if (!strcmp(arg, "short"))
717 atom->u.oid.option = O_SHORT;
718 else if (skip_prefix(arg, "short=", &arg)) {
719 atom->u.oid.option = O_LENGTH;
720 if (strtoul_ui(arg, 10, &atom->u.oid.length) ||
721 atom->u.oid.length == 0)
722 return strbuf_addf_ret(err, -1, _("positive value expected '%s' in %%(%s)"), arg, atom->name);
723 if (atom->u.oid.length < MINIMUM_ABBREV)
724 atom->u.oid.length = MINIMUM_ABBREV;
725 } else
726 return err_bad_arg(err, atom->name, arg);
727 return 0;
730 static int person_name_atom_parser(struct ref_format *format UNUSED,
731 struct used_atom *atom,
732 const char *arg, struct strbuf *err)
734 if (!arg)
735 atom->u.name_option.option = N_RAW;
736 else if (!strcmp(arg, "mailmap"))
737 atom->u.name_option.option = N_MAILMAP;
738 else
739 return err_bad_arg(err, atom->name, arg);
740 return 0;
743 static int email_atom_option_parser(struct used_atom *atom,
744 const char **arg, struct strbuf *err)
746 if (!*arg)
747 return EO_RAW;
748 if (skip_prefix(*arg, "trim", arg))
749 return EO_TRIM;
750 if (skip_prefix(*arg, "localpart", arg))
751 return EO_LOCALPART;
752 if (skip_prefix(*arg, "mailmap", arg))
753 return EO_MAILMAP;
754 return -1;
757 static int person_email_atom_parser(struct ref_format *format UNUSED,
758 struct used_atom *atom,
759 const char *arg, struct strbuf *err)
761 for (;;) {
762 int opt = email_atom_option_parser(atom, &arg, err);
763 const char *bad_arg = arg;
765 if (opt < 0)
766 return err_bad_arg(err, atom->name, bad_arg);
767 atom->u.email_option.option |= opt;
769 if (!arg || !*arg)
770 break;
771 if (*arg == ',')
772 arg++;
773 else
774 return err_bad_arg(err, atom->name, bad_arg);
776 return 0;
779 static int refname_atom_parser(struct ref_format *format UNUSED,
780 struct used_atom *atom,
781 const char *arg, struct strbuf *err)
783 return refname_atom_parser_internal(&atom->u.refname, arg, atom->name, err);
786 static align_type parse_align_position(const char *s)
788 if (!strcmp(s, "right"))
789 return ALIGN_RIGHT;
790 else if (!strcmp(s, "middle"))
791 return ALIGN_MIDDLE;
792 else if (!strcmp(s, "left"))
793 return ALIGN_LEFT;
794 return -1;
797 static int align_atom_parser(struct ref_format *format UNUSED,
798 struct used_atom *atom,
799 const char *arg, struct strbuf *err)
801 struct align *align = &atom->u.align;
802 struct string_list params = STRING_LIST_INIT_DUP;
803 int i;
804 unsigned int width = ~0U;
806 if (!arg)
807 return strbuf_addf_ret(err, -1, _("expected format: %%(align:<width>,<position>)"));
809 align->position = ALIGN_LEFT;
811 string_list_split(&params, arg, ',', -1);
812 for (i = 0; i < params.nr; i++) {
813 const char *s = params.items[i].string;
814 int position;
816 if (skip_prefix(s, "position=", &s)) {
817 position = parse_align_position(s);
818 if (position < 0) {
819 strbuf_addf(err, _("unrecognized position:%s"), s);
820 string_list_clear(&params, 0);
821 return -1;
823 align->position = position;
824 } else if (skip_prefix(s, "width=", &s)) {
825 if (strtoul_ui(s, 10, &width)) {
826 strbuf_addf(err, _("unrecognized width:%s"), s);
827 string_list_clear(&params, 0);
828 return -1;
830 } else if (!strtoul_ui(s, 10, &width))
832 else if ((position = parse_align_position(s)) >= 0)
833 align->position = position;
834 else {
835 strbuf_addf(err, _("unrecognized %%(%s) argument: %s"), "align", s);
836 string_list_clear(&params, 0);
837 return -1;
841 if (width == ~0U) {
842 string_list_clear(&params, 0);
843 return strbuf_addf_ret(err, -1, _("positive width expected with the %%(align) atom"));
845 align->width = width;
846 string_list_clear(&params, 0);
847 return 0;
850 static int if_atom_parser(struct ref_format *format UNUSED,
851 struct used_atom *atom,
852 const char *arg, struct strbuf *err)
854 if (!arg) {
855 atom->u.if_then_else.cmp_status = COMPARE_NONE;
856 return 0;
857 } else if (skip_prefix(arg, "equals=", &atom->u.if_then_else.str)) {
858 atom->u.if_then_else.cmp_status = COMPARE_EQUAL;
859 } else if (skip_prefix(arg, "notequals=", &atom->u.if_then_else.str)) {
860 atom->u.if_then_else.cmp_status = COMPARE_UNEQUAL;
861 } else
862 return err_bad_arg(err, "if", arg);
863 return 0;
866 static int rest_atom_parser(struct ref_format *format UNUSED,
867 struct used_atom *atom UNUSED,
868 const char *arg, struct strbuf *err)
870 if (arg)
871 return err_no_arg(err, "rest");
872 return 0;
875 static int ahead_behind_atom_parser(struct ref_format *format,
876 struct used_atom *atom UNUSED,
877 const char *arg, struct strbuf *err)
879 struct string_list_item *item;
881 if (!arg)
882 return strbuf_addf_ret(err, -1, _("expected format: %%(ahead-behind:<committish>)"));
884 item = string_list_append(&format->bases, arg);
885 item->util = lookup_commit_reference_by_name(arg);
886 if (!item->util)
887 die("failed to find '%s'", arg);
889 return 0;
892 static int head_atom_parser(struct ref_format *format UNUSED,
893 struct used_atom *atom,
894 const char *arg, struct strbuf *err)
896 if (arg)
897 return err_no_arg(err, "HEAD");
898 atom->u.head = resolve_refdup("HEAD", RESOLVE_REF_READING, NULL, NULL);
899 return 0;
902 static struct {
903 const char *name;
904 info_source source;
905 cmp_type cmp_type;
906 int (*parser)(struct ref_format *format, struct used_atom *atom,
907 const char *arg, struct strbuf *err);
908 } valid_atom[] = {
909 [ATOM_REFNAME] = { "refname", SOURCE_NONE, FIELD_STR, refname_atom_parser },
910 [ATOM_OBJECTTYPE] = { "objecttype", SOURCE_OTHER, FIELD_STR, objecttype_atom_parser },
911 [ATOM_OBJECTSIZE] = { "objectsize", SOURCE_OTHER, FIELD_ULONG, objectsize_atom_parser },
912 [ATOM_OBJECTNAME] = { "objectname", SOURCE_OTHER, FIELD_STR, oid_atom_parser },
913 [ATOM_DELTABASE] = { "deltabase", SOURCE_OTHER, FIELD_STR, deltabase_atom_parser },
914 [ATOM_TREE] = { "tree", SOURCE_OBJ, FIELD_STR, oid_atom_parser },
915 [ATOM_PARENT] = { "parent", SOURCE_OBJ, FIELD_STR, oid_atom_parser },
916 [ATOM_NUMPARENT] = { "numparent", SOURCE_OBJ, FIELD_ULONG },
917 [ATOM_OBJECT] = { "object", SOURCE_OBJ },
918 [ATOM_TYPE] = { "type", SOURCE_OBJ },
919 [ATOM_TAG] = { "tag", SOURCE_OBJ },
920 [ATOM_AUTHOR] = { "author", SOURCE_OBJ },
921 [ATOM_AUTHORNAME] = { "authorname", SOURCE_OBJ, FIELD_STR, person_name_atom_parser },
922 [ATOM_AUTHOREMAIL] = { "authoremail", SOURCE_OBJ, FIELD_STR, person_email_atom_parser },
923 [ATOM_AUTHORDATE] = { "authordate", SOURCE_OBJ, FIELD_TIME },
924 [ATOM_COMMITTER] = { "committer", SOURCE_OBJ },
925 [ATOM_COMMITTERNAME] = { "committername", SOURCE_OBJ, FIELD_STR, person_name_atom_parser },
926 [ATOM_COMMITTEREMAIL] = { "committeremail", SOURCE_OBJ, FIELD_STR, person_email_atom_parser },
927 [ATOM_COMMITTERDATE] = { "committerdate", SOURCE_OBJ, FIELD_TIME },
928 [ATOM_TAGGER] = { "tagger", SOURCE_OBJ },
929 [ATOM_TAGGERNAME] = { "taggername", SOURCE_OBJ, FIELD_STR, person_name_atom_parser },
930 [ATOM_TAGGEREMAIL] = { "taggeremail", SOURCE_OBJ, FIELD_STR, person_email_atom_parser },
931 [ATOM_TAGGERDATE] = { "taggerdate", SOURCE_OBJ, FIELD_TIME },
932 [ATOM_CREATOR] = { "creator", SOURCE_OBJ },
933 [ATOM_CREATORDATE] = { "creatordate", SOURCE_OBJ, FIELD_TIME },
934 [ATOM_DESCRIBE] = { "describe", SOURCE_OBJ, FIELD_STR, describe_atom_parser },
935 [ATOM_SUBJECT] = { "subject", SOURCE_OBJ, FIELD_STR, subject_atom_parser },
936 [ATOM_BODY] = { "body", SOURCE_OBJ, FIELD_STR, body_atom_parser },
937 [ATOM_TRAILERS] = { "trailers", SOURCE_OBJ, FIELD_STR, trailers_atom_parser },
938 [ATOM_CONTENTS] = { "contents", SOURCE_OBJ, FIELD_STR, contents_atom_parser },
939 [ATOM_SIGNATURE] = { "signature", SOURCE_OBJ, FIELD_STR, signature_atom_parser },
940 [ATOM_RAW] = { "raw", SOURCE_OBJ, FIELD_STR, raw_atom_parser },
941 [ATOM_UPSTREAM] = { "upstream", SOURCE_NONE, FIELD_STR, remote_ref_atom_parser },
942 [ATOM_PUSH] = { "push", SOURCE_NONE, FIELD_STR, remote_ref_atom_parser },
943 [ATOM_SYMREF] = { "symref", SOURCE_NONE, FIELD_STR, refname_atom_parser },
944 [ATOM_FLAG] = { "flag", SOURCE_NONE },
945 [ATOM_HEAD] = { "HEAD", SOURCE_NONE, FIELD_STR, head_atom_parser },
946 [ATOM_COLOR] = { "color", SOURCE_NONE, FIELD_STR, color_atom_parser },
947 [ATOM_WORKTREEPATH] = { "worktreepath", SOURCE_NONE },
948 [ATOM_ALIGN] = { "align", SOURCE_NONE, FIELD_STR, align_atom_parser },
949 [ATOM_END] = { "end", SOURCE_NONE },
950 [ATOM_IF] = { "if", SOURCE_NONE, FIELD_STR, if_atom_parser },
951 [ATOM_THEN] = { "then", SOURCE_NONE },
952 [ATOM_ELSE] = { "else", SOURCE_NONE },
953 [ATOM_REST] = { "rest", SOURCE_NONE, FIELD_STR, rest_atom_parser },
954 [ATOM_AHEADBEHIND] = { "ahead-behind", SOURCE_OTHER, FIELD_STR, ahead_behind_atom_parser },
956 * Please update $__git_ref_fieldlist in git-completion.bash
957 * when you add new atoms
961 #define REF_FORMATTING_STATE_INIT { 0 }
963 struct ref_formatting_stack {
964 struct ref_formatting_stack *prev;
965 struct strbuf output;
966 void (*at_end)(struct ref_formatting_stack **stack);
967 void *at_end_data;
970 struct ref_formatting_state {
971 int quote_style;
972 struct ref_formatting_stack *stack;
975 struct atom_value {
976 const char *s;
977 ssize_t s_size;
978 int (*handler)(struct atom_value *atomv, struct ref_formatting_state *state,
979 struct strbuf *err);
980 uintmax_t value; /* used for sorting when not FIELD_STR */
981 struct used_atom *atom;
984 #define ATOM_SIZE_UNSPECIFIED (-1)
986 #define ATOM_VALUE_INIT { \
987 .s_size = ATOM_SIZE_UNSPECIFIED \
991 * Used to parse format string and sort specifiers
993 static int parse_ref_filter_atom(struct ref_format *format,
994 const char *atom, const char *ep,
995 struct strbuf *err)
997 const char *sp;
998 const char *arg;
999 int i, at, atom_len;
1001 sp = atom;
1002 if (*sp == '*' && sp < ep)
1003 sp++; /* deref */
1004 if (ep <= sp)
1005 return strbuf_addf_ret(err, -1, _("malformed field name: %.*s"),
1006 (int)(ep-atom), atom);
1009 * If the atom name has a colon, strip it and everything after
1010 * it off - it specifies the format for this entry, and
1011 * shouldn't be used for checking against the valid_atom
1012 * table.
1014 arg = memchr(sp, ':', ep - sp);
1015 atom_len = (arg ? arg : ep) - sp;
1017 /* Do we have the atom already used elsewhere? */
1018 for (i = 0; i < used_atom_cnt; i++) {
1019 int len = strlen(used_atom[i].name);
1020 if (len == ep - atom && !memcmp(used_atom[i].name, atom, len))
1021 return i;
1024 /* Is the atom a valid one? */
1025 for (i = 0; i < ARRAY_SIZE(valid_atom); i++) {
1026 int len = strlen(valid_atom[i].name);
1027 if (len == atom_len && !memcmp(valid_atom[i].name, sp, len))
1028 break;
1031 if (ARRAY_SIZE(valid_atom) <= i)
1032 return strbuf_addf_ret(err, -1, _("unknown field name: %.*s"),
1033 (int)(ep-atom), atom);
1034 if (valid_atom[i].source != SOURCE_NONE && !have_git_dir())
1035 return strbuf_addf_ret(err, -1,
1036 _("not a git repository, but the field '%.*s' requires access to object data"),
1037 (int)(ep-atom), atom);
1039 /* Add it in, including the deref prefix */
1040 at = used_atom_cnt;
1041 used_atom_cnt++;
1042 REALLOC_ARRAY(used_atom, used_atom_cnt);
1043 used_atom[at].atom_type = i;
1044 used_atom[at].name = xmemdupz(atom, ep - atom);
1045 used_atom[at].type = valid_atom[i].cmp_type;
1046 used_atom[at].source = valid_atom[i].source;
1047 if (used_atom[at].source == SOURCE_OBJ) {
1048 if (*atom == '*')
1049 oi_deref.info.contentp = &oi_deref.content;
1050 else
1051 oi.info.contentp = &oi.content;
1053 if (arg) {
1054 arg = used_atom[at].name + (arg - atom) + 1;
1055 if (!*arg) {
1057 * Treat empty sub-arguments list as NULL (i.e.,
1058 * "%(atom:)" is equivalent to "%(atom)").
1060 arg = NULL;
1063 memset(&used_atom[at].u, 0, sizeof(used_atom[at].u));
1064 if (valid_atom[i].parser && valid_atom[i].parser(format, &used_atom[at], arg, err))
1065 return -1;
1066 if (*atom == '*')
1067 need_tagged = 1;
1068 if (i == ATOM_SYMREF)
1069 need_symref = 1;
1070 return at;
1073 static void quote_formatting(struct strbuf *s, const char *str, ssize_t len, int quote_style)
1075 switch (quote_style) {
1076 case QUOTE_NONE:
1077 if (len < 0)
1078 strbuf_addstr(s, str);
1079 else
1080 strbuf_add(s, str, len);
1081 break;
1082 case QUOTE_SHELL:
1083 sq_quote_buf(s, str);
1084 break;
1085 case QUOTE_PERL:
1086 if (len < 0)
1087 perl_quote_buf(s, str);
1088 else
1089 perl_quote_buf_with_len(s, str, len);
1090 break;
1091 case QUOTE_PYTHON:
1092 python_quote_buf(s, str);
1093 break;
1094 case QUOTE_TCL:
1095 tcl_quote_buf(s, str);
1096 break;
1100 static int append_atom(struct atom_value *v, struct ref_formatting_state *state,
1101 struct strbuf *err UNUSED)
1104 * Quote formatting is only done when the stack has a single
1105 * element. Otherwise quote formatting is done on the
1106 * element's entire output strbuf when the %(end) atom is
1107 * encountered.
1109 if (!state->stack->prev)
1110 quote_formatting(&state->stack->output, v->s, v->s_size, state->quote_style);
1111 else if (v->s_size < 0)
1112 strbuf_addstr(&state->stack->output, v->s);
1113 else
1114 strbuf_add(&state->stack->output, v->s, v->s_size);
1115 return 0;
1118 static void push_stack_element(struct ref_formatting_stack **stack)
1120 struct ref_formatting_stack *s = xcalloc(1, sizeof(struct ref_formatting_stack));
1122 strbuf_init(&s->output, 0);
1123 s->prev = *stack;
1124 *stack = s;
1127 static void pop_stack_element(struct ref_formatting_stack **stack)
1129 struct ref_formatting_stack *current = *stack;
1130 struct ref_formatting_stack *prev = current->prev;
1132 if (prev)
1133 strbuf_addbuf(&prev->output, &current->output);
1134 strbuf_release(&current->output);
1135 free(current);
1136 *stack = prev;
1139 static void end_align_handler(struct ref_formatting_stack **stack)
1141 struct ref_formatting_stack *cur = *stack;
1142 struct align *align = (struct align *)cur->at_end_data;
1143 struct strbuf s = STRBUF_INIT;
1145 strbuf_utf8_align(&s, align->position, align->width, cur->output.buf);
1146 strbuf_swap(&cur->output, &s);
1147 strbuf_release(&s);
1150 static int align_atom_handler(struct atom_value *atomv, struct ref_formatting_state *state,
1151 struct strbuf *err UNUSED)
1153 struct ref_formatting_stack *new_stack;
1155 push_stack_element(&state->stack);
1156 new_stack = state->stack;
1157 new_stack->at_end = end_align_handler;
1158 new_stack->at_end_data = &atomv->atom->u.align;
1159 return 0;
1162 static void if_then_else_handler(struct ref_formatting_stack **stack)
1164 struct ref_formatting_stack *cur = *stack;
1165 struct ref_formatting_stack *prev = cur->prev;
1166 struct if_then_else *if_then_else = (struct if_then_else *)cur->at_end_data;
1168 if (!if_then_else->then_atom_seen)
1169 die(_("format: %%(%s) atom used without a %%(%s) atom"), "if", "then");
1171 if (if_then_else->else_atom_seen) {
1173 * There is an %(else) atom: we need to drop one state from the
1174 * stack, either the %(else) branch if the condition is satisfied, or
1175 * the %(then) branch if it isn't.
1177 if (if_then_else->condition_satisfied) {
1178 strbuf_reset(&cur->output);
1179 pop_stack_element(&cur);
1180 } else {
1181 strbuf_swap(&cur->output, &prev->output);
1182 strbuf_reset(&cur->output);
1183 pop_stack_element(&cur);
1185 } else if (!if_then_else->condition_satisfied) {
1187 * No %(else) atom: just drop the %(then) branch if the
1188 * condition is not satisfied.
1190 strbuf_reset(&cur->output);
1193 *stack = cur;
1194 free(if_then_else);
1197 static int if_atom_handler(struct atom_value *atomv, struct ref_formatting_state *state,
1198 struct strbuf *err UNUSED)
1200 struct ref_formatting_stack *new_stack;
1201 struct if_then_else *if_then_else = xcalloc(1,
1202 sizeof(struct if_then_else));
1204 if_then_else->str = atomv->atom->u.if_then_else.str;
1205 if_then_else->cmp_status = atomv->atom->u.if_then_else.cmp_status;
1207 push_stack_element(&state->stack);
1208 new_stack = state->stack;
1209 new_stack->at_end = if_then_else_handler;
1210 new_stack->at_end_data = if_then_else;
1211 return 0;
1214 static int is_empty(struct strbuf *buf)
1216 const char *cur = buf->buf;
1217 const char *end = buf->buf + buf->len;
1219 while (cur != end && (isspace(*cur)))
1220 cur++;
1222 return cur == end;
1225 static int then_atom_handler(struct atom_value *atomv UNUSED,
1226 struct ref_formatting_state *state,
1227 struct strbuf *err)
1229 struct ref_formatting_stack *cur = state->stack;
1230 struct if_then_else *if_then_else = NULL;
1231 size_t str_len = 0;
1233 if (cur->at_end == if_then_else_handler)
1234 if_then_else = (struct if_then_else *)cur->at_end_data;
1235 if (!if_then_else)
1236 return strbuf_addf_ret(err, -1, _("format: %%(%s) atom used without a %%(%s) atom"), "then", "if");
1237 if (if_then_else->then_atom_seen)
1238 return strbuf_addf_ret(err, -1, _("format: %%(then) atom used more than once"));
1239 if (if_then_else->else_atom_seen)
1240 return strbuf_addf_ret(err, -1, _("format: %%(then) atom used after %%(else)"));
1241 if_then_else->then_atom_seen = 1;
1242 if (if_then_else->str)
1243 str_len = strlen(if_then_else->str);
1245 * If the 'equals' or 'notequals' attribute is used then
1246 * perform the required comparison. If not, only non-empty
1247 * strings satisfy the 'if' condition.
1249 if (if_then_else->cmp_status == COMPARE_EQUAL) {
1250 if (str_len == cur->output.len &&
1251 !memcmp(if_then_else->str, cur->output.buf, cur->output.len))
1252 if_then_else->condition_satisfied = 1;
1253 } else if (if_then_else->cmp_status == COMPARE_UNEQUAL) {
1254 if (str_len != cur->output.len ||
1255 memcmp(if_then_else->str, cur->output.buf, cur->output.len))
1256 if_then_else->condition_satisfied = 1;
1257 } else if (cur->output.len && !is_empty(&cur->output))
1258 if_then_else->condition_satisfied = 1;
1259 strbuf_reset(&cur->output);
1260 return 0;
1263 static int else_atom_handler(struct atom_value *atomv UNUSED,
1264 struct ref_formatting_state *state,
1265 struct strbuf *err)
1267 struct ref_formatting_stack *prev = state->stack;
1268 struct if_then_else *if_then_else = NULL;
1270 if (prev->at_end == if_then_else_handler)
1271 if_then_else = (struct if_then_else *)prev->at_end_data;
1272 if (!if_then_else)
1273 return strbuf_addf_ret(err, -1, _("format: %%(%s) atom used without a %%(%s) atom"), "else", "if");
1274 if (!if_then_else->then_atom_seen)
1275 return strbuf_addf_ret(err, -1, _("format: %%(%s) atom used without a %%(%s) atom"), "else", "then");
1276 if (if_then_else->else_atom_seen)
1277 return strbuf_addf_ret(err, -1, _("format: %%(else) atom used more than once"));
1278 if_then_else->else_atom_seen = 1;
1279 push_stack_element(&state->stack);
1280 state->stack->at_end_data = prev->at_end_data;
1281 state->stack->at_end = prev->at_end;
1282 return 0;
1285 static int end_atom_handler(struct atom_value *atomv UNUSED,
1286 struct ref_formatting_state *state,
1287 struct strbuf *err)
1289 struct ref_formatting_stack *current = state->stack;
1290 struct strbuf s = STRBUF_INIT;
1292 if (!current->at_end)
1293 return strbuf_addf_ret(err, -1, _("format: %%(end) atom used without corresponding atom"));
1294 current->at_end(&state->stack);
1296 /* Stack may have been popped within at_end(), hence reset the current pointer */
1297 current = state->stack;
1300 * Perform quote formatting when the stack element is that of
1301 * a supporting atom. If nested then perform quote formatting
1302 * only on the topmost supporting atom.
1304 if (!current->prev->prev) {
1305 quote_formatting(&s, current->output.buf, current->output.len, state->quote_style);
1306 strbuf_swap(&current->output, &s);
1308 strbuf_release(&s);
1309 pop_stack_element(&state->stack);
1310 return 0;
1314 * In a format string, find the next occurrence of %(atom).
1316 static const char *find_next(const char *cp)
1318 while (*cp) {
1319 if (*cp == '%') {
1321 * %( is the start of an atom;
1322 * %% is a quoted per-cent.
1324 if (cp[1] == '(')
1325 return cp;
1326 else if (cp[1] == '%')
1327 cp++; /* skip over two % */
1328 /* otherwise this is a singleton, literal % */
1330 cp++;
1332 return NULL;
1335 static int reject_atom(enum atom_type atom_type)
1337 return atom_type == ATOM_REST;
1341 * Make sure the format string is well formed, and parse out
1342 * the used atoms.
1344 int verify_ref_format(struct ref_format *format)
1346 const char *cp, *sp;
1348 format->need_color_reset_at_eol = 0;
1349 for (cp = format->format; *cp && (sp = find_next(cp)); ) {
1350 struct strbuf err = STRBUF_INIT;
1351 const char *color, *ep = strchr(sp, ')');
1352 int at;
1354 if (!ep)
1355 return error(_("malformed format string %s"), sp);
1356 /* sp points at "%(" and ep points at the closing ")" */
1357 at = parse_ref_filter_atom(format, sp + 2, ep, &err);
1358 if (at < 0)
1359 die("%s", err.buf);
1360 if (reject_atom(used_atom[at].atom_type))
1361 die(_("this command reject atom %%(%.*s)"), (int)(ep - sp - 2), sp + 2);
1363 if ((format->quote_style == QUOTE_PYTHON ||
1364 format->quote_style == QUOTE_SHELL ||
1365 format->quote_style == QUOTE_TCL) &&
1366 used_atom[at].atom_type == ATOM_RAW &&
1367 used_atom[at].u.raw_data.option == RAW_BARE)
1368 die(_("--format=%.*s cannot be used with "
1369 "--python, --shell, --tcl"), (int)(ep - sp - 2), sp + 2);
1370 cp = ep + 1;
1372 if (skip_prefix(used_atom[at].name, "color:", &color))
1373 format->need_color_reset_at_eol = !!strcmp(color, "reset");
1374 strbuf_release(&err);
1376 if (format->need_color_reset_at_eol && !want_color(format->use_color))
1377 format->need_color_reset_at_eol = 0;
1378 return 0;
1381 static const char *do_grab_oid(const char *field, const struct object_id *oid,
1382 struct used_atom *atom)
1384 switch (atom->u.oid.option) {
1385 case O_FULL:
1386 return oid_to_hex(oid);
1387 case O_LENGTH:
1388 return repo_find_unique_abbrev(the_repository, oid,
1389 atom->u.oid.length);
1390 case O_SHORT:
1391 return repo_find_unique_abbrev(the_repository, oid,
1392 DEFAULT_ABBREV);
1393 default:
1394 BUG("unknown %%(%s) option", field);
1398 static int grab_oid(const char *name, const char *field, const struct object_id *oid,
1399 struct atom_value *v, struct used_atom *atom)
1401 if (starts_with(name, field)) {
1402 v->s = xstrdup(do_grab_oid(field, oid, atom));
1403 return 1;
1405 return 0;
1408 /* See grab_values */
1409 static void grab_common_values(struct atom_value *val, int deref, struct expand_data *oi)
1411 int i;
1413 for (i = 0; i < used_atom_cnt; i++) {
1414 const char *name = used_atom[i].name;
1415 enum atom_type atom_type = used_atom[i].atom_type;
1416 struct atom_value *v = &val[i];
1417 if (!!deref != (*name == '*'))
1418 continue;
1419 if (deref)
1420 name++;
1421 if (atom_type == ATOM_OBJECTTYPE)
1422 v->s = xstrdup(type_name(oi->type));
1423 else if (atom_type == ATOM_OBJECTSIZE) {
1424 if (used_atom[i].u.objectsize.option == O_SIZE_DISK) {
1425 v->value = oi->disk_size;
1426 v->s = xstrfmt("%"PRIuMAX, (uintmax_t)oi->disk_size);
1427 } else if (used_atom[i].u.objectsize.option == O_SIZE) {
1428 v->value = oi->size;
1429 v->s = xstrfmt("%"PRIuMAX , (uintmax_t)oi->size);
1431 } else if (atom_type == ATOM_DELTABASE)
1432 v->s = xstrdup(oid_to_hex(&oi->delta_base_oid));
1433 else if (atom_type == ATOM_OBJECTNAME && deref)
1434 grab_oid(name, "objectname", &oi->oid, v, &used_atom[i]);
1438 /* See grab_values */
1439 static void grab_tag_values(struct atom_value *val, int deref, struct object *obj)
1441 int i;
1442 struct tag *tag = (struct tag *) obj;
1444 for (i = 0; i < used_atom_cnt; i++) {
1445 const char *name = used_atom[i].name;
1446 enum atom_type atom_type = used_atom[i].atom_type;
1447 struct atom_value *v = &val[i];
1448 if (!!deref != (*name == '*'))
1449 continue;
1450 if (deref)
1451 name++;
1452 if (atom_type == ATOM_TAG)
1453 v->s = xstrdup(tag->tag);
1454 else if (atom_type == ATOM_TYPE && tag->tagged)
1455 v->s = xstrdup(type_name(tag->tagged->type));
1456 else if (atom_type == ATOM_OBJECT && tag->tagged)
1457 v->s = xstrdup(oid_to_hex(&tag->tagged->oid));
1461 /* See grab_values */
1462 static void grab_commit_values(struct atom_value *val, int deref, struct object *obj)
1464 int i;
1465 struct commit *commit = (struct commit *) obj;
1467 for (i = 0; i < used_atom_cnt; i++) {
1468 const char *name = used_atom[i].name;
1469 enum atom_type atom_type = used_atom[i].atom_type;
1470 struct atom_value *v = &val[i];
1471 if (!!deref != (*name == '*'))
1472 continue;
1473 if (deref)
1474 name++;
1475 if (atom_type == ATOM_TREE &&
1476 grab_oid(name, "tree", get_commit_tree_oid(commit), v, &used_atom[i]))
1477 continue;
1478 if (atom_type == ATOM_NUMPARENT) {
1479 v->value = commit_list_count(commit->parents);
1480 v->s = xstrfmt("%lu", (unsigned long)v->value);
1482 else if (atom_type == ATOM_PARENT) {
1483 struct commit_list *parents;
1484 struct strbuf s = STRBUF_INIT;
1485 for (parents = commit->parents; parents; parents = parents->next) {
1486 struct object_id *oid = &parents->item->object.oid;
1487 if (parents != commit->parents)
1488 strbuf_addch(&s, ' ');
1489 strbuf_addstr(&s, do_grab_oid("parent", oid, &used_atom[i]));
1491 v->s = strbuf_detach(&s, NULL);
1496 static const char *find_wholine(const char *who, int wholen, const char *buf)
1498 const char *eol;
1499 while (*buf) {
1500 if (!strncmp(buf, who, wholen) &&
1501 buf[wholen] == ' ')
1502 return buf + wholen + 1;
1503 eol = strchr(buf, '\n');
1504 if (!eol)
1505 return "";
1506 eol++;
1507 if (*eol == '\n')
1508 return ""; /* end of header */
1509 buf = eol;
1511 return "";
1514 static const char *copy_line(const char *buf)
1516 const char *eol = strchrnul(buf, '\n');
1517 return xmemdupz(buf, eol - buf);
1520 static const char *copy_name(const char *buf)
1522 const char *cp;
1523 for (cp = buf; *cp && *cp != '\n'; cp++) {
1524 if (starts_with(cp, " <"))
1525 return xmemdupz(buf, cp - buf);
1527 return xstrdup("");
1530 static const char *find_end_of_email(const char *email, int opt)
1532 const char *eoemail;
1534 if (opt & EO_LOCALPART) {
1535 eoemail = strchr(email, '@');
1536 if (eoemail)
1537 return eoemail;
1538 return strchr(email, '>');
1541 if (opt & EO_TRIM)
1542 return strchr(email, '>');
1545 * The option here is either the raw email option or the raw
1546 * mailmap option (that is EO_RAW or EO_MAILMAP). In such cases,
1547 * we directly grab the whole email including the closing
1548 * angle brackets.
1550 * If EO_MAILMAP was set with any other option (that is either
1551 * EO_TRIM or EO_LOCALPART), we already grab the end of email
1552 * above.
1554 eoemail = strchr(email, '>');
1555 if (eoemail)
1556 eoemail++;
1557 return eoemail;
1560 static const char *copy_email(const char *buf, struct used_atom *atom)
1562 const char *email = strchr(buf, '<');
1563 const char *eoemail;
1564 int opt = atom->u.email_option.option;
1566 if (!email)
1567 return xstrdup("");
1569 if (opt & (EO_LOCALPART | EO_TRIM))
1570 email++;
1572 eoemail = find_end_of_email(email, opt);
1573 if (!eoemail)
1574 return xstrdup("");
1575 return xmemdupz(email, eoemail - email);
1578 static char *copy_subject(const char *buf, unsigned long len)
1580 struct strbuf sb = STRBUF_INIT;
1581 int i;
1583 for (i = 0; i < len; i++) {
1584 if (buf[i] == '\r' && i + 1 < len && buf[i + 1] == '\n')
1585 continue; /* ignore CR in CRLF */
1587 if (buf[i] == '\n')
1588 strbuf_addch(&sb, ' ');
1589 else
1590 strbuf_addch(&sb, buf[i]);
1592 return strbuf_detach(&sb, NULL);
1595 static void grab_date(const char *buf, struct atom_value *v, const char *atomname)
1597 const char *eoemail = strstr(buf, "> ");
1598 char *zone;
1599 timestamp_t timestamp;
1600 long tz;
1601 struct date_mode date_mode = DATE_MODE_INIT;
1602 const char *formatp;
1605 * We got here because atomname ends in "date" or "date<something>";
1606 * it's not possible that <something> is not ":<format>" because
1607 * parse_ref_filter_atom() wouldn't have allowed it, so we can assume that no
1608 * ":" means no format is specified, and use the default.
1610 formatp = strchr(atomname, ':');
1611 if (formatp) {
1612 formatp++;
1613 parse_date_format(formatp, &date_mode);
1616 * If this is a sort field and a format was specified, we'll
1617 * want to compare formatted date by string value.
1619 v->atom->type = FIELD_STR;
1622 if (!eoemail)
1623 goto bad;
1624 timestamp = parse_timestamp(eoemail + 2, &zone, 10);
1625 if (timestamp == TIME_MAX)
1626 goto bad;
1627 tz = strtol(zone, NULL, 10);
1628 if ((tz == LONG_MIN || tz == LONG_MAX) && errno == ERANGE)
1629 goto bad;
1630 v->s = xstrdup(show_date(timestamp, tz, date_mode));
1631 v->value = timestamp;
1632 date_mode_release(&date_mode);
1633 return;
1634 bad:
1635 v->s = xstrdup("");
1636 v->value = 0;
1639 static struct string_list mailmap = STRING_LIST_INIT_NODUP;
1641 /* See grab_values */
1642 static void grab_person(const char *who, struct atom_value *val, int deref, void *buf)
1644 int i;
1645 int wholen = strlen(who);
1646 const char *wholine = NULL;
1647 const char *headers[] = { "author ", "committer ",
1648 "tagger ", NULL };
1650 for (i = 0; i < used_atom_cnt; i++) {
1651 struct used_atom *atom = &used_atom[i];
1652 const char *name = atom->name;
1653 struct atom_value *v = &val[i];
1654 struct strbuf mailmap_buf = STRBUF_INIT;
1656 if (!!deref != (*name == '*'))
1657 continue;
1658 if (deref)
1659 name++;
1660 if (strncmp(who, name, wholen))
1661 continue;
1662 if (name[wholen] != 0 &&
1663 !starts_with(name + wholen, "name") &&
1664 !starts_with(name + wholen, "email") &&
1665 !starts_with(name + wholen, "date"))
1666 continue;
1668 if ((starts_with(name + wholen, "name") &&
1669 (atom->u.name_option.option == N_MAILMAP)) ||
1670 (starts_with(name + wholen, "email") &&
1671 (atom->u.email_option.option & EO_MAILMAP))) {
1672 if (!mailmap.items)
1673 read_mailmap(&mailmap);
1674 strbuf_addstr(&mailmap_buf, buf);
1675 apply_mailmap_to_header(&mailmap_buf, headers, &mailmap);
1676 wholine = find_wholine(who, wholen, mailmap_buf.buf);
1677 } else {
1678 wholine = find_wholine(who, wholen, buf);
1681 if (!wholine)
1682 return; /* no point looking for it */
1683 if (name[wholen] == 0)
1684 v->s = copy_line(wholine);
1685 else if (starts_with(name + wholen, "name"))
1686 v->s = copy_name(wholine);
1687 else if (starts_with(name + wholen, "email"))
1688 v->s = copy_email(wholine, &used_atom[i]);
1689 else if (starts_with(name + wholen, "date"))
1690 grab_date(wholine, v, name);
1692 strbuf_release(&mailmap_buf);
1696 * For a tag or a commit object, if "creator" or "creatordate" is
1697 * requested, do something special.
1699 if (strcmp(who, "tagger") && strcmp(who, "committer"))
1700 return; /* "author" for commit object is not wanted */
1701 if (!wholine)
1702 wholine = find_wholine(who, wholen, buf);
1703 if (!wholine)
1704 return;
1705 for (i = 0; i < used_atom_cnt; i++) {
1706 const char *name = used_atom[i].name;
1707 enum atom_type atom_type = used_atom[i].atom_type;
1708 struct atom_value *v = &val[i];
1709 if (!!deref != (*name == '*'))
1710 continue;
1711 if (deref)
1712 name++;
1714 if (atom_type == ATOM_CREATORDATE)
1715 grab_date(wholine, v, name);
1716 else if (atom_type == ATOM_CREATOR)
1717 v->s = copy_line(wholine);
1721 static void grab_signature(struct atom_value *val, int deref, struct object *obj)
1723 int i;
1724 struct commit *commit = (struct commit *) obj;
1725 struct signature_check sigc = { 0 };
1726 int signature_checked = 0;
1728 for (i = 0; i < used_atom_cnt; i++) {
1729 struct used_atom *atom = &used_atom[i];
1730 const char *name = atom->name;
1731 struct atom_value *v = &val[i];
1732 int opt;
1734 if (!!deref != (*name == '*'))
1735 continue;
1736 if (deref)
1737 name++;
1739 if (!skip_prefix(name, "signature", &name) ||
1740 (*name && *name != ':'))
1741 continue;
1742 if (!*name)
1743 name = NULL;
1744 else
1745 name++;
1747 opt = parse_signature_option(name);
1748 if (opt < 0)
1749 continue;
1751 if (!signature_checked) {
1752 check_commit_signature(commit, &sigc);
1753 signature_checked = 1;
1756 switch (opt) {
1757 case S_BARE:
1758 v->s = xstrdup(sigc.output ? sigc.output: "");
1759 break;
1760 case S_SIGNER:
1761 v->s = xstrdup(sigc.signer ? sigc.signer : "");
1762 break;
1763 case S_GRADE:
1764 switch (sigc.result) {
1765 case 'G':
1766 switch (sigc.trust_level) {
1767 case TRUST_UNDEFINED:
1768 case TRUST_NEVER:
1769 v->s = xstrfmt("%c", (char)'U');
1770 break;
1771 default:
1772 v->s = xstrfmt("%c", (char)'G');
1773 break;
1775 break;
1776 case 'B':
1777 case 'E':
1778 case 'N':
1779 case 'X':
1780 case 'Y':
1781 case 'R':
1782 v->s = xstrfmt("%c", (char)sigc.result);
1783 break;
1785 break;
1786 case S_KEY:
1787 v->s = xstrdup(sigc.key ? sigc.key : "");
1788 break;
1789 case S_FINGERPRINT:
1790 v->s = xstrdup(sigc.fingerprint ?
1791 sigc.fingerprint : "");
1792 break;
1793 case S_PRI_KEY_FP:
1794 v->s = xstrdup(sigc.primary_key_fingerprint ?
1795 sigc.primary_key_fingerprint : "");
1796 break;
1797 case S_TRUST_LEVEL:
1798 v->s = xstrdup(gpg_trust_level_to_str(sigc.trust_level));
1799 break;
1803 if (signature_checked)
1804 signature_check_clear(&sigc);
1807 static void find_subpos(const char *buf,
1808 const char **sub, size_t *sublen,
1809 const char **body, size_t *bodylen,
1810 size_t *nonsiglen,
1811 const char **sig, size_t *siglen)
1813 struct strbuf payload = STRBUF_INIT;
1814 struct strbuf signature = STRBUF_INIT;
1815 const char *eol;
1816 const char *end = buf + strlen(buf);
1817 const char *sigstart;
1819 /* parse signature first; we might not even have a subject line */
1820 parse_signature(buf, end - buf, &payload, &signature);
1821 strbuf_release(&payload);
1823 /* skip past header until we hit empty line */
1824 while (*buf && *buf != '\n') {
1825 eol = strchrnul(buf, '\n');
1826 if (*eol)
1827 eol++;
1828 buf = eol;
1830 /* skip any empty lines */
1831 while (*buf == '\n')
1832 buf++;
1833 *sig = strbuf_detach(&signature, siglen);
1834 sigstart = buf + parse_signed_buffer(buf, strlen(buf));
1836 /* subject is first non-empty line */
1837 *sub = buf;
1838 /* subject goes to first empty line before signature begins */
1839 if ((eol = strstr(*sub, "\n\n")) ||
1840 (eol = strstr(*sub, "\r\n\r\n"))) {
1841 eol = eol < sigstart ? eol : sigstart;
1842 } else {
1843 /* treat whole message as subject */
1844 eol = sigstart;
1846 buf = eol;
1847 *sublen = buf - *sub;
1848 /* drop trailing newline, if present */
1849 while (*sublen && ((*sub)[*sublen - 1] == '\n' ||
1850 (*sub)[*sublen - 1] == '\r'))
1851 *sublen -= 1;
1853 /* skip any empty lines */
1854 while (*buf == '\n' || *buf == '\r')
1855 buf++;
1856 *body = buf;
1857 *bodylen = strlen(buf);
1858 *nonsiglen = sigstart - buf;
1862 * If 'lines' is greater than 0, append that many lines from the given
1863 * 'buf' of length 'size' to the given strbuf.
1865 static void append_lines(struct strbuf *out, const char *buf, unsigned long size, int lines)
1867 int i;
1868 const char *sp, *eol;
1869 size_t len;
1871 sp = buf;
1873 for (i = 0; i < lines && sp < buf + size; i++) {
1874 if (i)
1875 strbuf_addstr(out, "\n ");
1876 eol = memchr(sp, '\n', size - (sp - buf));
1877 len = eol ? eol - sp : size - (sp - buf);
1878 strbuf_add(out, sp, len);
1879 if (!eol)
1880 break;
1881 sp = eol + 1;
1885 static void grab_describe_values(struct atom_value *val, int deref,
1886 struct object *obj)
1888 struct commit *commit = (struct commit *)obj;
1889 int i;
1891 for (i = 0; i < used_atom_cnt; i++) {
1892 struct used_atom *atom = &used_atom[i];
1893 enum atom_type type = atom->atom_type;
1894 const char *name = atom->name;
1895 struct atom_value *v = &val[i];
1897 struct child_process cmd = CHILD_PROCESS_INIT;
1898 struct strbuf out = STRBUF_INIT;
1899 struct strbuf err = STRBUF_INIT;
1901 if (type != ATOM_DESCRIBE)
1902 continue;
1904 if (!!deref != (*name == '*'))
1905 continue;
1907 cmd.git_cmd = 1;
1908 strvec_push(&cmd.args, "describe");
1909 strvec_pushv(&cmd.args, atom->u.describe_args);
1910 strvec_push(&cmd.args, oid_to_hex(&commit->object.oid));
1911 if (pipe_command(&cmd, NULL, 0, &out, 0, &err, 0) < 0) {
1912 error(_("failed to run 'describe'"));
1913 v->s = xstrdup("");
1914 continue;
1916 strbuf_rtrim(&out);
1917 v->s = strbuf_detach(&out, NULL);
1919 strbuf_release(&err);
1923 /* See grab_values */
1924 static void grab_sub_body_contents(struct atom_value *val, int deref, struct expand_data *data)
1926 int i;
1927 const char *subpos = NULL, *bodypos = NULL, *sigpos = NULL;
1928 size_t sublen = 0, bodylen = 0, nonsiglen = 0, siglen = 0;
1929 void *buf = data->content;
1931 for (i = 0; i < used_atom_cnt; i++) {
1932 struct used_atom *atom = &used_atom[i];
1933 const char *name = atom->name;
1934 struct atom_value *v = &val[i];
1935 enum atom_type atom_type = atom->atom_type;
1937 if (!!deref != (*name == '*'))
1938 continue;
1939 if (deref)
1940 name++;
1942 if (atom_type == ATOM_RAW) {
1943 unsigned long buf_size = data->size;
1945 if (atom->u.raw_data.option == RAW_BARE) {
1946 v->s = xmemdupz(buf, buf_size);
1947 v->s_size = buf_size;
1948 } else if (atom->u.raw_data.option == RAW_LENGTH) {
1949 v->value = buf_size;
1950 v->s = xstrfmt("%"PRIuMAX, v->value);
1952 continue;
1955 if ((data->type != OBJ_TAG &&
1956 data->type != OBJ_COMMIT) ||
1957 (strcmp(name, "body") &&
1958 !starts_with(name, "subject") &&
1959 !starts_with(name, "trailers") &&
1960 !starts_with(name, "contents")))
1961 continue;
1962 if (!subpos)
1963 find_subpos(buf,
1964 &subpos, &sublen,
1965 &bodypos, &bodylen, &nonsiglen,
1966 &sigpos, &siglen);
1968 if (atom->u.contents.option == C_SUB)
1969 v->s = copy_subject(subpos, sublen);
1970 else if (atom->u.contents.option == C_SUB_SANITIZE) {
1971 struct strbuf sb = STRBUF_INIT;
1972 format_sanitized_subject(&sb, subpos, sublen);
1973 v->s = strbuf_detach(&sb, NULL);
1974 } else if (atom->u.contents.option == C_BODY_DEP)
1975 v->s = xmemdupz(bodypos, bodylen);
1976 else if (atom->u.contents.option == C_LENGTH) {
1977 v->value = strlen(subpos);
1978 v->s = xstrfmt("%"PRIuMAX, v->value);
1979 } else if (atom->u.contents.option == C_BODY)
1980 v->s = xmemdupz(bodypos, nonsiglen);
1981 else if (atom->u.contents.option == C_SIG)
1982 v->s = xmemdupz(sigpos, siglen);
1983 else if (atom->u.contents.option == C_LINES) {
1984 struct strbuf s = STRBUF_INIT;
1985 const char *contents_end = bodypos + nonsiglen;
1987 /* Size is the length of the message after removing the signature */
1988 append_lines(&s, subpos, contents_end - subpos, atom->u.contents.nlines);
1989 v->s = strbuf_detach(&s, NULL);
1990 } else if (atom->u.contents.option == C_TRAILERS) {
1991 struct strbuf s = STRBUF_INIT;
1993 /* Format the trailer info according to the trailer_opts given */
1994 format_trailers_from_commit(&atom->u.contents.trailer_opts, subpos, &s);
1996 v->s = strbuf_detach(&s, NULL);
1997 } else if (atom->u.contents.option == C_BARE)
1998 v->s = xstrdup(subpos);
2001 free((void *)sigpos);
2005 * We want to have empty print-string for field requests
2006 * that do not apply (e.g. "authordate" for a tag object)
2008 static void fill_missing_values(struct atom_value *val)
2010 int i;
2011 for (i = 0; i < used_atom_cnt; i++) {
2012 struct atom_value *v = &val[i];
2013 if (!v->s)
2014 v->s = xstrdup("");
2019 * val is a list of atom_value to hold returned values. Extract
2020 * the values for atoms in used_atom array out of (obj, buf, sz).
2021 * when deref is false, (obj, buf, sz) is the object that is
2022 * pointed at by the ref itself; otherwise it is the object the
2023 * ref (which is a tag) refers to.
2025 static void grab_values(struct atom_value *val, int deref, struct object *obj, struct expand_data *data)
2027 void *buf = data->content;
2029 switch (obj->type) {
2030 case OBJ_TAG:
2031 grab_tag_values(val, deref, obj);
2032 grab_sub_body_contents(val, deref, data);
2033 grab_person("tagger", val, deref, buf);
2034 grab_describe_values(val, deref, obj);
2035 break;
2036 case OBJ_COMMIT:
2037 grab_commit_values(val, deref, obj);
2038 grab_sub_body_contents(val, deref, data);
2039 grab_person("author", val, deref, buf);
2040 grab_person("committer", val, deref, buf);
2041 grab_signature(val, deref, obj);
2042 grab_describe_values(val, deref, obj);
2043 break;
2044 case OBJ_TREE:
2045 /* grab_tree_values(val, deref, obj, buf, sz); */
2046 grab_sub_body_contents(val, deref, data);
2047 break;
2048 case OBJ_BLOB:
2049 /* grab_blob_values(val, deref, obj, buf, sz); */
2050 grab_sub_body_contents(val, deref, data);
2051 break;
2052 default:
2053 die("Eh? Object of type %d?", obj->type);
2057 static inline char *copy_advance(char *dst, const char *src)
2059 while (*src)
2060 *dst++ = *src++;
2061 return dst;
2064 static const char *lstrip_ref_components(const char *refname, int len)
2066 long remaining = len;
2067 const char *start = xstrdup(refname);
2068 const char *to_free = start;
2070 if (len < 0) {
2071 int i;
2072 const char *p = refname;
2074 /* Find total no of '/' separated path-components */
2075 for (i = 0; p[i]; p[i] == '/' ? i++ : *p++)
2078 * The number of components we need to strip is now
2079 * the total minus the components to be left (Plus one
2080 * because we count the number of '/', but the number
2081 * of components is one more than the no of '/').
2083 remaining = i + len + 1;
2086 while (remaining > 0) {
2087 switch (*start++) {
2088 case '\0':
2089 free((char *)to_free);
2090 return xstrdup("");
2091 case '/':
2092 remaining--;
2093 break;
2097 start = xstrdup(start);
2098 free((char *)to_free);
2099 return start;
2102 static const char *rstrip_ref_components(const char *refname, int len)
2104 long remaining = len;
2105 const char *start = xstrdup(refname);
2106 const char *to_free = start;
2108 if (len < 0) {
2109 int i;
2110 const char *p = refname;
2112 /* Find total no of '/' separated path-components */
2113 for (i = 0; p[i]; p[i] == '/' ? i++ : *p++)
2116 * The number of components we need to strip is now
2117 * the total minus the components to be left (Plus one
2118 * because we count the number of '/', but the number
2119 * of components is one more than the no of '/').
2121 remaining = i + len + 1;
2124 while (remaining-- > 0) {
2125 char *p = strrchr(start, '/');
2126 if (!p) {
2127 free((char *)to_free);
2128 return xstrdup("");
2129 } else
2130 p[0] = '\0';
2132 return start;
2135 static const char *show_ref(struct refname_atom *atom, const char *refname)
2137 if (atom->option == R_SHORT)
2138 return shorten_unambiguous_ref(refname, warn_ambiguous_refs);
2139 else if (atom->option == R_LSTRIP)
2140 return lstrip_ref_components(refname, atom->lstrip);
2141 else if (atom->option == R_RSTRIP)
2142 return rstrip_ref_components(refname, atom->rstrip);
2143 else
2144 return xstrdup(refname);
2147 static void fill_remote_ref_details(struct used_atom *atom, const char *refname,
2148 struct branch *branch, const char **s)
2150 int num_ours, num_theirs;
2151 if (atom->u.remote_ref.option == RR_REF)
2152 *s = show_ref(&atom->u.remote_ref.refname, refname);
2153 else if (atom->u.remote_ref.option == RR_TRACK) {
2154 if (stat_tracking_info(branch, &num_ours, &num_theirs,
2155 NULL, atom->u.remote_ref.push,
2156 AHEAD_BEHIND_FULL) < 0) {
2157 *s = xstrdup(msgs.gone);
2158 } else if (!num_ours && !num_theirs)
2159 *s = xstrdup("");
2160 else if (!num_ours)
2161 *s = xstrfmt(msgs.behind, num_theirs);
2162 else if (!num_theirs)
2163 *s = xstrfmt(msgs.ahead, num_ours);
2164 else
2165 *s = xstrfmt(msgs.ahead_behind,
2166 num_ours, num_theirs);
2167 if (!atom->u.remote_ref.nobracket && *s[0]) {
2168 const char *to_free = *s;
2169 *s = xstrfmt("[%s]", *s);
2170 free((void *)to_free);
2172 } else if (atom->u.remote_ref.option == RR_TRACKSHORT) {
2173 if (stat_tracking_info(branch, &num_ours, &num_theirs,
2174 NULL, atom->u.remote_ref.push,
2175 AHEAD_BEHIND_FULL) < 0) {
2176 *s = xstrdup("");
2177 return;
2179 if (!num_ours && !num_theirs)
2180 *s = xstrdup("=");
2181 else if (!num_ours)
2182 *s = xstrdup("<");
2183 else if (!num_theirs)
2184 *s = xstrdup(">");
2185 else
2186 *s = xstrdup("<>");
2187 } else if (atom->u.remote_ref.option == RR_REMOTE_NAME) {
2188 int explicit;
2189 const char *remote = atom->u.remote_ref.push ?
2190 pushremote_for_branch(branch, &explicit) :
2191 remote_for_branch(branch, &explicit);
2192 *s = xstrdup(explicit ? remote : "");
2193 } else if (atom->u.remote_ref.option == RR_REMOTE_REF) {
2194 const char *merge;
2196 merge = remote_ref_for_branch(branch, atom->u.remote_ref.push);
2197 *s = xstrdup(merge ? merge : "");
2198 } else
2199 BUG("unhandled RR_* enum");
2202 char *get_head_description(void)
2204 struct strbuf desc = STRBUF_INIT;
2205 struct wt_status_state state;
2206 memset(&state, 0, sizeof(state));
2207 wt_status_get_state(the_repository, &state, 1);
2208 if (state.rebase_in_progress ||
2209 state.rebase_interactive_in_progress) {
2210 if (state.branch)
2211 strbuf_addf(&desc, _("(no branch, rebasing %s)"),
2212 state.branch);
2213 else
2214 strbuf_addf(&desc, _("(no branch, rebasing detached HEAD %s)"),
2215 state.detached_from);
2216 } else if (state.bisect_in_progress)
2217 strbuf_addf(&desc, _("(no branch, bisect started on %s)"),
2218 state.bisecting_from);
2219 else if (state.detached_from) {
2220 if (state.detached_at)
2221 strbuf_addf(&desc, _("(HEAD detached at %s)"),
2222 state.detached_from);
2223 else
2224 strbuf_addf(&desc, _("(HEAD detached from %s)"),
2225 state.detached_from);
2226 } else
2227 strbuf_addstr(&desc, _("(no branch)"));
2229 wt_status_state_free_buffers(&state);
2231 return strbuf_detach(&desc, NULL);
2234 static const char *get_symref(struct used_atom *atom, struct ref_array_item *ref)
2236 if (!ref->symref)
2237 return xstrdup("");
2238 else
2239 return show_ref(&atom->u.refname, ref->symref);
2242 static const char *get_refname(struct used_atom *atom, struct ref_array_item *ref)
2244 if (ref->kind & FILTER_REFS_DETACHED_HEAD)
2245 return get_head_description();
2246 return show_ref(&atom->u.refname, ref->refname);
2249 static int get_object(struct ref_array_item *ref, int deref, struct object **obj,
2250 struct expand_data *oi, struct strbuf *err)
2252 /* parse_object_buffer() will set eaten to 0 if free() will be needed */
2253 int eaten = 1;
2254 if (oi->info.contentp) {
2255 /* We need to know that to use parse_object_buffer properly */
2256 oi->info.sizep = &oi->size;
2257 oi->info.typep = &oi->type;
2259 if (oid_object_info_extended(the_repository, &oi->oid, &oi->info,
2260 OBJECT_INFO_LOOKUP_REPLACE))
2261 return strbuf_addf_ret(err, -1, _("missing object %s for %s"),
2262 oid_to_hex(&oi->oid), ref->refname);
2263 if (oi->info.disk_sizep && oi->disk_size < 0)
2264 BUG("Object size is less than zero.");
2266 if (oi->info.contentp) {
2267 *obj = parse_object_buffer(the_repository, &oi->oid, oi->type, oi->size, oi->content, &eaten);
2268 if (!*obj) {
2269 if (!eaten)
2270 free(oi->content);
2271 return strbuf_addf_ret(err, -1, _("parse_object_buffer failed on %s for %s"),
2272 oid_to_hex(&oi->oid), ref->refname);
2274 grab_values(ref->value, deref, *obj, oi);
2277 grab_common_values(ref->value, deref, oi);
2278 if (!eaten)
2279 free(oi->content);
2280 return 0;
2283 static void populate_worktree_map(struct hashmap *map, struct worktree **worktrees)
2285 int i;
2287 for (i = 0; worktrees[i]; i++) {
2288 if (worktrees[i]->head_ref) {
2289 struct ref_to_worktree_entry *entry;
2290 entry = xmalloc(sizeof(*entry));
2291 entry->wt = worktrees[i];
2292 hashmap_entry_init(&entry->ent,
2293 strhash(worktrees[i]->head_ref));
2295 hashmap_add(map, &entry->ent);
2300 static void lazy_init_worktree_map(void)
2302 if (ref_to_worktree_map.worktrees)
2303 return;
2305 ref_to_worktree_map.worktrees = get_worktrees();
2306 hashmap_init(&(ref_to_worktree_map.map), ref_to_worktree_map_cmpfnc, NULL, 0);
2307 populate_worktree_map(&(ref_to_worktree_map.map), ref_to_worktree_map.worktrees);
2310 static char *get_worktree_path(const struct ref_array_item *ref)
2312 struct hashmap_entry entry, *e;
2313 struct ref_to_worktree_entry *lookup_result;
2315 lazy_init_worktree_map();
2317 hashmap_entry_init(&entry, strhash(ref->refname));
2318 e = hashmap_get(&(ref_to_worktree_map.map), &entry, ref->refname);
2320 if (!e)
2321 return xstrdup("");
2323 lookup_result = container_of(e, struct ref_to_worktree_entry, ent);
2325 return xstrdup(lookup_result->wt->path);
2329 * Parse the object referred by ref, and grab needed value.
2331 static int populate_value(struct ref_array_item *ref, struct strbuf *err)
2333 struct object *obj;
2334 int i;
2335 struct object_info empty = OBJECT_INFO_INIT;
2336 int ahead_behind_atoms = 0;
2338 CALLOC_ARRAY(ref->value, used_atom_cnt);
2340 if (need_symref && (ref->flag & REF_ISSYMREF) && !ref->symref) {
2341 ref->symref = resolve_refdup(ref->refname, RESOLVE_REF_READING,
2342 NULL, NULL);
2343 if (!ref->symref)
2344 ref->symref = xstrdup("");
2347 /* Fill in specials first */
2348 for (i = 0; i < used_atom_cnt; i++) {
2349 struct used_atom *atom = &used_atom[i];
2350 enum atom_type atom_type = atom->atom_type;
2351 const char *name = used_atom[i].name;
2352 struct atom_value *v = &ref->value[i];
2353 int deref = 0;
2354 const char *refname;
2355 struct branch *branch = NULL;
2357 v->s_size = ATOM_SIZE_UNSPECIFIED;
2358 v->handler = append_atom;
2359 v->value = 0;
2360 v->atom = atom;
2362 if (*name == '*') {
2363 deref = 1;
2364 name++;
2367 if (atom_type == ATOM_REFNAME)
2368 refname = get_refname(atom, ref);
2369 else if (atom_type == ATOM_WORKTREEPATH) {
2370 if (ref->kind == FILTER_REFS_BRANCHES)
2371 v->s = get_worktree_path(ref);
2372 else
2373 v->s = xstrdup("");
2374 continue;
2376 else if (atom_type == ATOM_SYMREF)
2377 refname = get_symref(atom, ref);
2378 else if (atom_type == ATOM_UPSTREAM) {
2379 const char *branch_name;
2380 /* only local branches may have an upstream */
2381 if (!skip_prefix(ref->refname, "refs/heads/",
2382 &branch_name)) {
2383 v->s = xstrdup("");
2384 continue;
2386 branch = branch_get(branch_name);
2388 refname = branch_get_upstream(branch, NULL);
2389 if (refname)
2390 fill_remote_ref_details(atom, refname, branch, &v->s);
2391 else
2392 v->s = xstrdup("");
2393 continue;
2394 } else if (atom_type == ATOM_PUSH && atom->u.remote_ref.push) {
2395 const char *branch_name;
2396 v->s = xstrdup("");
2397 if (!skip_prefix(ref->refname, "refs/heads/",
2398 &branch_name))
2399 continue;
2400 branch = branch_get(branch_name);
2402 if (atom->u.remote_ref.push_remote)
2403 refname = NULL;
2404 else {
2405 refname = branch_get_push(branch, NULL);
2406 if (!refname)
2407 continue;
2409 /* We will definitely re-init v->s on the next line. */
2410 free((char *)v->s);
2411 fill_remote_ref_details(atom, refname, branch, &v->s);
2412 continue;
2413 } else if (atom_type == ATOM_COLOR) {
2414 v->s = xstrdup(atom->u.color);
2415 continue;
2416 } else if (atom_type == ATOM_FLAG) {
2417 char buf[256], *cp = buf;
2418 if (ref->flag & REF_ISSYMREF)
2419 cp = copy_advance(cp, ",symref");
2420 if (ref->flag & REF_ISPACKED)
2421 cp = copy_advance(cp, ",packed");
2422 if (cp == buf)
2423 v->s = xstrdup("");
2424 else {
2425 *cp = '\0';
2426 v->s = xstrdup(buf + 1);
2428 continue;
2429 } else if (!deref && atom_type == ATOM_OBJECTNAME &&
2430 grab_oid(name, "objectname", &ref->objectname, v, atom)) {
2431 continue;
2432 } else if (atom_type == ATOM_HEAD) {
2433 if (atom->u.head && !strcmp(ref->refname, atom->u.head))
2434 v->s = xstrdup("*");
2435 else
2436 v->s = xstrdup(" ");
2437 continue;
2438 } else if (atom_type == ATOM_ALIGN) {
2439 v->handler = align_atom_handler;
2440 v->s = xstrdup("");
2441 continue;
2442 } else if (atom_type == ATOM_END) {
2443 v->handler = end_atom_handler;
2444 v->s = xstrdup("");
2445 continue;
2446 } else if (atom_type == ATOM_IF) {
2447 const char *s;
2448 if (skip_prefix(name, "if:", &s))
2449 v->s = xstrdup(s);
2450 else
2451 v->s = xstrdup("");
2452 v->handler = if_atom_handler;
2453 continue;
2454 } else if (atom_type == ATOM_THEN) {
2455 v->handler = then_atom_handler;
2456 v->s = xstrdup("");
2457 continue;
2458 } else if (atom_type == ATOM_ELSE) {
2459 v->handler = else_atom_handler;
2460 v->s = xstrdup("");
2461 continue;
2462 } else if (atom_type == ATOM_REST) {
2463 if (ref->rest)
2464 v->s = xstrdup(ref->rest);
2465 else
2466 v->s = xstrdup("");
2467 continue;
2468 } else if (atom_type == ATOM_AHEADBEHIND) {
2469 if (ref->counts) {
2470 const struct ahead_behind_count *count;
2471 count = ref->counts[ahead_behind_atoms++];
2472 v->s = xstrfmt("%d %d", count->ahead, count->behind);
2473 } else {
2474 /* Not a commit. */
2475 v->s = xstrdup("");
2477 continue;
2478 } else
2479 continue;
2481 if (!deref)
2482 v->s = xstrdup(refname);
2483 else
2484 v->s = xstrfmt("%s^{}", refname);
2485 free((char *)refname);
2488 for (i = 0; i < used_atom_cnt; i++) {
2489 struct atom_value *v = &ref->value[i];
2490 if (v->s == NULL && used_atom[i].source == SOURCE_NONE)
2491 return strbuf_addf_ret(err, -1, _("missing object %s for %s"),
2492 oid_to_hex(&ref->objectname), ref->refname);
2495 if (need_tagged)
2496 oi.info.contentp = &oi.content;
2497 if (!memcmp(&oi.info, &empty, sizeof(empty)) &&
2498 !memcmp(&oi_deref.info, &empty, sizeof(empty)))
2499 return 0;
2502 oi.oid = ref->objectname;
2503 if (get_object(ref, 0, &obj, &oi, err))
2504 return -1;
2507 * If there is no atom that wants to know about tagged
2508 * object, we are done.
2510 if (!need_tagged || (obj->type != OBJ_TAG))
2511 return 0;
2514 * If it is a tag object, see if we use the peeled value. If we do,
2515 * grab the peeled OID.
2517 if (need_tagged && peel_iterated_oid(&obj->oid, &oi_deref.oid))
2518 die("bad tag");
2520 return get_object(ref, 1, &obj, &oi_deref, err);
2524 * Given a ref, return the value for the atom. This lazily gets value
2525 * out of the object by calling populate value.
2527 static int get_ref_atom_value(struct ref_array_item *ref, int atom,
2528 struct atom_value **v, struct strbuf *err)
2530 if (!ref->value) {
2531 if (populate_value(ref, err))
2532 return -1;
2533 fill_missing_values(ref->value);
2535 *v = &ref->value[atom];
2536 return 0;
2540 * Return 1 if the refname matches one of the patterns, otherwise 0.
2541 * A pattern can be a literal prefix (e.g. a refname "refs/heads/master"
2542 * matches a pattern "refs/heads/mas") or a wildcard (e.g. the same ref
2543 * matches "refs/heads/mas*", too).
2545 static int match_pattern(const char **patterns, const char *refname,
2546 int ignore_case)
2548 unsigned flags = 0;
2550 if (ignore_case)
2551 flags |= WM_CASEFOLD;
2554 * When no '--format' option is given we need to skip the prefix
2555 * for matching refs of tags and branches.
2557 (void)(skip_prefix(refname, "refs/tags/", &refname) ||
2558 skip_prefix(refname, "refs/heads/", &refname) ||
2559 skip_prefix(refname, "refs/remotes/", &refname) ||
2560 skip_prefix(refname, "refs/", &refname));
2562 for (; *patterns; patterns++) {
2563 if (!wildmatch(*patterns, refname, flags))
2564 return 1;
2566 return 0;
2570 * Return 1 if the refname matches one of the patterns, otherwise 0.
2571 * A pattern can be path prefix (e.g. a refname "refs/heads/master"
2572 * matches a pattern "refs/heads/" but not "refs/heads/m") or a
2573 * wildcard (e.g. the same ref matches "refs/heads/m*", too).
2575 static int match_name_as_path(const char **pattern, const char *refname,
2576 int ignore_case)
2578 int namelen = strlen(refname);
2579 unsigned flags = WM_PATHNAME;
2581 if (ignore_case)
2582 flags |= WM_CASEFOLD;
2584 for (; *pattern; pattern++) {
2585 const char *p = *pattern;
2586 int plen = strlen(p);
2588 if ((plen <= namelen) &&
2589 !strncmp(refname, p, plen) &&
2590 (refname[plen] == '\0' ||
2591 refname[plen] == '/' ||
2592 p[plen-1] == '/'))
2593 return 1;
2594 if (!wildmatch(p, refname, flags))
2595 return 1;
2597 return 0;
2600 /* Return 1 if the refname matches one of the patterns, otherwise 0. */
2601 static int filter_pattern_match(struct ref_filter *filter, const char *refname)
2603 if (!*filter->name_patterns)
2604 return 1; /* No pattern always matches */
2605 if (filter->match_as_path)
2606 return match_name_as_path(filter->name_patterns, refname,
2607 filter->ignore_case);
2608 return match_pattern(filter->name_patterns, refname,
2609 filter->ignore_case);
2612 static int filter_exclude_match(struct ref_filter *filter, const char *refname)
2614 if (!filter->exclude.nr)
2615 return 0;
2616 if (filter->match_as_path)
2617 return match_name_as_path(filter->exclude.v, refname,
2618 filter->ignore_case);
2619 return match_pattern(filter->exclude.v, refname, filter->ignore_case);
2623 * This is the same as for_each_fullref_in(), but it tries to iterate
2624 * only over the patterns we'll care about. Note that it _doesn't_ do a full
2625 * pattern match, so the callback still has to match each ref individually.
2627 static int for_each_fullref_in_pattern(struct ref_filter *filter,
2628 each_ref_fn cb,
2629 void *cb_data)
2631 if (filter->kind == FILTER_REFS_KIND_MASK) {
2632 /* In this case, we want to print all refs including root refs. */
2633 return refs_for_each_include_root_refs(get_main_ref_store(the_repository),
2634 cb, cb_data);
2637 if (!filter->match_as_path) {
2639 * in this case, the patterns are applied after
2640 * prefixes like "refs/heads/" etc. are stripped off,
2641 * so we have to look at everything:
2643 return for_each_fullref_in("", cb, cb_data);
2646 if (filter->ignore_case) {
2648 * we can't handle case-insensitive comparisons,
2649 * so just return everything and let the caller
2650 * sort it out.
2652 return for_each_fullref_in("", cb, cb_data);
2655 if (!filter->name_patterns[0]) {
2656 /* no patterns; we have to look at everything */
2657 return refs_for_each_fullref_in(get_main_ref_store(the_repository),
2658 "", filter->exclude.v, cb, cb_data);
2661 return refs_for_each_fullref_in_prefixes(get_main_ref_store(the_repository),
2662 NULL, filter->name_patterns,
2663 filter->exclude.v,
2664 cb, cb_data);
2668 * Given a ref (oid, refname), check if the ref belongs to the array
2669 * of oids. If the given ref is a tag, check if the given tag points
2670 * at one of the oids in the given oid array. Returns non-zero if a
2671 * match is found.
2673 * NEEDSWORK:
2674 * As the refs are cached we might know what refname peels to without
2675 * the need to parse the object via parse_object(). peel_ref() might be a
2676 * more efficient alternative to obtain the pointee.
2678 static int match_points_at(struct oid_array *points_at,
2679 const struct object_id *oid,
2680 const char *refname)
2682 struct object *obj;
2684 if (oid_array_lookup(points_at, oid) >= 0)
2685 return 1;
2686 obj = parse_object_with_flags(the_repository, oid,
2687 PARSE_OBJECT_SKIP_HASH_CHECK);
2688 while (obj && obj->type == OBJ_TAG) {
2689 struct tag *tag = (struct tag *)obj;
2691 if (parse_tag(tag) < 0) {
2692 obj = NULL;
2693 break;
2696 if (oid_array_lookup(points_at, get_tagged_oid(tag)) >= 0)
2697 return 1;
2699 obj = tag->tagged;
2701 if (!obj)
2702 die(_("malformed object at '%s'"), refname);
2703 return 0;
2707 * Allocate space for a new ref_array_item and copy the name and oid to it.
2709 * Callers can then fill in other struct members at their leisure.
2711 static struct ref_array_item *new_ref_array_item(const char *refname,
2712 const struct object_id *oid)
2714 struct ref_array_item *ref;
2716 FLEX_ALLOC_STR(ref, refname, refname);
2717 oidcpy(&ref->objectname, oid);
2718 ref->rest = NULL;
2720 return ref;
2723 static void ref_array_append(struct ref_array *array, struct ref_array_item *ref)
2725 ALLOC_GROW(array->items, array->nr + 1, array->alloc);
2726 array->items[array->nr++] = ref;
2729 struct ref_array_item *ref_array_push(struct ref_array *array,
2730 const char *refname,
2731 const struct object_id *oid)
2733 struct ref_array_item *ref = new_ref_array_item(refname, oid);
2734 ref_array_append(array, ref);
2735 return ref;
2738 static int ref_kind_from_refname(const char *refname)
2740 unsigned int i;
2742 static struct {
2743 const char *prefix;
2744 unsigned int kind;
2745 } ref_kind[] = {
2746 { "refs/heads/" , FILTER_REFS_BRANCHES },
2747 { "refs/remotes/" , FILTER_REFS_REMOTES },
2748 { "refs/tags/", FILTER_REFS_TAGS}
2751 if (!strcmp(refname, "HEAD"))
2752 return FILTER_REFS_DETACHED_HEAD;
2754 for (i = 0; i < ARRAY_SIZE(ref_kind); i++) {
2755 if (starts_with(refname, ref_kind[i].prefix))
2756 return ref_kind[i].kind;
2759 if (is_pseudoref(get_main_ref_store(the_repository), refname))
2760 return FILTER_REFS_PSEUDOREFS;
2762 return FILTER_REFS_OTHERS;
2765 static int filter_ref_kind(struct ref_filter *filter, const char *refname)
2767 if (filter->kind == FILTER_REFS_BRANCHES ||
2768 filter->kind == FILTER_REFS_REMOTES ||
2769 filter->kind == FILTER_REFS_TAGS)
2770 return filter->kind;
2771 return ref_kind_from_refname(refname);
2774 static struct ref_array_item *apply_ref_filter(const char *refname, const struct object_id *oid,
2775 int flag, struct ref_filter *filter)
2777 struct ref_array_item *ref;
2778 struct commit *commit = NULL;
2779 unsigned int kind;
2781 if (flag & REF_BAD_NAME) {
2782 warning(_("ignoring ref with broken name %s"), refname);
2783 return NULL;
2786 if (flag & REF_ISBROKEN) {
2787 warning(_("ignoring broken ref %s"), refname);
2788 return NULL;
2791 /* Obtain the current ref kind from filter_ref_kind() and ignore unwanted refs. */
2792 kind = filter_ref_kind(filter, refname);
2795 * Generally HEAD refs are printed with special description denoting a rebase,
2796 * detached state and so forth. This is useful when only printing the HEAD ref
2797 * But when it is being printed along with other pseudorefs, it makes sense to
2798 * keep the formatting consistent. So we mask the type to act like a pseudoref.
2800 if (filter->kind == FILTER_REFS_KIND_MASK && kind == FILTER_REFS_DETACHED_HEAD)
2801 kind = FILTER_REFS_PSEUDOREFS;
2802 else if (!(kind & filter->kind))
2803 return NULL;
2805 if (!filter_pattern_match(filter, refname))
2806 return NULL;
2808 if (filter_exclude_match(filter, refname))
2809 return NULL;
2811 if (filter->points_at.nr && !match_points_at(&filter->points_at, oid, refname))
2812 return NULL;
2815 * A merge filter is applied on refs pointing to commits. Hence
2816 * obtain the commit using the 'oid' available and discard all
2817 * non-commits early. The actual filtering is done later.
2819 if (filter->reachable_from || filter->unreachable_from ||
2820 filter->with_commit || filter->no_commit || filter->verbose) {
2821 commit = lookup_commit_reference_gently(the_repository, oid, 1);
2822 if (!commit)
2823 return NULL;
2824 /* We perform the filtering for the '--contains' option... */
2825 if (filter->with_commit &&
2826 !commit_contains(filter, commit, filter->with_commit, &filter->internal.contains_cache))
2827 return NULL;
2828 /* ...or for the `--no-contains' option */
2829 if (filter->no_commit &&
2830 commit_contains(filter, commit, filter->no_commit, &filter->internal.no_contains_cache))
2831 return NULL;
2835 * We do not open the object yet; sort may only need refname
2836 * to do its job and the resulting list may yet to be pruned
2837 * by maxcount logic.
2839 ref = new_ref_array_item(refname, oid);
2840 ref->commit = commit;
2841 ref->flag = flag;
2842 ref->kind = kind;
2844 return ref;
2847 struct ref_filter_cbdata {
2848 struct ref_array *array;
2849 struct ref_filter *filter;
2853 * A call-back given to for_each_ref(). Filter refs and keep them for
2854 * later object processing.
2856 static int filter_one(const char *refname, const struct object_id *oid, int flag, void *cb_data)
2858 struct ref_filter_cbdata *ref_cbdata = cb_data;
2859 struct ref_array_item *ref;
2861 ref = apply_ref_filter(refname, oid, flag, ref_cbdata->filter);
2862 if (ref)
2863 ref_array_append(ref_cbdata->array, ref);
2865 return 0;
2868 /* Free memory allocated for a ref_array_item */
2869 static void free_array_item(struct ref_array_item *item)
2871 free((char *)item->symref);
2872 if (item->value) {
2873 int i;
2874 for (i = 0; i < used_atom_cnt; i++)
2875 free((char *)item->value[i].s);
2876 free(item->value);
2878 free(item->counts);
2879 free(item);
2882 struct ref_filter_and_format_cbdata {
2883 struct ref_filter *filter;
2884 struct ref_format *format;
2886 struct ref_filter_and_format_internal {
2887 int count;
2888 } internal;
2891 static int filter_and_format_one(const char *refname, const struct object_id *oid, int flag, void *cb_data)
2893 struct ref_filter_and_format_cbdata *ref_cbdata = cb_data;
2894 struct ref_array_item *ref;
2895 struct strbuf output = STRBUF_INIT, err = STRBUF_INIT;
2897 ref = apply_ref_filter(refname, oid, flag, ref_cbdata->filter);
2898 if (!ref)
2899 return 0;
2901 if (format_ref_array_item(ref, ref_cbdata->format, &output, &err))
2902 die("%s", err.buf);
2904 if (output.len || !ref_cbdata->format->array_opts.omit_empty) {
2905 fwrite(output.buf, 1, output.len, stdout);
2906 putchar('\n');
2909 strbuf_release(&output);
2910 strbuf_release(&err);
2911 free_array_item(ref);
2914 * Increment the running count of refs that match the filter. If
2915 * max_count is set and we've reached the max, stop the ref
2916 * iteration by returning a nonzero value.
2918 if (ref_cbdata->format->array_opts.max_count &&
2919 ++ref_cbdata->internal.count >= ref_cbdata->format->array_opts.max_count)
2920 return 1;
2922 return 0;
2925 /* Free all memory allocated for ref_array */
2926 void ref_array_clear(struct ref_array *array)
2928 int i;
2930 for (i = 0; i < array->nr; i++)
2931 free_array_item(array->items[i]);
2932 FREE_AND_NULL(array->items);
2933 array->nr = array->alloc = 0;
2935 for (i = 0; i < used_atom_cnt; i++) {
2936 struct used_atom *atom = &used_atom[i];
2937 if (atom->atom_type == ATOM_HEAD)
2938 free(atom->u.head);
2939 free((char *)atom->name);
2941 FREE_AND_NULL(used_atom);
2942 used_atom_cnt = 0;
2944 if (ref_to_worktree_map.worktrees) {
2945 hashmap_clear_and_free(&(ref_to_worktree_map.map),
2946 struct ref_to_worktree_entry, ent);
2947 free_worktrees(ref_to_worktree_map.worktrees);
2948 ref_to_worktree_map.worktrees = NULL;
2951 FREE_AND_NULL(array->counts);
2954 #define EXCLUDE_REACHED 0
2955 #define INCLUDE_REACHED 1
2956 static void reach_filter(struct ref_array *array,
2957 struct commit_list **check_reachable,
2958 int include_reached)
2960 int i, old_nr;
2961 struct commit **to_clear;
2963 if (!*check_reachable)
2964 return;
2966 CALLOC_ARRAY(to_clear, array->nr);
2967 for (i = 0; i < array->nr; i++) {
2968 struct ref_array_item *item = array->items[i];
2969 to_clear[i] = item->commit;
2972 tips_reachable_from_bases(the_repository,
2973 *check_reachable,
2974 to_clear, array->nr,
2975 UNINTERESTING);
2977 old_nr = array->nr;
2978 array->nr = 0;
2980 for (i = 0; i < old_nr; i++) {
2981 struct ref_array_item *item = array->items[i];
2982 struct commit *commit = item->commit;
2984 int is_merged = !!(commit->object.flags & UNINTERESTING);
2986 if (is_merged == include_reached)
2987 array->items[array->nr++] = array->items[i];
2988 else
2989 free_array_item(item);
2992 clear_commit_marks_many(old_nr, to_clear, ALL_REV_FLAGS);
2994 while (*check_reachable) {
2995 struct commit *merge_commit = pop_commit(check_reachable);
2996 clear_commit_marks(merge_commit, ALL_REV_FLAGS);
2999 free(to_clear);
3002 void filter_ahead_behind(struct repository *r,
3003 struct ref_format *format,
3004 struct ref_array *array)
3006 struct commit **commits;
3007 size_t commits_nr = format->bases.nr + array->nr;
3009 if (!format->bases.nr || !array->nr)
3010 return;
3012 ALLOC_ARRAY(commits, commits_nr);
3013 for (size_t i = 0; i < format->bases.nr; i++)
3014 commits[i] = format->bases.items[i].util;
3016 ALLOC_ARRAY(array->counts, st_mult(format->bases.nr, array->nr));
3018 commits_nr = format->bases.nr;
3019 array->counts_nr = 0;
3020 for (size_t i = 0; i < array->nr; i++) {
3021 const char *name = array->items[i]->refname;
3022 commits[commits_nr] = lookup_commit_reference_by_name(name);
3024 if (!commits[commits_nr])
3025 continue;
3027 CALLOC_ARRAY(array->items[i]->counts, format->bases.nr);
3028 for (size_t j = 0; j < format->bases.nr; j++) {
3029 struct ahead_behind_count *count;
3030 count = &array->counts[array->counts_nr++];
3031 count->tip_index = commits_nr;
3032 count->base_index = j;
3034 array->items[i]->counts[j] = count;
3036 commits_nr++;
3039 ahead_behind(r, commits, commits_nr, array->counts, array->counts_nr);
3040 free(commits);
3043 static int do_filter_refs(struct ref_filter *filter, unsigned int type, each_ref_fn fn, void *cb_data)
3045 int ret = 0;
3047 filter->kind = type & FILTER_REFS_KIND_MASK;
3049 init_contains_cache(&filter->internal.contains_cache);
3050 init_contains_cache(&filter->internal.no_contains_cache);
3052 /* Simple per-ref filtering */
3053 if (!filter->kind)
3054 die("filter_refs: invalid type");
3055 else {
3057 * For common cases where we need only branches or remotes or tags,
3058 * we only iterate through those refs. If a mix of refs is needed,
3059 * we iterate over all refs and filter out required refs with the help
3060 * of filter_ref_kind().
3062 if (filter->kind == FILTER_REFS_BRANCHES)
3063 ret = for_each_fullref_in("refs/heads/", fn, cb_data);
3064 else if (filter->kind == FILTER_REFS_REMOTES)
3065 ret = for_each_fullref_in("refs/remotes/", fn, cb_data);
3066 else if (filter->kind == FILTER_REFS_TAGS)
3067 ret = for_each_fullref_in("refs/tags/", fn, cb_data);
3068 else if (filter->kind & FILTER_REFS_REGULAR)
3069 ret = for_each_fullref_in_pattern(filter, fn, cb_data);
3072 * When printing all ref types, HEAD is already included,
3073 * so we don't want to print HEAD again.
3075 if (!ret && (filter->kind != FILTER_REFS_KIND_MASK) &&
3076 (filter->kind & FILTER_REFS_DETACHED_HEAD))
3077 head_ref(fn, cb_data);
3080 clear_contains_cache(&filter->internal.contains_cache);
3081 clear_contains_cache(&filter->internal.no_contains_cache);
3083 return ret;
3087 * API for filtering a set of refs. Based on the type of refs the user
3088 * has requested, we iterate through those refs and apply filters
3089 * as per the given ref_filter structure and finally store the
3090 * filtered refs in the ref_array structure.
3092 int filter_refs(struct ref_array *array, struct ref_filter *filter, unsigned int type)
3094 struct ref_filter_cbdata ref_cbdata;
3095 int save_commit_buffer_orig;
3096 int ret = 0;
3098 ref_cbdata.array = array;
3099 ref_cbdata.filter = filter;
3101 save_commit_buffer_orig = save_commit_buffer;
3102 save_commit_buffer = 0;
3104 ret = do_filter_refs(filter, type, filter_one, &ref_cbdata);
3106 /* Filters that need revision walking */
3107 reach_filter(array, &filter->reachable_from, INCLUDE_REACHED);
3108 reach_filter(array, &filter->unreachable_from, EXCLUDE_REACHED);
3110 save_commit_buffer = save_commit_buffer_orig;
3111 return ret;
3114 static inline int can_do_iterative_format(struct ref_filter *filter,
3115 struct ref_sorting *sorting,
3116 struct ref_format *format)
3119 * Filtering & formatting results within a single ref iteration
3120 * callback is not compatible with options that require
3121 * post-processing a filtered ref_array. These include:
3122 * - filtering on reachability
3123 * - sorting the filtered results
3124 * - including ahead-behind information in the formatted output
3126 return !(filter->reachable_from ||
3127 filter->unreachable_from ||
3128 sorting ||
3129 format->bases.nr);
3132 void filter_and_format_refs(struct ref_filter *filter, unsigned int type,
3133 struct ref_sorting *sorting,
3134 struct ref_format *format)
3136 if (can_do_iterative_format(filter, sorting, format)) {
3137 int save_commit_buffer_orig;
3138 struct ref_filter_and_format_cbdata ref_cbdata = {
3139 .filter = filter,
3140 .format = format,
3143 save_commit_buffer_orig = save_commit_buffer;
3144 save_commit_buffer = 0;
3146 do_filter_refs(filter, type, filter_and_format_one, &ref_cbdata);
3148 save_commit_buffer = save_commit_buffer_orig;
3149 } else {
3150 struct ref_array array = { 0 };
3151 filter_refs(&array, filter, type);
3152 filter_ahead_behind(the_repository, format, &array);
3153 ref_array_sort(sorting, &array);
3154 print_formatted_ref_array(&array, format);
3155 ref_array_clear(&array);
3159 static int compare_detached_head(struct ref_array_item *a, struct ref_array_item *b)
3161 if (!(a->kind ^ b->kind))
3162 BUG("ref_kind_from_refname() should only mark one ref as HEAD");
3163 if (a->kind & FILTER_REFS_DETACHED_HEAD)
3164 return -1;
3165 else if (b->kind & FILTER_REFS_DETACHED_HEAD)
3166 return 1;
3167 BUG("should have died in the xor check above");
3168 return 0;
3171 static int memcasecmp(const void *vs1, const void *vs2, size_t n)
3173 const char *s1 = vs1, *s2 = vs2;
3174 const char *end = s1 + n;
3176 for (; s1 < end; s1++, s2++) {
3177 int diff = tolower(*s1) - tolower(*s2);
3178 if (diff)
3179 return diff;
3181 return 0;
3184 struct ref_sorting {
3185 struct ref_sorting *next;
3186 int atom; /* index into used_atom array (internal) */
3187 enum ref_sorting_order sort_flags;
3190 static int cmp_ref_sorting(struct ref_sorting *s, struct ref_array_item *a, struct ref_array_item *b)
3192 struct atom_value *va, *vb;
3193 int cmp;
3194 int cmp_detached_head = 0;
3195 cmp_type cmp_type = used_atom[s->atom].type;
3196 struct strbuf err = STRBUF_INIT;
3198 if (get_ref_atom_value(a, s->atom, &va, &err))
3199 die("%s", err.buf);
3200 if (get_ref_atom_value(b, s->atom, &vb, &err))
3201 die("%s", err.buf);
3202 strbuf_release(&err);
3203 if (s->sort_flags & REF_SORTING_DETACHED_HEAD_FIRST &&
3204 ((a->kind | b->kind) & FILTER_REFS_DETACHED_HEAD)) {
3205 cmp = compare_detached_head(a, b);
3206 cmp_detached_head = 1;
3207 } else if (s->sort_flags & REF_SORTING_VERSION) {
3208 cmp = versioncmp(va->s, vb->s);
3209 } else if (cmp_type == FIELD_STR) {
3210 if (va->s_size < 0 && vb->s_size < 0) {
3211 int (*cmp_fn)(const char *, const char *);
3212 cmp_fn = s->sort_flags & REF_SORTING_ICASE
3213 ? strcasecmp : strcmp;
3214 cmp = cmp_fn(va->s, vb->s);
3215 } else {
3216 size_t a_size = va->s_size < 0 ?
3217 strlen(va->s) : va->s_size;
3218 size_t b_size = vb->s_size < 0 ?
3219 strlen(vb->s) : vb->s_size;
3220 int (*cmp_fn)(const void *, const void *, size_t);
3221 cmp_fn = s->sort_flags & REF_SORTING_ICASE
3222 ? memcasecmp : memcmp;
3224 cmp = cmp_fn(va->s, vb->s, b_size > a_size ?
3225 a_size : b_size);
3226 if (!cmp) {
3227 if (a_size > b_size)
3228 cmp = 1;
3229 else if (a_size < b_size)
3230 cmp = -1;
3233 } else {
3234 if (va->value < vb->value)
3235 cmp = -1;
3236 else if (va->value == vb->value)
3237 cmp = 0;
3238 else
3239 cmp = 1;
3242 return (s->sort_flags & REF_SORTING_REVERSE && !cmp_detached_head)
3243 ? -cmp : cmp;
3246 static int compare_refs(const void *a_, const void *b_, void *ref_sorting)
3248 struct ref_array_item *a = *((struct ref_array_item **)a_);
3249 struct ref_array_item *b = *((struct ref_array_item **)b_);
3250 struct ref_sorting *s;
3252 for (s = ref_sorting; s; s = s->next) {
3253 int cmp = cmp_ref_sorting(s, a, b);
3254 if (cmp)
3255 return cmp;
3257 s = ref_sorting;
3258 return s && s->sort_flags & REF_SORTING_ICASE ?
3259 strcasecmp(a->refname, b->refname) :
3260 strcmp(a->refname, b->refname);
3263 void ref_sorting_set_sort_flags_all(struct ref_sorting *sorting,
3264 unsigned int mask, int on)
3266 for (; sorting; sorting = sorting->next) {
3267 if (on)
3268 sorting->sort_flags |= mask;
3269 else
3270 sorting->sort_flags &= ~mask;
3274 void ref_array_sort(struct ref_sorting *sorting, struct ref_array *array)
3276 if (sorting)
3277 QSORT_S(array->items, array->nr, compare_refs, sorting);
3280 static void append_literal(const char *cp, const char *ep, struct ref_formatting_state *state)
3282 struct strbuf *s = &state->stack->output;
3284 while (*cp && (!ep || cp < ep)) {
3285 if (*cp == '%') {
3286 if (cp[1] == '%')
3287 cp++;
3288 else {
3289 int ch = hex2chr(cp + 1);
3290 if (0 <= ch) {
3291 strbuf_addch(s, ch);
3292 cp += 3;
3293 continue;
3297 strbuf_addch(s, *cp);
3298 cp++;
3302 int format_ref_array_item(struct ref_array_item *info,
3303 struct ref_format *format,
3304 struct strbuf *final_buf,
3305 struct strbuf *error_buf)
3307 const char *cp, *sp, *ep;
3308 struct ref_formatting_state state = REF_FORMATTING_STATE_INIT;
3310 state.quote_style = format->quote_style;
3311 push_stack_element(&state.stack);
3313 for (cp = format->format; *cp && (sp = find_next(cp)); cp = ep + 1) {
3314 struct atom_value *atomv;
3315 int pos;
3317 ep = strchr(sp, ')');
3318 if (cp < sp)
3319 append_literal(cp, sp, &state);
3320 pos = parse_ref_filter_atom(format, sp + 2, ep, error_buf);
3321 if (pos < 0 || get_ref_atom_value(info, pos, &atomv, error_buf) ||
3322 atomv->handler(atomv, &state, error_buf)) {
3323 pop_stack_element(&state.stack);
3324 return -1;
3327 if (*cp) {
3328 sp = cp + strlen(cp);
3329 append_literal(cp, sp, &state);
3331 if (format->need_color_reset_at_eol) {
3332 struct atom_value resetv = ATOM_VALUE_INIT;
3333 resetv.s = GIT_COLOR_RESET;
3334 if (append_atom(&resetv, &state, error_buf)) {
3335 pop_stack_element(&state.stack);
3336 return -1;
3339 if (state.stack->prev) {
3340 pop_stack_element(&state.stack);
3341 return strbuf_addf_ret(error_buf, -1, _("format: %%(end) atom missing"));
3343 strbuf_addbuf(final_buf, &state.stack->output);
3344 pop_stack_element(&state.stack);
3345 return 0;
3348 void print_formatted_ref_array(struct ref_array *array, struct ref_format *format)
3350 int total;
3351 struct strbuf output = STRBUF_INIT, err = STRBUF_INIT;
3353 total = format->array_opts.max_count;
3354 if (!total || array->nr < total)
3355 total = array->nr;
3356 for (int i = 0; i < total; i++) {
3357 strbuf_reset(&err);
3358 strbuf_reset(&output);
3359 if (format_ref_array_item(array->items[i], format, &output, &err))
3360 die("%s", err.buf);
3361 if (output.len || !format->array_opts.omit_empty) {
3362 fwrite(output.buf, 1, output.len, stdout);
3363 putchar('\n');
3367 strbuf_release(&err);
3368 strbuf_release(&output);
3371 void pretty_print_ref(const char *name, const struct object_id *oid,
3372 struct ref_format *format)
3374 struct ref_array_item *ref_item;
3375 struct strbuf output = STRBUF_INIT;
3376 struct strbuf err = STRBUF_INIT;
3378 ref_item = new_ref_array_item(name, oid);
3379 ref_item->kind = ref_kind_from_refname(name);
3380 if (format_ref_array_item(ref_item, format, &output, &err))
3381 die("%s", err.buf);
3382 fwrite(output.buf, 1, output.len, stdout);
3383 putchar('\n');
3385 strbuf_release(&err);
3386 strbuf_release(&output);
3387 free_array_item(ref_item);
3390 static int parse_sorting_atom(const char *atom)
3393 * This parses an atom using a dummy ref_format, since we don't
3394 * actually care about the formatting details.
3396 struct ref_format dummy = REF_FORMAT_INIT;
3397 const char *end = atom + strlen(atom);
3398 struct strbuf err = STRBUF_INIT;
3399 int res = parse_ref_filter_atom(&dummy, atom, end, &err);
3400 if (res < 0)
3401 die("%s", err.buf);
3402 strbuf_release(&err);
3403 return res;
3406 static void parse_ref_sorting(struct ref_sorting **sorting_tail, const char *arg)
3408 struct ref_sorting *s;
3410 CALLOC_ARRAY(s, 1);
3411 s->next = *sorting_tail;
3412 *sorting_tail = s;
3414 if (*arg == '-') {
3415 s->sort_flags |= REF_SORTING_REVERSE;
3416 arg++;
3418 if (skip_prefix(arg, "version:", &arg) ||
3419 skip_prefix(arg, "v:", &arg))
3420 s->sort_flags |= REF_SORTING_VERSION;
3421 s->atom = parse_sorting_atom(arg);
3424 struct ref_sorting *ref_sorting_options(struct string_list *options)
3426 struct string_list_item *item;
3427 struct ref_sorting *sorting = NULL, **tail = &sorting;
3429 if (options->nr) {
3430 for_each_string_list_item(item, options)
3431 parse_ref_sorting(tail, item->string);
3435 * From here on, the ref_sorting list should be used to talk
3436 * about the sort order used for the output. The caller
3437 * should not touch the string form anymore.
3439 string_list_clear(options, 0);
3440 return sorting;
3443 void ref_sorting_release(struct ref_sorting *sorting)
3445 while (sorting) {
3446 struct ref_sorting *next = sorting->next;
3447 free(sorting);
3448 sorting = next;
3452 int parse_opt_merge_filter(const struct option *opt, const char *arg, int unset)
3454 struct ref_filter *rf = opt->value;
3455 struct object_id oid;
3456 struct commit *merge_commit;
3458 BUG_ON_OPT_NEG(unset);
3460 if (repo_get_oid(the_repository, arg, &oid))
3461 die(_("malformed object name %s"), arg);
3463 merge_commit = lookup_commit_reference_gently(the_repository, &oid, 0);
3465 if (!merge_commit)
3466 return error(_("option `%s' must point to a commit"), opt->long_name);
3468 if (starts_with(opt->long_name, "no"))
3469 commit_list_insert(merge_commit, &rf->unreachable_from);
3470 else
3471 commit_list_insert(merge_commit, &rf->reachable_from);
3473 return 0;
3476 void ref_filter_init(struct ref_filter *filter)
3478 struct ref_filter blank = REF_FILTER_INIT;
3479 memcpy(filter, &blank, sizeof(blank));
3482 void ref_filter_clear(struct ref_filter *filter)
3484 strvec_clear(&filter->exclude);
3485 oid_array_clear(&filter->points_at);
3486 free_commit_list(filter->with_commit);
3487 free_commit_list(filter->no_commit);
3488 free_commit_list(filter->reachable_from);
3489 free_commit_list(filter->unreachable_from);
3490 ref_filter_init(filter);