3 #include "parse-options.h"
11 #include "ref-filter.h"
14 #include "git-compat-util.h"
17 #include "wt-status.h"
18 #include "commit-slab.h"
20 static struct ref_msg {
24 const char *ahead_behind;
26 /* Untranslated plumbing messages: */
33 void setup_ref_filter_porcelain_msg(void)
35 msgs.gone = _("gone");
36 msgs.ahead = _("ahead %d");
37 msgs.behind = _("behind %d");
38 msgs.ahead_behind = _("ahead %d, behind %d");
41 typedef enum { FIELD_STR, FIELD_ULONG, FIELD_TIME } cmp_type;
42 typedef enum { COMPARE_EQUAL, COMPARE_UNEQUAL, COMPARE_NONE } cmp_status;
50 cmp_status cmp_status;
52 unsigned int then_atom_seen : 1,
54 condition_satisfied : 1;
58 enum { R_NORMAL, R_SHORT, R_LSTRIP, R_RSTRIP } option;
63 * An atom is a valid field atom listed below, possibly prefixed with
64 * a "*" to denote deref_tag().
66 * We parse given format string and sort specifiers, and make a list
67 * of properties that we need to extract out of objects. ref_array_item
68 * structure will hold an array of values extracted that can be
69 * indexed with the "atom number", which is an index into this
72 static struct used_atom {
76 char color[COLOR_MAXLEN];
80 RR_REF, RR_TRACK, RR_TRACKSHORT, RR_REMOTE_NAME, RR_REMOTE_REF
82 struct refname_atom refname;
83 unsigned int nobracket : 1, push : 1, push_remote : 1;
86 enum { C_BARE, C_BODY, C_BODY_DEP, C_LINES, C_SIG, C_SUB, C_TRAILERS } option;
87 struct process_trailer_options trailer_opts;
91 cmp_status cmp_status;
95 enum { O_FULL, O_LENGTH, O_SHORT } option;
98 struct refname_atom refname;
102 static int used_atom_cnt, need_tagged, need_symref;
105 * Expand string, append it to strbuf *sb, then return error code ret.
106 * Allow to save few lines of code.
108 static int strbuf_addf_ret(struct strbuf *sb, int ret, const char *fmt, ...)
112 strbuf_vaddf(sb, fmt, ap);
117 static int color_atom_parser(const struct ref_format *format, struct used_atom *atom,
118 const char *color_value, struct strbuf *err)
121 return strbuf_addf_ret(err, -1, _("expected format: %%(color:<color>)"));
122 if (color_parse(color_value, atom->u.color) < 0)
123 return strbuf_addf_ret(err, -1, _("unrecognized color: %%(color:%s)"),
126 * We check this after we've parsed the color, which lets us complain
127 * about syntactically bogus color names even if they won't be used.
129 if (!want_color(format->use_color))
130 color_parse("", atom->u.color);
134 static int refname_atom_parser_internal(struct refname_atom *atom, const char *arg,
135 const char *name, struct strbuf *err)
138 atom->option = R_NORMAL;
139 else if (!strcmp(arg, "short"))
140 atom->option = R_SHORT;
141 else if (skip_prefix(arg, "lstrip=", &arg) ||
142 skip_prefix(arg, "strip=", &arg)) {
143 atom->option = R_LSTRIP;
144 if (strtol_i(arg, 10, &atom->lstrip))
145 return strbuf_addf_ret(err, -1, _("Integer value expected refname:lstrip=%s"), arg);
146 } else if (skip_prefix(arg, "rstrip=", &arg)) {
147 atom->option = R_RSTRIP;
148 if (strtol_i(arg, 10, &atom->rstrip))
149 return strbuf_addf_ret(err, -1, _("Integer value expected refname:rstrip=%s"), arg);
151 return strbuf_addf_ret(err, -1, _("unrecognized %%(%s) argument: %s"), name, arg);
155 static int remote_ref_atom_parser(const struct ref_format *format, struct used_atom *atom,
156 const char *arg, struct strbuf *err)
158 struct string_list params = STRING_LIST_INIT_DUP;
161 if (!strcmp(atom->name, "push") || starts_with(atom->name, "push:"))
162 atom->u.remote_ref.push = 1;
165 atom->u.remote_ref.option = RR_REF;
166 return refname_atom_parser_internal(&atom->u.remote_ref.refname,
167 arg, atom->name, err);
170 atom->u.remote_ref.nobracket = 0;
171 string_list_split(¶ms, arg, ',', -1);
173 for (i = 0; i < params.nr; i++) {
174 const char *s = params.items[i].string;
176 if (!strcmp(s, "track"))
177 atom->u.remote_ref.option = RR_TRACK;
178 else if (!strcmp(s, "trackshort"))
179 atom->u.remote_ref.option = RR_TRACKSHORT;
180 else if (!strcmp(s, "nobracket"))
181 atom->u.remote_ref.nobracket = 1;
182 else if (!strcmp(s, "remotename")) {
183 atom->u.remote_ref.option = RR_REMOTE_NAME;
184 atom->u.remote_ref.push_remote = 1;
185 } else if (!strcmp(s, "remoteref")) {
186 atom->u.remote_ref.option = RR_REMOTE_REF;
187 atom->u.remote_ref.push_remote = 1;
189 atom->u.remote_ref.option = RR_REF;
190 if (refname_atom_parser_internal(&atom->u.remote_ref.refname,
191 arg, atom->name, err)) {
192 string_list_clear(¶ms, 0);
198 string_list_clear(¶ms, 0);
202 static int body_atom_parser(const struct ref_format *format, struct used_atom *atom,
203 const char *arg, struct strbuf *err)
206 return strbuf_addf_ret(err, -1, _("%%(body) does not take arguments"));
207 atom->u.contents.option = C_BODY_DEP;
211 static int subject_atom_parser(const struct ref_format *format, struct used_atom *atom,
212 const char *arg, struct strbuf *err)
215 return strbuf_addf_ret(err, -1, _("%%(subject) does not take arguments"));
216 atom->u.contents.option = C_SUB;
220 static int trailers_atom_parser(const struct ref_format *format, struct used_atom *atom,
221 const char *arg, struct strbuf *err)
223 struct string_list params = STRING_LIST_INIT_DUP;
227 string_list_split(¶ms, arg, ',', -1);
228 for (i = 0; i < params.nr; i++) {
229 const char *s = params.items[i].string;
230 if (!strcmp(s, "unfold"))
231 atom->u.contents.trailer_opts.unfold = 1;
232 else if (!strcmp(s, "only"))
233 atom->u.contents.trailer_opts.only_trailers = 1;
235 strbuf_addf(err, _("unknown %%(trailers) argument: %s"), s);
236 string_list_clear(¶ms, 0);
241 atom->u.contents.option = C_TRAILERS;
242 string_list_clear(¶ms, 0);
246 static int contents_atom_parser(const struct ref_format *format, struct used_atom *atom,
247 const char *arg, struct strbuf *err)
250 atom->u.contents.option = C_BARE;
251 else if (!strcmp(arg, "body"))
252 atom->u.contents.option = C_BODY;
253 else if (!strcmp(arg, "signature"))
254 atom->u.contents.option = C_SIG;
255 else if (!strcmp(arg, "subject"))
256 atom->u.contents.option = C_SUB;
257 else if (skip_prefix(arg, "trailers", &arg)) {
258 skip_prefix(arg, ":", &arg);
259 if (trailers_atom_parser(format, atom, *arg ? arg : NULL, err))
261 } else if (skip_prefix(arg, "lines=", &arg)) {
262 atom->u.contents.option = C_LINES;
263 if (strtoul_ui(arg, 10, &atom->u.contents.nlines))
264 return strbuf_addf_ret(err, -1, _("positive value expected contents:lines=%s"), arg);
266 return strbuf_addf_ret(err, -1, _("unrecognized %%(contents) argument: %s"), arg);
270 static int objectname_atom_parser(const struct ref_format *format, struct used_atom *atom,
271 const char *arg, struct strbuf *err)
274 atom->u.objectname.option = O_FULL;
275 else if (!strcmp(arg, "short"))
276 atom->u.objectname.option = O_SHORT;
277 else if (skip_prefix(arg, "short=", &arg)) {
278 atom->u.objectname.option = O_LENGTH;
279 if (strtoul_ui(arg, 10, &atom->u.objectname.length) ||
280 atom->u.objectname.length == 0)
281 return strbuf_addf_ret(err, -1, _("positive value expected objectname:short=%s"), arg);
282 if (atom->u.objectname.length < MINIMUM_ABBREV)
283 atom->u.objectname.length = MINIMUM_ABBREV;
285 return strbuf_addf_ret(err, -1, _("unrecognized %%(objectname) argument: %s"), arg);
289 static int refname_atom_parser(const struct ref_format *format, struct used_atom *atom,
290 const char *arg, struct strbuf *err)
292 return refname_atom_parser_internal(&atom->u.refname, arg, atom->name, err);
295 static align_type parse_align_position(const char *s)
297 if (!strcmp(s, "right"))
299 else if (!strcmp(s, "middle"))
301 else if (!strcmp(s, "left"))
306 static int align_atom_parser(const struct ref_format *format, struct used_atom *atom,
307 const char *arg, struct strbuf *err)
309 struct align *align = &atom->u.align;
310 struct string_list params = STRING_LIST_INIT_DUP;
312 unsigned int width = ~0U;
315 return strbuf_addf_ret(err, -1, _("expected format: %%(align:<width>,<position>)"));
317 align->position = ALIGN_LEFT;
319 string_list_split(¶ms, arg, ',', -1);
320 for (i = 0; i < params.nr; i++) {
321 const char *s = params.items[i].string;
324 if (skip_prefix(s, "position=", &s)) {
325 position = parse_align_position(s);
327 strbuf_addf(err, _("unrecognized position:%s"), s);
328 string_list_clear(¶ms, 0);
331 align->position = position;
332 } else if (skip_prefix(s, "width=", &s)) {
333 if (strtoul_ui(s, 10, &width)) {
334 strbuf_addf(err, _("unrecognized width:%s"), s);
335 string_list_clear(¶ms, 0);
338 } else if (!strtoul_ui(s, 10, &width))
340 else if ((position = parse_align_position(s)) >= 0)
341 align->position = position;
343 strbuf_addf(err, _("unrecognized %%(align) argument: %s"), s);
344 string_list_clear(¶ms, 0);
350 string_list_clear(¶ms, 0);
351 return strbuf_addf_ret(err, -1, _("positive width expected with the %%(align) atom"));
353 align->width = width;
354 string_list_clear(¶ms, 0);
358 static int if_atom_parser(const struct ref_format *format, struct used_atom *atom,
359 const char *arg, struct strbuf *err)
362 atom->u.if_then_else.cmp_status = COMPARE_NONE;
364 } else if (skip_prefix(arg, "equals=", &atom->u.if_then_else.str)) {
365 atom->u.if_then_else.cmp_status = COMPARE_EQUAL;
366 } else if (skip_prefix(arg, "notequals=", &atom->u.if_then_else.str)) {
367 atom->u.if_then_else.cmp_status = COMPARE_UNEQUAL;
369 return strbuf_addf_ret(err, -1, _("unrecognized %%(if) argument: %s"), arg);
373 static int head_atom_parser(const struct ref_format *format, struct used_atom *atom,
374 const char *arg, struct strbuf *unused_err)
376 atom->u.head = resolve_refdup("HEAD", RESOLVE_REF_READING, NULL, NULL);
383 int (*parser)(const struct ref_format *format, struct used_atom *atom,
384 const char *arg, struct strbuf *err);
386 { "refname" , FIELD_STR, refname_atom_parser },
388 { "objectsize", FIELD_ULONG },
389 { "objectname", FIELD_STR, objectname_atom_parser },
392 { "numparent", FIELD_ULONG },
399 { "authordate", FIELD_TIME },
402 { "committeremail" },
403 { "committerdate", FIELD_TIME },
407 { "taggerdate", FIELD_TIME },
409 { "creatordate", FIELD_TIME },
410 { "subject", FIELD_STR, subject_atom_parser },
411 { "body", FIELD_STR, body_atom_parser },
412 { "trailers", FIELD_STR, trailers_atom_parser },
413 { "contents", FIELD_STR, contents_atom_parser },
414 { "upstream", FIELD_STR, remote_ref_atom_parser },
415 { "push", FIELD_STR, remote_ref_atom_parser },
416 { "symref", FIELD_STR, refname_atom_parser },
418 { "HEAD", FIELD_STR, head_atom_parser },
419 { "color", FIELD_STR, color_atom_parser },
420 { "align", FIELD_STR, align_atom_parser },
422 { "if", FIELD_STR, if_atom_parser },
427 #define REF_FORMATTING_STATE_INIT { 0, NULL }
429 struct ref_formatting_stack {
430 struct ref_formatting_stack *prev;
431 struct strbuf output;
432 void (*at_end)(struct ref_formatting_stack **stack);
436 struct ref_formatting_state {
438 struct ref_formatting_stack *stack;
443 int (*handler)(struct atom_value *atomv, struct ref_formatting_state *state,
445 uintmax_t value; /* used for sorting when not FIELD_STR */
446 struct used_atom *atom;
450 * Used to parse format string and sort specifiers
452 static int parse_ref_filter_atom(const struct ref_format *format,
453 const char *atom, const char *ep,
461 if (*sp == '*' && sp < ep)
464 return strbuf_addf_ret(err, -1, _("malformed field name: %.*s"),
465 (int)(ep-atom), atom);
467 /* Do we have the atom already used elsewhere? */
468 for (i = 0; i < used_atom_cnt; i++) {
469 int len = strlen(used_atom[i].name);
470 if (len == ep - atom && !memcmp(used_atom[i].name, atom, len))
475 * If the atom name has a colon, strip it and everything after
476 * it off - it specifies the format for this entry, and
477 * shouldn't be used for checking against the valid_atom
480 arg = memchr(sp, ':', ep - sp);
481 atom_len = (arg ? arg : ep) - sp;
483 /* Is the atom a valid one? */
484 for (i = 0; i < ARRAY_SIZE(valid_atom); i++) {
485 int len = strlen(valid_atom[i].name);
486 if (len == atom_len && !memcmp(valid_atom[i].name, sp, len))
490 if (ARRAY_SIZE(valid_atom) <= i)
491 return strbuf_addf_ret(err, -1, _("unknown field name: %.*s"),
492 (int)(ep-atom), atom);
494 /* Add it in, including the deref prefix */
497 REALLOC_ARRAY(used_atom, used_atom_cnt);
498 used_atom[at].name = xmemdupz(atom, ep - atom);
499 used_atom[at].type = valid_atom[i].cmp_type;
501 arg = used_atom[at].name + (arg - atom) + 1;
504 * Treat empty sub-arguments list as NULL (i.e.,
505 * "%(atom:)" is equivalent to "%(atom)").
510 memset(&used_atom[at].u, 0, sizeof(used_atom[at].u));
511 if (valid_atom[i].parser && valid_atom[i].parser(format, &used_atom[at], arg, err))
515 if (!strcmp(valid_atom[i].name, "symref"))
520 static void quote_formatting(struct strbuf *s, const char *str, int quote_style)
522 switch (quote_style) {
524 strbuf_addstr(s, str);
527 sq_quote_buf(s, str);
530 perl_quote_buf(s, str);
533 python_quote_buf(s, str);
536 tcl_quote_buf(s, str);
541 static int append_atom(struct atom_value *v, struct ref_formatting_state *state,
542 struct strbuf *unused_err)
545 * Quote formatting is only done when the stack has a single
546 * element. Otherwise quote formatting is done on the
547 * element's entire output strbuf when the %(end) atom is
550 if (!state->stack->prev)
551 quote_formatting(&state->stack->output, v->s, state->quote_style);
553 strbuf_addstr(&state->stack->output, v->s);
557 static void push_stack_element(struct ref_formatting_stack **stack)
559 struct ref_formatting_stack *s = xcalloc(1, sizeof(struct ref_formatting_stack));
561 strbuf_init(&s->output, 0);
566 static void pop_stack_element(struct ref_formatting_stack **stack)
568 struct ref_formatting_stack *current = *stack;
569 struct ref_formatting_stack *prev = current->prev;
572 strbuf_addbuf(&prev->output, ¤t->output);
573 strbuf_release(¤t->output);
578 static void end_align_handler(struct ref_formatting_stack **stack)
580 struct ref_formatting_stack *cur = *stack;
581 struct align *align = (struct align *)cur->at_end_data;
582 struct strbuf s = STRBUF_INIT;
584 strbuf_utf8_align(&s, align->position, align->width, cur->output.buf);
585 strbuf_swap(&cur->output, &s);
589 static int align_atom_handler(struct atom_value *atomv, struct ref_formatting_state *state,
590 struct strbuf *unused_err)
592 struct ref_formatting_stack *new_stack;
594 push_stack_element(&state->stack);
595 new_stack = state->stack;
596 new_stack->at_end = end_align_handler;
597 new_stack->at_end_data = &atomv->atom->u.align;
601 static void if_then_else_handler(struct ref_formatting_stack **stack)
603 struct ref_formatting_stack *cur = *stack;
604 struct ref_formatting_stack *prev = cur->prev;
605 struct if_then_else *if_then_else = (struct if_then_else *)cur->at_end_data;
607 if (!if_then_else->then_atom_seen)
608 die(_("format: %%(if) atom used without a %%(then) atom"));
610 if (if_then_else->else_atom_seen) {
612 * There is an %(else) atom: we need to drop one state from the
613 * stack, either the %(else) branch if the condition is satisfied, or
614 * the %(then) branch if it isn't.
616 if (if_then_else->condition_satisfied) {
617 strbuf_reset(&cur->output);
618 pop_stack_element(&cur);
620 strbuf_swap(&cur->output, &prev->output);
621 strbuf_reset(&cur->output);
622 pop_stack_element(&cur);
624 } else if (!if_then_else->condition_satisfied) {
626 * No %(else) atom: just drop the %(then) branch if the
627 * condition is not satisfied.
629 strbuf_reset(&cur->output);
636 static int if_atom_handler(struct atom_value *atomv, struct ref_formatting_state *state,
637 struct strbuf *unused_err)
639 struct ref_formatting_stack *new_stack;
640 struct if_then_else *if_then_else = xcalloc(sizeof(struct if_then_else), 1);
642 if_then_else->str = atomv->atom->u.if_then_else.str;
643 if_then_else->cmp_status = atomv->atom->u.if_then_else.cmp_status;
645 push_stack_element(&state->stack);
646 new_stack = state->stack;
647 new_stack->at_end = if_then_else_handler;
648 new_stack->at_end_data = if_then_else;
652 static int is_empty(const char *s)
662 static int then_atom_handler(struct atom_value *atomv, struct ref_formatting_state *state,
665 struct ref_formatting_stack *cur = state->stack;
666 struct if_then_else *if_then_else = NULL;
668 if (cur->at_end == if_then_else_handler)
669 if_then_else = (struct if_then_else *)cur->at_end_data;
671 return strbuf_addf_ret(err, -1, _("format: %%(then) atom used without an %%(if) atom"));
672 if (if_then_else->then_atom_seen)
673 return strbuf_addf_ret(err, -1, _("format: %%(then) atom used more than once"));
674 if (if_then_else->else_atom_seen)
675 return strbuf_addf_ret(err, -1, _("format: %%(then) atom used after %%(else)"));
676 if_then_else->then_atom_seen = 1;
678 * If the 'equals' or 'notequals' attribute is used then
679 * perform the required comparison. If not, only non-empty
680 * strings satisfy the 'if' condition.
682 if (if_then_else->cmp_status == COMPARE_EQUAL) {
683 if (!strcmp(if_then_else->str, cur->output.buf))
684 if_then_else->condition_satisfied = 1;
685 } else if (if_then_else->cmp_status == COMPARE_UNEQUAL) {
686 if (strcmp(if_then_else->str, cur->output.buf))
687 if_then_else->condition_satisfied = 1;
688 } else if (cur->output.len && !is_empty(cur->output.buf))
689 if_then_else->condition_satisfied = 1;
690 strbuf_reset(&cur->output);
694 static int else_atom_handler(struct atom_value *atomv, struct ref_formatting_state *state,
697 struct ref_formatting_stack *prev = state->stack;
698 struct if_then_else *if_then_else = NULL;
700 if (prev->at_end == if_then_else_handler)
701 if_then_else = (struct if_then_else *)prev->at_end_data;
703 return strbuf_addf_ret(err, -1, _("format: %%(else) atom used without an %%(if) atom"));
704 if (!if_then_else->then_atom_seen)
705 return strbuf_addf_ret(err, -1, _("format: %%(else) atom used without a %%(then) atom"));
706 if (if_then_else->else_atom_seen)
707 return strbuf_addf_ret(err, -1, _("format: %%(else) atom used more than once"));
708 if_then_else->else_atom_seen = 1;
709 push_stack_element(&state->stack);
710 state->stack->at_end_data = prev->at_end_data;
711 state->stack->at_end = prev->at_end;
715 static int end_atom_handler(struct atom_value *atomv, struct ref_formatting_state *state,
718 struct ref_formatting_stack *current = state->stack;
719 struct strbuf s = STRBUF_INIT;
721 if (!current->at_end)
722 return strbuf_addf_ret(err, -1, _("format: %%(end) atom used without corresponding atom"));
723 current->at_end(&state->stack);
725 /* Stack may have been popped within at_end(), hence reset the current pointer */
726 current = state->stack;
729 * Perform quote formatting when the stack element is that of
730 * a supporting atom. If nested then perform quote formatting
731 * only on the topmost supporting atom.
733 if (!current->prev->prev) {
734 quote_formatting(&s, current->output.buf, state->quote_style);
735 strbuf_swap(¤t->output, &s);
738 pop_stack_element(&state->stack);
743 * In a format string, find the next occurrence of %(atom).
745 static const char *find_next(const char *cp)
750 * %( is the start of an atom;
751 * %% is a quoted per-cent.
755 else if (cp[1] == '%')
756 cp++; /* skip over two % */
757 /* otherwise this is a singleton, literal % */
765 * Make sure the format string is well formed, and parse out
768 int verify_ref_format(struct ref_format *format)
772 format->need_color_reset_at_eol = 0;
773 for (cp = format->format; *cp && (sp = find_next(cp)); ) {
774 struct strbuf err = STRBUF_INIT;
775 const char *color, *ep = strchr(sp, ')');
779 return error(_("malformed format string %s"), sp);
780 /* sp points at "%(" and ep points at the closing ")" */
781 at = parse_ref_filter_atom(format, sp + 2, ep, &err);
786 if (skip_prefix(used_atom[at].name, "color:", &color))
787 format->need_color_reset_at_eol = !!strcmp(color, "reset");
788 strbuf_release(&err);
790 if (format->need_color_reset_at_eol && !want_color(format->use_color))
791 format->need_color_reset_at_eol = 0;
796 * Given an object name, read the object data and size, and return a
797 * "struct object". If the object data we are returning is also borrowed
798 * by the "struct object" representation, set *eaten as well---it is a
799 * signal from parse_object_buffer to us not to free the buffer.
801 static void *get_obj(const struct object_id *oid, struct object **obj, unsigned long *sz, int *eaten)
803 enum object_type type;
804 void *buf = read_object_file(oid, &type, sz);
807 *obj = parse_object_buffer(oid, type, *sz, buf, eaten);
813 static int grab_objectname(const char *name, const struct object_id *oid,
814 struct atom_value *v, struct used_atom *atom)
816 if (starts_with(name, "objectname")) {
817 if (atom->u.objectname.option == O_SHORT) {
818 v->s = xstrdup(find_unique_abbrev(oid, DEFAULT_ABBREV));
820 } else if (atom->u.objectname.option == O_FULL) {
821 v->s = xstrdup(oid_to_hex(oid));
823 } else if (atom->u.objectname.option == O_LENGTH) {
824 v->s = xstrdup(find_unique_abbrev(oid, atom->u.objectname.length));
827 BUG("unknown %%(objectname) option");
832 /* See grab_values */
833 static void grab_common_values(struct atom_value *val, int deref, struct object *obj, void *buf, unsigned long sz)
837 for (i = 0; i < used_atom_cnt; i++) {
838 const char *name = used_atom[i].name;
839 struct atom_value *v = &val[i];
840 if (!!deref != (*name == '*'))
844 if (!strcmp(name, "objecttype"))
845 v->s = type_name(obj->type);
846 else if (!strcmp(name, "objectsize")) {
848 v->s = xstrfmt("%lu", sz);
851 grab_objectname(name, &obj->oid, v, &used_atom[i]);
855 /* See grab_values */
856 static void grab_tag_values(struct atom_value *val, int deref, struct object *obj, void *buf, unsigned long sz)
859 struct tag *tag = (struct tag *) obj;
861 for (i = 0; i < used_atom_cnt; i++) {
862 const char *name = used_atom[i].name;
863 struct atom_value *v = &val[i];
864 if (!!deref != (*name == '*'))
868 if (!strcmp(name, "tag"))
870 else if (!strcmp(name, "type") && tag->tagged)
871 v->s = type_name(tag->tagged->type);
872 else if (!strcmp(name, "object") && tag->tagged)
873 v->s = xstrdup(oid_to_hex(&tag->tagged->oid));
877 /* See grab_values */
878 static void grab_commit_values(struct atom_value *val, int deref, struct object *obj, void *buf, unsigned long sz)
881 struct commit *commit = (struct commit *) obj;
883 for (i = 0; i < used_atom_cnt; i++) {
884 const char *name = used_atom[i].name;
885 struct atom_value *v = &val[i];
886 if (!!deref != (*name == '*'))
890 if (!strcmp(name, "tree")) {
891 v->s = xstrdup(oid_to_hex(get_commit_tree_oid(commit)));
893 else if (!strcmp(name, "numparent")) {
894 v->value = commit_list_count(commit->parents);
895 v->s = xstrfmt("%lu", (unsigned long)v->value);
897 else if (!strcmp(name, "parent")) {
898 struct commit_list *parents;
899 struct strbuf s = STRBUF_INIT;
900 for (parents = commit->parents; parents; parents = parents->next) {
901 struct commit *parent = parents->item;
902 if (parents != commit->parents)
903 strbuf_addch(&s, ' ');
904 strbuf_addstr(&s, oid_to_hex(&parent->object.oid));
906 v->s = strbuf_detach(&s, NULL);
911 static const char *find_wholine(const char *who, int wholen, const char *buf, unsigned long sz)
915 if (!strncmp(buf, who, wholen) &&
917 return buf + wholen + 1;
918 eol = strchr(buf, '\n');
923 return ""; /* end of header */
929 static const char *copy_line(const char *buf)
931 const char *eol = strchrnul(buf, '\n');
932 return xmemdupz(buf, eol - buf);
935 static const char *copy_name(const char *buf)
938 for (cp = buf; *cp && *cp != '\n'; cp++) {
939 if (!strncmp(cp, " <", 2))
940 return xmemdupz(buf, cp - buf);
945 static const char *copy_email(const char *buf)
947 const char *email = strchr(buf, '<');
951 eoemail = strchr(email, '>');
954 return xmemdupz(email, eoemail + 1 - email);
957 static char *copy_subject(const char *buf, unsigned long len)
959 char *r = xmemdupz(buf, len);
962 for (i = 0; i < len; i++)
969 static void grab_date(const char *buf, struct atom_value *v, const char *atomname)
971 const char *eoemail = strstr(buf, "> ");
973 timestamp_t timestamp;
975 struct date_mode date_mode = { DATE_NORMAL };
979 * We got here because atomname ends in "date" or "date<something>";
980 * it's not possible that <something> is not ":<format>" because
981 * parse_ref_filter_atom() wouldn't have allowed it, so we can assume that no
982 * ":" means no format is specified, and use the default.
984 formatp = strchr(atomname, ':');
985 if (formatp != NULL) {
987 parse_date_format(formatp, &date_mode);
992 timestamp = parse_timestamp(eoemail + 2, &zone, 10);
993 if (timestamp == TIME_MAX)
995 tz = strtol(zone, NULL, 10);
996 if ((tz == LONG_MIN || tz == LONG_MAX) && errno == ERANGE)
998 v->s = xstrdup(show_date(timestamp, tz, &date_mode));
999 v->value = timestamp;
1006 /* See grab_values */
1007 static void grab_person(const char *who, struct atom_value *val, int deref, struct object *obj, void *buf, unsigned long sz)
1010 int wholen = strlen(who);
1011 const char *wholine = NULL;
1013 for (i = 0; i < used_atom_cnt; i++) {
1014 const char *name = used_atom[i].name;
1015 struct atom_value *v = &val[i];
1016 if (!!deref != (*name == '*'))
1020 if (strncmp(who, name, wholen))
1022 if (name[wholen] != 0 &&
1023 strcmp(name + wholen, "name") &&
1024 strcmp(name + wholen, "email") &&
1025 !starts_with(name + wholen, "date"))
1028 wholine = find_wholine(who, wholen, buf, sz);
1030 return; /* no point looking for it */
1031 if (name[wholen] == 0)
1032 v->s = copy_line(wholine);
1033 else if (!strcmp(name + wholen, "name"))
1034 v->s = copy_name(wholine);
1035 else if (!strcmp(name + wholen, "email"))
1036 v->s = copy_email(wholine);
1037 else if (starts_with(name + wholen, "date"))
1038 grab_date(wholine, v, name);
1042 * For a tag or a commit object, if "creator" or "creatordate" is
1043 * requested, do something special.
1045 if (strcmp(who, "tagger") && strcmp(who, "committer"))
1046 return; /* "author" for commit object is not wanted */
1048 wholine = find_wholine(who, wholen, buf, sz);
1051 for (i = 0; i < used_atom_cnt; i++) {
1052 const char *name = used_atom[i].name;
1053 struct atom_value *v = &val[i];
1054 if (!!deref != (*name == '*'))
1059 if (starts_with(name, "creatordate"))
1060 grab_date(wholine, v, name);
1061 else if (!strcmp(name, "creator"))
1062 v->s = copy_line(wholine);
1066 static void find_subpos(const char *buf, unsigned long sz,
1067 const char **sub, unsigned long *sublen,
1068 const char **body, unsigned long *bodylen,
1069 unsigned long *nonsiglen,
1070 const char **sig, unsigned long *siglen)
1073 /* skip past header until we hit empty line */
1074 while (*buf && *buf != '\n') {
1075 eol = strchrnul(buf, '\n');
1080 /* skip any empty lines */
1081 while (*buf == '\n')
1084 /* parse signature first; we might not even have a subject line */
1085 *sig = buf + parse_signature(buf, strlen(buf));
1086 *siglen = strlen(*sig);
1088 /* subject is first non-empty line */
1090 /* subject goes to first empty line */
1091 while (buf < *sig && *buf && *buf != '\n') {
1092 eol = strchrnul(buf, '\n');
1097 *sublen = buf - *sub;
1098 /* drop trailing newline, if present */
1099 if (*sublen && (*sub)[*sublen - 1] == '\n')
1102 /* skip any empty lines */
1103 while (*buf == '\n')
1106 *bodylen = strlen(buf);
1107 *nonsiglen = *sig - buf;
1111 * If 'lines' is greater than 0, append that many lines from the given
1112 * 'buf' of length 'size' to the given strbuf.
1114 static void append_lines(struct strbuf *out, const char *buf, unsigned long size, int lines)
1117 const char *sp, *eol;
1122 for (i = 0; i < lines && sp < buf + size; i++) {
1124 strbuf_addstr(out, "\n ");
1125 eol = memchr(sp, '\n', size - (sp - buf));
1126 len = eol ? eol - sp : size - (sp - buf);
1127 strbuf_add(out, sp, len);
1134 /* See grab_values */
1135 static void grab_sub_body_contents(struct atom_value *val, int deref, struct object *obj, void *buf, unsigned long sz)
1138 const char *subpos = NULL, *bodypos = NULL, *sigpos = NULL;
1139 unsigned long sublen = 0, bodylen = 0, nonsiglen = 0, siglen = 0;
1141 for (i = 0; i < used_atom_cnt; i++) {
1142 struct used_atom *atom = &used_atom[i];
1143 const char *name = atom->name;
1144 struct atom_value *v = &val[i];
1145 if (!!deref != (*name == '*'))
1149 if (strcmp(name, "subject") &&
1150 strcmp(name, "body") &&
1151 !starts_with(name, "trailers") &&
1152 !starts_with(name, "contents"))
1155 find_subpos(buf, sz,
1157 &bodypos, &bodylen, &nonsiglen,
1160 if (atom->u.contents.option == C_SUB)
1161 v->s = copy_subject(subpos, sublen);
1162 else if (atom->u.contents.option == C_BODY_DEP)
1163 v->s = xmemdupz(bodypos, bodylen);
1164 else if (atom->u.contents.option == C_BODY)
1165 v->s = xmemdupz(bodypos, nonsiglen);
1166 else if (atom->u.contents.option == C_SIG)
1167 v->s = xmemdupz(sigpos, siglen);
1168 else if (atom->u.contents.option == C_LINES) {
1169 struct strbuf s = STRBUF_INIT;
1170 const char *contents_end = bodylen + bodypos - siglen;
1172 /* Size is the length of the message after removing the signature */
1173 append_lines(&s, subpos, contents_end - subpos, atom->u.contents.nlines);
1174 v->s = strbuf_detach(&s, NULL);
1175 } else if (atom->u.contents.option == C_TRAILERS) {
1176 struct strbuf s = STRBUF_INIT;
1178 /* Format the trailer info according to the trailer_opts given */
1179 format_trailers_from_commit(&s, subpos, &atom->u.contents.trailer_opts);
1181 v->s = strbuf_detach(&s, NULL);
1182 } else if (atom->u.contents.option == C_BARE)
1183 v->s = xstrdup(subpos);
1188 * We want to have empty print-string for field requests
1189 * that do not apply (e.g. "authordate" for a tag object)
1191 static void fill_missing_values(struct atom_value *val)
1194 for (i = 0; i < used_atom_cnt; i++) {
1195 struct atom_value *v = &val[i];
1202 * val is a list of atom_value to hold returned values. Extract
1203 * the values for atoms in used_atom array out of (obj, buf, sz).
1204 * when deref is false, (obj, buf, sz) is the object that is
1205 * pointed at by the ref itself; otherwise it is the object the
1206 * ref (which is a tag) refers to.
1208 static void grab_values(struct atom_value *val, int deref, struct object *obj, void *buf, unsigned long sz)
1210 grab_common_values(val, deref, obj, buf, sz);
1211 switch (obj->type) {
1213 grab_tag_values(val, deref, obj, buf, sz);
1214 grab_sub_body_contents(val, deref, obj, buf, sz);
1215 grab_person("tagger", val, deref, obj, buf, sz);
1218 grab_commit_values(val, deref, obj, buf, sz);
1219 grab_sub_body_contents(val, deref, obj, buf, sz);
1220 grab_person("author", val, deref, obj, buf, sz);
1221 grab_person("committer", val, deref, obj, buf, sz);
1224 /* grab_tree_values(val, deref, obj, buf, sz); */
1227 /* grab_blob_values(val, deref, obj, buf, sz); */
1230 die("Eh? Object of type %d?", obj->type);
1234 static inline char *copy_advance(char *dst, const char *src)
1241 static const char *lstrip_ref_components(const char *refname, int len)
1243 long remaining = len;
1244 const char *start = refname;
1248 const char *p = refname;
1250 /* Find total no of '/' separated path-components */
1251 for (i = 0; p[i]; p[i] == '/' ? i++ : *p++)
1254 * The number of components we need to strip is now
1255 * the total minus the components to be left (Plus one
1256 * because we count the number of '/', but the number
1257 * of components is one more than the no of '/').
1259 remaining = i + len + 1;
1262 while (remaining > 0) {
1275 static const char *rstrip_ref_components(const char *refname, int len)
1277 long remaining = len;
1278 char *start = xstrdup(refname);
1282 const char *p = refname;
1284 /* Find total no of '/' separated path-components */
1285 for (i = 0; p[i]; p[i] == '/' ? i++ : *p++)
1288 * The number of components we need to strip is now
1289 * the total minus the components to be left (Plus one
1290 * because we count the number of '/', but the number
1291 * of components is one more than the no of '/').
1293 remaining = i + len + 1;
1296 while (remaining-- > 0) {
1297 char *p = strrchr(start, '/');
1306 static const char *show_ref(struct refname_atom *atom, const char *refname)
1308 if (atom->option == R_SHORT)
1309 return shorten_unambiguous_ref(refname, warn_ambiguous_refs);
1310 else if (atom->option == R_LSTRIP)
1311 return lstrip_ref_components(refname, atom->lstrip);
1312 else if (atom->option == R_RSTRIP)
1313 return rstrip_ref_components(refname, atom->rstrip);
1318 static void fill_remote_ref_details(struct used_atom *atom, const char *refname,
1319 struct branch *branch, const char **s)
1321 int num_ours, num_theirs;
1322 if (atom->u.remote_ref.option == RR_REF)
1323 *s = show_ref(&atom->u.remote_ref.refname, refname);
1324 else if (atom->u.remote_ref.option == RR_TRACK) {
1325 if (stat_tracking_info(branch, &num_ours, &num_theirs,
1326 NULL, AHEAD_BEHIND_FULL) < 0) {
1327 *s = xstrdup(msgs.gone);
1328 } else if (!num_ours && !num_theirs)
1331 *s = xstrfmt(msgs.behind, num_theirs);
1332 else if (!num_theirs)
1333 *s = xstrfmt(msgs.ahead, num_ours);
1335 *s = xstrfmt(msgs.ahead_behind,
1336 num_ours, num_theirs);
1337 if (!atom->u.remote_ref.nobracket && *s[0]) {
1338 const char *to_free = *s;
1339 *s = xstrfmt("[%s]", *s);
1340 free((void *)to_free);
1342 } else if (atom->u.remote_ref.option == RR_TRACKSHORT) {
1343 if (stat_tracking_info(branch, &num_ours, &num_theirs,
1344 NULL, AHEAD_BEHIND_FULL) < 0)
1347 if (!num_ours && !num_theirs)
1351 else if (!num_theirs)
1355 } else if (atom->u.remote_ref.option == RR_REMOTE_NAME) {
1357 const char *remote = atom->u.remote_ref.push ?
1358 pushremote_for_branch(branch, &explicit) :
1359 remote_for_branch(branch, &explicit);
1361 *s = xstrdup(remote);
1364 } else if (atom->u.remote_ref.option == RR_REMOTE_REF) {
1368 merge = remote_ref_for_branch(branch, atom->u.remote_ref.push,
1371 *s = xstrdup(merge);
1375 BUG("unhandled RR_* enum");
1378 char *get_head_description(void)
1380 struct strbuf desc = STRBUF_INIT;
1381 struct wt_status_state state;
1382 memset(&state, 0, sizeof(state));
1383 wt_status_get_state(&state, 1);
1384 if (state.rebase_in_progress ||
1385 state.rebase_interactive_in_progress) {
1387 strbuf_addf(&desc, _("(no branch, rebasing %s)"),
1390 strbuf_addf(&desc, _("(no branch, rebasing detached HEAD %s)"),
1391 state.detached_from);
1392 } else if (state.bisect_in_progress)
1393 strbuf_addf(&desc, _("(no branch, bisect started on %s)"),
1395 else if (state.detached_from) {
1396 if (state.detached_at)
1398 * TRANSLATORS: make sure this matches "HEAD
1399 * detached at " in wt-status.c
1401 strbuf_addf(&desc, _("(HEAD detached at %s)"),
1402 state.detached_from);
1405 * TRANSLATORS: make sure this matches "HEAD
1406 * detached from " in wt-status.c
1408 strbuf_addf(&desc, _("(HEAD detached from %s)"),
1409 state.detached_from);
1412 strbuf_addstr(&desc, _("(no branch)"));
1415 free(state.detached_from);
1416 return strbuf_detach(&desc, NULL);
1419 static const char *get_symref(struct used_atom *atom, struct ref_array_item *ref)
1424 return show_ref(&atom->u.refname, ref->symref);
1427 static const char *get_refname(struct used_atom *atom, struct ref_array_item *ref)
1429 if (ref->kind & FILTER_REFS_DETACHED_HEAD)
1430 return get_head_description();
1431 return show_ref(&atom->u.refname, ref->refname);
1434 static int get_object(struct ref_array_item *ref, const struct object_id *oid,
1435 int deref, struct object **obj, struct strbuf *err)
1440 void *buf = get_obj(oid, obj, &size, &eaten);
1442 ret = strbuf_addf_ret(err, -1, _("missing object %s for %s"),
1443 oid_to_hex(oid), ref->refname);
1445 ret = strbuf_addf_ret(err, -1, _("parse_object_buffer failed on %s for %s"),
1446 oid_to_hex(oid), ref->refname);
1448 grab_values(ref->value, deref, *obj, buf, size);
1455 * Parse the object referred by ref, and grab needed value.
1457 static int populate_value(struct ref_array_item *ref, struct strbuf *err)
1461 const struct object_id *tagged;
1463 ref->value = xcalloc(used_atom_cnt, sizeof(struct atom_value));
1465 if (need_symref && (ref->flag & REF_ISSYMREF) && !ref->symref) {
1466 ref->symref = resolve_refdup(ref->refname, RESOLVE_REF_READING,
1472 /* Fill in specials first */
1473 for (i = 0; i < used_atom_cnt; i++) {
1474 struct used_atom *atom = &used_atom[i];
1475 const char *name = used_atom[i].name;
1476 struct atom_value *v = &ref->value[i];
1478 const char *refname;
1479 struct branch *branch = NULL;
1481 v->handler = append_atom;
1489 if (starts_with(name, "refname"))
1490 refname = get_refname(atom, ref);
1491 else if (starts_with(name, "symref"))
1492 refname = get_symref(atom, ref);
1493 else if (starts_with(name, "upstream")) {
1494 const char *branch_name;
1495 /* only local branches may have an upstream */
1496 if (!skip_prefix(ref->refname, "refs/heads/",
1499 branch = branch_get(branch_name);
1501 refname = branch_get_upstream(branch, NULL);
1503 fill_remote_ref_details(atom, refname, branch, &v->s);
1505 } else if (atom->u.remote_ref.push) {
1506 const char *branch_name;
1507 if (!skip_prefix(ref->refname, "refs/heads/",
1510 branch = branch_get(branch_name);
1512 if (atom->u.remote_ref.push_remote)
1515 refname = branch_get_push(branch, NULL);
1519 fill_remote_ref_details(atom, refname, branch, &v->s);
1521 } else if (starts_with(name, "color:")) {
1522 v->s = atom->u.color;
1524 } else if (!strcmp(name, "flag")) {
1525 char buf[256], *cp = buf;
1526 if (ref->flag & REF_ISSYMREF)
1527 cp = copy_advance(cp, ",symref");
1528 if (ref->flag & REF_ISPACKED)
1529 cp = copy_advance(cp, ",packed");
1534 v->s = xstrdup(buf + 1);
1537 } else if (!deref && grab_objectname(name, &ref->objectname, v, atom)) {
1539 } else if (!strcmp(name, "HEAD")) {
1540 if (atom->u.head && !strcmp(ref->refname, atom->u.head))
1545 } else if (starts_with(name, "align")) {
1546 v->handler = align_atom_handler;
1548 } else if (!strcmp(name, "end")) {
1549 v->handler = end_atom_handler;
1551 } else if (starts_with(name, "if")) {
1554 if (skip_prefix(name, "if:", &s))
1556 v->handler = if_atom_handler;
1558 } else if (!strcmp(name, "then")) {
1559 v->handler = then_atom_handler;
1561 } else if (!strcmp(name, "else")) {
1562 v->handler = else_atom_handler;
1570 v->s = xstrfmt("%s^{}", refname);
1573 for (i = 0; i < used_atom_cnt; i++) {
1574 struct atom_value *v = &ref->value[i];
1578 if (used_atom_cnt <= i)
1581 if (get_object(ref, &ref->objectname, 0, &obj, err))
1585 * If there is no atom that wants to know about tagged
1586 * object, we are done.
1588 if (!need_tagged || (obj->type != OBJ_TAG))
1592 * If it is a tag object, see if we use a value that derefs
1593 * the object, and if we do grab the object it refers to.
1595 tagged = &((struct tag *)obj)->tagged->oid;
1598 * NEEDSWORK: This derefs tag only once, which
1599 * is good to deal with chains of trust, but
1600 * is not consistent with what deref_tag() does
1601 * which peels the onion to the core.
1603 return get_object(ref, tagged, 1, &obj, err);
1607 * Given a ref, return the value for the atom. This lazily gets value
1608 * out of the object by calling populate value.
1610 static int get_ref_atom_value(struct ref_array_item *ref, int atom,
1611 struct atom_value **v, struct strbuf *err)
1614 if (populate_value(ref, err))
1616 fill_missing_values(ref->value);
1618 *v = &ref->value[atom];
1623 * Unknown has to be "0" here, because that's the default value for
1624 * contains_cache slab entries that have not yet been assigned.
1626 enum contains_result {
1627 CONTAINS_UNKNOWN = 0,
1632 define_commit_slab(contains_cache, enum contains_result);
1634 struct ref_filter_cbdata {
1635 struct ref_array *array;
1636 struct ref_filter *filter;
1637 struct contains_cache contains_cache;
1638 struct contains_cache no_contains_cache;
1642 * Mimicking the real stack, this stack lives on the heap, avoiding stack
1645 * At each recursion step, the stack items points to the commits whose
1646 * ancestors are to be inspected.
1648 struct contains_stack {
1650 struct contains_stack_entry {
1651 struct commit *commit;
1652 struct commit_list *parents;
1656 static int in_commit_list(const struct commit_list *want, struct commit *c)
1658 for (; want; want = want->next)
1659 if (!oidcmp(&want->item->object.oid, &c->object.oid))
1665 * Test whether the candidate or one of its parents is contained in the list.
1666 * Do not recurse to find out, though, but return -1 if inconclusive.
1668 static enum contains_result contains_test(struct commit *candidate,
1669 const struct commit_list *want,
1670 struct contains_cache *cache)
1672 enum contains_result *cached = contains_cache_at(cache, candidate);
1674 /* If we already have the answer cached, return that. */
1679 if (in_commit_list(want, candidate)) {
1680 *cached = CONTAINS_YES;
1681 return CONTAINS_YES;
1684 /* Otherwise, we don't know; prepare to recurse */
1685 parse_commit_or_die(candidate);
1686 return CONTAINS_UNKNOWN;
1689 static void push_to_contains_stack(struct commit *candidate, struct contains_stack *contains_stack)
1691 ALLOC_GROW(contains_stack->contains_stack, contains_stack->nr + 1, contains_stack->alloc);
1692 contains_stack->contains_stack[contains_stack->nr].commit = candidate;
1693 contains_stack->contains_stack[contains_stack->nr++].parents = candidate->parents;
1696 static enum contains_result contains_tag_algo(struct commit *candidate,
1697 const struct commit_list *want,
1698 struct contains_cache *cache)
1700 struct contains_stack contains_stack = { 0, 0, NULL };
1701 enum contains_result result = contains_test(candidate, want, cache);
1703 if (result != CONTAINS_UNKNOWN)
1706 push_to_contains_stack(candidate, &contains_stack);
1707 while (contains_stack.nr) {
1708 struct contains_stack_entry *entry = &contains_stack.contains_stack[contains_stack.nr - 1];
1709 struct commit *commit = entry->commit;
1710 struct commit_list *parents = entry->parents;
1713 *contains_cache_at(cache, commit) = CONTAINS_NO;
1714 contains_stack.nr--;
1717 * If we just popped the stack, parents->item has been marked,
1718 * therefore contains_test will return a meaningful yes/no.
1720 else switch (contains_test(parents->item, want, cache)) {
1722 *contains_cache_at(cache, commit) = CONTAINS_YES;
1723 contains_stack.nr--;
1726 entry->parents = parents->next;
1728 case CONTAINS_UNKNOWN:
1729 push_to_contains_stack(parents->item, &contains_stack);
1733 free(contains_stack.contains_stack);
1734 return contains_test(candidate, want, cache);
1737 static int commit_contains(struct ref_filter *filter, struct commit *commit,
1738 struct commit_list *list, struct contains_cache *cache)
1740 if (filter->with_commit_tag_algo)
1741 return contains_tag_algo(commit, list, cache) == CONTAINS_YES;
1742 return is_descendant_of(commit, list);
1746 * Return 1 if the refname matches one of the patterns, otherwise 0.
1747 * A pattern can be a literal prefix (e.g. a refname "refs/heads/master"
1748 * matches a pattern "refs/heads/mas") or a wildcard (e.g. the same ref
1749 * matches "refs/heads/mas*", too).
1751 static int match_pattern(const struct ref_filter *filter, const char *refname)
1753 const char **patterns = filter->name_patterns;
1756 if (filter->ignore_case)
1757 flags |= WM_CASEFOLD;
1760 * When no '--format' option is given we need to skip the prefix
1761 * for matching refs of tags and branches.
1763 (void)(skip_prefix(refname, "refs/tags/", &refname) ||
1764 skip_prefix(refname, "refs/heads/", &refname) ||
1765 skip_prefix(refname, "refs/remotes/", &refname) ||
1766 skip_prefix(refname, "refs/", &refname));
1768 for (; *patterns; patterns++) {
1769 if (!wildmatch(*patterns, refname, flags))
1776 * Return 1 if the refname matches one of the patterns, otherwise 0.
1777 * A pattern can be path prefix (e.g. a refname "refs/heads/master"
1778 * matches a pattern "refs/heads/" but not "refs/heads/m") or a
1779 * wildcard (e.g. the same ref matches "refs/heads/m*", too).
1781 static int match_name_as_path(const struct ref_filter *filter, const char *refname)
1783 const char **pattern = filter->name_patterns;
1784 int namelen = strlen(refname);
1785 unsigned flags = WM_PATHNAME;
1787 if (filter->ignore_case)
1788 flags |= WM_CASEFOLD;
1790 for (; *pattern; pattern++) {
1791 const char *p = *pattern;
1792 int plen = strlen(p);
1794 if ((plen <= namelen) &&
1795 !strncmp(refname, p, plen) &&
1796 (refname[plen] == '\0' ||
1797 refname[plen] == '/' ||
1800 if (!wildmatch(p, refname, WM_PATHNAME))
1806 /* Return 1 if the refname matches one of the patterns, otherwise 0. */
1807 static int filter_pattern_match(struct ref_filter *filter, const char *refname)
1809 if (!*filter->name_patterns)
1810 return 1; /* No pattern always matches */
1811 if (filter->match_as_path)
1812 return match_name_as_path(filter, refname);
1813 return match_pattern(filter, refname);
1817 * Find the longest prefix of pattern we can pass to
1818 * `for_each_fullref_in()`, namely the part of pattern preceding the
1819 * first glob character. (Note that `for_each_fullref_in()` is
1820 * perfectly happy working with a prefix that doesn't end at a
1821 * pathname component boundary.)
1823 static void find_longest_prefix(struct strbuf *out, const char *pattern)
1827 for (p = pattern; *p && !is_glob_special(*p); p++)
1830 strbuf_add(out, pattern, p - pattern);
1834 * This is the same as for_each_fullref_in(), but it tries to iterate
1835 * only over the patterns we'll care about. Note that it _doesn't_ do a full
1836 * pattern match, so the callback still has to match each ref individually.
1838 static int for_each_fullref_in_pattern(struct ref_filter *filter,
1843 struct strbuf prefix = STRBUF_INIT;
1846 if (!filter->match_as_path) {
1848 * in this case, the patterns are applied after
1849 * prefixes like "refs/heads/" etc. are stripped off,
1850 * so we have to look at everything:
1852 return for_each_fullref_in("", cb, cb_data, broken);
1855 if (!filter->name_patterns[0]) {
1856 /* no patterns; we have to look at everything */
1857 return for_each_fullref_in("", cb, cb_data, broken);
1860 if (filter->name_patterns[1]) {
1862 * multiple patterns; in theory this could still work as long
1863 * as the patterns are disjoint. We'd just make multiple calls
1864 * to for_each_ref(). But if they're not disjoint, we'd end up
1865 * reporting the same ref multiple times. So let's punt on that
1868 return for_each_fullref_in("", cb, cb_data, broken);
1871 find_longest_prefix(&prefix, filter->name_patterns[0]);
1873 ret = for_each_fullref_in(prefix.buf, cb, cb_data, broken);
1874 strbuf_release(&prefix);
1879 * Given a ref (sha1, refname), check if the ref belongs to the array
1880 * of sha1s. If the given ref is a tag, check if the given tag points
1881 * at one of the sha1s in the given sha1 array.
1882 * the given sha1_array.
1884 * 1. Only a single level of inderection is obtained, we might want to
1885 * change this to account for multiple levels (e.g. annotated tags
1886 * pointing to annotated tags pointing to a commit.)
1887 * 2. As the refs are cached we might know what refname peels to without
1888 * the need to parse the object via parse_object(). peel_ref() might be a
1889 * more efficient alternative to obtain the pointee.
1891 static const struct object_id *match_points_at(struct oid_array *points_at,
1892 const struct object_id *oid,
1893 const char *refname)
1895 const struct object_id *tagged_oid = NULL;
1898 if (oid_array_lookup(points_at, oid) >= 0)
1900 obj = parse_object(oid);
1902 die(_("malformed object at '%s'"), refname);
1903 if (obj->type == OBJ_TAG)
1904 tagged_oid = &((struct tag *)obj)->tagged->oid;
1905 if (tagged_oid && oid_array_lookup(points_at, tagged_oid) >= 0)
1911 * Allocate space for a new ref_array_item and copy the name and oid to it.
1913 * Callers can then fill in other struct members at their leisure.
1915 static struct ref_array_item *new_ref_array_item(const char *refname,
1916 const struct object_id *oid)
1918 struct ref_array_item *ref;
1920 FLEX_ALLOC_STR(ref, refname, refname);
1921 oidcpy(&ref->objectname, oid);
1926 struct ref_array_item *ref_array_push(struct ref_array *array,
1927 const char *refname,
1928 const struct object_id *oid)
1930 struct ref_array_item *ref = new_ref_array_item(refname, oid);
1932 ALLOC_GROW(array->items, array->nr + 1, array->alloc);
1933 array->items[array->nr++] = ref;
1938 static int ref_kind_from_refname(const char *refname)
1946 { "refs/heads/" , FILTER_REFS_BRANCHES },
1947 { "refs/remotes/" , FILTER_REFS_REMOTES },
1948 { "refs/tags/", FILTER_REFS_TAGS}
1951 if (!strcmp(refname, "HEAD"))
1952 return FILTER_REFS_DETACHED_HEAD;
1954 for (i = 0; i < ARRAY_SIZE(ref_kind); i++) {
1955 if (starts_with(refname, ref_kind[i].prefix))
1956 return ref_kind[i].kind;
1959 return FILTER_REFS_OTHERS;
1962 static int filter_ref_kind(struct ref_filter *filter, const char *refname)
1964 if (filter->kind == FILTER_REFS_BRANCHES ||
1965 filter->kind == FILTER_REFS_REMOTES ||
1966 filter->kind == FILTER_REFS_TAGS)
1967 return filter->kind;
1968 return ref_kind_from_refname(refname);
1972 * A call-back given to for_each_ref(). Filter refs and keep them for
1973 * later object processing.
1975 static int ref_filter_handler(const char *refname, const struct object_id *oid, int flag, void *cb_data)
1977 struct ref_filter_cbdata *ref_cbdata = cb_data;
1978 struct ref_filter *filter = ref_cbdata->filter;
1979 struct ref_array_item *ref;
1980 struct commit *commit = NULL;
1983 if (flag & REF_BAD_NAME) {
1984 warning(_("ignoring ref with broken name %s"), refname);
1988 if (flag & REF_ISBROKEN) {
1989 warning(_("ignoring broken ref %s"), refname);
1993 /* Obtain the current ref kind from filter_ref_kind() and ignore unwanted refs. */
1994 kind = filter_ref_kind(filter, refname);
1995 if (!(kind & filter->kind))
1998 if (!filter_pattern_match(filter, refname))
2001 if (filter->points_at.nr && !match_points_at(&filter->points_at, oid, refname))
2005 * A merge filter is applied on refs pointing to commits. Hence
2006 * obtain the commit using the 'oid' available and discard all
2007 * non-commits early. The actual filtering is done later.
2009 if (filter->merge_commit || filter->with_commit || filter->no_commit || filter->verbose) {
2010 commit = lookup_commit_reference_gently(oid, 1);
2013 /* We perform the filtering for the '--contains' option... */
2014 if (filter->with_commit &&
2015 !commit_contains(filter, commit, filter->with_commit, &ref_cbdata->contains_cache))
2017 /* ...or for the `--no-contains' option */
2018 if (filter->no_commit &&
2019 commit_contains(filter, commit, filter->no_commit, &ref_cbdata->no_contains_cache))
2024 * We do not open the object yet; sort may only need refname
2025 * to do its job and the resulting list may yet to be pruned
2026 * by maxcount logic.
2028 ref = ref_array_push(ref_cbdata->array, refname, oid);
2029 ref->commit = commit;
2036 /* Free memory allocated for a ref_array_item */
2037 static void free_array_item(struct ref_array_item *item)
2039 free((char *)item->symref);
2043 /* Free all memory allocated for ref_array */
2044 void ref_array_clear(struct ref_array *array)
2048 for (i = 0; i < array->nr; i++)
2049 free_array_item(array->items[i]);
2050 FREE_AND_NULL(array->items);
2051 array->nr = array->alloc = 0;
2054 static void do_merge_filter(struct ref_filter_cbdata *ref_cbdata)
2056 struct rev_info revs;
2058 struct ref_filter *filter = ref_cbdata->filter;
2059 struct ref_array *array = ref_cbdata->array;
2060 struct commit **to_clear = xcalloc(sizeof(struct commit *), array->nr);
2062 init_revisions(&revs, NULL);
2064 for (i = 0; i < array->nr; i++) {
2065 struct ref_array_item *item = array->items[i];
2066 add_pending_object(&revs, &item->commit->object, item->refname);
2067 to_clear[i] = item->commit;
2070 filter->merge_commit->object.flags |= UNINTERESTING;
2071 add_pending_object(&revs, &filter->merge_commit->object, "");
2074 if (prepare_revision_walk(&revs))
2075 die(_("revision walk setup failed"));
2080 for (i = 0; i < old_nr; i++) {
2081 struct ref_array_item *item = array->items[i];
2082 struct commit *commit = item->commit;
2084 int is_merged = !!(commit->object.flags & UNINTERESTING);
2086 if (is_merged == (filter->merge == REF_FILTER_MERGED_INCLUDE))
2087 array->items[array->nr++] = array->items[i];
2089 free_array_item(item);
2092 clear_commit_marks_many(old_nr, to_clear, ALL_REV_FLAGS);
2093 clear_commit_marks(filter->merge_commit, ALL_REV_FLAGS);
2098 * API for filtering a set of refs. Based on the type of refs the user
2099 * has requested, we iterate through those refs and apply filters
2100 * as per the given ref_filter structure and finally store the
2101 * filtered refs in the ref_array structure.
2103 int filter_refs(struct ref_array *array, struct ref_filter *filter, unsigned int type)
2105 struct ref_filter_cbdata ref_cbdata;
2107 unsigned int broken = 0;
2109 ref_cbdata.array = array;
2110 ref_cbdata.filter = filter;
2112 if (type & FILTER_REFS_INCLUDE_BROKEN)
2114 filter->kind = type & FILTER_REFS_KIND_MASK;
2116 init_contains_cache(&ref_cbdata.contains_cache);
2117 init_contains_cache(&ref_cbdata.no_contains_cache);
2119 /* Simple per-ref filtering */
2121 die("filter_refs: invalid type");
2124 * For common cases where we need only branches or remotes or tags,
2125 * we only iterate through those refs. If a mix of refs is needed,
2126 * we iterate over all refs and filter out required refs with the help
2127 * of filter_ref_kind().
2129 if (filter->kind == FILTER_REFS_BRANCHES)
2130 ret = for_each_fullref_in("refs/heads/", ref_filter_handler, &ref_cbdata, broken);
2131 else if (filter->kind == FILTER_REFS_REMOTES)
2132 ret = for_each_fullref_in("refs/remotes/", ref_filter_handler, &ref_cbdata, broken);
2133 else if (filter->kind == FILTER_REFS_TAGS)
2134 ret = for_each_fullref_in("refs/tags/", ref_filter_handler, &ref_cbdata, broken);
2135 else if (filter->kind & FILTER_REFS_ALL)
2136 ret = for_each_fullref_in_pattern(filter, ref_filter_handler, &ref_cbdata, broken);
2137 if (!ret && (filter->kind & FILTER_REFS_DETACHED_HEAD))
2138 head_ref(ref_filter_handler, &ref_cbdata);
2141 clear_contains_cache(&ref_cbdata.contains_cache);
2142 clear_contains_cache(&ref_cbdata.no_contains_cache);
2144 /* Filters that need revision walking */
2145 if (filter->merge_commit)
2146 do_merge_filter(&ref_cbdata);
2151 static int cmp_ref_sorting(struct ref_sorting *s, struct ref_array_item *a, struct ref_array_item *b)
2153 struct atom_value *va, *vb;
2155 cmp_type cmp_type = used_atom[s->atom].type;
2156 int (*cmp_fn)(const char *, const char *);
2157 struct strbuf err = STRBUF_INIT;
2159 if (get_ref_atom_value(a, s->atom, &va, &err))
2161 if (get_ref_atom_value(b, s->atom, &vb, &err))
2163 strbuf_release(&err);
2164 cmp_fn = s->ignore_case ? strcasecmp : strcmp;
2166 cmp = versioncmp(va->s, vb->s);
2167 else if (cmp_type == FIELD_STR)
2168 cmp = cmp_fn(va->s, vb->s);
2170 if (va->value < vb->value)
2172 else if (va->value == vb->value)
2173 cmp = cmp_fn(a->refname, b->refname);
2178 return (s->reverse) ? -cmp : cmp;
2181 static int compare_refs(const void *a_, const void *b_, void *ref_sorting)
2183 struct ref_array_item *a = *((struct ref_array_item **)a_);
2184 struct ref_array_item *b = *((struct ref_array_item **)b_);
2185 struct ref_sorting *s;
2187 for (s = ref_sorting; s; s = s->next) {
2188 int cmp = cmp_ref_sorting(s, a, b);
2195 void ref_array_sort(struct ref_sorting *sorting, struct ref_array *array)
2197 QSORT_S(array->items, array->nr, compare_refs, sorting);
2200 static void append_literal(const char *cp, const char *ep, struct ref_formatting_state *state)
2202 struct strbuf *s = &state->stack->output;
2204 while (*cp && (!ep || cp < ep)) {
2209 int ch = hex2chr(cp + 1);
2211 strbuf_addch(s, ch);
2217 strbuf_addch(s, *cp);
2222 int format_ref_array_item(struct ref_array_item *info,
2223 const struct ref_format *format,
2224 struct strbuf *final_buf,
2225 struct strbuf *error_buf)
2227 const char *cp, *sp, *ep;
2228 struct ref_formatting_state state = REF_FORMATTING_STATE_INIT;
2230 state.quote_style = format->quote_style;
2231 push_stack_element(&state.stack);
2233 for (cp = format->format; *cp && (sp = find_next(cp)); cp = ep + 1) {
2234 struct atom_value *atomv;
2237 ep = strchr(sp, ')');
2239 append_literal(cp, sp, &state);
2240 pos = parse_ref_filter_atom(format, sp + 2, ep, error_buf);
2241 if (pos < 0 || get_ref_atom_value(info, pos, &atomv, error_buf) ||
2242 atomv->handler(atomv, &state, error_buf)) {
2243 pop_stack_element(&state.stack);
2248 sp = cp + strlen(cp);
2249 append_literal(cp, sp, &state);
2251 if (format->need_color_reset_at_eol) {
2252 struct atom_value resetv;
2253 resetv.s = GIT_COLOR_RESET;
2254 if (append_atom(&resetv, &state, error_buf)) {
2255 pop_stack_element(&state.stack);
2259 if (state.stack->prev) {
2260 pop_stack_element(&state.stack);
2261 return strbuf_addf_ret(error_buf, -1, _("format: %%(end) atom missing"));
2263 strbuf_addbuf(final_buf, &state.stack->output);
2264 pop_stack_element(&state.stack);
2268 void show_ref_array_item(struct ref_array_item *info,
2269 const struct ref_format *format)
2271 struct strbuf final_buf = STRBUF_INIT;
2272 struct strbuf error_buf = STRBUF_INIT;
2274 if (format_ref_array_item(info, format, &final_buf, &error_buf))
2275 die("%s", error_buf.buf);
2276 fwrite(final_buf.buf, 1, final_buf.len, stdout);
2277 strbuf_release(&error_buf);
2278 strbuf_release(&final_buf);
2282 void pretty_print_ref(const char *name, const struct object_id *oid,
2283 const struct ref_format *format)
2285 struct ref_array_item *ref_item;
2286 ref_item = new_ref_array_item(name, oid);
2287 ref_item->kind = ref_kind_from_refname(name);
2288 show_ref_array_item(ref_item, format);
2289 free_array_item(ref_item);
2292 static int parse_sorting_atom(const char *atom)
2295 * This parses an atom using a dummy ref_format, since we don't
2296 * actually care about the formatting details.
2298 struct ref_format dummy = REF_FORMAT_INIT;
2299 const char *end = atom + strlen(atom);
2300 struct strbuf err = STRBUF_INIT;
2301 int res = parse_ref_filter_atom(&dummy, atom, end, &err);
2304 strbuf_release(&err);
2308 /* If no sorting option is given, use refname to sort as default */
2309 struct ref_sorting *ref_default_sorting(void)
2311 static const char cstr_name[] = "refname";
2313 struct ref_sorting *sorting = xcalloc(1, sizeof(*sorting));
2315 sorting->next = NULL;
2316 sorting->atom = parse_sorting_atom(cstr_name);
2320 void parse_ref_sorting(struct ref_sorting **sorting_tail, const char *arg)
2322 struct ref_sorting *s;
2324 s = xcalloc(1, sizeof(*s));
2325 s->next = *sorting_tail;
2332 if (skip_prefix(arg, "version:", &arg) ||
2333 skip_prefix(arg, "v:", &arg))
2335 s->atom = parse_sorting_atom(arg);
2338 int parse_opt_ref_sorting(const struct option *opt, const char *arg, int unset)
2340 if (!arg) /* should --no-sort void the list ? */
2342 parse_ref_sorting(opt->value, arg);
2346 int parse_opt_merge_filter(const struct option *opt, const char *arg, int unset)
2348 struct ref_filter *rf = opt->value;
2349 struct object_id oid;
2350 int no_merged = starts_with(opt->long_name, "no");
2354 return opterror(opt, "is incompatible with --merged", 0);
2356 return opterror(opt, "is incompatible with --no-merged", 0);
2360 rf->merge = no_merged
2361 ? REF_FILTER_MERGED_OMIT
2362 : REF_FILTER_MERGED_INCLUDE;
2364 if (get_oid(arg, &oid))
2365 die(_("malformed object name %s"), arg);
2367 rf->merge_commit = lookup_commit_reference_gently(&oid, 0);
2368 if (!rf->merge_commit)
2369 return opterror(opt, "must point to a commit", 0);